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

:root {
  /* ── surfaces ── */
  --surface-canvas:    #F3F4FA;
  --surface-card:      #FDFDFE;
  --surface-card-tint: #F8F9FD;

  /* ── brand: electric blue ── */
  --brand-100: #E7E9FC;
  --brand-500: #3345E8;
  --brand-600: #2536C4;
  --brand-800: #161F80;
  --brand-900: #0B0F30;

  /* ── brand: signal (neon) ── */
  --signal-500: #CEFF00;
  --signal-600: #A8D400;
  --signal-700: #7A9900;

  /* ── ink ── */
  --ink-100:  #11143A;
  --ink-80:   rgba(17,20,58,.78);
  --ink-60:   rgba(17,20,58,.58);
  --ink-40:   rgba(17,20,58,.38);
  --ink-20:   rgba(17,20,58,.14);
  --ink-10:   rgba(17,20,58,.07);

  /* ── on dark (blue sections) ── */
  --onblue-100: #FFFFFF;
  --onblue-90:  rgba(255,255,255,.90);
  --onblue-80:  rgba(255,255,255,.82);
  --onblue-60:  rgba(255,255,255,.60);
  --onblue-border: rgba(255,255,255,.22);
  --onblue-glass: rgba(255,255,255,.08);

  /* ── geometry ── */
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 11px;
  --r-pill: 100px;

  /* ── motion ── */
  --ease-swift: cubic-bezier(.16, 1, .3, 1);

  /* ── elevation ── */
  --lift-1: 0 1px 2px rgba(17,20,58,.04), 0 10px 24px -14px rgba(17,20,58,.14);
  --lift-2: 0 4px 10px rgba(17,20,58,.05), 0 24px 48px -18px rgba(17,20,58,.20);
  --glow-signal: 0 0 0 1px rgba(206,255,0,.16), 0 8px 24px -6px rgba(168,212,0,.35), 0 2px 8px rgba(11,15,48,.18);
  --glow-signal-hover: 0 0 0 1px rgba(206,255,0,.28), 0 14px 34px -8px rgba(168,212,0,.5), 0 4px 12px rgba(11,15,48,.22);
}

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  background: var(--surface-canvas);
  color: var(--ink-100);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: 69px;
}

i[class^="ph-"] { display: inline-block; line-height: 1; }

/* ─── UTILS ─── */
.container { max-width: 1380px; margin: 0 auto; padding: 0 32px; }
.signal { color: var(--signal-700); }
.on-blue .signal { color: var(--signal-500); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: var(--brand-500);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.on-blue .eyebrow { color: var(--signal-500); }
.eyebrow i { font-size: 13px; }

.pill {
  display: inline-flex; align-items: center;
  padding: 9px 18px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06);
  font-size: 12.5px; font-weight: 500; color: var(--onblue-80);
  backdrop-filter: blur(10px); white-space: nowrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: var(--r-pill); text-decoration: none;
  font-weight: 700; letter-spacing: -.01em; white-space: nowrap;
  transition: transform .4s var(--ease-swift), box-shadow .4s var(--ease-swift), background .4s var(--ease-swift);
}
.btn i { font-size: 1.05em; transition: transform .35s var(--ease-swift); }
.btn:hover i { transform: translateX(3px); }

.btn-signal {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--signal-500); color: var(--brand-900);
  box-shadow: var(--glow-signal);
}
.btn-signal::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.55) 42%, rgba(255,255,255,.55) 48%, transparent 65%);
  background-size: 220% 100%; background-position: 130% 0;
  transition: background-position 1.1s var(--ease-swift);
}
.btn-signal:hover::before { background-position: -30% 0; }
.btn-signal:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--glow-signal-hover); }
.btn-signal:active { transform: translateY(0) scale(.98); }

.btn-lg { padding: 18px 38px; font-size: 15.5px; }
.btn-md { padding: 13px 26px; font-size: 13.5px; }
.btn-sm { padding: 10px 20px; font-size: 12.5px; }

.btn-ghost-onblue {
  background: transparent; color: var(--onblue-100);
  border: 1px solid var(--onblue-border);
  backdrop-filter: blur(10px);
}
.btn-ghost-onblue:hover { background: var(--onblue-glass); transform: translateY(-2px); border-color: rgba(255,255,255,.4); }

.btn-outline-brand {
  background: transparent; color: var(--brand-500);
  border: 1px solid var(--brand-100);
}
.btn-outline-brand:hover { background: var(--brand-100); border-color: var(--brand-500); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--brand-500); font-weight: 600; font-size: 14px;
  text-decoration: none; letter-spacing: -.005em;
}
.on-blue .link-arrow { color: var(--onblue-100); }
.link-arrow i { font-size: 15px; transition: transform .4s var(--ease-swift); }
.link-arrow:hover i { transform: translateX(5px); }
.link-arrow .u {
  position: relative;
}
.link-arrow .u::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; transform: scaleX(.3); transform-origin: left;
  opacity: .4; transition: transform .4s var(--ease-swift), opacity .4s var(--ease-swift);
}
.link-arrow:hover .u::after { transform: scaleX(1); opacity: .9; }

/* ─── NAVBAR (glass) ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease-swift), border-color .35s var(--ease-swift), backdrop-filter .35s var(--ease-swift);
}
nav.nav-solid {
  background: rgba(253,253,254,.72);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--ink-10);
}
nav .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand-mark { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; transition: opacity .3s var(--ease-swift); }
.brand-mark:hover { opacity: .82; }
.brand-mark .brand-word { height: 22px; width: auto; display: block; }
nav .brand-mark .brand-word path, nav .brand-mark .brand-symbol path { fill: #fff; transition: fill .35s var(--ease-swift); }
nav.nav-solid .brand-mark .brand-word path, nav.nav-solid .brand-mark .brand-symbol path { fill: #040A40; }
.brand-mark .brand-symbol { display: none; height: 27px; width: auto; }

/* ─── HERO ─── */
.hero {
  position: relative; overflow: hidden;
  margin-top: -69px; padding: 109px 0 0;
  color: var(--onblue-100);
  background:
    radial-gradient(1200px 700px at 20% -20%, rgba(206,255,0,.16), transparent 55%),
    radial-gradient(900px 700px at 100% 0%, rgba(140,170,255,.22), transparent 58%),
    linear-gradient(160deg, var(--brand-600) 0%, var(--brand-800) 55%, var(--brand-900) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("grid-layers.svg") no-repeat top center;
  background-size: cover;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.5) 100%, transparent),
              radial-gradient(1px 1px at 76% 62%, rgba(255,255,255,.4) 100%, transparent),
              radial-gradient(1px 1px at 60% 18%, rgba(255,255,255,.35) 100%, transparent);
  background-size: 100% 100%;
}
.hero .container { max-width: 1440px; position: relative; z-index: 1; padding-top: 15px; }

.hero-copy { text-align: center; }
.hero-pill { margin-bottom: 14px; position: relative; top: 6px; }
.hero-headline {
  max-width: 1200px; margin-left: auto; margin-right: auto;
  font-size: clamp(32px, 5vw + 14px, 75px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.07em; margin-bottom: clamp(6px, .6vw, 8px);
}
.hero-headline .signal { font-weight: 700; }
.hero-headline .accent-line {
  display: block; max-width: 860px; margin: clamp(10px, 1.6vw, 24px) auto 0;
  color: var(--onblue-60); font-weight: 400; font-size: .46em; letter-spacing: -.015em; line-height: 1.45;
}
.hero-sub {
  font-size: 17px; font-weight: 300; color: var(--onblue-80);
  max-width: 820px; margin: clamp(6px, .6vw, 8px) auto clamp(20px, 2.2vw, 31px); line-height: 1.75;
}
.hero-sub strong { color: var(--onblue-100); font-weight: 600; }
.hero-cta-group { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: clamp(22px, 3.2vw, 46px); }
.hero-cta-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center; }
.hero-disclaimer { font-size: 16px; color: var(--onblue-80); letter-spacing: .01em; }
.hero-disclaimer b { color: var(--signal-500); font-weight: 600; }

/* ─── HERO DEVICE (tilted product showcase) ─── */
.hero-device-wrap {
  position: relative; z-index: 1;
  margin-top: 56px;
  padding: 0 40px;
}
.hero-device {
  perspective: 2200px; position: relative;
}
.hero-device::before {
  content: ''; position: absolute; z-index: 0; left: 50%; top: 45%;
  width: 90%; height: 70%; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(206,255,0,.16), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.laptop {
  position: relative; z-index: 1;
  max-width: 980px; margin: 0 auto;
  transform: rotateX(9deg) rotateY(-19deg) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform .7s var(--ease-swift);
}
.hero-device:hover .laptop { transform: rotateX(5deg) rotateY(-12deg) rotateZ(1deg); }
.laptop-frame {
  background: linear-gradient(160deg, #232B55, #0B0F30);
  border-radius: 20px; padding: 14px 14px 26px;
  box-shadow: 0 80px 140px -30px rgba(2,4,20,.7), inset 0 0 0 1px rgba(255,255,255,.06);
}
.laptop-screen {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 16 / 10; background: var(--surface-canvas);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
  display: flex; flex-direction: column;
  --u: min(1vw, 10.6px);
}
.app-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1.4%;
  padding: 1.5% 2.2%; border-bottom: 1px solid var(--ink-10); background: var(--surface-card);
  flex-shrink: 0;
}
.app-nav-left { display: flex; align-items: center; gap: 1.1%; flex-shrink: 0; min-width: 0; }
.app-logo { display: flex; align-items: center; gap: calc(.5 * var(--u)); flex-shrink: 0; }
.app-logo svg { width: calc(1.7 * var(--u)); height: calc(1.7 * var(--u)); flex-shrink: 0; }
.app-logo span { font-size: calc(1.15 * var(--u)); font-weight: 700; color: var(--ink-100); letter-spacing: -.01em; white-space: nowrap; }
.app-badge-pill {
  display: flex; align-items: center; gap: calc(.4 * var(--u)); white-space: nowrap;
  padding: calc(.5 * var(--u)) calc(1.1 * var(--u)); border-radius: var(--r-pill);
  background: var(--surface-card-tint); border: 1px solid var(--ink-10);
  font-size: calc(.78 * var(--u)); font-weight: 500; color: var(--ink-60);
}
.app-badge-pill i { font-size: calc(.85 * var(--u)); }
.app-nav-center { display: flex; align-items: center; gap: calc(1.8 * var(--u)); flex: 1; justify-content: center; min-width: 0; }
.app-dropdown-pill {
  display: flex; align-items: center; gap: calc(.4 * var(--u)); white-space: nowrap;
  padding: calc(.5 * var(--u)) calc(1.1 * var(--u)); border-radius: var(--r-pill); border: 1px solid var(--ink-10);
  font-size: calc(.78 * var(--u)); font-weight: 500; color: var(--ink-100); background: var(--surface-card);
}
.app-dropdown-pill i { font-size: calc(.85 * var(--u)); color: var(--ink-40); }
.app-links { display: flex; gap: calc(1.4 * var(--u)); }
.app-links span { font-size: calc(.85 * var(--u)); font-weight: 500; color: var(--ink-40); white-space: nowrap; }
.app-links span.active { color: var(--brand-500); font-weight: 700; }
.app-nav-right { display: flex; align-items: center; gap: calc(.8 * var(--u)); flex-shrink: 0; }
.app-avatar {
  width: calc(1.7 * var(--u)); height: calc(1.7 * var(--u)); border-radius: 50%; flex-shrink: 0;
  background: var(--brand-500); color: #fff; font-weight: 700; font-size: calc(.8 * var(--u));
  display: flex; align-items: center; justify-content: center;
}
.app-toggle {
  width: calc(1.7 * var(--u)); height: calc(1.7 * var(--u)); border-radius: 7px; border: 1px solid var(--ink-10);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.app-toggle i { font-size: calc(.85 * var(--u)); color: var(--ink-60); }

.app-body { flex: 1; display: flex; flex-direction: column; min-height: 0; overflow: hidden; }

.app-banner {
  flex-shrink: 0; text-align: center; padding: 2.6% 4% 3%;
  background: linear-gradient(120deg, var(--brand-500), var(--brand-600));
}
.app-banner-title { font-size: calc(1.85 * var(--u)); font-weight: 800; color: #fff; letter-spacing: -.025em; margin-bottom: .5%; }
.app-banner p { font-size: calc(.88 * var(--u)); font-weight: 400; color: rgba(255,255,255,.85); }

.app-content { flex: 1; padding: 2.6% 4%; background: var(--surface-canvas); overflow: hidden; }

.app-search-row { display: flex; gap: 1%; margin-bottom: 2.6%; }
.app-search {
  flex: 1; display: flex; align-items: center; gap: calc(.6 * var(--u));
  padding: .85% 1.3%; border: 1px solid var(--ink-10); border-radius: 10px; background: var(--surface-card);
}
.app-search i { font-size: calc(.9 * var(--u)); color: var(--ink-40); }
.app-search span { font-size: calc(.82 * var(--u)); color: var(--ink-40); }
.app-filter-btn {
  display: flex; align-items: center; gap: calc(.4 * var(--u)); white-space: nowrap;
  padding: .85% 1.4%; border: 1px solid var(--ink-10); border-radius: 10px;
  background: var(--surface-card); font-size: calc(.82 * var(--u)); font-weight: 600; color: var(--ink-100);
}
.app-filter-btn i { font-size: calc(.9 * var(--u)); }

.app-section-label {
  display: flex; align-items: center; gap: calc(.5 * var(--u));
  font-size: calc(.95 * var(--u)); font-weight: 700; color: var(--ink-100); margin-bottom: 1.6%;
}
.app-section-label .dot-live { width: calc(.65 * var(--u)); height: calc(.65 * var(--u)); border-radius: 50%; background: #EF4444; flex-shrink: 0; }
.app-section-label .count { color: var(--ink-40); font-weight: 500; }

.app-live-card {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2%;
  border-radius: 16px; padding: 2% 2.6%; margin-bottom: 3.2%; overflow: hidden;
  background: linear-gradient(120deg, var(--brand-500), var(--brand-800));
}
.app-live-info { min-width: 0; }
.app-live-meta { display: flex; align-items: center; gap: calc(1 * var(--u)); margin-bottom: 1%; }
.app-live-badge {
  display: flex; align-items: center; gap: calc(.35 * var(--u)); padding: calc(.35 * var(--u)) calc(.9 * var(--u)); border-radius: var(--r-pill);
  background: rgba(255,255,255,.2); font-size: calc(.72 * var(--u)); font-weight: 700; color: #fff; white-space: nowrap;
}
.app-live-badge .pulse { width: calc(.5 * var(--u)); height: calc(.5 * var(--u)); border-radius: 50%; background: #fff; }
.app-live-timer { display: flex; align-items: center; gap: calc(.3 * var(--u)); font-size: calc(.72 * var(--u)); color: rgba(255,255,255,.78); white-space: nowrap; }
.app-live-timer i { font-size: calc(.82 * var(--u)); }
.app-live-title { font-size: calc(1.6 * var(--u)); font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: .5%; }
.app-live-subject { font-size: calc(.85 * var(--u)); color: rgba(255,255,255,.85); margin-bottom: 1.4%; }
.app-live-subject b { color: #fff; font-weight: 600; }
.app-live-tags { display: flex; gap: calc(.6 * var(--u)); }
.app-tag-pill {
  padding: calc(.35 * var(--u)) calc(1 * var(--u)); border-radius: var(--r-pill); font-size: calc(.72 * var(--u)); font-weight: 700;
  background: rgba(255,255,255,.18); color: #fff; white-space: nowrap;
}
.app-tag-pill.free { background: #17B072; color: #fff; }
.app-live-cta {
  flex-shrink: 0; display: flex; align-items: center; gap: calc(.4 * var(--u)); white-space: nowrap;
  padding: .9% 1.8%; border-radius: var(--r-pill); background: #fff; color: var(--brand-600);
  font-weight: 700; font-size: calc(.88 * var(--u));
}
.app-live-cta i { font-size: calc(.9 * var(--u)); }

.app-upcoming-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3%; }
.app-upcoming-card { border: 1.5px dashed var(--ink-20); border-radius: 14px; padding: 1.7% 2.2%; background: var(--surface-card); }
.app-upcoming-badge {
  display: inline-flex; align-items: center; gap: calc(.35 * var(--u)); padding: calc(.3 * var(--u)) calc(.9 * var(--u)); border-radius: var(--r-pill);
  background: rgba(224,168,0,.15); color: #B98700; font-size: calc(.68 * var(--u)); font-weight: 700; margin-bottom: 6%;
}
.app-upcoming-badge i { font-size: calc(.78 * var(--u)); }
.app-upcoming-name { font-size: calc(1.05 * var(--u)); font-weight: 800; color: var(--ink-100); margin-bottom: 4%; letter-spacing: -.01em; }
.app-upcoming-subject { font-size: calc(.8 * var(--u)); color: var(--ink-60); margin-bottom: 4%; }
.app-upcoming-subject b { color: var(--ink-100); font-weight: 600; }
.app-upcoming-date { font-size: calc(.76 * var(--u)); color: var(--brand-500); font-weight: 600; margin-bottom: 6%; }
.app-upcoming-tags { display: flex; gap: calc(.5 * var(--u)); }
.app-upcoming-tags .app-tag-pill { background: var(--brand-100); color: var(--brand-600); }
.app-upcoming-tags .app-tag-pill.free { background: #DEF7EC; color: #03543F; }

.hero-caption {
  text-align: center; font-size: 16px; color: var(--onblue-80);
  padding: 22px 0 44px; position: relative; z-index: 1;
}
.hero-caption b { color: var(--onblue-90); font-weight: 600; }

/* ─── STATS (glass card floating over hero) ─── */
.stats { padding: 0 0 104px; margin-top: -66px; position: relative; z-index: 2; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--ink-10);
  box-shadow: var(--lift-2);
}
.stat-item {
  padding: 34px 24px; text-align: center;
  border-right: 1px solid var(--ink-10);
  transition: background .4s var(--ease-swift);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface-card-tint); }
.stat-num { font-size: 44px; font-weight: 800; color: var(--brand-500); letter-spacing: -.035em; line-height: 1; }
.stat-label { font-size: 16px; font-weight: 400; color: var(--ink-80); margin-top: 11px; line-height: 1.5; }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 58px; }
.section-title { font-size: clamp(27px, 4vw, 39px); font-weight: 700; letter-spacing: -.03em; line-height: 1.16; color: var(--ink-100); }
.on-blue .section-title { color: var(--onblue-100); }
.section-sub { font-size: 18px; font-weight: 400; color: var(--ink-60); margin-top: 15px; line-height: 1.65; }
.on-blue .section-sub { color: var(--onblue-80); }

/* ─── BENEFITS ─── */
.benefits { padding: 100px 0 72px; background: var(--surface-canvas); }
.benefits .section-sub { max-width: 760px; margin-left: auto; margin-right: auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--r-md); padding: 36px 30px;
  border: 1px solid var(--ink-10);
  box-shadow: var(--lift-1);
  transition: transform .4s var(--ease-swift), box-shadow .4s var(--ease-swift), border-color .4s var(--ease-swift);
}
.benefit-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(150deg, rgba(51,69,232,0), rgba(51,69,232,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: background .4s var(--ease-swift); pointer-events: none;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--lift-2); border-color: transparent; }
.benefit-card:hover::before { background: linear-gradient(150deg, rgba(51,69,232,.55), rgba(206,255,0,.4)); }
.benefit-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: linear-gradient(150deg, var(--brand-100), rgba(231,233,252,.4));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: transform .4s var(--ease-swift);
}
.benefit-card:hover .benefit-icon { transform: scale(1.06) rotate(-2deg); }
.benefit-icon i { font-size: 22px; color: var(--brand-500); filter: drop-shadow(0 2px 4px rgba(51,69,232,.25)); }
.benefit-title { font-size: 16.5px; font-weight: 600; color: var(--ink-100); margin-bottom: 11px; letter-spacing: -.015em; }
.benefit-text { font-size: 16px; font-weight: 300; color: var(--ink-80); line-height: 1.7; }

/* ─── mid banner CTA ─── */
.banner-cta {
  margin-top: 44px;
  border-radius: var(--r-md);
  padding: 30px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--brand-100) 0%, rgba(231,233,252,.35) 60%, rgba(206,255,0,.12) 100%);
  border: 1px solid rgba(51,69,232,.14);
}
.banner-cta-text h4 { font-size: 16px; font-weight: 600; color: var(--ink-100); letter-spacing: -.015em; margin-bottom: 5px; }
.banner-cta-text p { font-size: 16px; color: var(--ink-80); font-weight: 300; }

/* ─── CRONOGRAMA ─── */
.cronograma { padding: 92px 0 96px; background: var(--surface-card); }
.crono-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.crono-card {
  border-radius: var(--r-md); padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  border: 1px solid var(--ink-10);
  background: var(--surface-card);
  box-shadow: var(--lift-1);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease-swift), box-shadow .4s var(--ease-swift);
}
.crono-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--ink-20); transition: background .4s var(--ease-swift), width .4s var(--ease-swift);
}
.crono-card:hover { transform: translateY(-3px); box-shadow: var(--lift-2); }
.crono-card:hover::before { width: 4px; }
.crono-card.free::before { background: var(--signal-600); }
.crono-card.paid::before { background: var(--brand-500); }
.crono-card.bonus::before { background: #E0A800; }
.crono-card.bonus { background: linear-gradient(120deg, #FFFCF2, var(--surface-card) 55%); }
.crono-card.past { opacity: .48; }
.crono-card.featured {
  background: linear-gradient(120deg, #FBFFEA, var(--surface-card) 60%);
  box-shadow: 0 0 0 1px rgba(168,212,0,.28), 0 12px 30px -12px rgba(168,212,0,.4);
}
.crono-date {
  flex-shrink: 0; text-align: center;
  background: var(--brand-100); border-radius: 12px;
  padding: 10px 14px; min-width: 60px;
}
.crono-date .day { font-size: 24px; font-weight: 800; color: var(--brand-500); line-height: 1; letter-spacing: -.02em; }
.crono-date .month { font-size: 9px; font-weight: 700; color: rgba(51,69,232,.6); letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.crono-card.free .crono-date { background: rgba(168,212,0,.14); }
.crono-card.free .crono-date .day { color: #6E8C00; }
.crono-card.free .crono-date .month { color: rgba(110,140,0,.75); }
.crono-card.bonus .crono-date { background: rgba(224,168,0,.14); }
.crono-card.bonus .crono-date .day { color: #B98700; }
.crono-card.bonus .crono-date .month { color: rgba(185,135,0,.75); }
.crono-info { flex: 1; }
.crono-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px; margin-bottom: 9px;
}
.crono-tag i { font-size: 11px; }
.crono-tag.free { background: var(--signal-600); color: var(--brand-900); }
.crono-tag.paid { background: rgba(51,69,232,.12); color: var(--brand-500); }
.crono-tag.bonus { background: rgba(224,168,0,.18); color: #B98700; }
.crono-name { font-size: 14.5px; font-weight: 600; color: var(--ink-100); margin-bottom: 3px; letter-spacing: -.01em; }
.crono-detail { font-size: 11.5px; font-weight: 300; color: var(--ink-60); line-height: 1.5; }
.crono-note { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--brand-500); margin-top: 6px; }
.crono-note i { font-size: 12px; }
.crono-price { font-size: 13px; font-weight: 700; color: #6E8C00; margin-top: 7px; }
.crono-card.paid .crono-price { color: var(--brand-500); }
.crono-card.bonus .crono-price { color: #B98700; }

.crono-cta {
  margin-top: 40px; border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 45%, var(--brand-800) 100%);
  color: var(--onblue-100);
  box-shadow: 0 44px 90px -30px rgba(11,15,48,.55);
}
.crono-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(640px 340px at 8% -14%, rgba(206,255,0,.24), transparent 60%),
    radial-gradient(560px 420px at 104% 112%, rgba(140,170,255,.22), transparent 60%);
}
.crono-cta-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.3fr 1fr; align-items: center; gap: 48px;
  padding: 56px;
}
.crono-cta-content, .crono-cta-price-box { min-width: 0; }
.crono-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--signal-500); margin-bottom: 22px;
}
.crono-cta-content { text-align: left; }
.crono-cta-content h3 { font-size: 36px; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 16px; }
.crono-cta-content h3 b { color: var(--signal-500); font-weight: 800; }
.crono-cta-content p { font-size: 15.5px; font-weight: 300; color: rgba(255,255,255,.78); max-width: 440px; line-height: 1.65; }
.crono-cta-content p strong { color: #fff; font-weight: 600; }

.crono-cta-price-box {
  position: relative; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 34px 30px; border-radius: 20px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(20px);
}
.crono-cta-price-label { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.crono-cta-price { font-size: 58px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: #fff; margin: 8px 0 24px; }
.crono-cta-price sup { font-size: .38em; font-weight: 700; top: -1.6em; }
.crono-cta-price small { font-size: .55em; font-weight: 700; color: var(--signal-500); }
.crono-cta-price-box .btn { width: 100%; justify-content: center; }
.crono-cta-scarcity { display: flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--signal-500); }
.crono-cta-scarcity i { font-size: 14px; }

/* ─── COMO FUNCIONA ─── */
.how { padding: 96px 0 100px; background: var(--surface-canvas); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; margin-bottom: 56px; }
.steps::before {
  content: '';
  position: absolute; top: 32px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px; background: linear-gradient(90deg, transparent, var(--ink-20), transparent);
}
.step { text-align: center; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--ink-10); background: var(--surface-card);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 20px; font-weight: 700; color: var(--brand-500);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--surface-canvas), var(--lift-1);
}
.step-title { font-size: 15.5px; font-weight: 600; margin-bottom: 10px; letter-spacing: -.015em; color: var(--ink-100); }
.step-text { font-size: 16px; font-weight: 300; color: var(--ink-80); line-height: 1.65; max-width: 260px; margin: 0 auto; }
.how-cta { text-align: center; }

/* ─── PROVA SOCIAL ─── */
.social { padding: 104px 0; background: var(--surface-card); }
.social-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.social-copy { text-align: left; }
.social-copy .section-sub strong { color: var(--ink-100); font-weight: 700; }
.social-trust { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.social-trust-item { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--ink-80); }
.social-trust-item i { font-size: 17px; color: var(--brand-500); flex-shrink: 0; }

.social-visual { display: flex; justify-content: center; }
.ranking-card {
  position: relative; overflow: hidden;
  width: 100%; max-width: 480px; border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--brand-500), var(--brand-800));
  box-shadow: 0 34px 70px -20px rgba(11,15,48,.5);
}
.ranking-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 240px at 92% -8%, rgba(206,255,0,.2), transparent 60%);
}
.ranking-card-inner { position: relative; z-index: 1; padding: 30px 28px 6px; }
.ranking-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.ranking-pill { display: inline-flex; align-items: center; padding: 7px 16px; border-radius: var(--r-pill); background: var(--signal-500); color: var(--brand-900); font-size: 11.5px; font-weight: 700; letter-spacing: .01em; }
.ranking-seal {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--signal-500); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px -6px rgba(206,255,0,.5);
}
.ranking-seal svg { width: 24px; height: 24px; }
.ranking-card-title { font-size: 21px; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.28; margin-bottom: 20px; }
.ranking-card-title b { color: var(--signal-500); font-weight: 800; }
.ranking-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.14); flex-wrap: wrap; }
.ranking-meta-label { font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--signal-500); }
.ranking-meta-stats { font-size: 11.5px; color: rgba(255,255,255,.65); white-space: nowrap; }
.ranking-meta-stats b { color: #fff; font-weight: 700; }

.ranking-rows-podium { padding: 6px 0 20px; }
.ranking-row-p { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.ranking-row-p.is-first { background: rgba(206,255,0,.08); margin: 0 -28px 2px; padding: 14px 28px; border-radius: 14px; border-left: 3px solid var(--signal-500); }
.rank-medal { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.rank-medal i { font-size: 24px; }
.rank-medal.gold { background: rgba(255,215,0,.16); }
.rank-medal.gold i { color: #FFD700; filter: drop-shadow(0 2px 5px rgba(255,215,0,.35)); }
.rank-medal.silver { background: rgba(202,207,216,.2); }
.rank-medal.silver i { color: #CACFD8; filter: drop-shadow(0 2px 5px rgba(202,207,216,.3)); }
.rank-medal.bronze { background: rgba(205,127,50,.18); }
.rank-medal.bronze i { color: #CD7F32; filter: drop-shadow(0 2px 5px rgba(205,127,50,.3)); }
.ranking-row-p .plain-pos { width: 46px; flex-shrink: 0; text-align: center; font-size: 15px; font-weight: 800; color: rgba(255,255,255,.4); }
.ranking-row-p-info { flex: 1; min-width: 0; }
.ranking-row-p-name { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -.005em; }
.ranking-row-p-sub { font-size: 10px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 3px; }
.ranking-row-p-score { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ranking-row-p-bar { width: 60px; height: 5px; border-radius: var(--r-pill); background: rgba(255,255,255,.14); overflow: hidden; flex-shrink: 0; }
.ranking-row-p-bar span { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--signal-600), var(--signal-500)); }
.ranking-row-p-pct { font-size: 16px; font-weight: 800; color: var(--signal-500); letter-spacing: -.02em; white-space: nowrap; }
.ranking-row-p-pct small { font-size: 10.5px; font-weight: 700; }
.ranking-card-footer-p {
  position: relative; z-index: 1; padding: 14px 28px; text-align: center;
  font-size: 11px; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.12);
}

/* ─── CTA FINAL ─── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative; overflow: hidden;
  color: var(--onblue-100);
  background:
    radial-gradient(900px 580px at 50% 116%, rgba(206,255,0,.18), transparent 62%),
    radial-gradient(700px 500px at 8% 0%, rgba(140,170,255,.2), transparent 55%),
    linear-gradient(150deg, var(--brand-500) 0%, var(--brand-600) 55%, var(--brand-800) 100%);
}
.cta-section .section-title { margin-bottom: 14px; }
.cta-section .section-sub { margin-bottom: 42px; }
.cta-urgency {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--onblue-glass);
  border: 1px solid var(--onblue-border);
  border-radius: var(--r-pill); padding: 11px 22px;
  font-size: 16px; font-weight: 500; color: var(--onblue-80);
  margin-bottom: 34px; backdrop-filter: blur(10px);
}
.cta-urgency i { font-size: 16px; color: var(--signal-500); }
.cta-urgency strong { color: var(--signal-500); font-weight: 700; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 42px 0;
  background: #010631;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-inner .brand-mark .brand-word { height: 19px; opacity: .92; }
.footer-inner .brand-mark .brand-word path { fill: #F2F3FF; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { display: inline-flex; align-items: center; gap: 6px; font-size: 16px; color: var(--onblue-80); text-decoration: none; transition: color .3s var(--ease-swift); }
.footer-links a i { font-size: 14px; }
.footer-links a:hover { color: var(--onblue-100); }
.footer-copy { font-size: 16px; color: var(--onblue-80); margin-top: 22px; text-align: center; }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .crono-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; gap: 44px; }
  .social-copy { text-align: center; }
  .social-trust-item { justify-content: center; }
  .social-copy > div[style] { display: flex; justify-content: center; }
}
@media (max-width: 768px) {
  .hero { padding: 101px 0 0; }
  .hero .container { padding-top: 32px; }
  .hero-headline { font-size: 44px; }
  .hero-device-wrap { padding: 0 14px; margin-top: 40px; }
  .laptop { transform: rotateX(6deg) rotateY(-11deg) rotateZ(1deg); }
  .laptop-frame { padding: 9px 9px 18px; border-radius: 14px; }
  .app-logo svg { width: 4.4vw; height: 4.4vw; }
  .app-logo span { font-size: 3vw; }
  .app-badge-pill, .app-nav-center, .app-toggle { display: none; }
  .app-avatar { width: 4.4vw; height: 4.4vw; font-size: 2vw; }
  .app-banner-title { font-size: 4.6vw; }
  .app-banner p { font-size: 2.3vw; }
  .app-search span { font-size: 2.1vw; }
  .app-filter-btn { font-size: 2.1vw; }
  .app-section-label { font-size: 2.4vw; }
  .app-live-title { font-size: 4vw; }
  .app-live-subject, .app-live-badge, .app-live-timer, .app-tag-pill, .app-live-cta { font-size: 1.9vw; }
  .app-upcoming-name { font-size: 2.8vw; }
  .app-upcoming-subject, .app-upcoming-date, .app-upcoming-badge { font-size: 1.9vw; }
  .stats { margin-top: -50px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--ink-10); }
  .stat-item:last-child { border-bottom: none; }
  .benefits { padding: 76px 0 60px; }
  .cronograma, .how, .social { padding: 76px 0; }
  .cta-section { padding: 92px 0; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .steps::before { display: none; }
  .banner-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .crono-cta-grid { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .crono-cta-content { text-align: center; }
  .crono-cta-content p { max-width: none; margin: 0 auto; }
  .crono-cta-content h3 { font-size: 28px; }
  .crono-cta-price-box .btn { white-space: normal; text-align: center; line-height: 1.3; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  nav .brand-mark .brand-word { display: none; }
  nav .brand-mark .brand-symbol { display: block; }
  .btn-lg { font-size: 14px; padding: 16px 28px; }
  .hero-cta-row { flex-direction: column; gap: 16px; }
  .crono-cta-eyebrow { white-space: normal; text-align: center; max-width: 100%; font-size: 10.5px; padding: 7px 14px; }
  .crono-cta-content h3 { font-size: 24px; }
  .crono-cta-price { font-size: 46px; }
  .crono-cta-price-box { padding: 28px 20px; }
  .crono-cta-price-box .btn { font-size: 13.5px; padding: 14px 18px; gap: 6px; }
}

/* ─── SCROLL REVEAL (premium section transitions) ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease-swift), transform .9s var(--ease-swift);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
