/* ════════════════════════════════════════════════
   RYZONE v2 — Professional redesign
   Fonts: Plus Jakarta Sans · Inter
   Palette: Pure violet — no amber mixing
   ════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #100810; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; }

/* ── Design tokens ── */
:root {
  --v50:  #fdf5fd;
  --v100: #f5e5f5;
  --v200: #edcced;
  --v300: #e9b1e1;
  --v400: #d480d4;
  --v500: #b85ab8;
  --v600: #a048a0;
  --v700: #8b448b;
  --v800: #6f356f;
  --v900: #552756;
  --v950: #381838;

  --text:   #100810;
  --text2:  #3d1f3d;
  --muted:  #9b819b;
  --border: #eadcea;
  --bg2:    #fef8fe;
  --bg3:    #f5eaf5;
  --white:  #ffffff;
  --success:#10B981;

  --font-h: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'Inter', sans-serif;

  --max-w: 1200px;
  --pad:   1.5rem;
  --sec:   6.5rem;

  --r4:  4px;  --r6:  6px;  --r8:  8px;
  --r12: 12px; --r16: 16px; --r24: 24px;
  --rf:  9999px;

  --sh1: 0 1px 3px rgba(139,68,139,.07),0 1px 2px rgba(0,0,0,.04);
  --sh2: 0 4px 12px rgba(139,68,139,.1), 0 2px 4px rgba(0,0,0,.05);
  --sh3: 0 8px 24px rgba(139,68,139,.12),0 4px 8px rgba(0,0,0,.06);
  --sh4: 0 20px 48px rgba(139,68,139,.14),0 8px 16px rgba(0,0,0,.07);
  --glow:0 0 40px rgba(139,68,139,.4);

  --t: 150ms ease;
  --ts:300ms ease;
}

/* ── Layout helpers ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--sec) 0; }
.section--tinted { background: var(--bg2); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font-h);
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.section-header p { font-size: 1.0625rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.75; }

/* Chip label */
.chip {
  display: inline-block;
  padding: 4px 12px;
  background: var(--v50);
  color: var(--v700);
  border: 1px solid var(--v200);
  border-radius: var(--rf);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}


/* ════════════════════════════════════════════════
   HEADER  —  dark brand translucent
   ════════════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  height: 64px;
  background: rgba(26, 5, 32, 0.52);
  border-bottom: 1px solid rgba(233, 177, 225, 0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: background var(--ts), box-shadow var(--ts), border-color var(--ts);
}
.header.scrolled {
  background: rgba(26, 5, 32, 0.85);
  border-bottom-color: rgba(233, 177, 225, 0.18);
  box-shadow: 0 1px 0 rgba(139,68,139,.2), 0 4px 24px -4px rgba(0,0,0,.4);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  gap: 1.5rem;
}

/* Logo — left column */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo span { color: var(--v300); }

/* Nav — center column */
.nav-inner nav { justify-self: center; }
#nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
#nav-links a {
  display: block;
  padding: 6px 13px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  border-radius: var(--r6);
  transition: color var(--t), background var(--t);
}
#nav-links a:hover,
#nav-links a.active-link { color: rgba(255,255,255,.95); background: rgba(255,255,255,.08); }
#nav-links a.active-link { color: var(--v300); font-weight: 600; }

/* Actions — right column */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.nav-text-link {
  padding: 7px 12px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  border-radius: var(--r6);
  transition: color var(--t), background var(--t);
}
.nav-text-link:hover { color: rgba(255,255,255,.95); background: rgba(255,255,255,.08); }

.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--v300);
  color: var(--v950);
  border-radius: var(--r8);
  font-size: .875rem;
  font-weight: 700;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.btn-nav-primary:hover {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(233,177,225,.35);
  transform: translateY(-1px);
}

/* Mobile toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--r6);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all var(--t);
}


/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(155deg, #1a0520 0%, #2e0a2e 45%, #1a0a1a 100%);
  padding-top: 64px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 65% 90% at 12% 55%, rgba(139,68,139,.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 88% 25%, rgba(184,90,184,.15) 0%, transparent 55%);
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem var(--pad) 6rem;
  width: 100%;
  gap: 4rem;
}

/* Hero text */
.hero-text { flex: 1; max-width: 640px; }

/* availability pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(184,90,184,.14);
  border: 1px solid rgba(212,128,212,.25);
  border-radius: var(--rf);
  color: var(--v300);
  font-size: .8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeDown .6s ease both;
}
.pill-dot {
  width: 6px; height: 6px;
  background: var(--v400);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.hero-text h1 {
  font-family: var(--font-h);
  font-size: clamp(2.625rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -.035em;
  margin-bottom: 1.5rem;
  animation: fadeUp .7s ease .1s both;
}

/* typewriter text — gradient */
.typewriter {
  display: inline-block;
  min-height: 2.2em; /* always reserves 2 lines — prevents layout jump */
  vertical-align: top;
  background: linear-gradient(120deg, var(--v300) 0%, var(--v400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-right: 3px solid var(--v400);
  padding-right: 3px;
  animation: cursor .85s step-end infinite;
}
@keyframes cursor { 0%,100%{border-color:var(--v400)} 50%{border-color:transparent} }

.hero-byline {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
  letter-spacing: .01em;
  animation: fadeUp .7s ease .15s both;
}
.hero-byline strong {
  color: var(--v300);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  animation: fadeUp .7s ease .2s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp .7s ease .3s both;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--v600);
  color: var(--white);
  border-radius: var(--r12);
  font-size: 1rem;
  font-weight: 700;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
  box-shadow: 0 2px 12px rgba(139,68,139,.35);
}
.btn-primary-hero:hover {
  background: var(--v700);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 22px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r12);
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.22);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: fadeUp .7s ease .44s both;
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-n {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1;
}
.stat span:last-child { font-size: .78rem; color: rgba(255,255,255,.4); letter-spacing: .02em; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* Float cards */
.float-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  align-self: center;
}

.fcard {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r16);
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: floatY 6s ease-in-out infinite;
  transition: transform .25s ease;
}
.fcard-2 { animation-delay: -2.1s; }
.fcard-3 { animation-delay: -4.1s; }

@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.fcard-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139,68,139,.25);
  border: 1px solid rgba(184,90,184,.2);
  border-radius: var(--r8);
  color: var(--v300);
  flex-shrink: 0;
}
.fcard p { line-height: 1.3; }
.fcard-label { font-size: .7rem; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.fcard-val   { font-size: .9375rem; font-weight: 700; color: var(--white); }
.fcard-badge {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--rf);
  flex-shrink: 0;
  background: rgba(184,90,184,.2);
  color: var(--v300);
  border: 1px solid rgba(184,90,184,.25);
}
.fcard-badge--up  { background: rgba(16,185,129,.15); color: #6EE7B7; border-color: rgba(16,185,129,.25); }
.fcard-badge--ok  { background: rgba(139,68,139,.25); color: var(--v300); }

/* Hero wave */
.hero-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: auto;
}
.hero-wave svg { width: 100%; height: 80px; }


/* ════════════════════════════════════════════════
   WHY SECTION
   ════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 16px;
}

.why-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r16);
  background: var(--white);
  transition: box-shadow var(--ts), border-color var(--ts), transform var(--ts);
}
.why-card:hover {
  box-shadow: var(--sh3);
  border-color: var(--v300);
  transform: translateY(-3px);
}
.why-card--center {
  background: linear-gradient(155deg, var(--v50) 0%, #fff 100%);
  border-color: var(--v200);
  box-shadow: var(--sh1);
  padding: 2.25rem;
}
.why-card--center:hover { border-color: var(--v400); }

.wcard-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r12);
  margin-bottom: 1.25rem;
}
.wcard-icon--a { background: var(--v100); color: var(--v700); }
.wcard-icon--b { background: linear-gradient(135deg, var(--v100), var(--v200)); color: var(--v700); }
.wcard-icon--c { background: var(--v50); color: var(--v600); }

.why-card h3 {
  font-family: var(--font-h);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: .625rem;
}
.why-card p { font-size: .9375rem; color: var(--muted); line-height: 1.65; }

.eco-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.eco-row span {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--v700);
  padding: 4px 10px;
  background: var(--v100);
  border: 1px solid var(--v200);
  border-radius: var(--rf);
}
.eco-row svg { color: var(--muted); flex-shrink: 0; }


/* ════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r16);
  overflow: hidden;
  background: var(--border);
  box-shadow: var(--sh1);
}

.feat-card {
  padding: 2rem 2rem 2.25rem;
  background: var(--white);
  transition: background var(--t);
}
.feat-card:hover { background: var(--v50); }

.feat-num {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 700;
  color: var(--v600);
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.feat-card h3 {
  font-family: var(--font-h);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
  line-height: 1.3;
}
.feat-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }


/* ════════════════════════════════════════════════
   BENEFITS / TABS
   ════════════════════════════════════════════════ */
.tabs-wrap { max-width: 860px; margin: 0 auto; }

.tabs-bar {
  display: flex;
  gap: 4px;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: var(--r12);
  margin-bottom: 2rem;
}
.tab {
  flex: 1;
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: var(--r8);
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--t);
}
.tab.active {
  background: var(--white);
  color: var(--v700);
  font-weight: 700;
  box-shadow: var(--sh1);
}
.tab:hover:not(.active) { color: var(--text); }

.tab-panels { }
.tab-panel { display: none; animation: panelIn .25s ease; }
.tab-panel.active { display: block; }
@keyframes panelIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

.ben-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.ben-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  box-shadow: var(--sh2);
}
.ben-card-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.ben-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .75rem;
}
.ben-progress-wrap span {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--v700);
  flex-shrink: 0;
}
.ben-bar { flex: 1; height: 8px; background: var(--bg3); border-radius: var(--rf); overflow: hidden; }
.ben-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--v600), var(--v400));
  border-radius: var(--rf);
  transition: width 1s cubic-bezier(.4,0,.2,1);
}
.ben-card-stat { font-size: 1.125rem; font-weight: 800; color: var(--text); font-family: var(--font-h); letter-spacing: -.02em; margin-bottom: 2px; }
.ben-card-sub  { font-size: .78rem; color: var(--muted); }

.ben-list { display: flex; flex-direction: column; gap: 1rem; }
.ben-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.55;
}
.ben-list li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }


/* ════════════════════════════════════════════════
   CTA BAND  (full-bleed violet)
   ════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(140deg, var(--v900) 0%, var(--v700) 55%, var(--v600) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(220,185,220,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-overline {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--v300);
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.cta-band h2 em {
  font-style: normal;
  color: var(--v300);
}
.cta-body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--white);
  color: var(--v700);
  border-radius: var(--r12);
  font-size: 1rem;
  font-weight: 700;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.btn-cta-primary:hover { background: var(--v50); box-shadow: 0 8px 32px rgba(0,0,0,.2); transform: translateY(-2px); }

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r12);
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--t);
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.4); }


/* ════════════════════════════════════════════════
   VISION
   ════════════════════════════════════════════════ */
.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vision-left .chip { display: inline-block; }
.vision-left h2 {
  font-family: var(--font-h);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.vision-left p {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.pillars {
  display: flex;
  gap: 10px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r8);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text2);
  transition: all var(--ts);
  flex: 1;
  justify-content: center;
}
.pillar svg { color: var(--v600); flex-shrink: 0; }
.pillar:hover { border-color: var(--v300); background: var(--v50); color: var(--v700); box-shadow: var(--sh1); }

/* Tagline block */
.vision-right { perspective: 1000px; }
.tagline-block {
  padding: 3.5rem 3rem;
  background: linear-gradient(155deg, #1a0820 0%, #2e1230 55%, #18101a 100%);
  border-radius: var(--r24);
  border: 1px solid rgba(184,90,184,.12);
  box-shadow: var(--sh4), 0 0 60px rgba(139,68,139,.2);
  position: relative;
  overflow: hidden;
  animation: gentleTilt 8s ease-in-out infinite alternate;
}
@keyframes gentleTilt {
  from { transform: rotateY(-3deg) rotateX(1.5deg); }
  to   { transform: rotateY(3deg)  rotateX(-1.5deg); }
}
.tagline-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 110%, rgba(139,68,139,.3) 0%, transparent 65%);
  pointer-events: none;
}

.tb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
  letter-spacing: -.02em;
}
.tb-line {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.06;
  color: rgba(255,255,255,.92);
  position: relative;
  z-index: 1;
}


/* ════════════════════════════════════════════════
   DOWNLOAD
   ════════════════════════════════════════════════ */
.store-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--r12);
  min-width: 190px;
  border: 1px solid transparent;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.store-btn:hover {
  background: var(--v700);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}
.store-btn span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.store-btn small { font-size: .68rem; opacity: .6; line-height: 1; }
.store-btn span > :last-child { font-size: 1rem; font-weight: 700; line-height: 1; }


/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: #0d050d;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 4.5rem 0 2rem;
  color: rgba(255,255,255,.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.footer-brand p:first-of-type {
  font-weight: 600;
  color: rgba(255,255,255,.7);
  font-size: .9375rem;
}
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.35); line-height: 1.65; }

.footer nav h4 {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--t);
}
.footer nav a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.28);
}


/* ════════════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════════════ */
@keyframes fadeDown { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:none} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(20px)}  to{opacity:1;transform:none} }


/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .float-stack { display: none; }
  .hero-body { padding-bottom: 5rem; }
  .why-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .vision-left h2, .vision-left p { text-align: center; }
  .pillars { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --sec: 4.5rem; --pad: 1.25rem; }

  /* Collapse 3-column nav on mobile */
  .nav-inner {
    display: flex;
    align-items: center;
  }
  .nav-inner nav,
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav drawer */
  .nav-inner nav.mobile-open {
    display: block;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(26, 5, 32, 0.94);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(233,177,225,.15);
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
    z-index: 400;
  }
  .nav-inner nav.mobile-open #nav-links {
    flex-direction: column;
    gap: 4px;
  }
  .nav-inner nav.mobile-open #nav-links a {
    padding: 10px 14px;
    font-size: .9375rem;
    color: rgba(255,255,255,.7);
  }
  .nav-inner nav.mobile-open #nav-links a:hover,
  .nav-inner nav.mobile-open #nav-links a.active-link {
    color: var(--v300);
    background: rgba(255,255,255,.07);
  }

  .hero-text h1 { font-size: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 10px; }

  .feat-grid { grid-template-columns: 1fr; }
  .ben-layout { grid-template-columns: 1fr; }
  .cta-band { padding: 4rem 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .tagline-block { animation: none; transform: none; padding: 2.5rem 2rem; }
  .store-row { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-sep { display: none; }
  .tabs-bar { gap: 2px; }
  .tab { padding: 7px 10px; font-size: .8125rem; }
  .pillars { flex-direction: column; }
}


/* ════════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ════════════════════════════════════════════════ */
.policy-hero {
  background: linear-gradient(140deg, var(--v950) 0%, var(--v700) 60%, var(--v600) 100%);
  padding: calc(64px + 4rem) 0 4.5rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.policy-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 15% 60%, rgba(139,68,139,.35) 0%, transparent 60%);
  pointer-events: none;
}
.policy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.policy-hero .chip {
  background: rgba(233,177,225,.12);
  color: var(--v300);
  border-color: rgba(233,177,225,.25);
  margin-bottom: 1rem;
}
.policy-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.12;
  margin-bottom: .75rem;
}
.policy-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
}

.policy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem var(--pad) 6rem;
}

.policy-intro {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.78;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.policy-section {
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.25rem;
}
.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section h2 {
  font-family: var(--font-h);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-section h2 .policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--v100);
  color: var(--v700);
  border-radius: var(--r6);
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.policy-section h3 {
  font-family: var(--font-h);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text2);
  margin: 1.25rem 0 .5rem;
}

.policy-section p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: .75rem;
}
.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
}
.policy-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
}
.policy-section ul li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--v400);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45em;
}

.policy-contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 1.75rem 2rem;
  margin-top: 1rem;
}
.policy-contact-card p {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}
.policy-contact-card a {
  color: var(--v700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-contact-card a:hover { color: var(--v600); }

@media (max-width: 768px) {
  .policy-hero { padding: calc(64px + 2.5rem) 0 3.5rem; }
  .policy-body  { padding-top: 3rem; }
}
