/* Brand accent script (Action Hero Alt03), used as a playful overlapping accent. */
@font-face {
  font-family: 'Action Hero Alt03';
  src: url('fonts/action-hero-alt.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #14a2ff;
  --black: #000000;
  --white: #ffffff;
  --gray-bg: #f4f5f6;
  --ink-60: rgba(0, 0, 0, 0.55);
  --paper-60: rgba(255, 255, 255, 0.55);
  --line-dark: rgba(0, 0, 0, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --font: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-script: 'Action Hero Alt03', cursive;
  --grid-dark: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  --grid-light: linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  --grid-size: 130px 130px;
  --maxw: 1240px;
  --pad: 40px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Section primitives ---------- */
section { position: relative; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 0.9;
  color: var(--blue);
  transform: rotate(-3.5deg);
  position: relative;
  z-index: 3;
  margin-bottom: -0.62em;
  pointer-events: none;
}
.eyebrow::before { content: none; }
/* Pull the heading up under the script so they overlap (the layered look) */
.eyebrow + h1,
.eyebrow + h2,
.eyebrow + .display,
.eyebrow + .section-title { margin-top: 0 !important; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; }

.display {
  font-size: clamp(44px, 8.2vw, 116px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
.section-title {
  font-size: clamp(34px, 5.4vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.blue { color: var(--blue); }

/* Playful script accent on headline highlight words (the screenshot vibe) */
.display .blue,
.page-hero h1 .blue,
.section-title .blue,
.cta h2 .blue {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.12em;
  line-height: 0.8;
  display: inline-block;
  transform: rotate(-3deg) translateY(0.13em);
  margin: 0 0.04em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.06em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(20,162,255,.4); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; color: var(--black); border-color: rgba(0,0,0,.2); }
.btn--ghost-dark:hover { border-color: var(--black); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(0,0,0,.22); }
.btn--sm { height: 44px; padding: 0 22px; font-size: 14.5px; }

.arrow { width: 16px; height: 16px; display: inline-block; }

/* text link */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--blue);
  transition: gap .25s ease;
}
.tlink:hover { gap: 13px; }

/* ---------- Nav (floating) ---------- */
header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad) 0;
  transition: padding .35s ease;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 70px;
  padding: 0 14px 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-radius: 999px;
  background: rgba(18,18,20,.42);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 10px 40px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav.scrolled { padding-top: 12px; }
.nav.scrolled .nav-inner {
  background: rgba(12,12,14,.74);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 12px 44px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.08);
}
.brand { display: inline-flex; align-items: center; gap: 11px; justify-self: start; }
.logomark {
  height: 26px; aspect-ratio: 1390 / 1232; display: block;
  background-color: var(--blue);
  -webkit-mask-image: url('logo-white.png');
  mask-image: url('logo-white.png');
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.brand .word {
  font-size: 20px; font-weight: 800; letter-spacing: -0.06em; color: #fff;
  text-transform: uppercase; white-space: nowrap;
}
.nav-links {
  justify-self: center;
  display: flex;
  gap: 38px;
}
.nav-links a {
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  color: rgba(255,255,255,.72);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px;
  height: 2px; border-radius: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:not(.active)::after { transform-origin: right; }
.nav-links a:not(.active):hover::after { transform-origin: left; }
.nav-cta { justify-self: end; display: flex; align-items: center; gap: 14px; }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-btn span { width: 17px; height: 1.6px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .2s; }
.menu-btn.open span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #000;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.6,.05,.1,1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a:not(.mm-cta) {
  font-family: var(--font-script);
  font-size: clamp(34px, 9.5vw, 46px);
  font-weight: 400; letter-spacing: 0; text-transform: none; line-height: 1.05;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateX(50px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1), color .2s ease;
}
.mobile-menu a:not(.mm-cta):active { color: var(--blue); }
.mobile-menu a:not(.mm-cta) .blue { font-family: var(--font); font-weight: 700; }
.mobile-menu.open a:not(.mm-cta) { opacity: 1; transform: none; }
.mobile-menu.open a:not(.mm-cta):nth-child(1) { transition-delay: .14s; }
.mobile-menu.open a:not(.mm-cta):nth-child(2) { transition-delay: .20s; }
.mobile-menu.open a:not(.mm-cta):nth-child(3) { transition-delay: .26s; }
.mobile-menu.open a:not(.mm-cta):nth-child(4) { transition-delay: .32s; }
.mobile-menu.open a:not(.mm-cta):nth-child(5) { transition-delay: .38s; }
.mobile-menu .mm-cta {
  margin-top: 36px;
  border-bottom: none;
  justify-content: center;
  font-size: 15px;
  padding: 20px 30px;
  height: auto;
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease .44s, transform .5s cubic-bezier(.2,.7,.2,1) .44s, background .25s, box-shadow .25s;
}
.mobile-menu.open .mm-cta { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu a:not(.mm-cta), .mobile-menu .mm-cta { opacity: 1; transform: none; transition: none; }
}

/* ---------- Hero ---------- */
.hero {
  background-color: var(--black);
  background-image: var(--grid-dark);
  background-size: var(--grid-size);
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 210px;
  padding-bottom: 110px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 70vw; height: 70vw;
  animation: glowDrift 19s ease-in-out infinite;
  max-width: 900px; max-height: 900px;
  right: -16vw; top: -14vw;
  background: radial-gradient(circle, rgba(20,162,255,.20) 0%, rgba(20,162,255,0) 62%);
  pointer-events: none;
}
.hero-mark {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: clamp(360px, 46vw, 720px);
  opacity: .05;
  pointer-events: none;
  transform: rotate(-2deg);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero .eyebrow { color: var(--blue); margin-bottom: -0.28em; }
.hero h1 { max-width: 14ch; }
.hero p.sub {
  margin-top: 40px;
  max-width: 46ch;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255,255,255,.62);
}
.hero-actions { margin-top: 52px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 80px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-light);
  padding-top: 30px;
}
.hero-meta .stat .n { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; }
.hero-meta .stat .l { font-size: 13.5px; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .01em; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background-color: var(--black);
  background-image: var(--grid-dark);
  background-size: var(--grid-size);
  color: #fff;
  padding: clamp(150px, 20vh, 220px) 0 clamp(60px, 8vw, 96px);
  overflow: hidden;
}
.page-hero .hero-glow { top: -22vw; }
.page-hero .eyebrow { color: var(--blue); margin-bottom: -0.52em; }
.page-hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: -0.045em;
  line-height: .94;
  max-width: 16ch;
}
.page-hero p.sub {
  margin-top: 28px;
  max-width: 52ch;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: rgba(255,255,255,.62);
}
.page-hero .inner { position: relative; z-index: 2; }

/* ---------- Section heads ---------- */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.sec-head .lead { max-width: 18ch; }
.sec-head .note { max-width: 34ch; font-size: 16px; line-height: 1.55; padding-bottom: 6px; }

.section-pad { padding: clamp(80px, 11vw, 150px) 0; }
.bg-light { background-color: var(--white); background-image: var(--grid-light); background-size: var(--grid-size); color: var(--black); }
.bg-dark { background-color: var(--black); background-image: var(--grid-dark); background-size: var(--grid-size); color: #fff; position: relative; overflow: hidden; }
/* Ambient blue glow on dark sections (echoes the hero), alternating sides for variety */
.bg-dark::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 62vw; max-width: 780px;
  height: 62vw; max-height: 780px;
  top: -24%; right: -12%;
  background: radial-gradient(circle, rgba(20,162,255,.17) 0%, rgba(20,162,255,0) 62%);
  pointer-events: none;
}
.bg-dark:nth-of-type(even)::before { right: auto; left: -14%; top: auto; bottom: -28%; }
.bg-dark > .wrap { position: relative; z-index: 1; }
.bg-gray { background-color: var(--gray-bg); background-image: var(--grid-light); background-size: var(--grid-size); color: var(--black); }
/* Softer version of the same glow on light sections */
.bg-light, .bg-gray, .services { position: relative; overflow: hidden; }
.bg-light::before, .bg-gray::before, .services::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 60vw; max-width: 760px;
  height: 60vw; max-height: 760px;
  top: -22%; left: -14%;
  background: radial-gradient(circle, rgba(20,162,255,.10) 0%, rgba(20,162,255,0) 60%);
  pointer-events: none;
}
.bg-light:nth-of-type(even)::before, .bg-gray:nth-of-type(even)::before, .services:nth-of-type(even)::before {
  left: auto; right: -12%; top: auto; bottom: -26%;
}
.bg-light > .wrap, .bg-gray > .wrap, .services > .wrap { position: relative; z-index: 1; }
/* Wandering drift so the glows feel alive, not static (varied path/speed/phase per section) */
.bg-dark::before, .bg-light::before, .bg-gray::before, .services::before {
  animation: glowDrift 17s ease-in-out infinite;
  will-change: transform;
}
.bg-dark:nth-of-type(even)::before, .bg-light:nth-of-type(even)::before,
.bg-gray:nth-of-type(even)::before, .services:nth-of-type(even)::before {
  animation: glowDriftB 21s ease-in-out infinite;
  animation-delay: -6s;
}
.bg-dark:nth-of-type(3n)::before, .bg-light:nth-of-type(3n)::before,
.bg-gray:nth-of-type(3n)::before, .services:nth-of-type(3n)::before {
  animation-duration: 26s;
  animation-delay: -12s;
}
.bg-light .eyebrow, .bg-gray .eyebrow { color: var(--blue); }
.bg-dark .eyebrow { color: var(--blue); }
.bg-light .note, .bg-gray .note { color: var(--ink-60); }
.bg-dark .note { color: var(--paper-60); }

/* ---------- Services teaser grid ---------- */
.services { background-color: var(--white); background-image: var(--grid-light); background-size: var(--grid-size); color: var(--black); padding: clamp(80px, 11vw, 150px) 0; }
.services .eyebrow, .sec-head .eyebrow { }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc {
  padding: 40px 32px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.1); }
.svc .num { font-size: 15px; font-weight: 700; color: var(--blue); letter-spacing: .04em; }
.svc h3 { font-size: clamp(28px, 2.4vw, 38px); margin-top: 26px; letter-spacing: -0.035em; }
.svc .desc { margin-top: 18px; font-size: 16.5px; line-height: 1.55; color: var(--ink-60); flex: 1; }
.svc .price-row {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.svc .price { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }
.svc .price span { font-size: 14px; font-weight: 500; color: var(--ink-60); letter-spacing: 0; }
.svc .price-tag {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: #fff; background: var(--blue);
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(20,162,255,.12), 0 6px 20px rgba(20,162,255,.42);
}
.svc .price .was {
  font-size: 15px; font-weight: 600; color: var(--ink-60);
  text-decoration: line-through; text-decoration-color: var(--blue);
  margin-left: 8px; letter-spacing: 0;
}
.svc .price-note {
  margin-top: 12px; font-size: 13px; font-weight: 500; color: var(--ink-60);
  display: flex; align-items: center; gap: 7px;
}
.svc .price-note::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex: none;
}

/* ---------- Service detail rows ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding: clamp(36px, 4vw, 60px);
  margin-bottom: 28px;
  margin-inline: clamp(6px, 2vw, 20px);
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.05);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.svc-detail:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,.1); }
.bg-dark .svc-detail { border: 1px solid var(--line-light); background: rgba(255,255,255,.02); box-shadow: none; }
.svc-detail:last-child { margin-bottom: 0; }
.svc-detail .dnum {
  font-size: clamp(104px, 13vw, 168px);
  font-weight: 800; line-height: .8; letter-spacing: -0.05em;
  color: transparent; -webkit-text-stroke: 1.4px var(--blue);
}
.svc-detail h2 { font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -0.04em; margin-top: 24px; }
.svc-detail .lede { margin-top: 22px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; max-width: 42ch; }
.bg-light .svc-detail .lede, .bg-gray .svc-detail .lede { color: var(--ink-60); }
.bg-dark .svc-detail .lede { color: rgba(255,255,255,.66); }
.svc-detail .price-big { margin-top: 30px; display: flex; align-items: baseline; gap: 12px; }
.svc-detail .price-big .v { font-size: clamp(30px, 3vw, 40px); font-weight: 800; letter-spacing: -0.03em; }
.svc-detail .price-big .u { font-size: 15px; opacity: .6; }
.svc-detail .price-big .tag {
  margin-left: auto; align-self: center;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 9px 18px; border-radius: 999px;
  color: #fff; background: var(--blue); border: none;
  box-shadow: 0 0 0 5px rgba(20,162,255,.14), 0 8px 28px rgba(20,162,255,.5);
  animation: tagPulse 2.4s ease-out infinite;
}
@keyframes tagPulse {
  0% { box-shadow: 0 0 6px 0 rgba(20,162,255,.55), 0 8px 28px rgba(20,162,255,.45); }
  100% { box-shadow: 0 0 18px 6px rgba(20,162,255,0), 0 8px 28px rgba(20,162,255,.45); }
}
@media (prefers-reduced-motion: reduce) {
  .svc-detail .price-big .tag { animation: none; }
}
.svc-detail .price-big .was {
  align-self: center;
  font-size: 19px; font-weight: 600; color: var(--ink-60);
  text-decoration: line-through; text-decoration-color: var(--blue);
}
.bg-dark .svc-detail .price-big .was { color: rgba(255,255,255,.5); }
.svc-detail .deal-note {
  margin-top: 16px; font-size: 14.5px; font-weight: 500; line-height: 1.5;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px 11px 14px; border-radius: 12px;
  background: rgba(20,162,255,.08); border: 1px solid rgba(20,162,255,.22);
  color: inherit;
}
.bg-dark .svc-detail .deal-note { background: rgba(20,162,255,.12); border-color: rgba(20,162,255,.3); }
.svc-detail .deal-note .spark { flex: none; width: 18px; height: 18px; color: var(--blue); }
.svc-detail .deal-note b { font-weight: 700; }
.included { margin-top: 4px; }
.included .ititle {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  opacity: .5; margin-bottom: 22px;
}
.included ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.included li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(0,0,0,.015);
  font-size: 16px; line-height: 1.45;
  transition: border-color .25s, background .25s;
}
.included li:hover { border-color: rgba(20,162,255,.4); background: rgba(20,162,255,.04); }
.bg-dark .included li { border: 1px solid var(--line-light); background: rgba(255,255,255,.03); }
.included li .ck {
  flex: none; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.included li .ck svg { width: 12px; height: 12px; }

/* ---------- How it works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step .big-num {
  font-size: clamp(128px, 20vw, 220px);
  font-weight: 800; line-height: .8; letter-spacing: -0.05em;
  color: transparent; -webkit-text-stroke: 1.4px rgba(255,255,255,.22);
}
.bg-light .step .big-num, .bg-gray .step .big-num { color: transparent; -webkit-text-stroke: 1.4px rgba(0,0,0,.18); }
.step .divider { height: 3px; width: 100%; background: var(--blue); margin: 30px 0 26px; transform-origin: left; }
.step h3 { font-size: clamp(26px, 2.4vw, 34px); letter-spacing: -0.035em; }
.step p { margin-top: 16px; font-size: 16.5px; line-height: 1.55; color: rgba(255,255,255,.6); max-width: 30ch; }
.bg-light .step p, .bg-gray .step p { color: var(--ink-60); }

/* ---------- Work grid ---------- */
.work { background: var(--gray-bg); color: var(--black); padding: clamp(80px, 11vw, 150px) 0; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
  cursor: pointer;
  display: block;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.12); }
.card:hover .thumb { transform: scale(1.045); }
.card .thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  background: repeating-linear-gradient(135deg, rgba(0,0,0,.045) 0 14px, rgba(0,0,0,.02) 14px 28px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card .thumb .ph {
  font-family: "SF Mono", ui-monospace, "Menlo", monospace;
  font-size: 11.5px; letter-spacing: .06em;
  color: rgba(0,0,0,.32);
  text-transform: uppercase;
}
.card .meta { padding: 22px 24px 26px; }
.card .tag { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); }
.card .client {
  margin-top: 10px;
  font-size: 22px; font-weight: 700; letter-spacing: -0.025em;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--black);
}
.card .blurb { margin-top: 12px; font-size: 15px; line-height: 1.5; color: var(--ink-60); }
.card .client .ar { opacity: 0; transform: translateX(-6px); transition: .3s; color: var(--blue); }
.card:hover .client .ar { opacity: 1; transform: translateX(0); }

/* ---------- Featured case ---------- */
.featured {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.featured .fthumb {
  align-self: stretch;
  min-height: 420px;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 16px, rgba(0,0,0,.02) 16px 32px);
  display: flex; align-items: center; justify-content: center;
}
.featured .fthumb .ph {
  font-family: "SF Mono", ui-monospace, "Menlo", monospace;
  font-size: 12px; letter-spacing: .06em; color: rgba(0,0,0,.3); text-transform: uppercase;
}
.featured .fbody { padding: clamp(36px, 4vw, 64px) clamp(36px, 4vw, 64px) clamp(36px, 4vw, 64px) 0; }
.featured .tag { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); }
.featured h3 { font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -0.035em; margin-top: 16px; }
.featured p { margin-top: 18px; font-size: 17px; line-height: 1.55; color: var(--ink-60); max-width: 44ch; }
.featured .fstats { margin-top: 32px; display: flex; gap: 40px; flex-wrap: wrap; }
.featured .fstats .n { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.featured .fstats .l { font-size: 13px; color: var(--ink-60); margin-top: 3px; }

/* ---------- About prose ---------- */
.prose-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.prose-grid .label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; opacity: .5; }
.prose-grid p {
  font-size: clamp(20px, 2vw, 28px); line-height: 1.45; letter-spacing: -0.01em; font-weight: 500;
}
.prose-grid p + p { margin-top: 26px; }
.prose-grid .blue { color: var(--blue); }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: 18px; overflow: hidden; }
.bg-light .values, .bg-gray .values { background: var(--line-dark); border-color: var(--line-dark); }
.value { background: var(--black); padding: 40px 34px; min-height: 230px; display: flex; flex-direction: column; }
.bg-light .value, .bg-gray .value { background: var(--white); }
.bg-gray .value { background: var(--gray-bg); }
.value .vnum { font-size: 14px; font-weight: 700; color: var(--blue); }
.value h3 { font-size: 23px; letter-spacing: -0.03em; margin-top: 18px; }
.value p { margin-top: 14px; font-size: 15.5px; line-height: 1.55; opacity: .62; flex: 1; }

/* stat band */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.statband .s .n { font-size: clamp(40px, 5vw, 68px); font-weight: 800; letter-spacing: -0.04em; }
.statband .s .l { margin-top: 8px; font-size: 14.5px; opacity: .55; line-height: 1.4; }

/* ---------- CTA banner ---------- */
.cta { background-color: var(--black); background-image: radial-gradient(125% 90% at 50% 0%, rgba(20,162,255,.16), rgba(20,162,255,0) 55%), var(--grid-dark); background-size: auto, var(--grid-size); color: #fff; padding: clamp(52px, 7vw, 96px) 0; text-align: center; overflow: hidden; position: relative; }
.cta-mark { position: absolute; right: -1%; top: 50%; transform: translateY(-50%); width: clamp(230px, 30vw, 440px); height: auto; pointer-events: none; }
.cta h2 { font-size: clamp(32px, 4.4vw, 56px); letter-spacing: -0.04em; line-height: 1.02; position: relative; max-width: 20ch; margin-inline: auto; text-wrap: balance; }
.cta .wrap::after { content: "Let's grow together."; display: block; margin-top: 40px; font-family: var(--font-script); color: var(--blue); font-size: clamp(26px, 3vw, 40px); line-height: 1; position: relative; z-index: 2; }
.cta .wrap { position: relative; z-index: 2; }
.cta::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 170px; background: linear-gradient(to bottom, var(--black), rgba(0,0,0,0)); z-index: 1; pointer-events: none; }
/* Continuous grid so adjacent same-tone sections blend without a hard seam */
.bg-dark, .bg-light, .bg-gray, .services, .hero, .page-hero { background-attachment: fixed; }
.cta p { margin: 26px auto 0; max-width: 40ch; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.5; color: rgba(255,255,255,.85); position: relative; }
.cta .btn { margin-top: 36px; position: relative; }

/* ---------- Footer ---------- */
footer { background: var(--black); color: #fff; padding: 72px 0 36px; border-top: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; }
.foot-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: clamp(40px, 6vw, 90px); padding-bottom: 48px; position: relative; z-index: 1; }
.foot-brand-col { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.foot-tag { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 34ch; }
.foot-social { display: flex; gap: 12px; margin-top: 2px; }
.foot-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: background .25s, color .25s, border-color .25s, transform .25s; }
.foot-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.foot-social svg { width: 19px; height: 19px; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.foot-col { display: flex; flex-direction: column; gap: 13px; }
.foot-col:nth-child(1) { order: 2; }
.foot-col:nth-child(2) { order: 3; }
.foot-col:nth-child(3) { order: 1; }
.foot-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.foot-col a { font-size: 15px; color: rgba(255,255,255,.68); transition: color .2s; width: max-content; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); position: relative; z-index: 1; }
.foot-legal { display: flex; gap: 24px; }
.foot-legal a { font-size: 13.5px; color: rgba(255,255,255,.42); transition: color .2s; }
.foot-legal a:hover { color: #fff; }
/* Service teaser cards as links + protect script eyebrow from clipping */
.svc-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: var(--blue); transition: gap .25s ease; }
.svc:hover .svc-link { gap: 12px; }
a.svc { text-decoration: none; cursor: pointer; }
.eyebrow { overflow: visible; padding-left: .18em; padding-right: .18em; }
/* Real client photos fill thumbnails */
.card .thumb img, .featured .fthumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.featured .fthumb { position: relative; }

/* Standalone service pages — icon badge instead of the big 01/02/03 number */
.svc-solo-ico { width: 74px; height: 74px; border-radius: 22px; background: rgba(20,162,255,.1); color: var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.svc-solo-ico svg { width: 34px; height: 34px; }
/* Standalone service pages — flatten the detail so it's part of the page, not a floating card */
.svc-detail.svc-flat { border: none; background: transparent; box-shadow: none; padding: 0; margin: 0; border-radius: 0; }
.svc-detail.svc-flat:hover { transform: none; box-shadow: none; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.foot-brand { display: inline-flex; align-items: center; gap: 11px; }
.foot-brand .logomark { height: 24px; }
.foot-brand .word { font-size: 19px; font-weight: 800; letter-spacing: -0.06em; text-transform: uppercase; }
.foot-links { display: flex; gap: 30px; }
.foot-links a { font-size: 14.5px; color: rgba(255,255,255,.6); transition: color .2s; }
.foot-links a:hover { color: #fff; }
.foot-copy { font-size: 14px; color: rgba(255,255,255,.42); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(5px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1), filter .8s ease; }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.r-left { transform: translateX(-42px); }
.reveal.r-right { transform: translateX(42px); }
.reveal.r-scale { transform: scale(.93); }
.reveal.r-left.in, .reveal.r-right.in, .reveal.r-scale.in { transform: none; }
/* Interactive cards: keep hover transforms snappy even though they're also .reveal */
.card.reveal, .pcard.reveal {
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease,
              opacity .9s cubic-bezier(.22,.61,.36,1), filter .8s ease;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4%, 4%) scale(1.06); }
}
@keyframes glowDrift {
  0%   { transform: translate(0%, 0%) scale(1); }
  20%  { transform: translate(24%, 20%) scale(1.12); }
  40%  { transform: translate(-20%, 26%) scale(1.04); }
  60%  { transform: translate(18%, -22%) scale(1.15); }
  80%  { transform: translate(-26%, -14%) scale(1.07); }
  100% { transform: translate(0%, 0%) scale(1); }
}
@keyframes glowDriftB {
  0%   { transform: translate(0%, 0%) scale(1.08); }
  25%  { transform: translate(-24%, -18%) scale(1); }
  50%  { transform: translate(22%, 24%) scale(1.16); }
  75%  { transform: translate(-16%, 20%) scale(1.05); }
  100% { transform: translate(0%, 0%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero-glow, .bg-dark::before, .bg-light::before, .bg-gray::before, .services::before { animation: none !important; }
}

/* ---------- Scroll progress ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .1s linear;
}

/* ---------- Section nav anchor offset ---------- */
[id] { scroll-margin-top: 110px; }

/* ---------- Accordion / FAQ ---------- */
.faq { max-width: 880px; display: flex; flex-direction: column; gap: 14px; }
.acc-item { border: 1px solid var(--line-dark); border-radius: 16px; overflow: hidden; transition: border-color .25s, background .25s, box-shadow .25s; background: #fff; }
.bg-dark .acc-item { border: 1px solid var(--line-light); background: rgba(255,255,255,.02); }
.acc-item.open { border-color: var(--blue); box-shadow: 0 14px 40px rgba(20,162,255,.1); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 26px; cursor: pointer; text-align: left; background: none; border: none; color: inherit;
  font-size: clamp(18px, 2vw, 23px); font-weight: 600; letter-spacing: -0.02em; font-family: inherit;
  transition: color .2s;
}
.acc-head:hover { color: var(--blue); }
.acc-icon { flex: none; width: 26px; height: 26px; position: relative; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--blue); border-radius: 2px; transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.acc-icon::before { width: 14px; height: 2px; }
.acc-icon::after { width: 2px; height: 14px; }
.acc-item.open .acc-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.2,1); }
.acc-body p { padding: 0 26px 26px; font-size: 16.5px; line-height: 1.6; max-width: 66ch; }
.bg-light .acc-body p, .bg-gray .acc-body p { color: var(--ink-60); }
.bg-dark .acc-body p { color: rgba(255,255,255,.62); }

/* ---------- Pricing toggle ---------- */
.price-toggle {
  display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px;
  background: rgba(0,0,0,.06); border: 1px solid var(--line-dark);
}
.bg-dark .price-toggle { background: rgba(255,255,255,.06); border-color: var(--line-light); }
.toggle-opt {
  border: none; background: none; cursor: pointer; font-family: inherit; color: inherit;
  padding: 10px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px; transition: background .25s, color .25s;
  opacity: .65;
}
.toggle-opt.active { background: var(--blue); color: #fff; opacity: 1; box-shadow: 0 6px 20px rgba(20,162,255,.4); }
.toggle-opt .save { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 7px; border-radius: 999px; background: rgba(255,255,255,.22); }

/* ---------- Pricing comparison table ---------- */
.ptable { width: 100%; }
.pcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pcard {
  border: 1px solid var(--line-dark); border-radius: 20px; padding: 38px 34px;
  display: flex; flex-direction: column; background: #fff; position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,.1); }
.pcard.featured-plan { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 20px 50px rgba(20,162,255,.16); }
.pcard .plan-badge {
  position: absolute; top: -13px; left: 34px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff;
  background: var(--blue); padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 6px 20px rgba(20,162,255,.42);
}
.pcard .plan-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); }
.pcard .plan-price { margin-top: 18px; display: flex; align-items: baseline; gap: 6px; }
.pcard .plan-price .pv { font-size: clamp(38px, 4vw, 52px); font-weight: 800; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.pcard .plan-price .pu { font-size: 15px; color: var(--ink-60); }
.pcard .plan-was { margin-top: 8px; font-size: 14px; color: var(--ink-60); }
.pcard .plan-was s { text-decoration-color: var(--blue); }
.pcard .plan-desc { margin-top: 18px; font-size: 16px; line-height: 1.55; color: var(--ink-60); }
.pcard .plan-list { list-style: none; margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 16px; flex: 1; }
.pcard .plan-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.45; }
.pcard .plan-list .ck { flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.pcard .plan-list .ck svg { width: 11px; height: 11px; }
.pcard .btn { margin-top: 30px; width: 100%; }
/* Pulsing glow on blue CTAs site-wide (nav, hero, pricing) */
.btn--blue { animation: btnPulse 2.4s ease-out infinite; }
.btn--blue:hover { animation-play-state: paused; }
@keyframes btnPulse {
  0% { box-shadow: 0 0 6px 0 rgba(20,162,255,.5), 0 8px 24px rgba(20,162,255,.3); }
  100% { box-shadow: 0 0 18px 6px rgba(20,162,255,0), 0 8px 24px rgba(20,162,255,.3); }
}
/* White CTA button glows white against the dark banner */
.cta .btn--white { animation: btnPulseWhite 2.4s ease-out infinite; }
.cta .btn--white:hover { animation-play-state: paused; }
@keyframes btnPulseWhite {
  0% { box-shadow: 0 0 6px 0 rgba(255,255,255,.45), 0 8px 24px rgba(0,0,0,.25); }
  100% { box-shadow: 0 0 18px 6px rgba(255,255,255,0), 0 8px 24px rgba(0,0,0,.25); }
}
@media (prefers-reduced-motion: reduce) {
  .btn--blue, .cta .btn--white { animation: none; }
}

/* ---------- Testimonials carousel ---------- */
.carousel { position: relative; overflow: hidden; padding-bottom: 8px; }
.car-track { display: flex; transition: transform .6s cubic-bezier(.5,.05,.1,1); }
.car-slide { flex: 0 0 100%; padding: 8px; }
.quote {
  font-size: clamp(24px, 3.2vw, 40px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.28;
  max-width: 24ch;
}
.bg-dark .quote { color: #fff; }
.quote .blue { color: var(--blue); }
.quote-by { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.quote-by .avatar { display: none; }
.quote-by .avatar.__keep {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  background: repeating-linear-gradient(135deg, rgba(20,162,255,.25) 0 8px, rgba(20,162,255,.12) 8px 16px);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--blue); font-size: 17px;
}
.quote-by .qn { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.quote-by .qr { font-size: 14px; opacity: .58; margin-top: 2px; }
.car-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 44px; gap: 20px; }
.car-dots { display: flex; gap: 9px; }
.car-dot { width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; padding: 0; background: currentColor; opacity: .22; transition: opacity .25s, transform .25s; }
.car-dot.active { opacity: 1; background: var(--blue); width: 11px; height: 11px; }
.car-arrows { display: flex; gap: 10px; }
.car-btn {
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  border: 1px solid currentColor; background: none; color: inherit; opacity: .5;
  display: flex; align-items: center; justify-content: center; transition: opacity .25s, background .25s, color .25s, border-color .25s;
}
.car-btn:hover { opacity: 1; background: var(--blue); border-color: var(--blue); color: #fff; }
.car-btn svg { width: 18px; height: 18px; }

/* ---------- Portfolio filter ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  border: 1px solid var(--line-dark); background: none; color: inherit; cursor: pointer; font-family: inherit;
  padding: 11px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  transition: background .25s, color .25s, border-color .25s; opacity: .72;
}
.filter-btn:hover { opacity: 1; border-color: currentColor; }
.filter-btn.active { background: var(--black); color: #fff; border-color: var(--black); opacity: 1; }
[data-tags] { transition: opacity .4s ease, transform .4s ease; }
[data-tags].filtered-out { display: none; }

/* ---------- Before / after ---------- */
.beforeafter {
  position: relative; aspect-ratio: 16/10; border-radius: 20px; overflow: hidden; cursor: ew-resize;
  user-select: none; border: 1px solid rgba(0,0,0,.08);
}
.ba-img { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ba-before { background: repeating-linear-gradient(135deg, rgba(0,0,0,.07) 0 16px, rgba(0,0,0,.03) 16px 32px); }
.ba-after { background: repeating-linear-gradient(135deg, rgba(20,162,255,.22) 0 16px, rgba(20,162,255,.1) 16px 32px); clip-path: inset(0 0 0 50%); }
.ba-label {
  position: absolute; bottom: 18px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 7px 13px; border-radius: 999px; background: rgba(0,0,0,.72); color: #fff;
}
.ba-before .ba-label { left: 18px; }
.ba-after .ba-label { right: 18px; background: var(--blue); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.ba-handle::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.ba-handle::before {
  content: "⟺"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2; color: var(--blue); font-size: 18px; font-weight: 700;
}

/* ---------- Native form ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line-dark); border-radius: 22px;
  padding: clamp(30px, 4vw, 52px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; opacity: .6; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--black);
  padding: 15px 16px; border-radius: 12px; border: 1px solid var(--line-dark); background: #fafafa;
  transition: border-color .2s, background .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(20,162,255,.12);
}
.form-actions { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-fine { font-size: 13.5px; color: var(--ink-60); }
.form-done { display: none; text-align: center; padding: 30px 10px; }
.form-done.show { display: block; }
.form-done .fd-mark { width: 64px; height: 64px; border-radius: 50%; background: var(--blue); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(20,162,255,.4); }
.form-done .fd-mark svg { width: 30px; height: 30px; }
.form-done h3 { font-size: 28px; letter-spacing: -0.03em; margin-top: 22px; }
.form-done p { margin-top: 12px; font-size: 16.5px; color: var(--ink-60); }

/* ---------- Contact split ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info .ci-item { padding: 22px 24px; border: 1px solid var(--line-dark); border-radius: 16px; background: #fff; }
.contact-info .ci-item:first-child { padding: 22px 24px; }
.contact-info .ci-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; opacity: .5; }
.contact-info .ci-val { margin-top: 10px; font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -0.02em; }
.contact-info .ci-val a:hover { color: var(--blue); }

/* ---------- Logo strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 5vw, 64px); justify-content: center; opacity: .5; }
.logo-strip .lg { font-size: clamp(18px, 2vw, 26px); font-weight: 800; letter-spacing: -0.03em; white-space: nowrap; }

/* ---------- Feature matrix ---------- */
.matrix-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 18px; border: 1px solid var(--line-dark); box-shadow: 0 14px 40px rgba(0,0,0,.05); }
.matrix { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; border-radius: 18px; overflow: hidden; }
.matrix th, .matrix td { text-align: left; padding: 19px 22px; font-size: 16px; }
.matrix thead th { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; background: var(--blue); border-bottom: none; }
.matrix thead th:not(:first-child) { color: #fff; text-align: center; }
.matrix tbody td { border-bottom: 1px solid var(--line-dark); }
.matrix tbody tr:last-child td { border-bottom: none; }
.matrix tbody td:first-child { font-weight: 600; }
.matrix td:not(:first-child) { text-align: center; }
.matrix td[data-c], .matrix td[data-d] { font-size: 0; }
.matrix td[data-c]::before {
  content: ""; display: inline-block; width: 22px; height: 22px; border-radius: 50%; background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2l2.6 2.6L10 3' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2l2.6 2.6L10 3' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
}
.matrix td[data-d]::before { content: "—"; font-size: 16px; color: rgba(0,0,0,.26); display: inline-block; }

/* ---------- Section sub-nav ---------- */
.subnav { position: sticky; top: 96px; z-index: 40; display: flex; gap: 8px; flex-wrap: wrap; padding: 10px; border-radius: 999px; background: rgba(255,255,255,.7); backdrop-filter: blur(14px); border: 1px solid var(--line-dark); width: max-content; margin: 0 auto clamp(40px,6vw,70px); }
.subnav a { font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 999px; color: var(--ink-60); transition: background .2s, color .2s; }
.subnav a:hover { color: var(--black); background: rgba(0,0,0,.05); }

/* ---------- Team grid ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member .m-photo { aspect-ratio: 3/4; border-radius: 16px; background: repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 14px, rgba(0,0,0,.02) 14px 28px); display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.bg-dark .member .m-photo { background: repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 14px, rgba(255,255,255,.03) 14px 28px); }
.member .m-photo .ph { font-family: "SF Mono", ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: .06em; opacity: .4; text-transform: uppercase; padding-bottom: 18px; }
.member .m-name { margin-top: 18px; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.member .m-role { margin-top: 5px; font-size: 14.5px; color: var(--blue); font-weight: 600; }

/* ===================== Centered layout ===================== */
.hero-inner,
.page-hero .inner { display: flex; flex-direction: column; align-items: center; text-align: center; }

.sec-head { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.sec-head .note { padding-bottom: 0; max-width: 48ch; }

.hero-actions { justify-content: center; }
.hero-meta { justify-content: center; }
.hero-meta .stat { text-align: center; }

/* How-it-works steps */
.steps .step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.steps .step .big-num { display: flex; justify-content: center; width: 100%; }
.step .divider { width: 72px; }
.step p { max-width: 32ch; }

/* Services teaser */
.svc { text-align: center; align-items: center; }
.svc .price-row { justify-content: center; gap: 18px; width: 100%; }
.svc .price-note { justify-content: center; }

/* Service detail rows — center the intro, keep the checklist readable */
.svc-detail > div:first-child { display: flex; flex-direction: column; align-items: center; text-align: center; }
.svc-detail .dnum { display: flex; justify-content: center; width: 100%; }
.svc-detail .price-big { justify-content: center; }
.svc-detail .price-big .tag { margin-left: 0; }
.svc-detail .deal-note { align-self: center; }
.included li { text-align: left; }

/* Pricing cards */
.pcard { text-align: center; align-items: center; }
.pcard .plan-price { justify-content: center; }
.pcard .plan-badge { left: 50%; transform: translateX(-50%); }
.pcard .plan-list { align-self: stretch; }
.pcard .plan-list li { text-align: left; }

/* Featured case */
.featured .fbody { text-align: center; }
.featured .fstats { justify-content: center; }

/* Prose blocks */
.prose-grid { grid-template-columns: 1fr; max-width: 64ch; margin-left: auto; margin-right: auto; text-align: center; gap: 16px; }

/* Values + team */
.value { text-align: center; align-items: center; }
.member { text-align: center; }

/* Stats */
.statband .s { text-align: center; }

/* Testimonials */
.quote { margin-left: auto; margin-right: auto; text-align: center; }
.quote-by { justify-content: center; }

/* FAQ — centered container, answers stay left-aligned for readability */
.faq { margin-left: auto; margin-right: auto; }

/* ---------- More script accents (woven throughout, placed late so they win) ---------- */
.svc .num,
.value .vnum,
.pcard .plan-name,
.card .tag, .card .ctag, .featured .tag,
.member .m-role,
.quote-by .qn {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.svc .num, .value .vnum { font-size: 22px; }
.pcard .plan-name { font-size: 25px; }
.card .tag, .card .ctag, .featured .tag { font-size: 18px; }
.member .m-role { font-size: 19px; }
.quote-by .qn { font-size: 25px; color: var(--blue); }

/* ===================== Interactive add-ons ===================== */

/* Hero trade personalizer */
.hero-trades {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 22px; margin-top: 34px;
}
.hero-trades .ht-label {
  font-family: var(--font-script); color: var(--blue); font-size: 28px; margin-right: 8px;
}
.ht-chip {
  border: none; background: none; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 600; letter-spacing: -0.015em;
  color: rgba(255,255,255,.45); padding: 5px 2px; position: relative;
  transition: color .25s ease, transform .25s ease;
}
.ht-chip::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: center;
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
}
.ht-chip:hover { color: #fff; }
.ht-chip:hover::before { transform: scaleX(.5); }
.ht-chip.active { color: #fff; }
.ht-chip.active::before { transform: scaleX(1); }
[data-trade-word] { display: inline-block; color: var(--blue); font-weight: 600; }

/* Expandable service cards */
.svc-toggle {
  margin-top: 22px; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid var(--line-dark); background: none; color: var(--blue); cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  padding: 13px 18px; border-radius: 999px;
  transition: background .25s, border-color .25s, color .25s;
}
.svc-toggle:hover { background: rgba(20,162,255,.06); border-color: rgba(20,162,255,.4); }
.svc-toggle-icon { width: 16px; height: 16px; position: relative; flex: none; }
.svc-toggle-icon::before, .svc-toggle-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--blue); border-radius: 2px; transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.svc-toggle-icon::before { width: 11px; height: 2px; }
.svc-toggle-icon::after { width: 2px; height: 11px; }
.svc.open .svc-toggle-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.svc-more { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.2,1); width: 100%; }
.svc-more-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding-top: 18px; text-align: left; }
.svc-more-list li {
  display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.4; color: var(--ink-60);
}
.svc-more-list .ck { flex: none; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.svc-more-list .ck svg { width: 10px; height: 10px; }

/* Clickable How-it-works steps */
.step--clickable { cursor: pointer; }
.step--clickable h3 { display: inline-flex; align-items: center; gap: 10px; }
.step--clickable h3::after {
  content: ""; width: 26px; height: 26px; border-radius: 50%; border: 1px solid currentColor; opacity: .5;
  display: inline-flex;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 11px 1.6px, 1.6px 11px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform .3s, opacity .25s, background-color .25s, border-color .25s;
}
.step--clickable:hover h3::after { opacity: 1; }
.step--clickable.open h3::after { transform: rotate(45deg); background-color: var(--blue); border-color: var(--blue); opacity: 1; background-image: linear-gradient(#fff,#fff), linear-gradient(#fff,#fff); }
.step-detail {
  max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.2,1);
  font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 32ch;
}
.bg-light .step-detail, .bg-gray .step-detail { color: var(--ink-60); }
.step-detail span { display: block; padding-top: 14px; }

/* Build-your-package */
.builder { display: grid; grid-template-columns: 1.3fr 1fr; gap: 26px; align-items: start; }
.builder-options { display: flex; flex-direction: column; gap: 14px; }
.bopt {
  display: flex; align-items: center; gap: 18px; text-align: left; width: 100%;
  border: 1px solid var(--line-dark); background: #fff; cursor: pointer; font-family: inherit; color: inherit;
  padding: 22px 24px; border-radius: 18px;
  transition: border-color .25s, box-shadow .25s, transform .25s, background .25s;
}
.bopt:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.07); }
.bopt.selected { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 14px 36px rgba(20,162,255,.14); }
.bopt-check { flex: none; width: 26px; height: 26px; border-radius: 8px; border: 2px solid var(--line-dark); position: relative; transition: background .25s, border-color .25s; }
.bopt.selected .bopt-check { background: var(--blue); border-color: var(--blue); }
.bopt-check::after { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2l2.6 2.6L10 3' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat; opacity: 0; transition: opacity .2s; }
.bopt.selected .bopt-check::after { opacity: 1; }
.bopt-main { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.bopt-name { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.bopt-desc { font-size: 14px; color: var(--ink-60); line-height: 1.4; }
.bopt-price { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; color: var(--blue); }
.builder-summary {
  position: sticky; top: 110px;
  border: 1px solid var(--line-dark); border-radius: 22px; background: #fff;
  padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; text-align: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.builder-summary .bsum-toggle { align-self: center; }
.bsum-total { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-top: 6px; }
.bsum-num { font-size: clamp(40px, 5vw, 58px); font-weight: 800; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; transition: color .3s; }
.bsum-num.ticking { color: var(--blue); }
.bsum-unit { font-size: 17px; color: var(--ink-60); font-weight: 600; }
.bsum-note { font-size: 14px; color: var(--ink-60); min-height: 1em; }
.builder-summary .btn { width: 100%; }
.bsum-empty { font-size: 14.5px; color: var(--ink-60); line-height: 1.5; }
.builder.is-empty .bsum-total, .builder.is-empty .bsum-note { opacity: .35; }

/* Build-your-package on dark sections — glassy dark cards */
.bg-dark .bopt { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.12); color: #fff; }
.bg-dark .bopt:hover { border-color: rgba(255,255,255,.25); box-shadow: 0 16px 40px rgba(0,0,0,.32); }
.bg-dark .bopt.selected { border-color: var(--blue); background: rgba(20,162,255,.08); box-shadow: 0 0 0 1px var(--blue), 0 16px 40px rgba(20,162,255,.22); }
.bg-dark .bopt-check { border-color: rgba(255,255,255,.28); }
.bg-dark .bopt-desc { color: rgba(255,255,255,.55); }
.bg-dark .builder-summary { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.12); box-shadow: 0 18px 50px rgba(0,0,0,.32); }
.bg-dark .bsum-num { color: #fff; }
.bg-dark .bsum-unit, .bg-dark .bsum-note, .bg-dark .bsum-empty { color: rgba(255,255,255,.6); }

/* Hand-drawn marker highlight behind key words (rough, Action-Hero feel) */
.hl {
  background-repeat: no-repeat;
  background-size: 100% 80%;
  background-position: 0 90%;
  padding: 0 .16em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 48' preserveAspectRatio='none'%3E%3Cpath d='M4,11 C60,5 130,13 190,7 C214,4 232,11 236,9 C239,21 236,34 237,40 C180,45 100,38 55,42 C32,45 12,40 4,41 C2,31 6,21 4,11 Z' fill='%2314a2ff' fill-opacity='0.30'/%3E%3C/svg%3E");
}
.hero .hl, .page-hero .hl, .bg-dark .hl, .cta .hl {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 48' preserveAspectRatio='none'%3E%3Cpath d='M4,11 C60,5 130,13 190,7 C214,4 232,11 236,9 C239,21 236,34 237,40 C180,45 100,38 55,42 C32,45 12,40 4,41 C2,31 6,21 4,11 Z' fill='%2314a2ff' fill-opacity='0.55'/%3E%3C/svg%3E");
}

/* ===================== Apply (multi-step form) ===================== */
.apply-page { background: #000; color: #fff; }
.apply-top { display: flex; justify-content: center; padding: 22px 0 26px; position: relative; z-index: 5; }
.apply-top .brand { gap: 11px; }
.apply-stage {
  position: relative; background: #000; overflow: hidden;
  padding: clamp(22px, 3vw, 38px) 0 clamp(36px, 5vw, 60px);
}
.apply-stage > .wrap { position: relative; z-index: 2; }
.apply-intro { text-align: center; max-width: 600px; margin: 0 auto clamp(20px, 2.6vw, 30px); }
.apply-intro .eyebrow { color: var(--blue); margin-bottom: -0.18em; }
.apply-intro h1 { font-size: clamp(28px, 4.2vw, 46px); letter-spacing: -0.04em; line-height: .98; text-transform: uppercase; }
.apply-intro .sub { margin-top: 12px; font-size: clamp(14px, 1.3vw, 16px); line-height: 1.5; color: rgba(255,255,255,.55); }
.apply-hero { padding-bottom: clamp(40px, 5vw, 64px); }
.apply-section { padding-top: clamp(40px, 5vw, 70px); }
.apply-shell {
  max-width: 880px; margin: 0 auto;
  background: transparent; border: none; box-shadow: none; padding: 0;
}

/* progress — big connected circles */
.apply-progress { display: flex; margin-bottom: clamp(26px, 3.2vw, 40px); }
.aprog-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; position: relative; }
.aprog-item:not(:last-child)::before {
  content: ""; position: absolute; top: 24px; left: 50%; width: 100%; height: 2px;
  background: rgba(255,255,255,.16); z-index: 0; transition: background .4s;
}
.aprog-item.done::before { background: var(--blue); }
.aprog-circle {
  width: 48px; height: 48px; border-radius: 50%; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800;
  background: #0a0a0a; color: rgba(255,255,255,.45); border: 2px solid rgba(255,255,255,.18);
  transition: background .3s, color .3s, border-color .3s, box-shadow .3s, transform .3s;
}
.aprog-item.active .aprog-circle { background: var(--blue); color: #fff; border-color: var(--blue); transform: scale(1.05); box-shadow: 0 0 0 6px rgba(20,162,255,.16), 0 10px 26px rgba(20,162,255,.45); }
.aprog-item.done .aprog-circle { background: var(--blue); color: #fff; border-color: var(--blue); }
.aprog-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); }
.aprog-item.active .aprog-label, .aprog-item.done .aprog-label { color: #fff; }

/* steps */
.astep { animation: astepIn .45s cubic-bezier(.2,.7,.2,1); }
@keyframes astepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .astep { animation: none; } }
.astep-title { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; font-size: clamp(36px, 5.4vw, 60px); line-height: .92; text-align: center; }
.astep-sub { margin-top: 6px; font-size: 15px; line-height: 1.45; color: var(--ink-60); text-align: center; }

/* service cards — icon tiles */
.asvc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.asvc {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.02); cursor: pointer; font-family: inherit; color: #fff;
  padding: 22px 18px 20px; border-radius: 18px;
  transition: border-color .25s, box-shadow .25s, transform .25s, background .25s;
}
.asvc:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.25); }
.asvc.selected { border-color: var(--blue); background: rgba(20,162,255,.06); box-shadow: 0 0 0 1px var(--blue), 0 18px 44px rgba(20,162,255,.2); }
.asvc-ico { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(20,162,255,.12); color: var(--blue); transition: background .25s, color .25s; }
.asvc.selected .asvc-ico { background: var(--blue); color: #fff; }
.asvc-ico svg { width: 24px; height: 24px; }
.asvc-name { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.asvc-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.4; }
.asvc-price { margin-top: 4px; font-size: 16px; font-weight: 800; letter-spacing: -0.03em; color: var(--blue); }
.asvc-price small { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); }
.asvc-check { position: absolute; top: 14px; right: 14px; width: 24px; height: 24px; border-radius: 50%; border: 2px solid rgba(255,255,255,.25); opacity: .6; transition: .25s; }
.asvc.selected .asvc-check { background: var(--blue); border-color: var(--blue); opacity: 1; }
.asvc-check::after { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2l2.6 2.6L10 3' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat; opacity: 0; transition: opacity .2s; }
.asvc.selected .asvc-check::after { opacity: 1; }

/* fields & segmented controls */
.afield-block { margin-top: 18px; }
.afield-block.full { grid-column: 1 / -1; margin-top: 4px; }
.afield-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; opacity: .6; margin-bottom: 14px; }
.aseg { display: flex; flex-wrap: wrap; gap: 10px; }
.aseg-opt { position: relative; cursor: pointer; }
.aseg-opt input { position: absolute; opacity: 0; pointer-events: none; }
.aseg-opt span {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line-dark); background: #fafafa;
  font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-60);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.aseg-opt:hover span { border-color: rgba(20,162,255,.4); color: var(--black); }
.aseg-opt.on span { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(20,162,255,.35); }
.apply-shell .form-grid { margin-top: 28px; }
.apply-shell .field input.invalid, .apply-shell .field select.invalid { border-color: #e5484d; background: #fff5f5; box-shadow: 0 0 0 4px rgba(229,72,77,.1); }

/* actions + error */
.astep-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; }
.astep-error { display: none; margin-top: 18px; font-size: 14.5px; font-weight: 600; color: #e5484d; }

/* review */
.arev { margin-top: 28px; border: 1px solid var(--line-dark); border-radius: 18px; overflow: hidden; }
.arev-row { display: flex; gap: 18px; padding: 16px 22px; border-top: 1px solid var(--line-dark); }
.arev-row:first-child { border-top: none; }
.arev-l { flex: none; width: 140px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-60); padding-top: 2px; }
.arev-v { font-size: 16px; font-weight: 500; line-height: 1.4; }

/* done */
.adone { text-align: center; padding: 20px 6px; }
.adone .fd-mark { width: 64px; height: 64px; border-radius: 50%; background: var(--blue); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(20,162,255,.4); }
.adone .fd-mark svg { width: 30px; height: 30px; }
.adone h3 { font-size: clamp(28px, 3.4vw, 38px); letter-spacing: -0.03em; margin-top: 24px; }
.adone p { margin-top: 14px; font-size: 16.5px; line-height: 1.55; color: var(--ink-60); max-width: 44ch; margin-left: auto; margin-right: auto; }
.adone .btn { margin-top: 30px; }

/* Apply page — dark form treatment */
.apply-page .astep-sub { color: rgba(255,255,255,.55); }
.apply-page .astep-title { color: var(--blue); }
.apply-page .field label, .apply-page .afield-label { color: rgba(255,255,255,.5); }
.apply-page .field input, .apply-page .field select, .apply-page .field textarea {
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.14); color: #fff; padding: 13px 15px;
}
.apply-page .form-grid { gap: 16px; margin-top: 20px; }
.apply-page .field textarea { min-height: 92px; }
.apply-page .field input::placeholder, .apply-page .field textarea::placeholder { color: rgba(255,255,255,.32); }
.apply-page .field select option { color: #111; }
.apply-page .field input:focus, .apply-page .field select:focus, .apply-page .field textarea:focus {
  border-color: var(--blue); background: rgba(255,255,255,.06); box-shadow: 0 0 0 4px rgba(20,162,255,.15);
}
.apply-page .aseg-opt span { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.6); }
.apply-page .aseg-opt:hover span { color: #fff; border-color: rgba(20,162,255,.5); }
.apply-page .aseg-opt.on span { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 6px 20px rgba(20,162,255,.45); }
.apply-page .field select {
  appearance: none; -webkit-appearance: none;
  background-color: rgba(255,255,255,.035);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23ffffff' stroke-opacity='0.55' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center; background-size: 16px;
  padding-right: 46px;
}
.apply-page [data-step="biz"] .field.full { margin-top: 28px; }
.apply-page [data-other-trade][hidden] { display: none; }
.acal { margin-top: 30px; text-align: center; }
.acal-prompt { font-size: 15px; color: rgba(255,255,255,.62); margin-bottom: 16px; }
.acal .calendly-inline-widget, .acal iframe { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: transparent; display: block; width: 100%; min-height: 1040px; }
.abooked[hidden] { display: none; }
.abooked { margin-top: 6px; }
.acal[hidden] { display: none; }
.apply-page .arev { border-color: rgba(255,255,255,.14); }
.apply-page .arev-row { border-top-color: rgba(255,255,255,.1); }
.apply-page .arev-l { color: rgba(255,255,255,.5); }
.apply-page .arev-v { color: #fff; }
.apply-page .adone h3 { color: #fff; }
.apply-page .adone p { color: rgba(255,255,255,.6); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root { --pad: 26px; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .menu-btn { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .svc-grid, .steps, .work-grid, .values, .statband { grid-template-columns: 1fr; }
  .statband { gap: 36px; }
  .svc {
    padding: 32px 26px;
  }
  .steps { gap: 8px; }
  .step { padding: 28px 0; border-bottom: 1px solid var(--line-light); }
  .bg-light .step, .bg-gray .step { border-bottom: 1px solid var(--line-dark); }
  .step:last-child { border-bottom: none; }
  .step .divider { margin: 22px 0 20px; }
  .work-grid { gap: 18px; }
  .sec-head { margin-bottom: 44px; }
  .svc-detail { grid-template-columns: 1fr; gap: 32px; }
  .builder { grid-template-columns: 1fr; }
  .builder-summary { position: static; }
  .hero-trades .ht-label { width: 100%; text-align: center; margin-right: 0; margin-bottom: 2px; }
  .prose-grid { grid-template-columns: 1fr; gap: 24px; }
  .featured { grid-template-columns: 1fr; }
  .featured .fthumb { min-height: 300px; }
  .featured .fbody { padding: 0 30px 40px; }
  .values { border-radius: 16px; }
  .value { min-height: 0; }
  .pcards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .beforeafter { aspect-ratio: 4/3; }
  .subnav { display: none; }
}
@media (max-width: 560px) {
  .hero-meta, .featured .fstats { gap: 30px; }
  .hero-actions .btn { flex: 1; }
  .foot-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .foot-top { grid-template-columns: 1fr; gap: 38px; }
  .foot-cols { grid-template-columns: 1fr; gap: 30px; }
  .foot-col:nth-child(1) { order: 2; }
  .foot-col:nth-child(2) { order: 3; }
  .foot-col:nth-child(3) { order: 1; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .car-controls { flex-direction: column-reverse; align-items: center; gap: 22px; }
  /* apply form */
  .aprog-label { display: none; }
  .aprog-circle { width: 46px; height: 46px; font-size: 16px; }
  .aprog-item:not(:last-child)::before { top: 23px; }
  .asvc-grid { grid-template-columns: 1fr; }
  .arev-row { flex-direction: column; gap: 5px; }
  .arev-l { width: auto; }
  .astep-actions .btn { flex: 1; height: 46px; padding: 0 16px; font-size: 13.5px; gap: 7px; }
  .astep-actions .btn .arrow { width: 14px; height: 14px; }
}

/* Give the home hero room to breathe on phones (was crammed into 100svh) */
@media (max-width: 640px) {
  .hero { min-height: auto; padding-top: 140px; padding-bottom: 104px; }
  .hero .eyebrow { font-size: clamp(22px, 7vw, 30px); margin-bottom: -0.12em; line-height: 1.12; }
  .hero h1 { font-size: clamp(36px, 9.6vw, 52px); line-height: 1.12; max-width: none; }
  .hero p.sub { margin-top: 36px; font-size: 16.5px; line-height: 1.6; max-width: 40ch; }
  .hero-actions { margin-top: 48px; gap: 14px; }
  .hero-meta { margin-top: 72px; gap: 30px; padding-top: 38px; }
  .hero-meta .stat .n { font-size: 28px; }
  .hero-meta .stat .l { font-size: 13px; }
}

/* Service price row — wrap the badge to its own line on phones so it doesn't cram */
@media (max-width: 620px) {
  .svc-detail .price-big { flex-wrap: wrap; justify-content: center; row-gap: 16px; column-gap: 10px; }
  .svc-detail .price-big .tag { flex-basis: 100%; margin: 0 auto; width: max-content; }
}

/* Abbreviated plan labels only show on small screens */
.lbl-abbr { display: none; }

/* Feature comparison table — clean stacked layout on small screens */
@media (max-width: 680px) {
  .lbl-full { display: none; }
  .lbl-abbr { display: inline; }
  .matrix-scroll { overflow-x: visible; }
  .matrix { min-width: 0; width: 100%; table-layout: fixed; }
  .matrix th, .matrix td { padding: 15px 4px; font-size: 14px; overflow-wrap: normal; word-break: keep-all; }
  .matrix th:first-child, .matrix td:first-child { width: auto; padding-left: 12px; line-height: 1.3; }
  .matrix th:not(:first-child), .matrix td:not(:first-child) { width: 58px; padding-left: 2px; padding-right: 2px; }
  .matrix thead th:not(:first-child) { font-size: 11px; letter-spacing: .02em; line-height: 1.1; }
  .matrix thead th:first-child { font-size: 11px; }
  .matrix tbody td:first-child { font-size: 14.5px; }
  .matrix td[data-c]::before { width: 18px; height: 18px; }
  .matrix td[data-d]::before { font-size: 15px; }
}

/* Outlined step/detail numbers — user-provided outline art via mask, tinted per section */
.step .big-num, .svc-detail .dnum { color: transparent; -webkit-text-stroke: 0; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.step .big-num { background-color: rgba(255,255,255,.32); }
.bg-light .step .big-num, .bg-gray .step .big-num { background-color: rgba(0,0,0,.26); }
.svc-detail .dnum { background-color: var(--blue); }
.steps .step:nth-of-type(1) .big-num, .svc-detail:nth-of-type(1) .dnum { -webkit-mask-image: url('nums/01.png'); mask-image: url('nums/01.png'); }
.steps .step:nth-of-type(2) .big-num, .svc-detail:nth-of-type(2) .dnum { -webkit-mask-image: url('nums/02.png'); mask-image: url('nums/02.png'); }
.steps .step:nth-of-type(3) .big-num, .svc-detail:nth-of-type(3) .dnum { -webkit-mask-image: url('nums/03.png'); mask-image: url('nums/03.png'); }
