

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --c0: #080808;
  --c1: #0f0f0f;
  --c2: #161616;
  --c3: #1e1e1e;
  --c4: #272727;
  --rule: rgba(255,255,255,0.07);
  --rule2: rgba(255,255,255,0.04);

  --w:   rgba(255,255,255,0.95);
  --w2:  rgba(255,255,255,0.75);
  --w3:  rgba(255,255,255,0.45);

  --blue:  #7ca4e8;
  --bdim:  rgba(124,164,232,0.10);
  --bglow: rgba(124,164,232,0.15);

  --ff-head: 'Bricolage Grotesque', system-ui, sans-serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  /* layout */
  --pad: 72px;
  --sec: 96px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c0);
  color: var(--w);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ────────────────────────────────────────────────── */
/* Full-width sections, consistent side padding */
.container {
  width: 100%;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
/* pages are individual files */

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 60px;
  background: rgba(8,8,8,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--pad);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-head);
  font-size: 15px; font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
  cursor: pointer;
}
.nav-logo-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 13.5px; font-weight: 400;
  color: var(--w2);
  padding: 7px 14px; border-radius: 8px;
  transition: all .18s; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-link .chev { opacity: .4; transition: transform .18s, opacity .18s; }
.nav-link:hover .chev { opacity: .75; transform: rotate(180deg); }

/* Dropdown */
.ndrop-wrap { position: relative; }
.ndrop {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.ndrop-inner {
  background: var(--c2); border: 1px solid var(--rule);
  border-radius: 14px; padding: 6px;
  min-width: 240px;
  box-shadow: 0 24px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  transform: translateY(-4px);
  transition: transform .2s;
}
.ndrop-wrap:hover .ndrop {
  opacity: 1; pointer-events: auto;
}
.ndrop-wrap:hover .ndrop-inner {
  transform: translateY(0);
}
.ditem {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 9px;
  cursor: pointer; transition: background .14s;
}
.ditem:hover { background: rgba(255,255,255,0.05); }
.dicon {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--rule);
  background: var(--c3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dlabel strong { display: block; font-size: 13.5px; font-weight: 500; color: #fff; margin-bottom: 1px; }
.dlabel span { font-size: 12px; color: var(--w3); }

/* ── mobile drawer: always hidden until .open, regardless of breakpoint ── */
.mobile-menu {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0;
  background: rgba(9,9,9,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--rule);
  padding: 16px 20px 24px;
  z-index: 997;
  flex-direction: column; gap: 2px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  font-size: 15px; font-weight: 400; color: var(--w2);
  padding: 12px 14px; border-radius: 9px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.mobile-menu-link:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-sub-toggle {
  font-size: 15px; font-weight: 400; color: var(--w2);
  padding: 12px 14px; border-radius: 9px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none;
  transition: background .15s, color .15s;
}
.mobile-sub-toggle:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-sub-toggle .m-chev { transition: transform .2s; opacity: .4; }
.mobile-sub-toggle.open-sub .m-chev { transform: rotate(180deg); opacity: .7; }
.mobile-submenu {
  display: none; flex-direction: column; gap: 2px;
  padding: 4px 0 4px 14px;
}
.mobile-submenu.open { display: flex; }
.mobile-submenu a {
  font-size: 14px; color: var(--w2); padding: 9px 14px;
  border-radius: 8px; display: flex; align-items: center; gap: 10px;
  transition: background .14s, color .14s; text-decoration: none;
}
.mobile-submenu a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-menu-divider { height: 1px; background: var(--rule); margin: 10px 0; }
.mobile-menu-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.mobile-menu-btns a {
  display: flex; align-items: center; justify-content: center;
  padding: 13px; border-radius: 10px;
  font-size: 14.5px; font-weight: 600;
  text-decoration: none; transition: all .18s;
}
.mmb-ghost {
  color: var(--w2); border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.mmb-ghost:hover { color: #fff; background: rgba(255,255,255,0.08); }
.mmb-solid {
  background: var(--blue); color: #fff;
  border: 1px solid var(--blue);
}
.mmb-solid:hover { background: #6b93da; border-color: #6b93da; }
.nav-hamburger { display: none; background: none; border: none; padding: 0; cursor: pointer; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-body); font-size: 13.5px; font-weight: 500;
  padding: 9px 18px; border-radius: 9px;
  border: 1px solid transparent; cursor: pointer;
  transition: all .18s; line-height: 1; white-space: nowrap;
}
.btn-ghost {
  color: var(--w2);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}
.btn-solid { background: var(--blue); color: #fff; border-color: var(--blue); font-weight: 600; }
.btn-solid:hover { background: #6b93da; border-color: #6b93da; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding-top: 60px;
  background: var(--c0);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 65% -5%, rgba(124,164,232,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 5% 85%, rgba(124,164,232,0.06) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, black 20%, transparent 100%);
}
.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px var(--pad) 64px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--blue);
  background: var(--bdim); border: 1px solid rgba(124,164,232,0.22);
  padding: 5px 13px; border-radius: 100px;
  margin-bottom: 32px; width: fit-content;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.8)} }

.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 800; line-height: .95;
  letter-spacing: -0.04em; color: #fff;
}
.hero-h1 em { font-style: italic; font-weight: 600; color: var(--blue); }

.hero-right { display: flex; flex-direction: column; justify-content: center; }
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: var(--w2); line-height: 1.75;
  margin-bottom: 40px;
}
.hero-btns { display: flex; align-items: center; gap: 12px; }
.btn-hero-cta {
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: 14.5px;
  padding: 13px 26px; border-radius: 10px;
  border: 1px solid var(--blue); transition: all .18s;
}
.btn-hero-cta:hover { background: #6b93da; border-color: #6b93da; transform: translateY(-1px); }
.btn-hero-ghost {
  color: var(--w);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  font-size: 14.5px; padding: 12px 26px; border-radius: 10px;
  transition: all .2s;
  backdrop-filter: blur(6px);
}
.btn-hero-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

/* Hero stats bar */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--rule);
  position: relative; z-index: 1;
}
.hstat {
  padding: 32px var(--pad);
  border-right: 1px solid var(--rule);
}
.hstat:last-child { border-right: none; }
.hstat-n {
  font-family: var(--ff-head);
  font-size: 38px; font-weight: 800;
  color: #fff; line-height: 1;
  letter-spacing: -0.03em; margin-bottom: 6px;
}
.hstat-n em { font-style: normal; color: var(--blue); }
.hstat-l { font-size: 13px; color: var(--w3); font-weight: 300; }

/* ── SECTION SHARED ────────────────────────────────────────── */
.sec { padding: var(--sec) 0; }
.sec-pad { padding-left: var(--pad); padding-right: var(--pad); }
.stag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.stag::before {
  content: ''; display: block;
  width: 20px; height: 1.5px;
  background: var(--blue); border-radius: 2px; flex-shrink: 0;
}
.sh {
  font-family: var(--ff-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800; line-height: 1.04;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 16px;
}
.sh em { font-style: italic; font-weight: 600; color: var(--blue); }
.sd { font-size: 17px; font-weight: 300; color: var(--w2); line-height: 1.75; }

/* ── PLATFORMS ─────────────────────────────────────────────── */
.plats { background: var(--c1); border-top: 1px solid var(--rule); }
.plats-head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 40px;
  margin-bottom: 52px;
}
.plat-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 14px; overflow: hidden;
}
.pcard {
  background: var(--c1);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: background .2s;
  position: relative; overflow: hidden;
}
.pcard::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.pcard:hover { background: var(--c3); }
.pcard:hover::after { transform: scaleX(1); }
.pcard-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.pcard-arr {
  width: 30px; height: 30px; border-radius: 7px;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--w3); transition: all .2s;
}
.pcard:hover .pcard-arr { background: var(--blue); border-color: var(--blue); color: #fff; }
.pcard h3 {
  font-family: var(--ff-head);
  font-size: 19px; font-weight: 700;
  color: #fff; margin-bottom: 10px; letter-spacing: -0.02em;
}
.pcard p {
  font-size: 15.5px; font-weight: 300;
  color: var(--w2); line-height: 1.7;
  margin-bottom: 24px; flex: 1;
}
.ptags { display: flex; flex-wrap: wrap; gap: 6px; }
.ptag {
  font-size: 11px; font-weight: 500; color: var(--w3);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule);
  padding: 3px 9px; border-radius: 4px;
}

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.hiw { background: var(--c0); border-top: 1px solid var(--rule); }
.hiw-head { margin-bottom: 60px; }
.hiw-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hiw-step {
  padding: 52px 44px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.hiw-step:last-child { border-right: none; }
.hiw-num {
  font-family: var(--ff-head);
  font-size: 64px; font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute; top: 28px; right: 28px;
  letter-spacing: -0.04em; pointer-events: none;
  transition: color .3s ease;
}
.hiw-step:hover .hiw-num { color: var(--blue); opacity: 0.35; }
.hiw-idx {
  font-size: 11px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hiw-step h3 {
  font-family: var(--ff-head);
  font-size: 21px; font-weight: 700;
  color: #fff; margin-bottom: 14px; letter-spacing: -0.02em;
}
.hiw-step p { font-size: 16px; color: var(--w2); line-height: 1.75; font-weight: 300; }
.hiw-time {
  margin-top: 24px; font-size: 12px; color: var(--blue);
  display: flex; align-items: center; gap: 6px;
}

/* ── TESTIMONIAL ───────────────────────────────────────────── */
.testi { background: var(--c1); border-top: 1px solid var(--rule); }
.tcard {
  background: var(--c3); border: 1px solid var(--rule);
  border-radius: 18px; padding: 60px;
  display: grid; grid-template-columns: 1fr 200px;
  gap: 48px; align-items: center;
}
.tquote {
  font-family: var(--ff-head);
  font-size: clamp(20px,2.5vw,27px);
  font-weight: 600; color: #fff;
  line-height: 1.35; letter-spacing: -0.02em;
  margin-bottom: 30px;
}
.tquote::before { content: '\201C'; color: var(--blue); }
.tquote::after  { content: '\201D'; color: var(--blue); }
.tmeta { display: flex; align-items: center; gap: 12px; }
.tav {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue);
  border: 2px solid rgba(124,164,232,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.tmini-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue);
  border: 2px solid rgba(124,164,232,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.tname { font-size: 14px; font-weight: 600; color: #fff; }
.trole { font-size: 12.5px; color: var(--w3); }
.tstat {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  background: var(--c0); border-radius: 14px;
  padding: 28px 20px;
}
.tstat-n {
  font-family: var(--ff-head);
  font-size: 48px; font-weight: 800;
  color: var(--blue); line-height: 1;
  letter-spacing: -0.04em; margin-bottom: 8px;
}
.tstat-l { font-size: 13px; color: var(--w2); font-weight: 300; line-height: 1.5; }

/* ── CTA SECTION ───────────────────────────────────────────── */
.cta-sec {
  background: var(--c2); border-top: 1px solid var(--rule);
  padding: var(--sec) 0; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; top: 50%; left: 30%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,164,232,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative; z-index: 1;
}
.cta-left h2 {
  font-family: var(--ff-head);
  font-size: clamp(38px,5.5vw,68px);
  font-weight: 800; letter-spacing: -0.04em;
  color: #fff; line-height: .97; margin-bottom: 18px;
}
.cta-left h2 em { font-style: italic; font-weight: 600; color: var(--blue); }
.cta-left p {
  font-size: 17px; font-weight: 300;
  color: var(--w2); max-width: 480px; line-height: 1.75;
}
.cta-right { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.btn-cta-p {
  background: var(--blue); color: #fff; font-weight: 700;
  font-size: 14.5px; padding: 14px 30px; border-radius: 10px;
  border: 1px solid var(--blue); transition: all .18s; white-space: nowrap;
}
.btn-cta-p:hover { background: #6b93da; border-color: #6b93da; }
.btn-cta-g {
  color: var(--w);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  font-size: 14.5px; padding: 13px 30px; border-radius: 10px;
  transition: all .2s; white-space: nowrap;
  backdrop-filter: blur(6px);
}
.btn-cta-g:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

/* ── PLATFORM PAGES ────────────────────────────────────────── */
.pp-hero {
  padding: 140px var(--pad) 80px;
  background: var(--c0);
  border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--bglow) 0%, transparent 65%);
  pointer-events: none;
}
.pp-eye {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.pp-logo { height: 22px; width: auto; opacity: .9; }
.pp-sep { width: 1px; height: 18px; background: var(--rule); }
.pp-name {
  font-size: 12px; font-weight: 500; color: var(--w3);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.pp-h1 {
  font-family: var(--ff-head);
  font-size: clamp(40px,6vw,72px);
  font-weight: 800; line-height: .98;
  letter-spacing: -0.04em; color: #fff;
  margin-bottom: 24px; max-width: 680px;
  position: relative; z-index: 1;
}
.pp-h1 em { font-style: italic; font-weight: 600; color: var(--blue); }
.pp-sub {
  font-size: 18px; font-weight: 300; color: var(--w2);
  line-height: 1.75; max-width: 560px; margin-bottom: 40px;
  position: relative; z-index: 1;
}
.pp-btns { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }

/* Pill strip */
.pills {
  border-bottom: 1px solid var(--rule);
  background: var(--c0);
}
.pills-inner {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; padding: 20px var(--pad);
}
.pill {
  font-size: 12px; font-weight: 500; color: var(--w2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule);
  padding: 5px 13px; border-radius: 100px;
}

/* Outcomes grid */
.out-sec { background: var(--c1); border-top: 1px solid var(--rule); }
.out-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 14px; overflow: hidden;
  margin-top: 52px;
}
.ocard {
  background: var(--c2); padding: 36px 28px;
  transition: background .2s;
}
.ocard:hover { background: var(--c3); }
.oidx {
  font-size: 11px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px;
}
.ocard h3 {
  font-family: var(--ff-head);
  font-size: 19px; font-weight: 700; color: #fff;
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px;
}
.ocard p { font-size: 15.5px; color: var(--w2); line-height: 1.72; font-weight: 300; }

/* Feature checklist */
.feat-sec { background: var(--c0); border-top: 1px solid var(--rule); }
.feat-layout {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 80px; align-items: start; margin-top: 56px;
}
.feat-sticky { position: sticky; top: 80px; }
.feat-sticky p { font-size: 16.5px; font-weight: 300; color: var(--w2); line-height: 1.72; margin-bottom: 28px; }
.flist { display: flex; flex-direction: column; }
.frow {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--rule);
}
.frow:first-child { border-top: 1px solid var(--rule); }
.fcheck {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--bdim); border: 1px solid rgba(124,164,232,0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.frow h4 { font-size: 14.5px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.frow p { font-size: 15px; color: var(--w2); line-height: 1.65; font-weight: 300; }

/* ── PRICING PAGE ──────────────────────────────────────────── */
.price-hero {
  padding: 140px var(--pad) 80px;
  background: var(--c0);
  border-bottom: 1px solid var(--rule);
}
.price-hero-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
}
.price-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(44px,6.5vw,80px);
  font-weight: 800; letter-spacing: -0.04em;
  color: #fff; line-height: .97; margin-bottom: 18px;
}
.price-hero h1 em { font-style: italic; font-weight: 600; color: var(--blue); }
.price-hero p {
  font-size: 18px; font-weight: 300;
  color: var(--w2); max-width: 500px; line-height: 1.75;
}
.btoggle {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule);
  border-radius: 100px; padding: 4px; flex-shrink: 0;
}
.bopt {
  font-size: 13px; font-weight: 500;
  padding: 8px 20px; border-radius: 100px;
  cursor: pointer; color: var(--w2);
  transition: all .18s;
  display: flex; align-items: center; gap: 8px;
}
.bopt.on { background: var(--blue); color: #fff; }
.bsave {
  font-size: 10.5px; font-weight: 600;
  background: rgba(124,164,232,0.18); color: var(--blue);
  padding: 2px 8px; border-radius: 100px;
}

.price-sec { padding: 80px 0 var(--sec); background: var(--c1); }
.price-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-bottom: 40px;
}
.pc {
  border: 1px solid var(--rule); border-radius: 18px; padding: 36px;
  background: var(--c3); display: flex; flex-direction: column;
  position: relative; transition: border-color .2s;
}
.pc:hover { border-color: rgba(255,255,255,0.14); }
.pc.feat-pc { border-color: var(--blue); background: linear-gradient(145deg,rgba(124,164,232,0.07) 0%,var(--c3) 60%); }
.pc-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pc-tier {
  font-size: 11.5px; font-weight: 600; color: var(--w3);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.pc-price {
  font-family: var(--ff-head);
  font-size: 52px; font-weight: 800;
  color: #fff; line-height: 1; letter-spacing: -0.04em; margin-bottom: 4px;
}
.pc-price sub { font-size: 18px; font-weight: 400; color: var(--w2); vertical-align: middle; }
.pc-freq { font-size: 12px; color: var(--w3); margin-bottom: 24px; }
.pc-freq .sv { color: var(--blue); }
.pc-desc {
  font-size: 15.5px; color: var(--w2); font-weight: 300;
  line-height: 1.65; padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 20px;
}
.pc-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--w2); font-weight: 300; line-height: 1.55;
}
.pc-item::before {
  content: '';
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: var(--bdim); border: 1px solid rgba(124,164,232,0.28);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5.2L4.2 7.5L8 3' stroke='%237ca4e8' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
  margin-top: 2px;
}
.pc-btn {
  width: 100%; justify-content: center; padding: 12px;
  font-size: 14px; font-weight: 600; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; transition: all .18s; margin-top: auto;
}
.pc-btn:hover { background: rgba(255,255,255,0.11); }
.feat-pc .pc-btn { background: var(--blue); border-color: var(--blue); }
.feat-pc .pc-btn:hover { background: #6b93da; }

/* Addons */
.addons-sec { padding: 0 0 var(--sec); background: var(--c1); }
.addon-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 14px; overflow: hidden;
  margin-top: 48px;
}
.addon-row {
  background: var(--c3); padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: background .18s;
}
.addon-row:hover { background: var(--c4); }
.addon-row h4 { font-size: 14.5px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.addon-row p { font-size: 15px; color: var(--w2); font-weight: 300; }
.addon-p { font-family: var(--ff-head); font-size: 16px; font-weight: 700; color: #fff; white-space: nowrap; }

/* Compare table */
.compare-sec { padding: 0 0 var(--sec); background: var(--c1); }
.ctable { width: 100%; border-collapse: collapse; }
.ctable th {
  font-size: 11.5px; font-weight: 600; color: var(--w3);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid var(--rule);
}
.ctable th:not(:first-child) { text-align: center; }
.ctable td { padding: 15px 20px; border-bottom: 1px solid var(--rule); font-size: 15px; color: var(--w2); }
.ctable td:not(:first-child) { text-align: center; }
.ctable tr:hover td { background: rgba(255,255,255,.02); }
.ct-grp td {
  font-size: 11px; font-weight: 600; color: var(--w3);
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.02); padding: 10px 20px;
}
.ck { color: var(--blue); font-size: 16px; }
.cx { color: var(--w3); font-size: 16px; }

/* FAQ */
.faq-sec { padding: 0 0 var(--sec); background: var(--c1); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; margin-top: 48px; }
.faq-q { padding: 22px 0; border-bottom: 1px solid var(--rule); }
.faq-q:first-child { border-top: 1px solid var(--rule); }
.faq-q h4 { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.faq-q p { font-size: 15.5px; color: var(--w2); line-height: 1.75; font-weight: 300; }

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero {
  padding: 140px var(--pad) 100px;
  background: var(--c0);
  border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,164,232,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.about-hero > * { position: relative; z-index: 1; }
.about-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(44px,6.5vw,80px);
  font-weight: 800; letter-spacing: -0.04em;
  color: #fff; line-height: .97; margin-bottom: 28px;
  max-width: 700px;
}
.about-hero h1 em { font-style: italic; font-weight: 600; color: var(--blue); }
.about-body {
  font-size: 18px; font-weight: 300;
  color: var(--w2); line-height: 1.8;
  max-width: 640px;
}
.about-body p + p { margin-top: 16px; }

.princ-sec { background: var(--c1); border-top: 1px solid var(--rule); }
.princ-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 14px; overflow: hidden;
  margin-top: 52px;
}
.pcard2 {
  background: var(--c2); padding: 44px;
  transition: background .2s;
}
.pcard2:hover { background: var(--c3); }
.pcard2-n {
  font-size: 11px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px;
}
.pcard2 h3 {
  font-family: var(--ff-head);
  font-size: 20px; font-weight: 700; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.pcard2 p { font-size: 15.5px; color: var(--w2); line-height: 1.72; font-weight: 300; }

.stats-sec { background: var(--c0); border-top: 1px solid var(--rule); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--rule); border-radius: 14px; overflow: hidden;
}
.sstat { padding: 40px 36px; border-right: 1px solid var(--rule); }
.sstat:last-child { border-right: none; }
.sstat-v {
  font-family: var(--ff-head);
  font-size: 48px; font-weight: 800;
  color: var(--blue); line-height: 1;
  letter-spacing: -0.04em; margin-bottom: 8px;
}
.sstat-l { font-size: 15px; color: var(--w2); font-weight: 300; line-height: 1.5; }
.sstat-n { margin-top: 4px; font-size: 12px; color: var(--w3); }

.how-work-sec { background: var(--c1); border-top: 1px solid var(--rule); }
.how-work-grid {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 80px; align-items: start; margin-top: 56px;
}
.how-sticky { position: sticky; top: 80px; }
.how-sticky p { font-size: 16px; color: var(--w2); font-weight: 300; line-height: 1.72; margin-bottom: 28px; }
.wlist { display: flex; flex-direction: column; }
.wrow {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--rule);
}
.wrow:first-child { border-top: 1px solid var(--rule); }
.wicon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--bdim); border: 1px solid rgba(124,164,232,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--blue);
}
.wrow h4 { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.wrow p { font-size: 15.5px; color: var(--w2); font-weight: 300; line-height: 1.68; }

.testi2-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 52px;
}
.tmini {
  background: var(--c3); border: 1px solid var(--rule);
  border-radius: 14px; padding: 30px;
  transition: border-color .2s;
}
.tmini:hover { border-color: rgba(124,164,232,0.28); }
.tmini-q {
  font-family: var(--ff-head);
  font-size: 17px; font-weight: 600; color: #fff;
  font-style: italic; line-height: 1.5; margin-bottom: 20px;
}
.tmini-q::before { content: '\201C'; color: var(--blue); }
.tmini-q::after  { content: '\201D'; color: var(--blue); }
.tmini-meta { display: flex; align-items: center; gap: 10px; }
.tmini-name { font-size: 13.5px; font-weight: 500; color: #fff; }
.tmini-role { font-size: 12px; color: var(--w3); }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--c1); border-top: 1px solid var(--rule);
  padding: 64px 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 14px;
}
.footer-brand-logo-mark {
  width: 26px; height: 26px; background: var(--blue);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.footer-tagline { font-size: 15px; color: var(--w3); line-height: 1.65; max-width: 240px; font-weight: 300; }
.footer-col h5 {
  font-size: 11px; font-weight: 600; color: var(--w3);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 15px; color: var(--w2); font-weight: 300; transition: color .15s; cursor: pointer; }
.footer-col a:hover { color: #fff; }
.footer-socials {
  display: flex; gap: 10px; margin-bottom: 28px;
}
.footer-social {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--w3); transition: all .18s;
  text-decoration: none;
}
.footer-social:hover {
  background: var(--bdim);
  border-color: rgba(124,164,232,0.25);
  color: var(--blue);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--rule); padding-top: 28px;
}
.footer-copy { font-size: 12px; color: var(--w3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--w3); cursor: pointer; transition: color .15s; }
.footer-legal a:hover { color: var(--w2); }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.reveal { opacity:0; transform:translateY(22px); transition:opacity .55s ease, transform .55s ease; }
.reveal.in { opacity:1; transform:translateY(0); }
.d1{transition-delay:.06s} .d2{transition-delay:.12s}
.d3{transition-delay:.18s} .d4{transition-delay:.24s}

/* ══ RESPONSIVE ════════════════════════════════════════════════ */

/* ── 1280px: tablet-landscape ──────────────────────────────── */
@media(max-width:1280px) {
  :root { --pad: 48px; }
  .plat-grid  { grid-template-columns: 1fr 1fr; }
  .out-grid   { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ── 900px: tablet-portrait / large phone ───────────────────── */
@media(max-width:900px) {
  :root { --pad: 24px; --sec: 72px; }

  /* ─ NAV: hide links, show hamburger ─ */
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 36px; height: 36px;
    padding: 8px 6px; border-radius: 8px;
    transition: background .15s;
  }
  .nav-hamburger:hover { background: rgba(255,255,255,0.06); }
  .nav-hamburger span {
    display: block; border-radius: 2px;
    background: rgba(255,255,255,0.8);
    transition: all .25s;
  }
  .nav-hamburger span:nth-child(1) { height: 1.5px; width: 20px; }
  .nav-hamburger span:nth-child(2) { height: 1.5px; width: 14px; }
  .nav-hamburger span:nth-child(3) { height: 1.5px; width: 17px; }
  .nav-inner  { position: relative; }
  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 36px; height: 36px; cursor: pointer;
    padding: 8px 6px; border-radius: 8px;
    background: none; border: none;
    transition: background .15s;
  }
  .nav-hamburger:hover { background: rgba(255,255,255,0.06); }
  .nav-hamburger span {
    display: block; border-radius: 2px;
    background: rgba(255,255,255,0.8);
    transition: all .25s;
  }
  .nav-hamburger span:nth-child(1) { height: 1.5px; width: 20px; }
  .nav-hamburger span:nth-child(2) { height: 1.5px; width: 14px; }
  .nav-hamburger span:nth-child(3) { height: 1.5px; width: 17px; }
  /* ─ HERO ─ */
  .hero { min-height: unset; padding-top: 60px; }
  .hero-body {
    grid-template-columns: 1fr; gap: 28px;
    padding: 48px var(--pad) 40px;
  }
  .hero-h1 { font-size: clamp(38px, 9vw, 56px); }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-btns { flex-wrap: wrap; gap: 10px; }
  .hero-btns a { flex: 1; min-width: 140px; text-align: center; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hstat { padding: 24px var(--pad); border-bottom: 1px solid var(--rule); }
  .hstat:nth-child(2) { border-right: none; }
  .hstat:nth-child(3) { border-bottom: none; }
  .hstat:nth-child(4) { border-right: none; border-bottom: none; }
  .hstat-n { font-size: 30px; }

  /* ─ PLATFORMS GRID ─ */
  .plats-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .plats-head .btn { align-self: flex-start; }
  .plat-grid { grid-template-columns: 1fr 1fr; }
  .pcard { padding: 26px 20px; }

  /* ─ HOW IT WORKS ─ */
  .hiw-steps {
    grid-template-columns: 1fr;
    border-top: none; border-bottom: none;
  }
  .hiw-step {
    border-right: none;
    border: 1px solid var(--rule);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 32px 28px;
  }
  .hiw-step:last-child { margin-bottom: 0; }
  .hiw-num { font-size: 48px; top: 18px; right: 18px; }

  /* ─ TESTIMONIAL ─ */
  .tcard { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
  .tstat { align-items: flex-start; text-align: left; padding: 22px; flex-direction: row; gap: 16px; align-items: center; }
  .tstat-n { font-size: 36px; margin-bottom: 0; }

  /* ─ CTA SECTION ─ */
  .cta-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .cta-right { width: 100%; }
  .btn-cta-p, .btn-cta-g { width: 100%; text-align: center; justify-content: center; }

  /* ─ PLATFORM PAGES ─ */
  .pp-hero { padding: 100px var(--pad) 56px; }
  .pp-btns { flex-wrap: wrap; gap: 10px; }
  .pp-btns a { flex: 1; min-width: 140px; text-align: center; justify-content: center; }
  .out-grid { grid-template-columns: 1fr; }
  .feat-layout { grid-template-columns: 1fr; }
  .feat-sticky { position: static; margin-bottom: 8px; }

  /* ─ PRICING ─ */
  .price-hero { padding: 100px var(--pad) 40px; }
  .price-hero h1 { font-size: clamp(34px,8vw,52px); }
  .price-hero-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .btoggle { align-self: flex-start !important; }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .pc { padding: 28px 24px; }
  .pc-price { font-size: 44px; }
  /* Not sure which plan box */
  .price-unsure {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .price-unsure a { width: 100%; text-align: center; justify-content: center; }
  .addon-grid { grid-template-columns: 1fr; }
  .addon-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .addon-p { font-size: 18px; }

  /* ─ COMPARE TABLE: scroll wrapper ─ */
  .ctable-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--rule);
    border-radius: 12px;
    margin-top: 48px;
  }
  .ctable { min-width: 560px; }
  .ctable th, .ctable td { padding: 12px 14px; font-size: 13.5px; }
  .ctable th:first-child, .ctable td:first-child { min-width: 160px; }

  /* ─ FAQ ─ */
  .faq-grid { grid-template-columns: 1fr; }

  /* ─ ABOUT ─ */
  .about-hero { padding: 100px var(--pad) 64px; }
  .about-hero h1 { font-size: clamp(36px,9vw,56px); }
  .princ-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .sstat { padding: 28px 22px; }
  .sstat-v { font-size: 38px; }
  .how-work-grid { grid-template-columns: 1fr; }
  .how-sticky { position: static; margin-bottom: 8px; }
  .testi2-grid { grid-template-columns: 1fr; }

  /* ─ FOOTER ─ */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── 600px: phone ──────────────────────────────────────────── */
@media(max-width:600px) {
  :root { --pad: 20px; --sec: 56px; }

  /* Hero */
  .hero-body { padding: 36px var(--pad) 32px; }
  .hero-badge { font-size: 11px; }
  .hero-h1 { font-size: clamp(34px,10vw,48px); line-height: 1.0; }
  .hero-sub { font-size: 15.5px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hstat { padding: 20px var(--pad); }
  .hstat-n { font-size: 26px; }

  /* Platforms */
  .plat-grid { grid-template-columns: 1fr; }
  .pcard { padding: 24px 18px; }

  /* Pricing */
  .price-grid { grid-template-columns: 1fr; }
  .pc { padding: 24px 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer { padding: 48px 0 28px; }

  /* Misc */
  .sh { font-size: clamp(28px,8vw,40px); }
  .tcard { padding: 24px; }
  .pcard2 { padding: 28px 22px; }
  .sstat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stats-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .stats-grid .sstat:last-child { border-bottom: none; }
}

