:root {
  --bg: #0f1318;
  --surface: #161b24;
  --surface-alt: #1c2330;
  --text: #f0ebe3;
  --text-muted: #8a8478;
  --accent: #c9a84c;
  --accent-dim: rgba(201,168,76,0.12);
  --step-line: #2a3242;
  --border: #232c3a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 100px 40px 96px;
}
.hero-inner {
  max-width: 740px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
}
.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.assurance-pill {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 40px;
  letter-spacing: 0.02em;
}

/* Workflow */
.workflow {
  padding: 96px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.workflow-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.workflow-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.workflow-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 64px;
  max-width: 540px;
  line-height: 1.2;
}
.workflow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step {
  flex: 1;
  position: relative;
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.step-review {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}
.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}
.step-connector {
  width: 40px;
  min-width: 40px;
  background: var(--step-line);
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--step-line);
}

/* Guardrails */
.guardrails {
  padding: 96px 40px;
}
.guardrails-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.guardrails-tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.guardrails-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 56px;
  max-width: 520px;
  line-height: 1.2;
}
.guardrails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.guardrail-item {
  padding: 40px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: -1px;
}
.guardrail-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.guardrail-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.guardrail-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Pilot */
.pilot {
  padding: 96px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pilot-inner {
  max-width: 680px;
  margin: 0 auto;
}
.pilot-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.pilot-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.15;
}
.pilot-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.pilot-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.pilot-detail {
  font-size: 14px;
  color: var(--text-muted);
}
.pilot-detail strong {
  color: var(--text);
  font-weight: 500;
}

/* Closing */
.closing {
  padding: 120px 40px;
}
.closing-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.closing-claim {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0f1318;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 4px;
  transition: background 0.15s ease, transform 0.1s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: #d4b558;
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--accent-dim);
}
.btn-large {
  font-size: 16px;
  padding: 16px 40px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cta-note {
  font-size: 13px;
  color: var(--text-muted);
}
.cta-sub {
  font-size: 14px;
  color: var(--text-muted);
}
.cta-email {
  color: var(--accent);
}

/* Differentiators */
.diff {
  padding: 96px 40px;
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.diff-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.diff-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 56px;
  max-width: 520px;
  line-height: 1.2;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.diff-item {
  padding: 44px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: -1px;
}
.diff-icon {
  color: var(--accent);
  margin-bottom: 18px;
}
.diff-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.diff-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Pricing */
.pricing {
  padding: 96px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 860px;
  margin: 0 auto;
}
.pricing-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.pricing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 48px;
  line-height: 1.15;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.card-pro {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.card-tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.card-pro .card-tag {
  color: var(--accent);
}
.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.card-pro .card-price {
  color: var(--text);
}
.card-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}
.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}
.card-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}
.card-features li:last-child {
  border-bottom: none;
}
.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 580px;
}

/* Closing CTA */
.closing {
  padding: 120px 40px;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 60px; }
  .workflow { padding: 64px 24px; }
  .diff { padding: 64px 24px; }
  .pricing { padding: 64px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }

  .workflow-steps {
    flex-direction: column;
  }
  .step-connector {
    width: 100%;
    height: 32px;
    min-width: unset;
  }
  .step-connector::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(90deg);
    border-left-color: transparent;
    border-top-color: var(--step-line);
  }
  .diff-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero-assurance {
    gap: 8px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}