:root {
  --bg:           #080604;
  --bg2:          #0f0c08;
  --surface:      #161009;   /* matches the app's dark --bg2 — a real step up from --bg */
  --field:        #1e1810;   /* matches the app's dark --bg3 — for inputs specifically */
  --gold:         #C9943A;
  --gold-b:       #E0A015;
  --field-border: rgba(201,148,58,0.35);  /* gold-tinted, ~3.2:1 on --field */
  --focus-ring:   rgba(224,160,21,0.35);
  --cream:        #FAF7F0;
  --text1:        #f5efe2;   /* was missing — matches the app's dark --text1 */
  --text2:        rgba(250,247,240,0.78);
  --text3:        rgba(250,247,240,0.50);
  --radius:       8px;
  color-scheme: dark;
}

/* ── CALCULATOR / TOOL-PAGE COMPONENTS ──
   Shared by retirement-calculator.html and xirr-calculator.html — a real
   elevated surface (--field, a step above --surface/--bg2) instead of the
   near-invisible opacity deltas these pages used before, gold-tinted
   borders (matching every other page on the site instead of neutral gray),
   and DM Sans for UI text (Cormorant stays reserved for big result numbers,
   same rule the app itself follows). See specs/mandala-website-design-spec.md. */
.calc-card {
  background: var(--surface);
  border: 1px solid var(--field-border);
  border-radius: var(--radius);
}
.calc-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--field);
  border: 1px solid var(--field-border);
  border-radius: 8px;
  color: var(--text1);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.calc-input--sm { padding: 9px 10px; font-size: 14px; border-radius: 6px; }
.calc-input:focus {
  outline: none;
  border-color: var(--gold-b);
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.calc-input::placeholder { color: var(--text3); }
.calc-preset {
  padding: 10px 4px;
  background: var(--field);
  border: 1px solid var(--field-border);
  border-radius: 8px;
  color: var(--text2);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  line-height: 1.35;
  transition: background .15s, border-color .15s, color .15s;
}
.calc-preset:hover { border-color: var(--gold); }
.calc-preset span { font-size: 11px; font-weight: 400; opacity: 0.75; }
.calc-preset--active { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.calc-preset--active span { opacity: 0.85; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(8,6,4,0.95), transparent);
  transition: background 0.3s;
}
nav.nav-scrolled {
  background: rgba(8,6,4,0.97);
  border-bottom: 1px solid rgba(201,148,58,0.1);
}
.nav-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-b) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 201;
}

/* ── NAV: Resources dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 14px;
  padding: 0;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover { color: var(--cream); }
.nav-dropdown-toggle .caret { font-size: 10px; transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-toggle .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,6,4,0.98);
  border: 1px solid rgba(201,148,58,0.15);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 210px;
  list-style: none;
  flex-direction: column;
  z-index: 150;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 22px;
  white-space: nowrap;
  font-size: 14px;
}

/* ── HERO ── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#story-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,247,240,0.28);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(201,148,58,0.6), transparent);
  animation: spulse 2.2s ease infinite;
}
@keyframes spulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.8); }
  50%       { opacity: 1;    transform: scaleY(1); }
}

/* ── SECTIONS ── */
section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.lead {
  font-size: 19px;
  color: var(--text2);
  max-width: 640px;
  line-height: 1.75;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.feature {
  border-left: 1px solid rgba(201,148,58,0.25);
  padding-left: 24px;
}
.feature-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.75;
}
.section-cta { margin-top: 52px; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-b); }

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.4;
}

/* ── FIVE PILLARS ── */
.pillar-row {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(201,148,58,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar {
  flex: 1;
  padding: 36px 22px;
  border-right: 1px solid rgba(201,148,58,0.12);
  text-align: center;
}
.pillar:last-child { border-right: none; }
.pillar-center { background: rgba(201,148,58,0.04); }
.pillar-sym {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.pillar-sym-c {
  color: var(--gold-b);
  font-size: 32px;
}
.pillar-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pillar-name-c { color: var(--gold-b); }
.pillar p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
}
.pillar-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
}
.sanskrit {
  font-family: 'Noto Serif Devanagari', 'Noto Serif', serif;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
}
.sanskrit-tr {
  font-style: italic;
  font-size: 14px;
  color: var(--text2);
}

/* ── SCREENSHOTS ── */
.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.ss-card {
  background: var(--bg2);
  border: 1px solid rgba(201,148,58,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.ss-card:hover {
  border-color: rgba(201,148,58,0.4);
  transform: translateY(-2px);
}
.ss-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 18px 10px;
}
.ss-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(201,148,58,0.04);
  overflow: hidden;
}
.ss-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ss-card:hover .ss-img-wrap img { transform: scale(1.02); }
.ss-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
  padding: 14px 18px 20px;
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,6,4,0.95);
  z-index: 500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}
#lightbox.open { display: flex; }
#lb-img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
  cursor: default;
}
#lb-caption {
  color: rgba(250,247,240,0.5);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
#lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(250,247,240,0.45);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
#lb-close:hover { color: var(--cream); }

/* ── SECONDARY FEATURES ── */
#also-included {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.also-h {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--text2);
  margin-bottom: 40px;
  line-height: 1.3;
}
.also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(201,148,58,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.also-item {
  padding: 24px 22px;
  border-right: 1px solid rgba(201,148,58,0.1);
  border-bottom: 1px solid rgba(201,148,58,0.1);
}
.also-item:nth-child(3n) { border-right: none; }
.also-item:nth-last-child(-n+3) { border-bottom: none; }
.also-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.also-item p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── MANDALA PERSONAL ── */
#personal {
  padding: 80px 48px;
}
.personal-card {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: var(--bg2);
  border: 1px solid rgba(201,148,58,0.2);
  border-radius: 16px;
}
.personal-sym {
  font-size: 38px;
  color: var(--gold-b);
  margin-bottom: 20px;
  display: block;
}
.personal-h {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 16px;
}
.personal-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 24px;
  border: 1px solid rgba(201,148,58,0.35);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LOGIN CARDS ── */
#login {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 80px 48px;
}
.login-card {
  background: var(--bg2);
  border: 1px solid rgba(201,148,58,0.2);
  border-radius: 16px;
  padding: 48px 40px;
  width: 320px;
  text-align: center;
  text-decoration: none;
  color: var(--cream);
  transition: border-color 0.2s, transform 0.2s;
}
.login-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.login-card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--gold);
}
.login-card h3 { font-size: 22px; margin-bottom: 10px; }
.login-card p  { font-size: 15px; color: var(--text2); line-height: 1.6; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(250,247,240,0.08);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text3);
  font-size: 14px;
}
footer a { color: var(--text3); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-row   { flex-wrap: wrap; }
  .pillar       { flex: 0 0 33.33%; border-bottom: 1px solid rgba(201,148,58,0.12); }
  .pillar:nth-child(3n) { border-right: none; }
  .ss-grid      { grid-template-columns: repeat(2, 1fr); }
  .also-grid    { grid-template-columns: repeat(2, 1fr); }
  .also-item:nth-child(3n)      { border-right: 1px solid rgba(201,148,58,0.1); }
  .also-item:nth-child(2n)      { border-right: none; }
  .also-item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(201,148,58,0.1); }
  .also-item:last-child { border-bottom: none; }
}

/* nav switches to the full-screen hamburger menu earlier than other
   content (1080px, not 640px) — 9 top-level items (Platform, Compliance,
   Pricing, Personal, XIRR Calculator, Retirement Calculator, FAQ, Resources,
   Login) don't fit a horizontal bar on laptop-width windows below that. */
@media (max-width: 1080px) {
  nav { padding: 16px 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,6,4,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; letter-spacing: 2px; white-space: normal; }
  .nav-dropdown-toggle { font-size: 18px; letter-spacing: 2px; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: none;
    border: none;
    padding: 0;
    gap: 24px;
    min-width: 0;
  }
  .nav-dropdown-menu a { padding: 0; font-size: 16px; text-align: center; }
}

@media (max-width: 640px) {
  section { padding: 72px 24px; }
  #personal { padding: 60px 24px; }
  .personal-card { padding: 40px 24px; }
  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
  .pillar { flex: 0 0 100%; border-right: none; text-align: left; padding: 28px 20px; }
  .pillar:last-child { border-bottom: none; }
  .ss-grid { grid-template-columns: 1fr; }
  .also-grid { grid-template-columns: 1fr; }
  .also-item { border-right: none !important; }
  .also-item:last-child { border-bottom: none; }
  #also-included { padding: 60px 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 24px; }
  #login { padding: 60px 24px; }
  .login-card { width: 100%; max-width: 380px; padding: 36px 28px; }
  .video-frame-wrap { border-radius: 8px; }
  .demo-box { padding: 32px 24px; }

  /* readability bumps — smallest text classes felt cramped on phones */
  .section-label { font-size: 12px; letter-spacing: 3px; }
  .pillar p { font-size: 16px; }
  .also-item p { font-size: 15px; }
  .video-desc { font-size: 16px; line-height: 1.65; }
  .video-coming { font-size: 12px; }
}

/* ── btn-primary as <button> ── */
button.btn-primary {
  font-family: 'Cormorant Garamond', Georgia, serif;
  border: none;
  cursor: pointer;
}

/* ── PRODUCT VIDEO ── */
#product-video { margin-top: 56px; }
.video-desc {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 28px;
  max-width: 580px;
  line-height: 1.7;
}
.video-frame-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,148,58,0.22);
  background: var(--bg2);
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
}
.video-placeholder:hover .video-play-icon { color: var(--gold); }
.video-play-icon {
  font-size: 52px;
  color: rgba(201,148,58,0.35);
  transition: color 0.2s;
  line-height: 1;
}
.video-coming {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
}
.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── DEMO MODAL (also used by #diy-modal — same overlay/backdrop, own submit handlers in index.html) ── */
#demo-modal, #diy-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,6,4,0.92);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
#demo-modal.open, #diy-modal.open { display: flex; }
.demo-box {
  background: #100d09;
  border: 1px solid rgba(201,148,58,0.28);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 520px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.demo-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: var(--text3); font-size: 24px;
  cursor: pointer; line-height: 1; padding: 4px 8px;
  transition: color 0.2s;
}
.demo-close:hover { color: var(--cream); }
.demo-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.demo-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}
.demo-box .demo-sub {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 32px;
  line-height: 1.6;
}
.demo-field {
  margin-bottom: 18px;
}
.demo-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 7px;
}
.demo-field input,
.demo-field textarea {
  width: 100%;
  background: rgba(250,247,240,0.04);
  border: 1px solid rgba(201,148,58,0.2);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.demo-field input:focus,
.demo-field textarea:focus {
  border-color: rgba(201,148,58,0.55);
}
.demo-field textarea {
  resize: vertical;
  min-height: 80px;
}
.demo-submit {
  margin-top: 8px;
  width: 100%;
}
.demo-error {
  font-size: 14px;
  color: #f87171;
  margin-top: 12px;
  display: none;
}
.demo-success {
  text-align: center;
  padding: 24px 0;
  display: none;
}
.demo-success-icon { font-size: 40px; margin-bottom: 16px; }
.demo-success h4 { font-size: 22px; margin-bottom: 10px; }
.demo-success p  { font-size: 15px; color: var(--text2); line-height: 1.6; }

/* ── TRUST STRIP ── */
#trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  padding: 18px 48px;
  background: rgba(201,148,58,0.04);
  border-top: 1px solid rgba(201,148,58,0.12);
  border-bottom: 1px solid rgba(201,148,58,0.12);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text3);
}
.trust-dot { color: rgba(201,148,58,0.35); }

/* ── MFD SECTION ── */
#for-distributors { padding: 100px 48px; max-width: 1100px; margin: 0 auto; }
.mfd-compliance {
  margin-top: 40px;
  padding: 16px 20px;
  border-left: 2px solid rgba(201,148,58,0.25);
  font-size: 13px;
  color: var(--text3);
  line-height: 1.75;
  max-width: 640px;
}

/* ── PRICING ── */
#pricing { padding: 100px 48px; max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
  align-items: start;
}
.price-card {
  background: var(--bg2);
  border: 1px solid rgba(201,148,58,0.18);
  border-radius: 12px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.price-card--popular {
  border-color: rgba(201,148,58,0.55);
  background: rgba(201,148,58,0.06);
}
.price-card--personal {
  border-style: dashed;
  opacity: 0.72;
}
.price-popular-label {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
}
.price-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin: 4px 0;
}
.price-period {
  font-size: 15px;
  font-weight: 400;
  color: var(--text3);
}
.price-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  flex: 1;
}
.price-cta {
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  background: rgba(201,148,58,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,148,58,0.3);
  transition: background 0.2s;
}
.price-cta:hover { background: rgba(201,148,58,0.2); }
.price-cta--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.price-cta--gold:hover { background: var(--gold-b); border-color: var(--gold-b); }
.price-cta--soon {
  cursor: default;
  opacity: 0.55;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  border: 1px solid rgba(250,247,240,0.08);
  margin-top: 16px;
}
.pricing-note {
  margin-top: 28px;
  font-size: 12px;
  color: var(--text3);
  letter-spacing: 0.5px;
}

/* ── COMPARISON TABLE ── */
#comparison { padding: 100px 48px; max-width: 1100px; margin: 0 auto; }
.cmp-wrap { overflow-x: auto; margin-top: 48px; }
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.cmp-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text3);
  border-bottom: 1px solid rgba(201,148,58,0.2);
}
.cmp-table thead .cmp-mandala {
  color: var(--gold);
}
.cmp-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(201,148,58,0.08);
  color: var(--text2);
  vertical-align: middle;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody td:first-child {
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.3px;
}
.cmp-mandala {
  color: var(--gold);
  font-weight: 600;
}
.cmp-warn { color: var(--text3); }

/* ── MANDALA SVATVA / PERSONAL ── */
#personal { padding: 100px 48px; max-width: 1100px; margin: 0 auto; }
.svatva-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(201,148,58,0.18);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 56px;
}
.svatva-feat {
  padding: 32px 28px;
  border-right: 1px solid rgba(201,148,58,0.12);
  border-bottom: 1px solid rgba(201,148,58,0.12);
}
.svatva-feat:nth-child(3n) { border-right: none; }
.svatva-feat:nth-last-child(-n+3) { border-bottom: none; }
.svatva-sym {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.svatva-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.svatva-feat p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
}
.svatva-cta-wrap {
  text-align: center;
  padding: 48px 0 0;
}
.svatva-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 28px;
}
.svatva-badge {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(201,148,58,0.35);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FAQ ── */
#faq { padding: 100px 48px; max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid rgba(201,148,58,0.12);
}
.faq-item:first-child { border-top: 1px solid rgba(201,148,58,0.12); }
.faq-q {
  list-style: none;
  padding: 20px 4px;
  font-size: 17px;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.5;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
details[open] .faq-q::after {
  content: '−';
}
.faq-a {
  padding: 0 4px 20px;
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
}

/* ── RESPONSIVE — new sections ── */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card--personal { grid-column: span 1; }
  .svatva-grid { grid-template-columns: repeat(2, 1fr); }
  .svatva-feat:nth-child(3n) { border-right: 1px solid rgba(201,148,58,0.12); }
  .svatva-feat:nth-child(2n) { border-right: none; }
  .svatva-feat:nth-last-child(-n+3) { border-bottom: 1px solid rgba(201,148,58,0.12); }
  .svatva-feat:last-child { border-bottom: none; }
  #for-distributors { padding: 72px 48px; }
  #comparison { padding: 72px 48px; }
  #pricing { padding: 72px 48px; }
  #faq { padding: 72px 48px; }
  #personal { padding: 72px 48px; }
}
@media (max-width: 640px) {
  #trust-strip { padding: 14px 20px; gap: 8px 12px; font-size: 10px; letter-spacing: 1.2px; }
  .trust-dot { display: none; }
  #trust-strip span:not(.trust-dot) { display: block; width: 100%; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--popular .price-popular-label { position: static; transform: none; display: inline-block; margin-bottom: 8px; }
  .price-card--popular { padding-top: 20px; }
  .cmp-table { font-size: 13px; }
  .cmp-table thead th, .cmp-table tbody td { padding: 12px 14px; }
  .svatva-grid { grid-template-columns: 1fr; }
  .svatva-feat { border-right: none !important; }
  .svatva-feat:last-child { border-bottom: none; }
  .svatva-feat:nth-last-child(-n+3) { border-bottom: 1px solid rgba(201,148,58,0.12); }
  #for-distributors { padding: 60px 24px; }
  #comparison { padding: 60px 24px; }
  #pricing { padding: 60px 24px; }
  #faq { padding: 60px 24px; max-width: 100%; }
  #personal { padding: 60px 24px; }
  .faq-q { font-size: 15px; padding: 16px 4px; }
  .faq-a { font-size: 15px; }
}
