/* ============================================================
   AdvysorTV — public site
   Brand: pink → purple gradient. Bold & vibrant, dark hero.
   ============================================================ */

:root {
  /* Brand */
  --pink:        #FF5C8A;
  --pink-deep:   #F45B8D;
  --pink-soft:   #FF8FB4;
  --purple:      #5B2CBF;
  --purple-deep: #4527A0;
  --lilac:       #C7A8FF;

  /* Surfaces */
  --ink:        #1B1230;
  --ink-soft:   #5B4F70;
  --ink-faint:  #8B7FA3;
  --light:      #F7F4F8;
  --light-2:    #EFE9F4;
  --card:       #FFFFFF;
  --line:       #E7DFEE;

  /* Dark surfaces */
  --dark:       #160A33;
  --dark-2:     #1F0F47;
  --dark-3:     #2A1551;
  --dark-line:  rgba(255,255,255,0.10);

  /* Gradients */
  --grad:       linear-gradient(125deg, #FF5C8A 0%, #F45B8D 32%, #5B2CBF 100%);
  --grad-bright:linear-gradient(125deg, #FF8FB4 0%, #FF5C8A 45%, #C7A8FF 100%);
  --grad-soft:  linear-gradient(135deg, #FFE8F0 0%, #EFE6FB 100%);

  /* Radii / shadow */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-sm: 0 4px 18px rgba(69, 39, 160, 0.08);
  --shadow-md: 0 18px 50px rgba(69, 39, 160, 0.14);
  --shadow-lg: 0 40px 90px rgba(27, 8, 58, 0.30);

  --maxw: 1240px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- i18n visibility ---------- */
html.lang-es .only-en { display: none !important; }
html.lang-en .only-es { display: none !important; }

/* ---------- helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 92px 0; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--pink-soft); }

.h-display {
  font-size: clamp(34px, 5.2vw, 70px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h-title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 22px 0 0;
  max-width: 600px;
  text-wrap: pretty;
}
.on-dark .lede { color: rgba(255,255,255,0.72); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.on-dark .grad-text { background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 14px 34px rgba(244, 91, 141, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(244, 91, 141, 0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--purple-deep);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--purple-deep);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--purple); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(20, 8, 43, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 28px;
}
.nav-logo { height: 60px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 9px 14px; border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Log in — clearly a button, not a nav link */
.btn-login {
  font-size: 15px; font-weight: 600; color: #fff;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
  transition: background .15s, border-color .15s, transform .15s;
}
.btn-login:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }

/* Empieza gratis — primary, centered content, distinct gradient pill */
.btn-signup {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: #fff;
  padding: 10px 22px; border-radius: 999px;
  background: var(--grad);
  box-shadow: 0 10px 26px rgba(244,91,141,0.38);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn-signup:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(244,91,141,0.5); filter: brightness(1.05); }
.btn-signup .bolt { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }
.btn-signup span { line-height: 1; }

/* Open Player — secondary nav link */
.btn-player-nav {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  transition: color .18s, border-color .18s, background .18s;
}
.btn-player-nav:hover { color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); }

/* Language globe dropdown */
.lang-dd { position: relative; }
.lang-dd-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); cursor: pointer;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
  padding: 8px 12px; color: rgba(255,255,255,0.9);
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  transition: background .15s, border-color .15s;
}
.lang-dd-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }
.lang-dd-btn .globe { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; opacity: .9; }
.lang-dd-btn .chev { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.lang-dd.open .lang-dd-btn .chev { transform: rotate(180deg); }
.lang-dd-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 168px; padding: 8px;
  background: rgba(22, 10, 45, 0.97); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 120;
}
.lang-dd.open .lang-dd-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-dd-menu button {
  display: flex; align-items: center; gap: 10px;
  background: transparent; border: 0; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.82); padding: 10px 12px; border-radius: 9px;
  transition: background .14s, color .14s;
}
.lang-dd-menu button .flag { font-size: 16px; line-height: 1; }
.lang-dd-menu button:hover { background: rgba(255,255,255,0.08); color: #fff; }
.lang-dd-menu button.active { background: var(--grad-soft); color: var(--purple); font-weight: 600; }
html:not(.lang-es):not(.lang-en) .lang-dd-menu button { color: rgba(255,255,255,0.82); }
.lang-dd-menu button.active { color: var(--purple); }

.nav-burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(16, 6, 36, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 28px 30px;
  z-index: 99;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.85);
  font-size: 18px; font-weight: 500;
  padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu .mm-actions { display: flex; gap: 12px; margin-top: 20px; }
.mobile-menu .mm-actions .btn { flex: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(820px 620px at 84% 6%, rgba(244,91,141,0.36), transparent 60%),
    radial-gradient(1000px 760px at -8% 108%, rgba(91,44,191,0.55), transparent 55%),
    linear-gradient(160deg, #210F49 0%, #160A33 55%, #2A0F4D 100%);
  color: #fff;
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 110px;
  overflow: hidden;
}
.hero-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-blobs span {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.55;
}
.hero-blobs .b1 { width: 520px; height: 520px; top: -120px; right: -60px; background: radial-gradient(circle, #FF5C8A, transparent 70%); animation: blobA 14s ease-in-out infinite; }
.hero-blobs .b2 { width: 620px; height: 620px; bottom: -220px; left: -120px; background: radial-gradient(circle, #5B2CBF, transparent 70%); animation: blobB 18s ease-in-out infinite; }
.hero-blobs .b3 { width: 360px; height: 360px; top: 30%; left: 42%; background: radial-gradient(circle, #C7A8FF, transparent 70%); opacity: 0.28; animation: blobA 16s ease-in-out infinite reverse; }
@keyframes blobA { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-40px,30px) scale(1.08);} }
@keyframes blobB { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(50px,-30px) scale(1.12);} }
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.86);
  margin-bottom: 26px;
}
.hero-badge .live { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 10px #4ADE80; }
.hero h1 {
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero .lede { color: rgba(255,255,255,0.74); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 52px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat .n {
  font-size: 38px; font-weight: 800; letter-spacing: -0.02em;
  background: var(--grad-bright);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stat .l { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* hero visual — real product screenshots */
.hero-visual { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-shot {
  position: relative; width: 100%;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  animation: floatA 8s ease-in-out infinite;
}
.hero-shot img { display: block; width: 100%; height: auto; }
.hero-phone {
  position: absolute; left: -34px; bottom: -38px; width: 158px;
  border-radius: 26px; overflow: hidden;
  border: 6px solid #15102B; background: #15102B;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatB 9s ease-in-out infinite;
}
.hero-phone img { display: block; width: 100%; height: auto; }
.hero-tag-chip {
  position: absolute; top: -16px; right: 18px; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(22,10,45,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px; font-weight: 600; color: #fff;
  box-shadow: var(--shadow-md);
}
.hero-tag-chip .d { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 10px #4ADE80; }

@keyframes floatA { 0%,100%{ transform: perspective(1400px) rotateY(-7deg) rotateX(2deg) translateY(0);} 50%{ transform: perspective(1400px) rotateY(-7deg) rotateX(2deg) translateY(-14px);} }
@keyframes floatB { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(12px);} }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--light); }
.problem-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.problem-list { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.problem-item {
  display: flex; align-items: center; gap: 18px;
  font-size: 18px; font-weight: 500; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.problem-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.problem-item .x {
  width: 40px; height: 40px; border-radius: 50%;
  background: #FDECF1; color: var(--pink-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.stat-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 48px;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.stat-card::before { content:""; position: absolute; top: 0; left: 0; right: 0; height: 7px; background: var(--grad); }
.stat-blk + .stat-blk { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.stat-num { font-size: clamp(56px, 6vw, 88px); font-weight: 800; line-height: 0.9; letter-spacing: -0.03em; }
.stat-label { font-size: 16px; color: var(--ink-soft); line-height: 1.45; margin-top: 14px; max-width: 380px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--dark); color: #fff; }
.how .lede { color: rgba(255,255,255,0.7); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 64px; }
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg); padding: 34px;
  position: relative; overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.step:hover { transform: translateY(-6px); border-color: rgba(255,143,180,0.4); background: rgba(255,255,255,0.06); }
.step .num {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--pink-soft);
}
.step .visual {
  height: 156px; border-radius: var(--r-md); margin: 22px 0 26px;
  background: linear-gradient(135deg, rgba(255,92,138,0.16), rgba(91,44,191,0.22));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.step h3 { font-size: 24px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
.step p { font-size: 16px; line-height: 1.5; color: rgba(255,255,255,0.68); margin: 0; }

/* step visuals */
.v-upload { display: flex; gap: 10px; }
.v-upload .tile { width: 58px; height: 74px; background: #fff; border-radius: 9px; box-shadow: 0 8px 20px rgba(0,0,0,0.3); position: relative; }
.v-upload .tile::after { content:""; position: absolute; inset: 9px; border-radius: 5px; background: var(--grad); opacity: .9; }
.v-upload .tile:nth-child(2){ transform: translateY(-10px) rotate(-5deg);} .v-upload .tile:nth-child(3){ transform: translateY(8px) rotate(6deg);}
.v-qr { width: 96px; height: 96px; border-radius: 14px; background: conic-gradient(from 0deg, #4527A0 25%, #FF5C8A 50%, #4527A0 75%, #FF5C8A 100%); position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.v-qr::before { content:""; position:absolute; inset:12px; border-radius:7px; background: radial-gradient(circle at 22% 22%, #fff 9%, transparent 10%), radial-gradient(circle at 78% 22%, #fff 9%, transparent 10%), radial-gradient(circle at 22% 78%, #fff 9%, transparent 10%); background-color: #160A33; }
.v-tvgrid { display: grid; grid-template-columns: repeat(3, 42px); gap: 12px; }
.v-tvgrid .m { width: 42px; height: 27px; border-radius: 4px; background: #0E0820; position: relative; }
.v-tvgrid .m.on::after { content:""; position:absolute; inset: 3px; border-radius: 2px; background: var(--grad); }
.v-tvgrid .m.on { box-shadow: 0 0 14px rgba(244,91,141,0.55); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--light); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-row + .feature-row { margin-top: 120px; }
.feature-row.flip .feature-copy { order: 2; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 17px; line-height: 1.4; color: var(--ink); }
.feature-list .chk {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--grad-soft); color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px;
}

/* mock shell */
.mock {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #1A1230;
  position: relative;
}
.mock-chrome { height: 46px; background: #0E0820; display: flex; align-items: center; gap: 7px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mock-chrome .dot { width: 11px; height: 11px; border-radius: 50%; background: #2A1A4A; }
.mock-chrome .url { margin-left: 16px; flex: 1; max-width: 320px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); padding: 5px 14px; border-radius: 7px; font-family: 'JetBrains Mono', monospace; font-size: 12px; }

/* real screenshot inside a browser frame */
.shot { line-height: 0; background: #fff; }
.shot img { display: block; width: 100%; height: auto; }
.dl-shot { max-width: 540px; width: 100%; }

/* phone-framed screenshot */
.mock-phone { background: transparent; box-shadow: none; border-radius: 0; overflow: visible; display: flex; justify-content: center; }
.phone-frame { width: 268px; max-width: 80%; border-radius: 40px; overflow: hidden; border: 10px solid #15102B; background: #15102B; box-shadow: var(--shadow-lg); }
.phone-frame img { display: block; width: 100%; height: auto; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { background: var(--dark); color: #fff; }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 60px; }
.ind {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg); padding: 26px;
  min-height: 178px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.ind:hover { transform: translateY(-6px); border-color: rgba(255,143,180,0.45); background: rgba(255,255,255,0.07); }
.ind .num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--pink-soft); letter-spacing: 0.12em; }
.ind .name { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin-top: 10px; }
.ind .desc { font-size: 14px; line-height: 1.45; color: rgba(255,255,255,0.62); }
.ind.feature { grid-column: span 2; background: var(--grad); border: none; }
.ind.feature .num { color: rgba(255,255,255,0.75); }
.ind.feature .name { font-size: 26px; max-width: 380px; }
.ind.feature .desc { color: rgba(255,255,255,0.9); font-size: 15px; }
.ind.feature:hover { transform: translateY(-6px); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--light); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 40px 34px; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan .tier { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.plan .price { font-size: 62px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 18px 0 4px; }
.plan .price .cur { font-size: 24px; font-weight: 600; vertical-align: super; color: var(--ink-soft); margin-right: 4px; }
.plan .price .per { font-size: 16px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0; margin-left: 4px; }
.plan .blurb { font-size: 15px; color: var(--ink-soft); line-height: 1.45; margin: 0 0 26px; min-height: 44px; }
.plan ul { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--ink); flex: 1; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.35; }
.plan ul li::before { content: "✓"; color: var(--pink-deep); font-weight: 800; flex-shrink: 0; }
.plan .cta { margin-top: 28px; }
.plan.featured { background: linear-gradient(165deg, #2A1551 0%, #160A33 100%); color: #fff; border: none; box-shadow: var(--shadow-lg); }
.plan.featured .tier { color: rgba(255,255,255,0.55); }
.plan.featured .blurb { color: rgba(255,255,255,0.7); }
.plan.featured .price { background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan.featured .price .cur, .plan.featured .price .per { color: rgba(255,255,255,0.6); -webkit-text-fill-color: rgba(255,255,255,0.6); }
.plan.featured ul { color: rgba(255,255,255,0.9); }
.plan.featured ul li::before { color: var(--pink-soft); }
.plan .ribbon {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 10px 26px rgba(244,91,141,0.45);
}

/* ============================================================
   DOWNLOAD
   ============================================================ */
.download { background: var(--dark); color: #fff; overflow: hidden; }
.dl-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 64px; align-items: center; }
.store-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 13px;
  background: #fff; color: var(--ink);
  border-radius: 14px; padding: 12px 22px 12px 18px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.35); }
.store-badge .glyph { width: 30px; height: 30px; flex-shrink: 0; }
.store-badge .tx { line-height: 1.1; }
.store-badge .tx small { display: block; font-size: 11px; color: var(--ink-soft); }
.store-badge .tx b { font-size: 17px; font-weight: 700; }
.dl-note { margin-top: 22px; font-size: 14px; color: rgba(255,255,255,0.55); font-family: 'JetBrains Mono', monospace; }

.dl-visual { display: flex; align-items: center; justify-content: center; position: relative; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact {
  background:
    radial-gradient(800px 600px at 88% 88%, rgba(244,91,141,0.30), transparent 60%),
    radial-gradient(900px 700px at -6% -8%, rgba(91,44,191,0.5), transparent 55%),
    linear-gradient(150deg, #2A1551 0%, #160A33 55%, #34125C 100%);
  color: #fff;
}
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.contact h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; margin: 0; }
.contact .lede { color: rgba(255,255,255,0.74); }
.contact-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.contact-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl); padding: 38px; backdrop-filter: blur(8px);
}

/* contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.cf-field input,
.cf-field textarea {
  font-family: inherit; font-size: 16px; color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px; padding: 14px 16px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  width: 100%;
}
.cf-field textarea { resize: vertical; min-height: 110px; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(255,255,255,0.4); }
.cf-field input:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--pink-soft);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px rgba(255,92,138,0.22);
}
.cf-field input:user-invalid,
.cf-field textarea:user-invalid { border-color: rgba(255,120,150,0.7); }
.cf-submit { align-self: flex-start; margin-top: 4px; }
.cf-status { margin: 4px 0 0; font-size: 14px; min-height: 20px; color: var(--pink-soft); font-weight: 500; }
.cf-status.ok { color: #6EE7A0; }
.cf-status.err { color: #FCA5A5; }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); display: inline-flex; align-items: center; justify-content: center; transition: background .15s, transform .15s; }
.socials a:hover { background: var(--grad); transform: translateY(-2px); border-color: transparent; }
.socials svg { width: 19px; height: 19px; fill: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #100624; color: rgba(255,255,255,0.6); padding: 56px 0 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-logo { height: 30px; margin-bottom: 16px; }
.footer-tag { font-size: 14px; max-width: 280px; line-height: 1.5; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin: 0 0 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.68); padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.4); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 1; }
.reveal.in { animation: revealUp .7s cubic-bezier(.2,.7,.2,1); }
@keyframes revealUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.reveal.d1.in { animation-delay: .08s; }
.reveal.d2.in { animation-delay: .16s; }
.reveal.d3.in { animation-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal.in { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-shot { transform: none; }
}
@media (max-width: 1024px) {
  .nav-links, .nav-actions .btn-login, .nav-actions .btn-signup, .nav-actions .btn-player-nav { display: none; }
  .nav-burger { display: flex; }
  .nav-actions { margin-left: auto; }
  .section { padding: 84px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { min-height: 0; margin-top: 40px; max-width: 560px; }
  .hero-phone { width: 130px; left: -10px; bottom: -24px; }
  .problem-grid, .feature-row, .feature-row.flip, .how .steps, .dl-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-row + .feature-row { margin-top: 72px; }
  .feature-row.flip .feature-copy { order: 0; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind.feature { grid-column: span 2; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .plan.featured { transform: none; }
  .feature-row .mock { order: -1; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .hero-stat .n { font-size: 30px; }
  .ind-grid { grid-template-columns: 1fr; }
  .ind.feature { grid-column: span 1; }
  .stat-card, .contact-card { padding: 30px; }
  .footer-cols { gap: 36px; }
  .hero-cta .btn, .contact-cta .btn { flex: 1; }
}

/* ============================================================
   POLICY PAGES (privacy.html / terms.html)
   ============================================================ */
.policy-page {
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
}

.policy-header {
  background: var(--dark);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--dark-line);
}

.policy-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
  background: var(--grad-bright);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-faint);
  margin: 0;
}

.policy-content {
  padding-top: 56px;
  padding-bottom: 96px;
  max-width: 800px;
}

.policy-content p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 16px;
}

.policy-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.policy-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.policy-content ul li {
  margin-bottom: 6px;
}

.policy-content a:not(.btn) {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content a:not(.btn):hover {
  color: var(--pink);
}

@media (max-width: 560px) {
  .policy-header { padding: 48px 0 36px; }
  .policy-content { padding-top: 40px; padding-bottom: 64px; }
}

/* ============================================================
   DATA DELETION PAGE
   ============================================================ */
.deletion-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--light-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 32px 0 40px;
}

.deletion-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--grad);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deletion-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.deletion-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px !important;
  border-top: none !important;
  padding-top: 0 !important;
}

.deletion-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.deletion-btn svg {
  width: 16px;
  height: 16px;
}

.deletion-template {
  margin-top: 20px;
  background: var(--dark);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.deletion-template-label {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-faint);
  padding: 10px 16px 0;
  margin: 0 !important;
}

.deletion-template-body {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: var(--lilac);
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  padding: 10px 16px 16px;
}

.deletion-copy-btn {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: none;
  border-top: 1px solid var(--dark-line);
  color: var(--pink-soft);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  text-align: left;
  transition: background .15s ease;
}

.deletion-copy-btn:hover { background: rgba(255,255,255,0.10); }

/* designated agent card */
.agent-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 16px 0 40px;
}

.agent-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.agent-row:last-child { border-bottom: none; }

.agent-label {
  flex-shrink: 0;
  width: 220px;
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
}

.agent-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.04em;
}

@media (max-width: 560px) {
  .agent-row { flex-direction: column; gap: 2px; }
  .agent-label { width: auto; }
}

/* deletion table */
.deletion-table {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 16px 0 40px;
}

.dt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}

.dt-row:last-child { border-bottom: none; }

.dt-header {
  background: var(--light-2);
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dt-tag {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.dt-tag--fast  { background: #E8F8EF; color: #1a7a45; }
.dt-tag--mid   { background: #FFF4E0; color: #96580a; }
.dt-tag--slow  { background: #FDE8EE; color: #a0192e; }
.dt-tag--none  { background: var(--light-2); color: var(--ink-faint); }

/* deletion steps */
.deletion-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.deletion-steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 0;
}

.ds-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deletion-steps li > div strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}

.deletion-steps li > div p {
  margin: 0;
}

@media (max-width: 560px) {
  .deletion-card { flex-direction: column; gap: 16px; padding: 24px; }
  .dt-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .dt-header { display: none; }
}
