/* =====================================================================
   NO CAP AGENCY — Global Stylesheet
   Real growth. No cap.
   Theme: Bold / high-energy on a light (ice) base.
   ===================================================================== */

/* -------------------------------------------------- Design tokens ---- */
:root {
  /* Brand palette */
  --ice:        #F7F9FC;
  --white:      #FFFFFF;
  --navy:       #0B1530;   /* deep sections */
  --navy-2:     #101d40;   /* slightly lifted navy */
  --ink:        #0E1A38;   /* body text on light */
  --blue:       #2757FF;   /* electric primary */
  --blue-2:     #3E8BFF;   /* lighter electric */
  --blue-soft:  #EAF0FF;   /* tint bg */
  --grey:       #5A6684;   /* muted text */
  --grey-line:  #E2E8F4;   /* hairlines */
  --grey-dark:  #9BA9CC;   /* muted text on navy */

  /* Gradients */
  --grad-blue: linear-gradient(120deg, #2757FF 0%, #3E8BFF 100%);
  --grad-navy: linear-gradient(160deg, #101d40 0%, #0B1530 60%, #060c1e 100%);

  /* Type */
  --f-display: "Archivo", "Hanken Grotesk", system-ui, sans-serif;
  --f-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Motion — entrances glide (--ease), micro-interactions snap (--snap) */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --snap: cubic-bezier(.2, .9, .3, 1);
  --tap: .18s;
  --shadow-sm: 0 4px 18px rgba(14, 26, 56, .07);
  --shadow-md: 0 18px 46px rgba(14, 26, 56, .12);
  --shadow-blue: 0 16px 40px rgba(39, 87, 255, .30);

  /* Diagonal section cut depth */
  --cut: clamp(26px, 4.5vw, 68px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--ice);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

::selection { background: var(--blue); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* Visible keyboard focus everywhere; never rely on the hover-only affordance. */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
.process :focus-visible,
.manifesto :focus-visible,
.footer :focus-visible,
.tally :focus-visible,
.cta-band :focus-visible,
.rc__flag :focus-visible,
.mobile-menu :focus-visible { outline-color: var(--blue-2); }

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link — visually hidden until keyboard focus */
.skip-link {
  position: fixed;
  top: 14px; left: 14px;
  z-index: 300;
  background: var(--navy);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  transform: translateY(-200%);
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline-color: var(--blue-2);
}

/* --------------------------------------------------- Utilities ------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.blue { color: var(--blue); }
.center { text-align: center; }

/* Diagonal cuts — dark sections shear into their light neighbours.
   The section overlaps by --cut and the clip reveals the neighbour through
   the wedge; z-index keeps the retained wedge painting on top. */
.cut-t, .cut-b, .cut-tb { position: relative; z-index: 2; }
.cut-t {
  clip-path: polygon(0 var(--cut), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--cut));
}
.cut-b {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--cut)));
  margin-bottom: calc(-1 * var(--cut));
}
.cut-tb {
  clip-path: polygon(0 var(--cut), 100% 0, 100% 100%, 0 calc(100% - var(--cut)));
  margin-top: calc(-1 * var(--cut));
  margin-bottom: calc(-1 * var(--cut));
}

.section-title {
  font-size: clamp(2.1rem, 5.2vw, 3.9rem);
  line-height: 1;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--grey);
  max-width: 60ch;
}
/* Headings sit white on every dark-surface section. */
.process :is(h1, h2, h3, h4),
.cta-band :is(h1, h2, h3, h4),
.tally :is(h1, h2, h3, h4),
.manifesto :is(h1, h2, h3, h4) { color: #fff; }
.process .lead { color: var(--grey-dark); }
.process .section-title em, .process .blue { color: var(--blue-2); }

.ital { font-style: italic; }

/* --------------------------------------------------- Buttons --------- */
.btn {
  --pad-y: 15px;
  --pad-x: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px;
  transition: transform var(--tap) var(--snap), box-shadow var(--tap) var(--snap), background var(--tap) var(--snap), color var(--tap) var(--snap);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(0) scale(.98); }
.btn .arw { transition: transform var(--tap) var(--snap); }
.btn:hover .arw { transform: translate(3px, -3px); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { transform: translateY(-2px); background: #1f49df; box-shadow: 0 22px 50px rgba(39,87,255,.42); }

.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover { transform: translateY(-2px); background: #16224a; box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--grey-line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn--light {
  background: #fff;
  color: var(--navy);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.25);
}
.btn--ghost-light:hover { box-shadow: inset 0 0 0 2px #fff; transform: translateY(-2px); }

.btn--lg { --pad-y: 18px; --pad-x: 38px; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* --------------------------------------------------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 252, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--grey-line);
  box-shadow: 0 6px 24px rgba(14,26,56,.06);
  background: rgba(255,255,255,.9);
}
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 46px; width: auto; display: block; }
.nav__logo { display: flex; align-items: center; min-height: 44px; flex-shrink: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink);
  min-height: 44px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav__links a:hover { color: var(--blue); }
.nav__links a.active { color: var(--blue); }
.nav__links a.active::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 3px;
  height: 2px;
  background: var(--grad-blue);
  border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav__burger span {
  width: 22px; height: 2.4px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .3s var(--ease), opacity .2s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* Mobile menu panel — closed state carries no shadow and goes
   visibility:hidden after the slide, so nothing bleeds back into the
   viewport; desktop never renders it at all (see min-width query). */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: var(--navy);
  z-index: 99;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .42s var(--ease), box-shadow .42s var(--ease), visibility 0s linear .42s;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
  box-shadow: -30px 0 60px rgba(0,0,0,.3);
}
@media (min-width: 901px) {
  .mobile-menu, .menu-overlay { display: none; }
}
.mobile-menu a {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s ease, transform .25s var(--ease);
}
.mobile-menu a:not(.btn):hover { color: var(--blue-2); transform: translateX(8px); }
.mobile-menu a.active { color: var(--blue-2); }
.mobile-menu .btn { margin-top: 22px; justify-content: center; }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(11,21,48,.5);
  backdrop-filter: blur(2px);
  z-index: 98;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* ============================================================ HERO === */
.hero {
  position: relative;
  padding-top: clamp(48px, 8vw, 90px);
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 82% -8%, rgba(62,139,255,.14), transparent 60%),
    radial-gradient(900px 560px at -6% 12%, rgba(39,87,255,.10), transparent 55%),
    var(--ice);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-line);
  padding: 8px 8px 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  font-size: .86rem;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 100%;
  position: relative;
}
.hero__badge::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 58px;
  border-left: 1px dashed var(--grey-line);
  pointer-events: none;
}
.hero__badge > span:last-child { min-width: 0; }
.hero__badge b { color: var(--blue); font-family: var(--f-display); }
.hero__badge .pill {
  background: var(--blue); /* solid: white 11.5px text needs >=4.5:1 (gradient's light end fails) */
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  padding: 5px 11px;
  border-radius: 3px;
  transform: rotate(-1.5deg);
}
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.3rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .96;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero__sub {
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--grey);
  max-width: 46ch;
}
.hero__cta { margin-top: 34px; }
.hero__trust {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  color: var(--grey);
}
.hero__trust .dots { display: flex; gap: 6px; }
.hero__trust .dots span {
  padding: 5px 1px 4px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--blue);
  color: var(--blue); font-size: .68rem; font-weight: 800;
  letter-spacing: .06em;
  font-family: var(--f-display);
  line-height: 1;
}
.hero__trust b { color: var(--ink); font-family: var(--f-display); }

/* Hero visual — THE CAP BREAK.
   A plotted spend trajectory physically fractures the standard-cap line.
   The SVG is meaningful as a scene, but the numbers remain readable HTML. */
.hero__visual { position: relative; display: grid; align-content: center; }
.capbreak {
  position: relative;
  isolation: isolate;
  width: min(100%, 510px);
  margin-inline: auto;
  padding: 12px 9px 18px;
}
.capbreak::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 5% -1% 3% -2%;
  background: var(--blue);
  clip-path: polygon(4% 5%, 100% 0, 94% 95%, 0 100%);
  transform: rotate(-2.4deg);
  box-shadow: 0 34px 80px rgba(39,87,255,.24);
}
.capbreak::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 12% -4% -2% 5%;
  background: rgba(11,21,48,.16);
  clip-path: polygon(0 3%, 100% 0, 92% 100%, 5% 95%);
  transform: rotate(4deg);
}
.capbreak__plate {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.7vw, 34px);
  background: var(--navy);
  color: #fff;
  clip-path: polygon(0 0, 96% 0, 100% 7%, 96% 100%, 4% 97%, 0 90%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 18px 36px rgba(11,21,48,.22),
    0 46px 90px rgba(11,21,48,.28);
}
.capbreak__plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(126deg, transparent 0 66%, rgba(39,87,255,.11) 66% 72%, transparent 72%),
    radial-gradient(340px 240px at 86% 28%, rgba(39,87,255,.30), transparent 68%);
  pointer-events: none;
}
.capbreak__plate > * { position: relative; }
.capbreak__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 17px;
}
.capbreak__live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .02em;
  color: #B9C5E3;
}
.capbreak__live i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 5px rgba(62,139,255,.14), 0 0 18px rgba(62,139,255,.75);
}
.capbreak__head img {
  box-sizing: content-box;
  height: 28px;
  width: auto;
  padding: 5px 7px;
  border-radius: 7px;
  background: var(--ice);
  outline: 1px solid rgba(255,255,255,.18);
  outline-offset: -1px;
}
.capbreak__counter { margin-bottom: 2px; }
.capbreak__num {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.7rem, 5.4vw, 3.9rem);
  letter-spacing: -.045em;
  line-height: .94;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.capbreak__vs {
  display: inline-block;
  margin-top: 9px;
  font-size: .88rem;
  font-weight: 600;
  color: #B9C5E3;
}
.capbreak__vs s {
  color: #fff;
  text-decoration-color: var(--blue-2);
  text-decoration-thickness: 3px;
  font-family: var(--f-display);
  font-weight: 700;
}
.capbreak__scene {
  position: relative;
  height: clamp(190px, 25vw, 245px);
  margin-top: 8px;
}
.capbreak__plot { display: block; width: 100%; height: 100%; overflow: visible; }
.capbreak__baseline {
  fill: none;
  stroke: rgba(255,255,255,.16);
  stroke-width: 1;
}
.capbreak__area { opacity: 1; }
.capbreak__limit {
  fill: none;
  stroke: rgba(255,255,255,.90);
  stroke-width: 3;
  stroke-linecap: square;
}
.capbreak__limit--fixed { stroke-dasharray: 8 8; }
.capbreak__limit--broken-a,
.capbreak__limit--broken-b,
.capbreak__limit--broken-c { stroke: #fff; }
.capbreak__fragments { fill: #fff; opacity: .88; }
.capbreak__trajectory {
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  filter: drop-shadow(0 5px 12px rgba(39,87,255,.55));
}
.capbreak__points { fill: var(--navy); stroke: #fff; stroke-width: 2; }
.capbreak__points .capbreak__breakpoint {
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 5;
}
.capbreak__points .capbreak__arrival {
  fill: #fff;
  stroke: var(--blue-2);
  stroke-width: 6;
}
.capbreak__arrowhead {
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: square;
  stroke-linejoin: bevel;
}
.capbreak__impact {
  position: absolute;
  left: 54.5%;
  top: 58.5%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.35);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
}
.capbreak__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding-top: 17px;
  border-top: 1px dashed rgba(255,255,255,.18);
  font-size: .79rem;
  color: #B9C5E3;
  font-weight: 600;
}
.capbreak__foot span + span { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.12); }
.capbreak__foot b {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: #fff;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.capbreak__debris {
  position: absolute;
  z-index: 3;
  display: block;
  width: 15px;
  height: 22px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 28%, 38% 100%);
  pointer-events: none;
}
.capbreak__debris--one { top: 24%; right: -7px; transform: rotate(24deg); }
.capbreak__debris--two { top: 38%; right: -21px; width: 9px; height: 14px; transform: rotate(68deg); }
.capbreak__debris--three { bottom: 18%; left: -7px; width: 10px; height: 16px; transform: rotate(-35deg); }

@keyframes plot-draw { to { stroke-dashoffset: 0; } }
@keyframes plot-fill { to { opacity: 1; } }
.js .capbreak__trajectory { stroke-dasharray: 700; stroke-dashoffset: 700; }
.js .capbreak__area { opacity: 0; }
.js .hero__visual.is-visible .capbreak__trajectory,
.reveal-failsafe .capbreak__trajectory { animation: plot-draw .95s var(--ease) .16s forwards; }
.js .hero__visual.is-visible .capbreak__area,
.reveal-failsafe .capbreak__area { animation: plot-fill .45s var(--ease) .54s forwards; }

/* ================================================= Marquee strip ===== */
.marquee {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding-block: 20px;
  position: relative;
  border-block: 1px solid rgba(255,255,255,.06);
}
.marquee--blue { background: var(--blue); }
.marquee__track {
  display: flex;
  width: max-content;
  transform: translateX(-4%);
}
.marquee__track span {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: .01em;
  padding-inline: 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track span::after {
  content: "";
  width: 12px; height: 12px;
  background: var(--blue-2);
  transform: rotate(45deg);
  display: inline-block;
}
.marquee--blue .marquee__track span::after { background: #fff; }
.marquee--blue .marquee__track span { color: #fff; }
.marquee .muted { -webkit-text-stroke: 1.4px rgba(255,255,255,.5); color: transparent; }

/* Tilted band — shears across the light/dark junction. Overlaps both
   neighbours by the rotation offset so no slivers show at the edges. */
.marquee--tilt {
  transform: rotate(-1.6deg) scale(1.03);
  position: relative;
  z-index: 3;
  margin-top: calc(-1.5vw - 8px);
  margin-bottom: calc(-1.5vw - 8px);
  box-shadow: 0 18px 44px rgba(11,21,48,.18);
}

/* =============================================== Ledger / scoreboard = */
.tally {
  background: var(--grad-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tally::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(680px 340px at 10% 0%, rgba(39,87,255,.28), transparent 62%),
              radial-gradient(600px 320px at 94% 100%, rgba(62,139,255,.20), transparent 60%);
}
.tally .wrap { position: relative; z-index: 1; }
.tally__lead {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #fff;
  max-width: 24ch;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.tally__lead b { color: var(--blue-2); }
.tally__rows { display: grid; }
.tally__row {
  display: grid;
  grid-template-columns: clamp(120px, 24vw, 250px) 1fr;
  align-items: baseline;
  gap: clamp(14px, 4vw, 46px);
  padding: clamp(22px, 2.8vw, 32px) 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.tally__row:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.tally__n {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.2vw, 4.5rem);
  line-height: .88;
  letter-spacing: -.04em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.tally__k {
  color: var(--grey-dark);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 44ch;
  justify-self: end; /* number left, entry right — the row reads full-bleed, like a tally line */
}
.tally__k b { color: #fff; font-weight: 700; }
@media (max-width: 560px) {
  .tally__row { grid-template-columns: 1fr; gap: 8px; }
  .tally__k { justify-self: start; }
}

/* =================================================== Section head ==== */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(38px, 5vw, 62px);
  flex-wrap: wrap;
}
.sec-head__text { max-width: 60ch; }
.sec-head .btn { flex-shrink: 0; }

/* ============================================= The rate card ========= */
/* Transparency IS the product: fees and limits displayed like a price
   list, not marketing chips. Facebook is the flagship offer — bigger, navy,
   horizontal; the other platforms are named on request (.rc__more), no rate
   card. */
.rc { display: grid; gap: 18px; }
.rc__flag {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  box-shadow: 0 30px 70px rgba(11,21,48,.25);
}
.rc__flag-main { padding: clamp(28px, 3.4vw, 46px); }
.rc__plat {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.rc__plat > div { flex: 1; min-width: 0; }
.rc__plat h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.05; }
.rc__plat-sub { display: block; color: var(--grey-dark); font-size: .88rem; font-weight: 600; margin-top: 4px; }
.rc__flagtag {
  margin-left: auto;
  font-family: var(--f-display); font-weight: 800; font-size: .74rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--blue); /* solid: small white text needs >=4.5:1 */
  padding: 6px 12px; border-radius: 7px;
}
.rc__flag-main > p { color: var(--grey-dark); max-width: 48ch; font-size: 1rem; }
.rc__incl { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.rc__incl li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .93rem; font-weight: 500; color: #E7ECF9;
}
.rc__incl li::before {
  content: "";
  flex-shrink: 0; margin-top: 6px;
  width: 9px; height: 9px;
  background: var(--blue-2);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.rc__flag-fig {
  background: rgba(255,255,255,.04);
  border-left: 1px solid rgba(255,255,255,.1);
  padding: clamp(28px, 3.4vw, 46px);
  display: flex; flex-direction: column; justify-content: center;
}
.rc__big {
  display: block;
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: .9; letter-spacing: -.04em; color: #fff;
}
.rc__big small { font-size: .5em; font-weight: 800; color: var(--blue-2); }
.rc__big-k { display: block; color: var(--grey-dark); font-size: .92rem; font-weight: 600; margin-top: 10px; max-width: 30ch; }
.rc__fees { margin-top: 22px; padding-top: 20px; border-top: 1px dashed rgba(255,255,255,.18); display: grid; gap: 9px; }
.rc__fee {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: .9rem; color: var(--grey-dark); font-weight: 500;
}
.rc__fee b { font-family: var(--f-display); font-weight: 800; color: #fff; font-size: 1.05rem; letter-spacing: -.01em; }
.rc__flag-fig .btn { margin-top: 24px; align-self: flex-start; }

.rc__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rc__card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column;
  transition: transform .22s var(--snap), box-shadow .22s var(--snap), border-color .22s var(--snap);
}
.rc__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.rc__card .rc__plat { margin-bottom: 14px; }
.rc__card .rc__plat h3 { color: var(--ink); }
.rc__card .rc__plat-sub { color: var(--grey); }
.rc__card .rc__big { color: var(--ink); font-size: clamp(2.4rem, 4.4vw, 3.4rem); }
.rc__card .rc__big small { color: var(--blue); }
.rc__card .rc__big-k { color: var(--grey); }
.rc__card .rc__incl { grid-template-columns: 1fr; margin-top: 18px; }
.rc__card .rc__incl li { color: var(--ink); }
.rc__card .rc__incl li::before { background: var(--blue); }
.rc__card .rc__fees { border-top-color: var(--grey-line); margin-top: auto; padding-top: 18px; }
.rc__card .rc__fee { color: var(--grey); }
.rc__card .rc__fee b { color: var(--ink); }
.rc__card .rc__figwrap { margin-top: 20px; margin-bottom: 20px; }

.rc__flagtag { flex-shrink: 0; }
.rc__logo {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grad-blue); color: #fff;
}
.rc__card .rc__logo { background: var(--navy); }
.rc__logo svg { width: 24px; height: 24px; }

/* Other platforms named on request — no rate card, no per-platform figures. */
.rc__more {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px clamp(20px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.8vw, 32px) clamp(24px, 3vw, 38px);
}
.rc__more p { flex: 1 1 320px; color: var(--grey); font-size: 1rem; line-height: 1.5; max-width: 70ch; }
.rc__more p b { color: var(--ink); font-weight: 800; }
.rc__more .btn { flex-shrink: 0; }

/* Fee strip — the recurring transparency band */
.feestrip {
  background: var(--blue);
  color: #fff;
  padding-block: clamp(22px, 3vw, 34px);
}
.feestrip__row {
  display: flex; align-items: center; gap: clamp(18px, 3vw, 44px);
  flex-wrap: wrap;
}
.feestrip__title {
  font-family: var(--f-display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: -.01em; white-space: nowrap;
  padding-right: clamp(14px, 2vw, 28px);
  border-right: 1px solid rgba(255,255,255,.35);
}
.feestrip__items {
  flex: 1;
  display: flex; flex-wrap: wrap; gap: clamp(14px, 2.6vw, 40px);
  align-items: baseline;
  justify-content: space-between;
}
.feestrip__items span { font-size: .92rem; font-weight: 600; color: #EAF0FF; }
.feestrip__items b {
  font-family: var(--f-display); font-weight: 900; font-size: 1.5rem;
  color: #fff; letter-spacing: -.02em; margin-right: 6px;
}

/* Compact service links (kept for ops row) */
.svc-rest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.svc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 22px 24px;
  min-height: 88px;
  transition: transform var(--tap) var(--snap), box-shadow var(--tap) var(--snap), border-color var(--tap) var(--snap);
}
.svc-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--blue); }
.svc-item__ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; flex-shrink: 0;
}
.svc-item__ic svg { width: 22px; height: 22px; }
.svc-item h3 { font-size: 1.12rem; margin-bottom: 2px; }
.svc-item p { color: var(--grey); font-size: .9rem; line-height: 1.4; }
.svc-item__arw {
  color: var(--grey); font-size: 1.15rem; align-self: center;
  transition: transform var(--tap) var(--snap), color var(--tap) var(--snap);
}
.svc-item:hover .svc-item__arw { color: var(--blue); transform: translate(3px, -3px); }

/* =============================================== Process / Sprint ==== */
.process { background: var(--navy); color: #fff; overflow: hidden; }
.process .lead { color: var(--grey-dark); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.step {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s var(--snap), background .2s var(--snap), border-color .2s var(--snap);
}
.step:hover { transform: translateY(-5px); background: rgba(39,87,255,.14); border-color: rgba(62,139,255,.4); }
.step__n {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--blue-2);
  margin-bottom: 16px;
}
.step h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--grey-dark); font-size: .95rem; }
.step .tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-2);
}

/* =================================================== Case results ==== */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(44px, 6vw, 70px); }
.case {
  border-radius: var(--radius);
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--snap), box-shadow .2s var(--snap);
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case__cat {
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.case__cat::before { content:""; width:8px; height:8px; background: var(--grad-blue); transform: rotate(45deg); }
.case__big {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: .95;
  letter-spacing: -.035em;
  color: var(--blue);
}
.case__metric { color: var(--grey); font-weight: 600; margin-top: 4px; }
.case__desc { margin-top: 18px; color: var(--grey); font-size: .96rem; }
.case__foot {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--grey-line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .86rem;
}
.case__brand { font-family: var(--f-display); font-weight: 800; color: var(--ink); }
.case__foot .sub { color: var(--grey); }

/* =============================================== THE RECEIPTS ========= */
/* Literal receipts. Two printed statements — the capped life vs the
   uncapped one — torn edges, dotted leaders, stamped verdicts. */
.rcpt-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(16px, 2.4vw, 30px);
  max-width: 980px;
  margin-inline: auto;
}
.rcpt {
  position: relative;
  padding: clamp(24px, 3vw, 38px) clamp(22px, 2.8vw, 34px) clamp(84px, 9vw, 110px);
  /* torn ticket bottom edge */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px),
    97% 100%, 94% calc(100% - 12px), 91% 100%, 88% calc(100% - 12px), 85% 100%,
    82% calc(100% - 12px), 79% 100%, 76% calc(100% - 12px), 73% 100%,
    70% calc(100% - 12px), 67% 100%, 64% calc(100% - 12px), 61% 100%,
    58% calc(100% - 12px), 55% 100%, 52% calc(100% - 12px), 49% 100%,
    46% calc(100% - 12px), 43% 100%, 40% calc(100% - 12px), 37% 100%,
    34% calc(100% - 12px), 31% 100%, 28% calc(100% - 12px), 25% 100%,
    22% calc(100% - 12px), 19% 100%, 16% calc(100% - 12px), 13% 100%,
    10% calc(100% - 12px), 7% 100%, 4% calc(100% - 12px), 1% 100%, 0 calc(100% - 12px));
}
.rcpt--std {
  background: var(--white);
  border: 1px solid var(--grey-line);
  transform: rotate(-1.3deg);
  box-shadow: var(--shadow-sm);
}
.rcpt--agency {
  background: var(--grad-navy);
  color: #fff;
  transform: rotate(1.1deg);
  box-shadow: 0 30px 70px rgba(11,21,48,.3);
}
.rcpt__head {
  text-align: center;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 2px dashed var(--grey-line);
}
.rcpt--agency .rcpt__head { border-bottom-color: rgba(255,255,255,.2); }
.rcpt__store {
  display: block;
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--ink);
}
.rcpt--agency .rcpt__store { color: #fff; }
.rcpt__meta {
  display: block; margin-top: 5px;
  font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey);
}
.rcpt--agency .rcpt__meta { color: var(--blue-2); }
.rcpt__rows { display: grid; gap: 13px; }
.rcpt__row {
  display: flex; align-items: baseline; gap: 8px;
  font-size: .95rem;
}
.rcpt__row > span { font-weight: 500; color: var(--grey); white-space: nowrap; }
.rcpt--agency .rcpt__row > span { color: var(--grey-dark); }
.rcpt__row i {
  flex: 1; min-width: 18px;
  border-bottom: 2px dotted var(--grey-line);
  transform: translateY(-4px);
}
.rcpt--agency .rcpt__row i { border-bottom-color: rgba(255,255,255,.22); }
.rcpt__row b {
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.12rem; letter-spacing: -.01em; white-space: nowrap;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.rcpt--agency .rcpt__row b { color: #fff; }
.rcpt__total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  margin-top: 20px; padding-top: 16px;
  border-top: 2px dashed var(--grey-line);
  font-family: var(--f-display); font-weight: 800;
  font-size: .95rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink);
}
.rcpt--agency .rcpt__total { border-top-color: rgba(255,255,255,.2); color: #fff; }
.rcpt__total b { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 900; letter-spacing: -.02em; }
.rcpt--std .rcpt__total b { color: #B42239; }
.rcpt--agency .rcpt__total b { color: var(--blue-2); }
/* verdict stamps — slammed in the blank space under the total */
.rcpt__stamp {
  position: absolute;
  right: clamp(18px, 3vw, 34px); bottom: 26px;
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  letter-spacing: .1em; text-transform: uppercase; line-height: 1;
  padding: 8px 14px;
  border: 4px solid currentColor; border-radius: 8px;
  transform: rotate(-14deg);
  pointer-events: none;
}
.rcpt--std .rcpt__stamp { color: rgba(180, 34, 57, .8); }
.rcpt--agency .rcpt__stamp { color: rgba(62, 139, 255, .9); }
[data-reveal].is-visible .rcpt__stamp,
.reveal-failsafe [data-reveal] .rcpt__stamp { animation: stamp-in .42s var(--ease) .42s both; }
@keyframes stamp-in {
  from { opacity: 0; transform: rotate(-14deg) scale(1.45); }
  to   { opacity: 1; transform: rotate(-14deg) scale(1); }
}
.rcpt-swap {
  align-self: center;
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-blue); color: #fff;
  font-size: 1.5rem; font-weight: 800;
  box-shadow: var(--shadow-blue);
  z-index: 1;
}
.rcpt-swap svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: square; stroke-linejoin: bevel; }
.rcpt-note {
  margin-top: clamp(26px, 3vw, 38px);
  color: var(--grey); font-size: .98rem; max-width: 64ch;
  margin-inline: auto; text-align: center;
}
.rcpt-note b { color: var(--ink); font-family: var(--f-display); font-weight: 700; }
@media (max-width: 800px) {
  .rcpt-wrap { grid-template-columns: 1fr; }
  .rcpt-swap { margin: -6px auto; transform: rotate(90deg); }
  .rcpt--std, .rcpt--agency { transform: rotate(0); }
}

/* ============================================ What we DON'T do ======== */
.never { background: var(--white); }
.never__list { display: grid; margin-top: clamp(30px, 4vw, 46px); }
.never__item {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 10px clamp(20px, 4vw, 60px);
  align-items: baseline;
  padding-block: clamp(18px, 2.4vw, 28px);
  border-top: 1px solid var(--grey-line);
}
.never__item:last-child { border-bottom: 1px solid var(--grey-line); }
.never__item s {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(1.35rem, 3.2vw, 2.3rem);
  letter-spacing: -.025em; line-height: 1.05;
  color: var(--ink);
  text-decoration-color: var(--blue);
  text-decoration-thickness: clamp(4px, .5vw, 7px);
}
.never__item p { color: var(--grey); font-size: 1rem; font-weight: 500; max-width: 44ch; }
.never__item p b { color: var(--ink); font-family: var(--f-display); font-weight: 700; }
@media (max-width: 700px) {
  .never__item { grid-template-columns: 1fr; }
}

/* =================================================== Testimonials ==== */
.tst-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tst {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform .2s var(--snap), box-shadow .2s var(--snap);
}
.tst:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tst__stars { color: var(--blue); letter-spacing: 2px; margin-bottom: 16px; font-size: 1rem; }
.tst__quote { font-size: 1.08rem; color: var(--ink); font-weight: 500; line-height: 1.55; }
.tst__who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.tst__av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-blue);
  display: grid; place-items: center;
  color: #fff; font-family: var(--f-display); font-weight: 800;
  flex-shrink: 0;
}
.tst__name { font-family: var(--f-display); font-weight: 700; font-size: .98rem; }
.tst__role { color: var(--grey); font-size: .84rem; }

/* =================================================== CTA band ======== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-navy);
  color: #fff;
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(48px, 7vw, 90px) clamp(28px, 6vw, 80px);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 360px at 50% -10%, rgba(62,139,255,.35), transparent 60%);
}
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: .98;
}
.cta-band h2 em { font-style: italic; color: var(--blue-2); }
.cta-band p { color: var(--grey-dark); margin: 22px auto 0; max-width: 52ch; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; margin-top: 36px; }
.cta-band .cta-micro {
  margin: 18px auto 0;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--grey-dark);
}
.cta-wrap { padding-block: clamp(40px, 6vw, 80px); }

/* =================================================== Footer ========== */
.footer {
  background: var(--navy);
  color: var(--grey-dark);
  padding-top: clamp(56px, 7vw, 88px);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer__brand img { height: 32px; width: auto; margin-bottom: 20px; }
.footer__brand p { max-width: 34ch; font-size: .96rem; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: #fff;
  transition: background .3s ease, transform .3s ease;
}
.footer__social a:hover { background: var(--grad-blue); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h3 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 700;
}
.footer__col a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 44px;
  min-height: 44px;
  padding: 9px 0;
  font-size: .96rem;
  transition: color var(--tap) var(--snap), transform var(--tap) var(--snap);
}
.footer__col a:hover { color: #fff; transform: translateX(6px); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 28px;
  font-size: .88rem;
}
.footer__bottom .links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer__bottom a { display: inline-flex; align-items: center; min-width: 44px; min-height: 44px; padding-inline: 4px; }
.footer__bottom a:hover { color: #fff; }

/* =================================================== Page hero ======= */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(46px, 6vw, 72px);
  background:
    radial-gradient(900px 480px at 88% -20%, rgba(62,139,255,.14), transparent 60%),
    var(--ice);
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .98;
  max-width: 16ch;
}
.page-hero h1 em { font-style: italic; color: var(--blue); }
.page-hero__sub { margin-top: 22px; max-width: 56ch; }
.crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; color: var(--grey);
  margin-bottom: 22px; font-weight: 600;
}
.crumbs a:hover { color: var(--blue); }
.crumbs span { color: var(--blue); }

/* =================================================== Services deep ==== */
.svc-deep { display: grid; gap: 26px; }
.svc-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 50px);
  transition: box-shadow .22s var(--snap);
}
.svc-row:hover { box-shadow: var(--shadow-md); }
.svc-row:nth-child(even) .svc-row__media { order: 2; }
.svc-row__plate {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 700; font-size: .88rem;
  color: var(--blue); background: var(--blue-soft);
  padding: 7px 14px; border-radius: 9px;
  margin-bottom: 6px;
}
.svc-row__plate::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.svc-row__media {
  border-radius: var(--radius);
  background: var(--grad-navy);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: grid; place-content: center; justify-items: center;
  gap: 6px;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.svc-row__media::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 240px at 70% 20%, rgba(62,139,255,.4), transparent 60%);
}
/* the number IS the picture: each panel shows the metric that matters */
.svc-row__fig {
  position: relative;
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  letter-spacing: -.04em; line-height: .95;
  color: #fff;
}
.svc-row__fig small { font-size: .48em; font-weight: 800; color: var(--blue-2); }
.svc-row__figk {
  position: relative;
  font-size: .9rem; font-weight: 600; color: var(--grey-dark);
  max-width: 24ch;
}
.svc-row__figs {
  position: relative;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.2);
  display: flex; gap: 22px;
  font-size: .8rem; color: var(--grey-dark); font-weight: 600;
}
.svc-row__figs b { display: block; font-family: var(--f-display); font-weight: 800; color: #fff; font-size: 1.05rem; }
.svc-row h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-block: 12px; }
.svc-row p { color: var(--grey); }
.svc-row__list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.svc-row__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; font-weight: 500;
}
.svc-row__list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 6px;
  width: 9px; height: 9px;
  background: var(--grad-blue);
  transform: rotate(45deg);
}
.svc-row__platforms {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--grey-line);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.svc-row__platforms .lbl { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grey); margin-right: 6px; }
.svc-row__platforms span:not(.lbl) {
  font-size: .82rem; font-weight: 600;
  padding: 6px 13px; border-radius: 100px;
  background: var(--ice); border: 1px solid var(--grey-line); color: var(--ink);
}

/* More platforms, named on request — same card shell as svc-row, no figures. */
.svc-more {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 50px);
  transition: box-shadow .22s var(--snap);
}
.svc-more:hover { box-shadow: var(--shadow-md); }
.svc-more h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-block: 12px 14px; }
.svc-more p { color: var(--grey); max-width: 56ch; }
.svc-more .btn { margin-top: 24px; }
.svc-more__plats { display: flex; flex-wrap: wrap; gap: 12px; align-content: center; }
.svc-more__plats span {
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink);
  background: var(--ice); border: 1px solid var(--grey-line);
  padding: 12px 20px; border-radius: 12px;
}

/* =================================================== About ============ */
.manifesto {
  background: var(--grad-navy);
  color: #fff;
  overflow: hidden;
}
.manifesto__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.manifesto__big {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.manifesto__big em { font-style: italic; color: var(--blue-2); }
.man-list { display: grid; gap: 4px; }
.man-item {
  padding: clamp(26px, 3vw, 36px) 4px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
}
.man-item:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.man-item__mark {
  width: 15px; height: 15px; margin-top: 12px;
  background: var(--blue-2);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform var(--tap) var(--snap);
}
.man-item:hover .man-item__mark { transform: translateX(6px); }
.man-item h3 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 10px; letter-spacing: -.02em; }
.man-item h3 em { font-style: normal; color: var(--blue-2); }
.man-item p { color: var(--grey-dark); font-size: 1rem; max-width: 56ch; }
.man-item p s { text-decoration-color: var(--blue-2); text-decoration-thickness: 2.5px; color: #fff; font-weight: 600; }

/* House rules — a tally of commitments, not an icon-card grid */
.rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(30px, 5vw, 70px);
}
.rule {
  padding-block: clamp(20px, 2.6vw, 30px);
  border-top: 1px solid var(--grey-line);
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  align-items: start;
}
.rule__mark {
  width: 13px; height: 13px; margin-top: 9px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform var(--tap) var(--snap);
}
.rule:hover .rule__mark { transform: translateX(5px); }
.rule h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); margin-bottom: 7px; letter-spacing: -.015em; }
.rule p { color: var(--grey); font-size: .97rem; max-width: 44ch; }

/* approach split */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  background: var(--grad-navy);
  aspect-ratio: 1/1;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.split__media img { width: 55%; filter: drop-shadow(0 16px 30px rgba(0,0,0,.4)); animation: floaty 6s var(--ease) 1 both; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.split__media::before {
  content:""; position:absolute; inset:0;
  background: conic-gradient(from 40deg at 30% 30%, rgba(62,139,255,.3), transparent 40%);
}
.check-list { display: grid; gap: 16px; margin-top: 24px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list li .ck {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  background: var(--grad-blue); color: #fff; display: grid; place-items: center;
  font-size: .8rem; margin-top: 2px;
}
.check-list li b { font-family: var(--f-display); }
.check-list li p { color: var(--grey); font-size: .95rem; margin-top: 2px; }

/* =================================================== Contact ========= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

/* What happens after you apply — a real sequence, numbered on purpose */
.apply-steps { display: grid; counter-reset: astep; }
.apply-step {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding-block: 20px;
  border-top: 1px solid var(--grey-line);
}
.apply-step:first-child { border-top: none; padding-top: 0; }
.apply-step__n {
  font-family: var(--f-display); font-weight: 900;
  font-size: 1.9rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--blue);
  min-width: 52px;
  padding-top: 2px;
}
.apply-step h3 { font-size: 1.08rem; margin-bottom: 4px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.apply-step h3 .when {
  font-family: var(--f-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  padding: 3px 9px; border-radius: 6px;
}
.apply-step p { color: var(--grey); font-size: .94rem; }
.apply-direct {
  margin-top: 26px; padding: 20px 22px;
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  font-size: .94rem; color: var(--grey);
  display: grid; gap: 8px;
}
.apply-direct b { font-family: var(--f-display); color: var(--ink); }
.apply-direct a { color: var(--blue); font-weight: 600; }
.apply-direct a:hover { text-decoration: underline; }

.form-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.form-card__head {
  margin: calc(-1 * clamp(28px, 4vw, 44px));
  margin-bottom: clamp(24px, 3vw, 34px);
  padding: 20px clamp(28px, 4vw, 44px);
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.form-card__head h2 {
  color: #fff; font-size: 1.3rem; letter-spacing: -.01em;
}
.form-card__head span {
  font-size: .84rem; font-weight: 600; color: var(--grey-dark);
}
.form-card__head b { color: var(--blue-2); font-family: var(--f-display); }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--f-display);
  font-weight: 600; font-size: .9rem;
  margin-bottom: 8px;
}
.field label .req { color: var(--blue); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.6px solid var(--grey-line);
  background: var(--ice);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--grey); opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(39,87,255,.12);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c81e3a; background: #fff5f6; }
.field__err { color: #c81e3a; font-size: .82rem; margin-top: 6px; display: none; font-weight: 600; }
.field.invalid .field__err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .84rem; color: var(--grey); margin-top: 4px; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px 10px;
}
.form-success.show { display: block; animation: pop .5s var(--ease); }
.form-success__ic {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--grad-blue); color: #fff;
  display: grid; place-items: center; margin: 0 auto 22px;
  font-size: 2rem;
  box-shadow: var(--shadow-blue);
}
.form-success h3 { font-size: 1.8rem; margin-bottom: 10px; }
.form-success p { color: var(--grey); max-width: 40ch; margin-inline: auto; }
@keyframes pop { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* =================================================== Legal =========== */
.legal { max-width: 820px; }
.legal__meta {
  display: inline-block;
  font-size: .85rem; font-weight: 600; color: var(--blue);
  background: var(--blue-soft);
  padding: 7px 15px; border-radius: 100px;
  margin-bottom: 30px;
}
.legal h2 {
  font-size: 1.5rem;
  margin-top: 44px; margin-bottom: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-line);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal h3 { font-size: 1.15rem; margin-top: 26px; margin-bottom: 10px; }
.legal p, .legal li { color: var(--grey); margin-bottom: 14px; font-size: 1rem; }
.legal ul { padding-left: 4px; display: grid; gap: 4px; margin-bottom: 20px; }
.legal ul li { display: flex; gap: 12px; align-items: flex-start; }
.legal ul li::before { content:""; flex-shrink:0; margin-top:9px; width:7px; height:7px; background: var(--grad-blue); transform: rotate(45deg); }
.legal a { color: var(--blue); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal__toc {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 44px;
}
.legal__toc h2 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin: 0 0 14px; padding-top: 0; border-top: none; }
.legal__toc ol { margin: 0; padding-left: 20px; color: var(--blue); columns: 2; gap: 30px; }
.legal__toc a { font-weight: 500; }

/* =================================================== FAQ ============= */
.faq { display: grid; gap: 14px; max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--blue); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 26px;
  font-family: var(--f-display);
  font-weight: 700; font-size: 1.1rem;
  text-align: left; color: var(--ink);
}
.faq-q .ic {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease;
  font-size: 1.1rem;
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--grad-blue); color: #fff; }
.faq-a { display: grid; grid-template-rows: minmax(0, 0fr); overflow: hidden; transition: grid-template-rows .4s var(--ease); }
.faq-a > p { overflow: hidden; min-height: 0; padding: 2px 26px 24px; color: var(--grey); }
.faq-item.open .faq-a { grid-template-rows: minmax(0, 1fr); }

/* =================================================== Logos row ======= */
.logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px clamp(20px, 3.2vw, 42px);
}
.logos-row span {
  font-family: var(--f-display);
  font-weight: 800; font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--grey);
  letter-spacing: -.01em;
  transition: color .3s var(--ease);
}
.logos-row span:hover { color: var(--ink); }

/* =============================================== Platform strip ====== */
/* The six ad platforms we supply, as a coverage strip. Clean SVG glyphs
   where one exists (Facebook, Google, TikTok, Snapchat); tidy lettermarks
   for Taboola and Bigo. Six tiles, responsive, never overflowing. */
.platstrip {
  padding-block: clamp(40px, 6vw, 74px);
  background: var(--white);
  border-block: 1px solid var(--grey-line);
}
.platstrip__lead {
  text-align: center;
  color: var(--grey);
  font-weight: 600;
  font-size: .98rem;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.platstrip__lead b { color: var(--ink); font-family: var(--f-display); font-weight: 700; }
.plat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
}
.plat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: clamp(18px, 2.2vw, 26px) 12px;
  background: var(--ice);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  transition: transform var(--tap) var(--snap), box-shadow var(--tap) var(--snap), border-color var(--tap) var(--snap);
}
.plat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--blue); }
.plat-tile__ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  transition: background var(--tap) var(--snap);
}
.plat-tile:hover .plat-tile__ic { background: var(--grad-blue); }
.plat-tile__ic svg { width: 26px; height: 26px; display: block; }
.plat-tile__ic .lm {
  font-family: var(--f-display); font-weight: 900;
  font-size: 1.3rem; line-height: 1; letter-spacing: -.02em;
}
.plat-tile__name {
  font-family: var(--f-display); font-weight: 700;
  font-size: .95rem; letter-spacing: -.01em; color: var(--ink);
  text-align: center;
}
@media (max-width: 860px) { .plat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .plat-grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================== The offer / cards === */
/* Own-card vs managed, the No Cap differentiator. Two options, one flat
   rate — stated in the open, no subscription, no lock-in. */
.offer {
  margin-top: clamp(26px, 3.4vw, 44px);
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(11,21,48,.25);
  color: #fff;
}
.offer__head {
  padding: clamp(28px, 3.4vw, 46px) clamp(28px, 3.4vw, 46px) 0;
}
.offer__head h3 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.02; letter-spacing: -.02em;
}
.offer__head h3 .blue { color: var(--blue-2); }
.offer__head p { color: var(--grey-dark); max-width: 60ch; margin-top: 14px; font-size: 1.02rem; }
.offer__opts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.8vw, 22px);
  padding: clamp(24px, 3vw, 38px) clamp(28px, 3.4vw, 46px);
}
.offer__opt {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
}
.offer__opt .offer__k {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 800; font-size: 1.12rem;
  color: #fff; margin-bottom: 10px; letter-spacing: -.01em;
}
.offer__opt .offer__k::before {
  content: ""; flex-shrink: 0;
  width: 11px; height: 11px;
  background: var(--blue-2);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.offer__opt p { color: var(--grey-dark); font-size: .96rem; }
.offer__bar {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 12px clamp(18px, 3vw, 40px);
  padding: clamp(18px, 2.2vw, 26px) clamp(28px, 3.4vw, 46px);
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(255,255,255,.1);
}
.offer__bar span { font-size: .92rem; font-weight: 600; color: var(--grey-dark); }
.offer__bar b {
  font-family: var(--f-display); font-weight: 900;
  font-size: 1.35rem; color: #fff; letter-spacing: -.02em; margin-right: 7px;
}
@media (max-width: 720px) { .offer__opts { grid-template-columns: 1fr; } }

/* =============================================== Payment strip ======= */
.paystrip {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px clamp(14px, 2.4vw, 30px);
  padding: clamp(18px, 2.2vw, 26px) clamp(22px, 3vw, 34px);
  background: var(--navy);
  border-radius: var(--radius);
}
.paystrip__title {
  font-family: var(--f-display); font-weight: 800; font-size: 1rem;
  color: #fff; white-space: nowrap;
  padding-right: clamp(12px, 2vw, 24px);
  border-right: 1px solid rgba(255,255,255,.25);
}
.paystrip__items { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.paystrip__items span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .86rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: 100px;
}
.paystrip__items span::before {
  content: ""; width: 7px; height: 7px;
  background: var(--blue-2); border-radius: 50%; flex-shrink: 0;
}
@media (max-width: 560px) {
  .paystrip__title { border-right: none; padding-right: 0; }
}

/* =================================================== Reveal anim ===== */
/* No-JS is fully visible. The inline .js gate only arms the transition;
   IntersectionObserver reveals each item, while reveal-failsafe forces every
   item visible after 1200ms even when observers or the external script fail. */
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: .62s;
  transition-timing-function: var(--ease);
}
.js [data-reveal].is-visible,
.js.reveal-failsafe [data-reveal] {
  opacity: 1;
  transform: none;
}
.js [data-reveal-delay="1"] { transition-delay: .07s; }
.js [data-reveal-delay="2"] { transition-delay: .14s; }
.js [data-reveal-delay="3"] { transition-delay: .21s; }
.js [data-reveal-delay="4"] { transition-delay: .28s; }
.js [data-reveal-delay="5"] { transition-delay: .35s; }
.js.reveal-failsafe [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* =================================================== Responsive ====== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 470px; margin-inline: auto; width: 100%; }
  .rc__flag { grid-template-columns: 1fr; }
  .rc__flag-fig { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
  .rc__pair { grid-template-columns: 1fr; }
  .svc-rest { grid-template-columns: 1fr; gap: 12px; }
  .cases, .tst-grid { grid-template-columns: 1fr 1fr; }
  .rules { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .svc-row, .svc-more, .svc-row:nth-child(even) .svc-row__media { grid-template-columns: 1fr; }
  .svc-row__media { order: -1 !important; aspect-ratio: auto; padding: 34px 20px; }
  .manifesto__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split__media { max-width: 420px; }
  .legal__toc ol { columns: 1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  :root { --cut: clamp(18px, 5vw, 30px); }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__logo img { height: 40px; }
  .svc-rest, .cases, .tst-grid, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-wrap: wrap; }
  .btn-row .btn { flex: 1 1 auto; justify-content: center; }
  .capbreak__foot { flex-wrap: wrap; }
  .rc__plat { flex-wrap: wrap; }
  .rc__plat > div { flex-basis: calc(100% - 60px); }
  .rc__incl { grid-template-columns: 1fr; }
  .svc-row__list { grid-template-columns: 1fr; }
  .feestrip__title { border-right: none; padding-right: 0; }
  .feestrip__items { gap: 14px 22px; justify-content: flex-start; flex-basis: 100%; }
  .rcpt__stamp { right: 8px; }
}

@media (max-width: 380px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ======================================== HOME — editorial finish ==== */
/* Index-only overrides keep NO CAP's energy without altering the visual
   language of the interior pages while this page is being refined. */
.home .platstrip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(112deg, transparent 0 72%, rgba(39,87,255,.045) 72% 78%, transparent 78%),
    var(--white);
}
.home .plat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--grey-line);
}
.home .plat-tile {
  min-width: 0;
  min-height: 130px;
  justify-content: center;
  padding: 20px 10px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--grey-line);
  border-radius: 0;
  transition-property: transform, background-color;
  transition-duration: var(--tap);
  transition-timing-function: var(--snap);
}
.home .plat-tile:first-child { border-left: 0; }
.home .plat-tile:nth-child(even) { padding-top: 30px; padding-bottom: 10px; }
.home .plat-tile:hover { transform: none; background: transparent; box-shadow: none; }
.home .plat-tile__ic {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(11,21,48,.18);
  transform: rotate(-2deg);
}
.home .plat-tile:nth-child(even) .plat-tile__ic { transform: rotate(2deg); }
.home .plat-tile:hover .plat-tile__ic { background: transparent; color: var(--navy); }

/* Three operational promises read as one connected rail, not three cards. */
.home .svc-rest {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(11,21,48,.07),
    0 4px 10px rgba(11,21,48,.05),
    0 20px 42px rgba(11,21,48,.07);
}
.home .svc-item {
  position: relative;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 156px;
  padding: 28px 26px;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition-property: background-color, transform;
  transition-duration: var(--tap);
  transition-timing-function: var(--snap);
}
.home .svc-item + .svc-item { border-left: 1px solid var(--grey-line); }
.home .svc-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s var(--ease);
}
.home .svc-item:hover { transform: none; background: var(--blue-soft); box-shadow: none; }
.home .svc-item:hover::before { transform: scaleX(1); }
.home .svc-item__ic { width: 42px; height: 42px; border-radius: 7px; }
.home .svc-item__arw { position: absolute; right: 20px; bottom: 18px; }

/* The actual three-step sequence becomes a connected sprint timeline. */
.home .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.home .step {
  position: relative;
  min-width: 0;
  padding: 34px clamp(22px, 3vw, 34px) 30px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.24);
  border-radius: 0;
  transition-property: transform, background-color;
  transition-duration: .2s;
  transition-timing-function: var(--snap);
}
.home .step + .step { border-left: 1px solid rgba(255,255,255,.10); }
.home .step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: clamp(22px, 3vw, 34px);
  width: 11px;
  height: 11px;
  background: var(--navy);
  box-shadow: 0 0 0 3px var(--blue-2);
  transform: rotate(45deg);
}
.home .step:hover { transform: none; background: transparent; border-color: rgba(255,255,255,.24); }
.home .step__n { font-size: 2.9rem; margin-bottom: 13px; }

/* Both funding routes visibly converge into the single fee strip. */
.home .offer__flow {
  display: block;
  width: calc(100% - clamp(56px, 6.8vw, 92px));
  height: 58px;
  margin: -14px auto 0;
  overflow: visible;
}
.home .offer__flow path {
  fill: none;
  stroke: rgba(62,139,255,.58);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.home .offer__flow circle { fill: var(--blue-2); filter: drop-shadow(0 0 8px rgba(62,139,255,.62)); }
.home .offer__bar { justify-content: space-between; }

.home-verticals {
  background: var(--white);
  border-block: 1px solid var(--grey-line);
}
.home-verticals__title {
  color: var(--grey);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 34px;
}

/* Quotes become an editorial ledger with varied spans, not a card shelf. */
.home-testimonials {
  overflow: hidden;
  background:
    linear-gradient(108deg, transparent 0 76%, rgba(39,87,255,.06) 76% 82%, transparent 82%),
    var(--blue-soft);
}
.home .tst-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(32px, 5vw, 70px);
}
.home .tst {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0 24px;
  align-items: start;
  min-width: 0;
  padding: 30px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(11,21,48,.18);
  border-radius: 0;
  transition-property: transform;
  transition-duration: .2s;
  transition-timing-function: var(--snap);
}
.home .tst:first-child,
.home .tst:last-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
}
.home .tst:hover { transform: none; box-shadow: none; }
.home .tst__stars { grid-column: 1; grid-row: 1; margin: 4px 0 0; }
.home .tst blockquote { grid-column: 2; grid-row: 1; min-width: 0; }
.home .tst__who { grid-column: 2; grid-row: 2; margin-top: 20px; }
.home .tst:first-child .tst__quote,
.home .tst:last-child .tst__quote { font-size: clamp(1.2rem, 2vw, 1.48rem); line-height: 1.45; }
.home .tst__av {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  background: var(--blue);
  box-shadow: 5px 5px 0 rgba(39,87,255,.13);
}
.home .cta-band {
  border-radius: 12px;
  clip-path: polygon(0 0, 97% 0, 100% 8%, 100% 100%, 3% 100%, 0 92%);
}
.home .case:hover { transform: none; box-shadow: none; }

/* Tablet navigation switches before the full logo is forced to shrink. */
@media (max-width: 900px) {
  .nav__links,
  .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 860px) {
  .home .plat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home .plat-tile:nth-child(even) { padding-block: 20px; }
  .home .plat-tile:nth-child(3n + 1) { border-left: 0; }
  .home .plat-tile:nth-child(n + 4) { border-top: 1px solid var(--grey-line); }
}

@media (max-width: 760px) {
  .home .svc-rest,
  .home .steps { grid-template-columns: 1fr; }
  .home .svc-item { min-height: 0; }
  .home .svc-item + .svc-item { border-left: 0; border-top: 1px solid var(--grey-line); }
  .home .step { padding-left: 48px; border-top: 0; border-left: 1px solid rgba(255,255,255,.22); }
  .home .step + .step { border-left: 1px solid rgba(255,255,255,.22); }
  .home .step::before { top: 42px; left: -6px; }
  .home .offer__flow { display: none; }
  .home .offer__bar { border-top-color: rgba(62,139,255,.42); }
}

@media (max-width: 560px) {
  .hero__badge { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: start; padding: 9px 10px; font-size: .8rem; }
  .hero__badge::after { left: 59px; }
  .capbreak { padding-inline: 4px; }
  .capbreak__plate { padding: 22px 20px 24px; }
  .capbreak__scene { height: 190px; }
  .capbreak__foot { gap: 8px; font-size: .72rem; }
  .capbreak__foot span + span { padding-left: 8px; }
  .capbreak__debris--two { right: -6px; }
  .home .tst-grid { grid-template-columns: 1fr; }
  .home .tst,
  .home .tst:first-child,
  .home .tst:last-child { grid-column: 1; grid-template-columns: 1fr; gap: 12px; }
  .home .tst__stars,
  .home .tst blockquote,
  .home .tst__who { grid-column: 1; grid-row: auto; }
  .home .tst__who { margin-top: 6px; }
}

@media (max-width: 460px) {
  .home .plat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home .plat-tile { border-top: 0; }
  .home .plat-tile:nth-child(3n + 1) { border-left: 1px solid var(--grey-line); }
  .home .plat-tile:nth-child(odd) { border-left: 0; }
  .home .plat-tile:nth-child(n + 3) { border-top: 1px solid var(--grey-line); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .split__media img { transform: none !important; }
  .marquee__track { animation: none !important; transform: translateX(-4%) !important; }
  .capbreak__live i { animation: none !important; box-shadow: none !important; }
  .capbreak__trajectory { animation: none !important; stroke-dashoffset: 0 !important; }
  .capbreak__area { animation: none !important; opacity: 1 !important; }
}
