:root {
  --dark:    #0b0d18;
  --dark-2:  #111520;
  --dark-3:  #181e35;
  --dark-4:  #1e2540;
  --purple:  #7c3aed;
  --purple-h:#6d28d9;
  --purple-d:rgba(124,58,237,.13);
  --purple-b:rgba(124,58,237,.32);
  --purple-l:#a78bfa;
  --green:   #22c55e;
  --green-d: #16a34a;
  --green-bg:rgba(34,197,94,.11);
  --green-b: rgba(34,197,94,.30);
  --red:     #ef4444;
  --red-bg:  rgba(239,68,68,.09);
  --red-b:   rgba(239,68,68,.25);
  --cream:   #f9f8f5;
  --g50:     #f9fafb;
  --g100:    #f3f4f6;
  --g200:    #e5e7eb;
  --g400:    #9ca3af;
  --g500:    #6b7280;
  --g700:    #374151;
  --g900:    #111827;
  --ld:  rgba(255,255,255,.08);   /* line on dark */
  --ll:  rgba(17,24,39,.10);      /* line on light */
  --td:  rgba(255,255,255,.55);   /* text dim on dark */
  --ts:  rgba(255,255,255,.80);   /* text strong on dark */
  --sh: 0 4px 24px rgba(0,0,0,.14);
  --sh-lg: 0 16px 56px rgba(0,0,0,.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body { margin: 0; background: var(--dark); color: var(--g900); letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.shell { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

/* ━━ NAV ━━ */
.nav {
  min-height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--ld);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 900; color: #fff; }
.mark {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--purple); color: #fff; font-size: 10px; font-weight: 900; line-height: 1.15;
}
.mark::before { content: 'U'; font-size: 18px; font-weight: 950; display: block; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pill {
  min-height: 34px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  background: transparent; color: var(--ts); padding: 6px 14px;
  display: inline-flex; align-items: center; font-size: 13px; font-weight: 650;
  white-space: nowrap; transition: border-color .15s, color .15s;
}
.pill:hover { border-color: var(--purple-b); color: var(--purple-l); }
.pill.cta { background: var(--purple); border-color: var(--purple); color: #fff; font-weight: 800; }
.pill.cta:hover { background: var(--purple-h); opacity: 1; }

/* ━━ MONEY-LOSS BLOCK ━━ */
.ml-section { padding: 48px 0; border-top: 1px solid var(--ld); }
.ml-card {
  background: linear-gradient(135deg, rgba(239,68,68,.18) 0%, rgba(239,68,68,.08) 100%);
  border: 1px solid rgba(239,68,68,.32); border-radius: 22px;
  padding: 52px 56px; text-align: center;
}
.ml-number {
  font-size: clamp(56px, 10vw, 110px); font-weight: 950; color: var(--red);
  line-height: 1; margin-bottom: 18px; letter-spacing: -.03em;
}
.ml-headline {
  font-size: clamp(18px, 2.8vw, 30px); font-weight: 900; color: #fff;
  max-width: 580px; margin: 0 auto 14px; line-height: 1.2;
}
.ml-body {
  color: var(--td); font-size: 16px; line-height: 1.6;
  max-width: 480px; margin: 0 auto 28px;
}
.ml-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; border-radius: 12px; background: var(--red);
  color: #fff; font-size: 15px; font-weight: 900; padding: 13px 28px;
  transition: opacity .15s; white-space: nowrap;
}
.ml-cta:hover { opacity: .88; }

/* ━━ PAIN: PHRASE GRID ━━ */
.phrase-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 28px;
}
.phrase-card {
  background: var(--dark-3); border: 1px solid var(--ld); border-radius: 14px;
  padding: 20px 16px; font-size: 15px; font-weight: 800; color: #fff;
  font-style: italic; line-height: 1.3; text-align: center;
}
.pain-note {
  color: var(--td); font-size: 15px; line-height: 1.6;
  max-width: 600px; text-align: center; margin: 0 auto;
}

/* ━━ PRICING SIMPLE ━━ */
.pricing-simple {
  display: grid; grid-template-columns: 1fr 340px; gap: 40px;
  align-items: start; margin-bottom: 20px;
}
.pricing-simple h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 44px); color: #fff; }
.pricing-simple > .ps-copy > p { color: var(--td); font-size: 16px; line-height: 1.55; margin: 0 0 20px; }
.ps-list {
  list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px;
}
.ps-list li { font-size: 15px; color: var(--ts); font-weight: 700; }
.ps-price-card {
  background: var(--dark-3); border: 1px solid var(--purple-b);
  border-radius: 20px; padding: 28px; text-align: center;
}
.ps-price {
  font-size: 64px; font-weight: 950; color: #fff; line-height: 1; margin-bottom: 4px;
}
.ps-once { font-size: 13px; color: var(--td); font-weight: 700; margin-bottom: 20px; }
.ps-note { font-size: 13px; color: var(--td); margin: 12px 0 8px; }
.ps-try { display: block; font-size: 14px; font-weight: 800; color: var(--purple-l); }
.ps-try:hover { color: var(--purple-l); text-decoration: underline; }

/* ━━ HERO (landing page) ━━ */
.lp-hero {
  padding: 80px 0 72px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,.22) 0%, transparent 70%);
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; margin-bottom: 20px;
  font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
  color: var(--purple-l); background: var(--purple-d); border: 1px solid var(--purple-b);
  border-radius: 999px; padding: 5px 14px;
}
.hero-h1 {
  margin: 0 0 22px; font-size: clamp(36px, 6vw, 72px); line-height: 1.03; font-weight: 950;
  color: #fff; letter-spacing: -.02em;
}
.purple-grad {
  background: linear-gradient(95deg, #a78bfa 0%, #7c3aed 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  margin: 0 0 32px; font-size: clamp(16px, 2vw, 19px); line-height: 1.55;
  color: var(--ts); max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; border-radius: 12px; background: var(--purple); color: #fff; border: 0;
  padding: 14px 28px; font-weight: 900; font-size: 16px; cursor: pointer; transition: background .15s;
}
.btn-hero-primary:hover { background: var(--purple-h); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; border-radius: 12px; background: transparent; color: var(--ts);
  border: 1px solid var(--ld); padding: 14px 28px; font-weight: 800; font-size: 16px;
  cursor: pointer; transition: background .15s;
}
.btn-hero-ghost:hover { background: var(--dark-3); }
.hero-trust { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-trust span { font-size: 13px; color: var(--td); font-weight: 700; }

/* ━━ BEFORE / AFTER ━━ */
.ba-section { padding: 56px 0; border-top: 1px solid var(--ld); }
.ba-grid {
  display: grid; grid-template-columns: 1fr 40px 1fr; gap: 0; align-items: stretch;
}
.ba-col {
  border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.ba-before { background: var(--cream); border: 1px solid var(--g200); }
.ba-after  { background: #0f1629; border: 1px solid var(--ld); }
.ba-divider { display: flex; align-items: center; justify-content: center; }
.ba-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark-3); border: 1px solid var(--ld);
  display: grid; place-items: center; color: var(--td); font-size: 16px;
}
.ba-tag {
  display: inline-flex; align-items: center; height: 26px;
  border-radius: 999px; padding: 0 14px; width: fit-content;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em;
}
.before-tag { background: var(--red); color: #fff; }
.after-tag  { background: var(--green); color: #fff; }
.ba-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ba-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 700; }
.ba-before .ba-list li { color: var(--g700); }
.ba-after .ba-list li  { color: var(--ts); }
.ba-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 11px; font-weight: 900; margin-top: 1px;
}
.red-icon   { background: var(--red-bg); border: 1px solid var(--red-b); color: var(--red); }
.green-icon { background: var(--green-bg); border: 1px solid var(--green-b); color: var(--green-d); }
.ba-cost-card {
  background: var(--red-bg); border: 1px solid var(--red-b); border-radius: 12px; padding: 14px 16px;
  margin-top: auto;
}
.bcc-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--red); margin-bottom: 4px; }
.bcc-amount { font-size: clamp(22px, 3vw, 34px); font-weight: 950; color: #dc2626; line-height: 1; }
.ba-gain-card {
  background: var(--green-bg); border: 1px solid var(--green-b); border-radius: 12px; padding: 14px 16px;
  margin-top: auto;
}
.bgc-label  { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--green); margin-bottom: 4px; }
.bgc-amount { font-size: clamp(18px, 2.5vw, 26px); font-weight: 950; color: #fff; line-height: 1.1; }

/* ━━ SHARED SECTION LABELS ━━ */
.section-label {
  display: inline-block; margin-bottom: 14px;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
  color: var(--purple-l);
}
.section-h2 {
  margin: 0 0 36px; font-size: clamp(26px, 4vw, 46px); line-height: 1.08; font-weight: 900; color: #fff;
}
.red-text    { color: var(--red); }
.purple-text { color: var(--purple-l); }

/* ━━ PAIN ━━ */
.pain-section { padding: 56px 0; border-top: 1px solid var(--ld); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pain-card {
  background: var(--dark-3); border: 1px solid var(--ld); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.pain-num {
  font-size: 11px; font-weight: 900; letter-spacing: .08em;
  color: var(--red); background: var(--red-bg); border: 1px solid var(--red-b);
  border-radius: 6px; padding: 3px 8px; width: fit-content;
}
.pain-card h3 { margin: 0; font-size: 16px; font-weight: 900; color: #fff; line-height: 1.2; }
.pain-card p  { margin: 0; color: var(--td); font-size: 14px; line-height: 1.55; }

/* ━━ HOW IT WORKS ━━ */
.how-section { padding: 56px 0; border-top: 1px solid var(--ld); }
.steps-grid {
  display: grid; grid-template-columns: 1fr 32px 1fr 32px 1fr; gap: 0; align-items: center;
}
.step-card {
  background: var(--dark-3); border: 1px solid var(--ld); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.step-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--purple); color: #fff; font-size: 16px; font-weight: 950;
  display: grid; place-items: center;
}
.step-card h3 { margin: 0; font-size: 16px; font-weight: 900; color: #fff; }
.step-card p  { margin: 0; color: var(--td); font-size: 14px; line-height: 1.5; }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--td);
}

/* ━━ RESULT UI PREVIEW ━━ */
.result-preview-section { padding: 56px 0; border-top: 1px solid var(--ld); }
.result-ui-demo {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
  border: 1px solid var(--ld); border-radius: 20px; overflow: hidden;
  background: var(--dark-3);
}
.rud-inputs {
  padding: 22px; display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--ld);
}
.rud-input-label {
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em;
  color: var(--td); margin-bottom: 10px;
}
.rud-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px; border-radius: 8px; gap: 8px;
  background: var(--dark-4); margin-bottom: 2px;
  font-size: 13px; color: var(--ts); font-weight: 700;
}
.rud-row span:first-child { flex: 1; }
.rud-row strong { font-weight: 900; color: #fff; }
.rud-row.dim { opacity: .45; }
.rud-right { display: flex; align-items: center; gap: 8px; }
.rud-dur {
  font-size: 11px; color: var(--td); background: var(--dark);
  border: 1px solid var(--ld); border-radius: 6px; padding: 3px 8px; white-space: nowrap;
}
.tog-on, .tog-off {
  width: 32px; height: 17px; border-radius: 999px; flex-shrink: 0; position: relative;
}
.tog-on  { background: var(--purple); }
.tog-off { background: var(--g400); }
.tog-on::after, .tog-off::after {
  content: ''; position: absolute; top: 2px; width: 13px; height: 13px;
  border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.tog-on::after  { right: 2px; }
.tog-off::after { left: 2px; }
.rud-output { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.rud-out-hd { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rud-check {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: var(--green-bg); border: 1px solid var(--green-b);
  display: grid; place-items: center; color: var(--green-d); font-size: 14px; font-weight: 900;
}
.rud-out-hd strong { display: block; font-size: 14px; color: #fff; }
.rud-out-hd small  { display: block; font-size: 11px; color: var(--td); }
.rud-out-hd > .rud-ready { margin-left: auto; }
.rud-ready {
  font-size: 11px; font-weight: 800; color: var(--green-d);
  background: var(--green-bg); border: 1px solid var(--green-b);
  border-radius: 999px; padding: 3px 10px; white-space: nowrap;
}
.rud-total-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--dark-4); border: 1px solid var(--ld); border-radius: 12px;
  padding: 12px 16px;
}
.rud-total-row > span { font-size: 14px; font-weight: 800; color: var(--td); }
.rud-total-num { font-size: 32px; font-weight: 950; color: var(--green); line-height: 1; }
.rud-bd { display: flex; flex-direction: column; gap: 1px; }
.rud-bd-row {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 7px 10px; background: var(--dark-4); border-radius: 7px; font-size: 12px;
}
.rud-bd-row span   { color: var(--td); flex: 1; }
.rud-bd-row strong { color: #fff; font-weight: 900; white-space: nowrap; }
.rud-reply {
  background: rgba(34,197,94,.07); border: 1px solid var(--green-b); border-radius: 12px;
  padding: 13px 15px; margin-top: auto;
}
.rud-reply-hd { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; color: var(--green-d); margin-bottom: 6px; }
.rud-reply-hd span { font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--td); margin-left: 6px; }
.rud-reply p { margin: 0 0 10px; font-size: 13px; color: var(--ts); line-height: 1.5; font-style: italic; }
.rud-copy-btn {
  min-height: 34px; border-radius: 8px; background: var(--green); color: #fff; border: 0;
  font-size: 12px; font-weight: 800; padding: 6px 14px; cursor: pointer; opacity: .6;
}

/* ━━ AUDIENCE ━━ */
.audience-section { padding: 56px 0; border-top: 1px solid var(--ld); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.audience-card {
  background: var(--dark-3); border: 1px solid var(--ld); border-radius: 16px;
  padding: 22px; display: flex; flex-direction: column; gap: 8px;
}
.aud-icon { font-size: 26px; }
.audience-card strong { display: block; font-size: 16px; font-weight: 900; color: #fff; }
.audience-card p { margin: 0; color: var(--td); font-size: 14px; line-height: 1.5; }

/* ━━ CTA BANNER ━━ */
.cta-banner-wrap { padding: 56px 0; border-top: 1px solid var(--ld); }
.cta-banner {
  background: linear-gradient(130deg, #120e2a 0%, #1a0f3a 50%, #0f1220 100%);
  border: 1px solid var(--purple-b); border-radius: 24px;
  padding: 40px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-banner-copy h2 { margin: 0 0 8px; font-size: clamp(22px, 3.5vw, 36px); font-weight: 950; color: #fff; }
.cta-banner-copy p  { margin: 0; color: var(--td); font-size: 15px; line-height: 1.5; max-width: 440px; }
.cta-banner-btns { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.btn-cta-banner {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; border-radius: 13px; background: var(--purple); color: #fff; border: 0;
  padding: 14px 32px; font-weight: 900; font-size: 16px; cursor: pointer;
  white-space: nowrap; transition: background .15s;
}
.btn-cta-banner:hover { background: var(--purple-h); }
.cta-banner-trust { font-size: 12px; color: var(--td); font-weight: 700; }

/* ━━ PRICING SECTION ━━ */
.pricing-section { padding: 52px 0 36px; border-top: 1px solid var(--ld); }
.pricing-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }
.pricing-head h2 { margin: 0; font-size: clamp(26px, 3.8vw, 42px); color: #fff; }
.pricing-head p  { margin: 0; color: var(--td); font-size: 15px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 10px;
}
.price-card {
  border: 1px solid var(--ld); border-radius: 16px;
  background: var(--dark-3); padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.price-card > strong { font-size: 16px; font-weight: 900; color: #fff; }
.price-card p { margin: 0; color: var(--td); font-size: 13px; line-height: 1.45; flex: 1; }
.price-amount { font-size: 36px; font-weight: 950; line-height: 1; color: #fff; }
.price-card.featured { border-color: var(--purple-b); background: linear-gradient(160deg, #120e2a, #0f1220); }
.price-card.featured .price-amount { color: var(--purple-l); }
.featured-pill {
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em;
  color: var(--purple-l); background: var(--purple-d); border: 1px solid var(--purple-b);
  border-radius: 999px; padding: 3px 10px; width: fit-content;
}
.btn-view {
  display: flex; align-items: center; justify-content: center;
  min-height: 40px; border-radius: 10px;
  background: var(--dark-4); color: #fff; border: 1px solid var(--ld);
  font-size: 13px; font-weight: 800; cursor: pointer; transition: background .15s;
}
.btn-view:hover { background: var(--dark-3); }
.price-card.featured .btn-view { background: var(--purple); border-color: var(--purple); }
.price-card.featured .btn-view:hover { background: var(--purple-h); }
.bundle-card {
  border: 1px solid var(--ld); border-radius: 16px; background: var(--dark-3);
  padding: 22px 28px; display: flex; align-items: center; gap: 24px; justify-content: space-between;
  flex-wrap: wrap;
}
.bundle-card-copy > strong { font-size: 19px; font-weight: 900; color: #fff; display: block; }
.bundle-card-copy > p { margin: 4px 0 0; color: var(--td); font-size: 13px; }
.bundle-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-bundle {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; border-radius: 11px;
  background: var(--purple); color: #fff; border: 0;
  font-size: 14px; font-weight: 900; padding: 11px 24px;
  cursor: pointer; white-space: nowrap; transition: background .15s;
}
.btn-bundle:hover { background: var(--purple-h); }
.legal-notice {
  margin-top: 14px; border: 1px solid rgba(124,58,237,.18);
  background: rgba(124,58,237,.07); color: var(--td); border-radius: 12px;
  padding: 13px 16px; line-height: 1.45; font-size: 13px;
}

/* ━━ FAQ SECTION ━━ */
.faq-section { padding: 44px 0 64px; border-top: 1px solid var(--ld); }
.faq-section h2 { margin: 0 0 18px; font-size: clamp(26px, 3.6vw, 40px); color: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
details {
  border: 1px solid var(--ld); border-radius: 12px;
  background: var(--dark-3); padding: 15px 18px;
}
summary {
  cursor: pointer; font-weight: 850; color: #fff;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 17px; color: var(--td); font-weight: 300; flex-shrink: 0; }
details[open] summary::after { content: "−"; }
details p { margin: 11px 0 0; color: var(--td); line-height: 1.5; font-size: 14px; }

/* ━━ ACCESS PAGE ━━ */
.access-wrap {
  min-height: calc(100vh - 120px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; padding: 52px 0 90px;
}
.access-copy .eyebrow {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--purple-l); display: block; margin-bottom: 12px;
}
.access-copy h1 { font-size: clamp(32px, 4.8vw, 60px); line-height: 1.04; margin: 0 0 16px; color: #fff; }
.access-copy p { color: var(--ts); line-height: 1.55; font-size: 16px; max-width: 420px; }
.access-panel {
  border: 1px solid var(--ld); border-radius: 20px;
  background: var(--dark-3); box-shadow: var(--sh-lg); padding: 28px;
}
.form-grid { display: grid; gap: 16px; }
label { display: grid; gap: 6px; }
label span, .label-text { display: block; color: var(--td); font-size: 13px; font-weight: 780; }
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.segmented button {
  min-height: 44px; border: 1px solid var(--ld); border-radius: 10px;
  background: var(--dark-4); color: var(--ts); font-weight: 800; cursor: pointer; transition: all .15s;
}
.segmented button.active { background: var(--purple); border-color: var(--purple); color: #fff; }
input[type="text"], input[type="email"], input[type="password"] {
  width: 100%; min-height: 50px; border: 1px solid var(--ld); border-radius: 10px;
  padding: 12px 14px; background: var(--dark-4); color: #fff;
}
input::placeholder { color: var(--td); }
input:focus { outline: 2px solid var(--purple); outline-offset: -2px; border-color: transparent; }
.btn-submit {
  min-height: 50px; border-radius: 12px; background: var(--purple); color: #fff;
  font-weight: 900; font-size: 16px; border: 0; cursor: pointer; width: 100%;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.btn-submit:hover { background: var(--purple-h); }
.btn-submit.secondary {
  background: transparent; border: 1px solid var(--ld); color: #fff;
}
.btn-submit.secondary:hover { background: var(--dark-4); }
.status { min-height: 22px; font-size: 14px; color: var(--td); line-height: 1.4; }
.status.error { color: var(--red); }
.status.ok    { color: var(--green); }
.small { color: var(--td); font-size: 12px; line-height: 1.45; overflow-wrap: anywhere; }

/* ━━ PRODUCT LANDING PAGES (en/ he/ es/) ━━ */
.product-page { background: var(--dark); min-height: 100vh; }
.product-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 56px 0;
}
.product-copy .eyebrow {
  display: block; font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--purple-l); margin-bottom: 12px;
}
.product-copy h1 { margin: 0 0 16px; font-size: clamp(30px, 4.5vw, 54px); line-height: 1.04; color: #fff; }
.product-copy .lead { margin: 0 0 24px; color: var(--ts); font-size: 17px; line-height: 1.55; }
.product-copy .microcopy { margin-top: 12px; color: var(--td); font-size: 13px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; border-radius: 11px; background: var(--purple); color: #fff; border: 0;
  padding: 12px 22px; font-weight: 900; font-size: 15px; cursor: pointer; transition: background .15s;
}
.btn-primary:hover { background: var(--purple-h); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; border-radius: 11px; background: transparent; color: var(--ts);
  border: 1px solid var(--ld); padding: 12px 22px; font-weight: 800; font-size: 15px;
  cursor: pointer; transition: background .15s;
}
.btn-secondary:hover { background: var(--dark-3); }
.product-shot {
  border: 1px solid var(--ld); border-radius: 18px;
  overflow: hidden; box-shadow: var(--sh-lg); background: var(--dark-3);
}
.product-shot img { width: 100%; }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 0 48px; }
.feat-card {
  border: 1px solid var(--ld); border-radius: 14px; background: var(--dark-3); padding: 18px;
}
.feat-card strong { display: block; margin-bottom: 6px; font-size: 15px; color: #fff; }
.feat-card p { margin: 0; color: var(--td); line-height: 1.45; font-size: 14px; }
.page-notice {
  margin: 0 0 40px; border: 1px solid var(--purple-b); background: var(--purple-d);
  color: var(--td); border-radius: 12px; padding: 13px 16px; line-height: 1.45; font-size: 13px;
}

/* ━━ FOOTER ━━ */
.site-footer { padding: 24px 0 40px; border-top: 1px solid var(--ld); color: var(--td); font-size: 13px; }

/* ━━ RESPONSIVE ━━ */
@media (max-width: 1000px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-divider { padding: 4px 0; }
  .ba-arrow { transform: rotate(90deg); }
  .steps-grid { grid-template-columns: 1fr; gap: 10px; }
  .step-arrow { transform: rotate(90deg); justify-content: flex-start; padding-left: 12px; }
  .result-ui-demo { grid-template-columns: 1fr; }
  .rud-inputs { border-right: 0; border-bottom: 1px solid var(--ld); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 28px; }
  .cta-banner-btns { align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .product-hero { grid-template-columns: 1fr; gap: 28px; }
  .access-wrap { grid-template-columns: 1fr; min-height: auto; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .bundle-card { flex-direction: column; align-items: flex-start; }
  .pain-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .shell { width: calc(100% - 28px); }
  .lp-hero { padding: 52px 0 48px; }
  .hero-h1 { font-size: clamp(30px, 9vw, 48px); }
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; }
  .audience-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; min-height: auto; padding: 14px 0; gap: 10px; }
  .nav-links { width: 100%; }
  .actions { flex-direction: column; }
  .actions a, .actions button { width: 100%; }
  .cta-banner { padding: 24px 20px; }
  .btn-cta-banner { width: 100%; }
  .bundle-right { flex-direction: column; align-items: flex-start; }
}
