/* ============================================================
   Launchmatic — redesign
   Type: Space Grotesk (display) + Hanken Grotesk (body)
   ============================================================ */

:root {
  /* brand */
  --brand-rgb: 86,53,242;
  --purple: rgb(var(--brand-rgb));
  --purple-600: #4321d6;
  --purple-700: #3416b8;
  --purple-200: #c9bdfb;
  --lilac: #ece9fe;
  --lilac-2: #f4f2fe;
  --lilac-line: #e0dafb;

  /* ink / neutrals (purple undertone) */
  --ink: #14101f;
  --ink-2: #1c1730;
  --ink-soft: #4a4458;
  --ink-mute: #6c6680;
  --line: #e9e6f0;
  --line-soft: #f0eef6;

  /* paper */
  --paper: #ffffff;
  --paper-2: #faf9fd;
  --paper-3: #f5f3fb;

  /* accent (warm gold — used sparingly for "wins") */
  --gold: #f0a830;
  --gold-soft: #fbeccb;

  /* semantic */
  --good: #1f9d57;
  --bad: #e2603e;

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-sm: 0 1px 2px rgba(20,16,31,.05), 0 2px 8px rgba(20,16,31,.04);
  --shadow-md: 0 4px 14px rgba(20,16,31,.07), 0 18px 50px -18px rgba(20,16,31,.18);
  --shadow-lg: 0 30px 80px -28px rgba(54,33,160,.4);
  --shadow-purple: 0 14px 30px -10px rgba(var(--brand-rgb),.5);

  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Space Grotesk", -apple-system, system-ui, sans-serif;
  --font-body: "Hanken Grotesk", -apple-system, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--purple); color: #fff; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 32px; }
.section { padding-block: 112px; position: relative; }
.section--tight { padding-block: 84px; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; color: var(--ink); }
.h-display { font-size: clamp(40px, 6vw, 76px); line-height: .98; letter-spacing: -0.03em; }
.h-1 { font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -0.025em; line-height: 1.0; }
.h-2 { font-size: clamp(26px, 2.6vw, 36px); letter-spacing: -0.02em; }
.h-3 { font-size: 22px; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple); box-shadow: 0 0 0 4px var(--lilac);
}
.eyebrow--gold { color: #b9791a; }
.eyebrow--gold::before { background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.eyebrow--light { color: var(--brand-light, #c4b8ff); }
.eyebrow--light::before { background: var(--brand-light, #c4b8ff); box-shadow: 0 0 0 4px rgba(196,184,255,.18); }

.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--ink-soft); line-height: 1.6; max-width: 60ch; text-wrap: pretty; }
.section-head { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .lead { margin-top: 22px; }
.center { text-align: center; margin-inline: auto; }
.center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 13px; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-purple); }
.btn--primary:hover { background: var(--purple-600); transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(var(--brand-rgb),.6); }
.btn--ghost { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(0,0,0,.5); }
.btn--ondark-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.24); }
.btn--ondark-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--purple);
  transition: gap .2s var(--ease), color .2s;
}
.textlink svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.textlink:hover { color: var(--purple-700); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- pill / chips ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  padding: 7px 14px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck { background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--purple); color: #fff; font-size: 19px; box-shadow: var(--shadow-purple);
  font-family: var(--font-display); font-weight: 700;
}
.nav__links { display: flex; gap: 4px; margin-left: 12px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); padding: 9px 14px; border-radius: 9px; transition: color .15s, background .15s; }
.nav__links a:hover { color: var(--ink); background: var(--paper-3); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__menu-btn { display: none; }

/* mobile menu */
.nav__menu-btn { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; margin-left: 8px; flex: 0 0 auto; }
.nav__menu-btn span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .28s var(--ease), opacity .2s; }
body.nav-open .nav__menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__menu-btn span:nth-child(2) { opacity: 0; }
body.nav-open .nav__menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { position: fixed; inset: 0; z-index: 55; background: rgba(20,18,28,.45); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease); }
body.nav-open .nav__mobile { opacity: 1; pointer-events: auto; }
.nav__mobile-inner { background: var(--paper); border-bottom: 1px solid var(--line); padding: 96px 24px 28px; display: flex; flex-direction: column; gap: 2px; transform: translateY(-14px); transition: transform .3s var(--ease); box-shadow: var(--shadow-lg); }
body.nav-open .nav__mobile-inner { transform: none; }
.nav__mobile-inner > a { font-family: var(--font-display); font-size: 19px; font-weight: 500; letter-spacing: -.01em; color: var(--ink); padding: 14px 12px; border-radius: 10px; }
.nav__mobile-inner > a:hover { background: var(--paper-3); }
.nav__mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; padding-top: 20px; border-top: 1px solid var(--line); }
.nav__mobile-cta .btn { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.topbar {
  background: var(--ink); color: #fff; font-size: 14px; position: relative; z-index: 1;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 46px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--brand-light, #c4b8ff); }
.topbar a:hover { color: #fff; }
.topbar__muted { color: rgba(255,255,255,.72); }
.topbar__muted strong { color: #fff; font-weight: 700; }

.hero { position: relative; padding-top: 130px; padding-bottom: 0; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 88% -6%, rgba(var(--brand-rgb),.14), transparent 60%),
    radial-gradient(700px 420px at -4% 20%, rgba(240,168,48,.07), transparent 55%);
}
.hero__grid-tex {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(880px 520px at 78% 6%, #000, transparent 72%);
          mask-image: radial-gradient(880px 520px at 78% 6%, #000, transparent 72%);
}
/* backdrop tweak variants */
body[data-backdrop="glow"] .hero__grid-tex { display: none; }
body[data-backdrop="clean"] .hero__grid-tex,
body[data-backdrop="clean"] .hero__bg { display: none; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; padding-bottom: 86px; }
.hero h1 { margin: 22px 0 0; }
.hero h1 .accent { color: var(--purple); display: inline; }
.hero__sub { margin-top: 26px; max-width: 50ch; }
.hero__cta { display: flex; gap: 13px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 11px; margin-top: 28px; color: var(--ink-mute); font-size: 14.5px; font-weight: 500; }
.hero__trust .brand__mark { width: 26px; height: 26px; font-size: 15px; border-radius: 7px; }

/* hero app mock */
.mock { position: relative; }
.mock__window {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden; position: relative; z-index: 2;
}
.mock__bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); }
.mock__dots { display: flex; gap: 6px; }
.mock__dots i { width: 11px; height: 11px; border-radius: 50%; background: #e4e0ee; display: block; }
.mock__url { margin-left: 8px; font-size: 13px; color: var(--ink-mute); font-weight: 500; background: var(--paper-3); padding: 5px 12px; border-radius: 7px; flex: 1; }
.mock__body { padding: 24px; }
.mock__rowtop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock__rowtop h4 { font-family: var(--font-display); font-size: 18px; }
.mock__badge { font-size: 12px; font-weight: 700; color: var(--good); background: #e7f6ed; padding: 5px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.mock__badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--good); }
.flow { display: flex; align-items: center; gap: 10px; }
.flow__step {
  flex: 1; text-align: center; font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 11px; padding: 14px 8px;
  transition: all .4s var(--ease);
}
.flow__step.is-active { border-color: var(--purple); color: var(--purple); background: var(--lilac-2); box-shadow: 0 0 0 3px rgba(var(--brand-rgb),.1); }
.flow__step.is-done { border-color: #bfe6cd; color: var(--good); background: #f0faf3; }
.flow__arrow { color: var(--ink-mute); flex: 0 0 auto; }
.flow__arrow svg { width: 16px; height: 16px; }
.mock__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.mock__metric { background: var(--paper-2); border: 1px solid var(--line-soft); border-radius: 12px; padding: 14px 16px; }
.mock__metric b { font-family: var(--font-display); font-size: 24px; display: block; letter-spacing: -.02em; }
.mock__metric span { font-size: 12.5px; color: var(--ink-mute); font-weight: 500; }

.mock__float {
  position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line);
  border-radius: 13px; box-shadow: var(--shadow-md); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px;
}
.mock__float--tl { top: -22px; left: -26px; }
.mock__float--br { bottom: -24px; right: -22px; }
.mock__float .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--lilac); color: var(--purple); }
.mock__float .ic--gold { background: var(--gold-soft); color: #b9791a; }
.mock__float small { display: block; font-size: 11.5px; font-weight: 600; color: var(--ink-mute); }
.mock__glow { position: absolute; inset: -40px -30px; z-index: 1; background: radial-gradient(closest-side, rgba(var(--brand-rgb),.16), transparent); filter: blur(8px); }

/* ---------- stat band ---------- */
.statband { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.statband__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.statband__cell { padding: 36px 28px; border-right: 1px solid var(--line); }
.statband__cell:last-child { border-right: none; }
.statband__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 3.4vw, 46px); letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.statband__num .u { color: var(--purple); }
.statband__lbl { margin-top: 9px; font-size: 14.5px; color: var(--ink-mute); font-weight: 500; }

/* ============================================================
   PROBLEM (open secret)
   ============================================================ */
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.problem__cards { display: flex; flex-direction: column; gap: 16px; }
.prob-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: start;
  padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.prob-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--lilac-line); }
.prob-card__ic { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; background: var(--ink); color: #fff; }
.prob-card__ic svg { width: 22px; height: 22px; }
.prob-card h3 { font-size: 19px; margin-bottom: 7px; }
.prob-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }
.prob-card__tag { font-size: 12px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--bad); background: #fceeea; padding: 6px 11px; border-radius: 999px; white-space: nowrap; }

/* ============================================================
   COMPARE (we flipped the model) — centerpiece, dark
   ============================================================ */
.compare { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.compare__bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px 400px at 78% 0%, rgba(var(--brand-rgb),.3), transparent 62%); }
.compare .wrap { position: relative; z-index: 2; }
.compare h2 { color: #fff; }
.compare .lead { color: rgba(255,255,255,.66); }
.compare__head { display: flex; justify-content: space-between; align-items: end; gap: 30px; flex-wrap: wrap; margin-bottom: 52px; }

.cmp { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 0; border-radius: var(--radius-lg); overflow: hidden; }
.cmp__col { padding: 8px; }
.cmp__col--old { background: rgba(255,255,255,.03); }
.cmp__col--new { background: linear-gradient(180deg, rgba(var(--brand-rgb),.16), rgba(var(--brand-rgb),.04)); border: 1px solid rgba(var(--brand-rgb),.35); border-radius: var(--radius-lg); }
.cmp__title { display: flex; align-items: center; gap: 12px; padding: 22px 24px 18px; }
.cmp__title h3 { font-size: 19px; color: #fff; }
.cmp__title .tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.cmp__title .tag--old { color: #f0a98f; background: rgba(226,96,62,.16); }
.cmp__title .tag--new { color: var(--brand-light, #c4b8ff); background: rgba(var(--brand-rgb),.24); }
.cmp__spacer { width: 1px; background: rgba(255,255,255,.08); margin: 64px 0; }
.cmp__list { list-style: none; }
.cmp__row { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: 12px; font-size: 16px; transition: background .2s; }
.cmp__col--old .cmp__row { color: rgba(255,255,255,.5); }
.cmp__col--new .cmp__row { color: #fff; font-weight: 500; }
.cmp__col--new .cmp__row:hover { background: rgba(255,255,255,.05); }
.cmp__ic { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; }
.cmp__ic svg { width: 14px; height: 14px; }
.cmp__ic--x { background: rgba(226,96,62,.16); color: #e2603e; }
.cmp__ic--check { background: var(--purple); color: #fff; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--line); }
.ind-card {
  background: var(--paper); padding: 32px 30px; position: relative;
  outline: .5px solid var(--line); transition: background .25s var(--ease), transform .25s var(--ease);
}
.ind-card:hover { background: var(--paper-2); z-index: 2; }
.ind-card__ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--lilac); color: var(--purple); margin-bottom: 20px; transition: background .25s, color .25s, transform .25s var(--ease); }
.ind-card:hover .ind-card__ic { background: var(--purple); color: #fff; transform: scale(1.06) rotate(-3deg); }
.ind-card__ic svg { width: 23px; height: 23px; }
.ind-card h3 { font-size: 19px; margin-bottom: 9px; }
.ind-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.54; }
.ind-card--cta { background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.ind-card--cta h3 { color: #fff; }
.ind-card--cta p { color: rgba(255,255,255,.62); }
.ind-card--cta:hover { background: var(--ink-2); }
.ind-card--cta .ind-card__ic { background: rgba(255,255,255,.08); color: var(--brand-light, #c4b8ff); }
.ind-card--cta:hover .ind-card__ic { background: var(--purple); color: #fff; }
.ind-card--cta .btn { margin-top: 22px; align-self: flex-start; }

/* ============================================================
   SERVICES
   ============================================================ */
.serv__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.serv-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; background: var(--paper);
  display: flex; flex-direction: column; transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
  position: relative; overflow: hidden;
}
.serv-card::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--purple); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.serv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--lilac-line); }
.serv-card:hover::after { transform: scaleX(1); }
.serv-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.serv-card__num { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--purple); border: 1px solid var(--lilac-line); border-radius: 8px; padding: 4px 9px; }
.serv-card__ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--lilac); color: var(--purple); }
.serv-card__ic svg { width: 22px; height: 22px; }
.serv-card h3 { font-size: 22px; margin-bottom: 10px; }
.serv-card p { color: var(--ink-soft); font-size: 16px; flex: 1; }
.serv-card .textlink { margin-top: 22px; }

/* ============================================================
   PROCESS
   ============================================================ */
.proc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.proc__line { position: absolute; top: 38px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--lilac-line) 0 8px, transparent 8px 16px); z-index: 0; }
.proc-card { position: relative; z-index: 1; text-align: left; }
.proc-card__num {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; background: var(--purple);
  box-shadow: var(--shadow-purple); margin-bottom: 26px;
}
.proc-card:nth-child(2) .proc-card__num { background: var(--ink); box-shadow: var(--shadow-md); }
.proc-card:nth-child(3) .proc-card__num { background: var(--gold); box-shadow: 0 12px 26px -10px rgba(240,168,48,.6); color: var(--ink); }
.proc-card h3 { font-size: 24px; margin-bottom: 12px; }
.proc-card p { color: var(--ink-soft); font-size: 16px; }

/* ============================================================
   PRICING
   ============================================================ */
.price__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; background: var(--paper);
  display: flex; flex-direction: column; transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.price-card--feat { background: var(--ink); color: #fff; border-color: var(--ink); position: relative; box-shadow: var(--shadow-lg); transform: translateY(-10px); }
.price-card--feat:hover { transform: translateY(-14px); }
.price-card__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--purple); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-card--feat .price-card__eyebrow { color: var(--brand-light, #c4b8ff); }
.price-card__badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: var(--gold); color: var(--ink); padding: 5px 10px; border-radius: 999px; white-space: nowrap; flex: 0 0 auto; }
.price-card h3 { font-size: 21px; margin: 16px 0 0; min-height: 52px; }
.price-card--feat h3 { color: #fff; }
.price-card__price { display: flex; align-items: baseline; gap: 9px; margin: 14px 0 4px; }
.price-card__price b { font-family: var(--font-display); font-weight: 700; font-size: 46px; letter-spacing: -.03em; }
.price-card__price span { color: var(--ink-mute); font-size: 15px; font-weight: 500; white-space: nowrap; }
.price-card--feat .price-card__price span { color: rgba(255,255,255,.6); }
.price-card__desc { font-size: 15px; color: var(--ink-soft); margin: 14px 0 22px; line-height: 1.55; }
.price-card--feat .price-card__desc { color: rgba(255,255,255,.74); }
.price-card__quote { font-size: 14px; font-weight: 600; color: var(--gold); background: rgba(240,168,48,.12); border-radius: 10px; padding: 12px 14px; margin-bottom: 18px; line-height: 1.45; }
.price-card__list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.price-card__list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; font-weight: 500; }
.price-card__list .tick { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--lilac); color: var(--purple); display: grid; place-items: center; margin-top: 1px; }
.price-card--feat .price-card__list .tick { background: rgba(196,184,255,.2); color: var(--brand-light, #c4b8ff); }
.price-card__list .tick svg { width: 12px; height: 12px; }
.price-card .btn { margin-top: auto; }

.price-custom {
  margin-top: 22px; border: 1px dashed var(--lilac-line); border-radius: var(--radius); padding: 30px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; background: var(--lilac-2); flex-wrap: wrap;
}
.price-custom h3 { font-size: 22px; margin-bottom: 6px; }
.price-custom p { color: var(--ink-soft); font-size: 15.5px; }
.price-custom__price { font-family: var(--font-display); font-weight: 700; color: var(--purple); }

/* ============================================================
   WHY — dark
   ============================================================ */
.why { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.why__bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(620px 420px at 12% 100%, rgba(var(--brand-rgb),.28), transparent 60%), radial-gradient(520px 340px at 95% 8%, rgba(240,168,48,.08), transparent 58%); }
.why .wrap { position: relative; z-index: 2; }
.why h2 { color: #fff; }
.why .lead { color: rgba(255,255,255,.66); }
.why__top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.why__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.why-stat { border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 26px 22px; background: rgba(255,255,255,.03); }
.why-stat b { font-family: var(--font-display); font-weight: 700; font-size: 42px; letter-spacing: -.03em; display: block; line-height: 1; padding-right: 2px; background: linear-gradient(120deg,#fff, var(--brand-light, #c4b8ff)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.why-stat span { font-size: 14px; color: rgba(255,255,255,.62); margin-top: 12px; display: block; line-height: 1.4; }
.why__points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-point { border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; background: rgba(255,255,255,.02); transition: background .25s, border-color .25s, transform .25s var(--ease); }
.why-point:hover { background: rgba(255,255,255,.045); border-color: rgba(var(--brand-rgb),.45); transform: translateY(-3px); }
.why-point__ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(var(--brand-rgb),.22); color: var(--brand-light, #c4b8ff); display: grid; place-items: center; margin-bottom: 18px; }
.why-point__ic svg { width: 22px; height: 22px; }
.why-point h3 { color: #fff; font-size: 19px; margin-bottom: 9px; }
.why-point p { color: rgba(255,255,255,.64); font-size: 15.5px; line-height: 1.55; }

/* ============================================================
   TESTIMONIALS / WORK
   ============================================================ */
.work__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; background: var(--paper);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.quote-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--lilac-line); }
.quote-card__mark { font-family: var(--font-display); font-size: 70px; line-height: .6; color: var(--lilac-line); height: 36px; }
.quote-card__tag { font-size: 13px; font-weight: 700; color: var(--purple); letter-spacing: .02em; margin-bottom: 18px; }
.quote-card blockquote { font-family: var(--font-display); font-weight: 500; font-size: 21px; line-height: 1.4; letter-spacing: -.01em; color: var(--ink); margin-bottom: 26px; text-wrap: pretty; }
.quote-card__foot { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; background: var(--purple); flex: 0 0 auto; }
.avatar--gold { background: var(--gold); color: var(--ink); }
.avatar--photo { object-fit: cover; padding: 0; background: var(--lilac); }
.quote-card__who b { display: block; font-size: 15px; }
.quote-card__who span { font-size: 13.5px; color: var(--ink-mute); }
.quote-card .textlink { margin-top: 24px; }

/* team strip */
.team {
  margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 34px; background: var(--lilac-2);
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
}
.team__tiles { display: flex; gap: 14px; }
.team__tile { position: relative; height: 158px; margin: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--lilac-line); }
.team__tile img { height: 100%; width: auto; object-fit: cover; display: block; }
.team__tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px 10px 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .03em; color: #fff; text-align: center;
  background: linear-gradient(to top, rgba(13,10,22,.82), transparent);
}
.team__txt h3 { font-size: 23px; margin-bottom: 8px; }
.team__txt p { color: var(--ink-soft); font-size: 15.5px; max-width: 62ch; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; cursor: pointer; background: none; border: none; text-align: left; font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--ink); letter-spacing: -.01em; transition: color .2s; }
.faq-item__q:hover { color: var(--purple); }
.faq-item__icon { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: background .2s, border-color .2s; }
.faq-item__icon::before, .faq-item__icon::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), background .2s; }
.faq-item__icon::before { width: 13px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 13px; }
.faq-item.is-open .faq-item__icon { background: var(--purple); border-color: var(--purple); }
.faq-item.is-open .faq-item__icon::before, .faq-item.is-open .faq-item__icon::after { background: #fff; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item__a p { padding: 0 4px 26px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 64ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.contact__bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px 460px at 90% 100%, rgba(var(--brand-rgb),.32), transparent 60%); }
.contact .wrap { position: relative; z-index: 2; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact h2 { color: #fff; }
.contact .lead { color: rgba(255,255,255,.68); }
.contact__bullets { list-style: none; margin-top: 34px; display: flex; flex-direction: column; gap: 16px; }
.contact__bullets li { display: flex; align-items: flex-start; gap: 13px; font-size: 16.5px; color: rgba(255,255,255,.9); }
.contact__bullets .tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--purple); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.contact__bullets .tick svg { width: 13px; height: 13px; }
.contact__email { margin-top: 32px; color: rgba(255,255,255,.6); font-size: 15px; }
.contact__email a { color: var(--brand-light, #c4b8ff); font-weight: 600; }

.form { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); color: var(--ink); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; background: var(--paper-2);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #a8a3b8; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple); background: #fff; box-shadow: 0 0 0 3px rgba(var(--brand-rgb),.12); }
.field textarea { resize: vertical; min-height: 96px; }
.form__note { font-size: 13px; color: var(--ink-mute); text-align: center; margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0d0a16; color: #fff; padding-block: 72px 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand { color: #fff; margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,.56); font-size: 15px; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); font-weight: 700; margin-bottom: 18px; }
.footer__col a { display: block; color: rgba(255,255,255,.72); font-size: 15px; padding: 6px 0; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 30px; flex-wrap: wrap; }
.footer__bottom p { color: rgba(255,255,255,.5); font-size: 14px; }
.footer__bottom .btn { background: var(--purple); color: #fff; }

/* ============================================================
   reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  .reveal-d3 { transition-delay: .24s; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  body.nav-open { overflow: hidden; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 64px; }
  .mock { max-width: 520px; margin-inline: auto; }
  .problem__grid, .why__top, .faq__grid, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .compare__head { margin-bottom: 36px; }
  .cmp { grid-template-columns: 1fr; }
  .cmp__spacer { display: none; }
  .cmp__col--old { border-radius: var(--radius-lg); margin-bottom: 14px; }
  .ind__grid { grid-template-columns: 1fr 1fr; }
  .serv__grid, .price__grid, .work__grid, .why__points, .why__stats { grid-template-columns: 1fr; }
  .price-card--feat { transform: none; }
  .price-card--feat:hover { transform: translateY(-4px); }
  .proc__grid { grid-template-columns: 1fr; gap: 28px; }
  .proc__line { display: none; }
  .why__stats { grid-template-columns: repeat(3,1fr); }
  .team { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .team__tile { height: 168px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .wrap { padding-inline: 20px; }
  .section { padding-block: 76px; }
  .statband__grid { grid-template-columns: 1fr 1fr; }
  .statband__cell:nth-child(2) { border-right: none; }
  .statband__cell:nth-child(1), .statband__cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .ind__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .topbar__muted { display: none; }
  .topbar__inner { justify-content: center; }
  .hero { padding-top: 104px; }
  .nav__right .btn--ghost { display: none; }
}
