:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #4ade80;
  --accent-dim: #22c55e;
  --accent-glow: rgba(74, 222, 128, 0.15);
  --border: #1e1e2e;
  --card-bg: #14141e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 580px;
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── HOW ── */
.how {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.step {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
  transition: border-color 0.3s;
}

.step:hover {
  border-color: var(--accent-dim);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── FEATURES ── */
.features {
  padding: 4rem 2rem 6rem;
  max-width: 1000px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
}

.feature-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(74, 222, 128, 0.04) 100%);
  border-color: rgba(74, 222, 128, 0.2);
}

.feature-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── COMPARISON ── */
.comparison {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  text-align: center;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-col {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.compare-old {
  background: var(--card-bg);
  opacity: 0.7;
}

.compare-new {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(74, 222, 128, 0.06) 100%);
  border-color: rgba(74, 222, 128, 0.3);
}

.compare-header {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.compare-new .compare-header {
  color: var(--accent);
}

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.compare-col li {
  color: var(--fg-muted);
  font-size: 0.95rem;
  padding-left: 1.2rem;
  position: relative;
}

.compare-old li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: #ef4444;
}

.compare-new li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.closing > * {
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-note {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ── SIGNUP FORM (closing section) ── */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 2.5rem auto 0;
}

.signup-form input {
  padding: 0.85rem 1.2rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.signup-form input:focus {
  border-color: var(--accent-dim);
}

.signup-form button {
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.signup-form button:hover {
  background: var(--accent-dim);
}

/* ── DEMO SECTION ── */
.demo-section {
  padding: 5rem 2rem 3rem;
  position: relative;
}

.demo-inner {
  max-width: 720px;
  margin: 0 auto;
}

.demo-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.demo-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.demo-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.demo-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.demo-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.demo-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* Input row */
.demo-input-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.demo-input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.demo-input:focus {
  border-color: var(--accent-dim);
}

.demo-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.demo-btn {
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, opacity 0.2s;
  position: relative;
  min-width: 148px;
  justify-content: center;
}

.demo-btn:hover:not(:disabled) {
  background: var(--accent-dim);
}

.demo-btn:disabled,
.demo-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.demo-btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #0a0a0f;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.demo-btn--loading .demo-btn-text {
  opacity: 0.6;
}

.demo-btn--loading .demo-btn-spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.demo-limit-note {
  display: none;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Status */
.demo-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.demo-status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Output */
.demo-output {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.demo-output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.demo-output-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-latency {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.demo-email-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.demo-subject-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.demo-field-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.demo-subject {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
}

.demo-body {
  color: var(--fg);
  font-size: 0.93rem;
  line-height: 1.75;
  white-space: pre-wrap;
}

/* Personalization hooks */
.demo-hook-phrase {
  background: rgba(74, 222, 128, 0.15);
  border-bottom: 1px dashed var(--accent-dim);
  border-radius: 2px;
  cursor: help;
  transition: background 0.2s;
}

.demo-hook-phrase:hover,
.demo-hook-phrase--active {
  background: rgba(74, 222, 128, 0.28);
}

.demo-hooks {
  margin-top: 1.25rem;
  background: rgba(74, 222, 128, 0.04);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.demo-hooks-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
}

.demo-hooks-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.demo-hook-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: default;
  transition: background 0.2s;
}

.demo-hook-item:hover {
  background: rgba(74, 222, 128, 0.06);
}

.demo-hook-phrase-ref {
  font-size: 0.82rem;
  color: var(--fg);
  font-style: italic;
}

.demo-hook-why {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Actions */
.demo-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.demo-action-secondary {
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.demo-action-secondary:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.demo-action-primary {
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: #0a0a0f;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.demo-action-primary:hover {
  background: var(--accent-dim);
}

/* Error state */
.demo-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  color: #f87171;
  font-size: 0.875rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 80vh;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-highlight {
    grid-column: 1;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .how, .features, .comparison {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .demo-section {
    padding: 3rem 1.25rem 2rem;
  }

  .demo-input-row {
    flex-direction: column;
    align-items: stretch;
  }

  .demo-btn {
    min-width: auto;
    justify-content: center;
  }

  .demo-actions {
    flex-direction: column;
  }

  .demo-action-primary,
  .demo-action-secondary {
    text-align: center;
    justify-content: center;
    display: block;
  }

  .demo-capture-form {
    flex-direction: column;
  }

  .demo-capture-btn {
    min-width: auto;
    width: 100%;
  }
}

/* ── DEMO LEAD CAPTURE CTA ── */
.demo-capture {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0.03) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 14px;
  padding: 1.5rem;
  animation: fadeSlideUp 0.4s ease both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.demo-capture-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-capture-headline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}

.demo-capture-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.demo-capture-form {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.25rem;
}

.demo-capture-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.demo-capture-input:focus {
  border-color: rgba(99, 102, 241, 0.6);
}

.demo-capture-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.demo-capture-btn {
  padding: 0.75rem 1.25rem;
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, opacity 0.2s;
  min-width: 160px;
  justify-content: center;
  flex-shrink: 0;
}

.demo-capture-btn:hover:not(:disabled) {
  background: #4f46e5;
}

.demo-capture-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.demo-capture-btn-spinner {
  display: none;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.demo-capture-btn--loading .demo-capture-btn-text {
  opacity: 0.7;
}

.demo-capture-btn--loading .demo-capture-btn-spinner {
  display: block;
}

.demo-capture-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  animation: fadeSlideUp 0.3s ease both;
}

.demo-capture-success-icon {
  font-size: 1rem;
  font-weight: 700;
}

.demo-capture-error {
  display: none;
  padding: 0.6rem 0.875rem;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-radius: 8px;
  color: #f87171;
  font-size: 0.82rem;
}

/* ── PRICING ── */
.pricing {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.pricing-eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(99, 102, 241, 0.5);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: #818cf8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 2.5rem;
}

/* Counter */
.pricing-counter {
  margin-bottom: 2rem;
}

.counter-bar-wrap {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.counter-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #818cf8);
  border-radius: 100px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-family: var(--font-display);
}

/* Card */
.pricing-card {
  background: var(--card-bg);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: #818cf8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.3rem;
  line-height: 1;
}

.pricing-dollar {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}

.pricing-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--fg);
}

.pricing-amount-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

/* Benefits */
.pricing-benefits {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.pricing-benefits li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.pricing-benefits li strong {
  color: var(--fg);
  font-weight: 500;
}

.benefit-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA button */
.pricing-cta {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.pricing-guarantee {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

@media (max-width: 700px) {
  .pricing {
    padding: 4rem 1.25rem;
  }

  .pricing-number {
    font-size: 3.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}