@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #020b38;
  --navy-2: #071444;
  --navy-3: #0d1c54;
  --ink: #141a2c;
  --muted: #59617a;
  --muted-2: #67707f;
  --paper: #f4f5f2;
  --surface: #ffffff;
  --line: #e2e5df;
  --line-dark: rgba(255, 255, 255, 0.14);
  --lime: #b4c62b;
  --lime-deep: #94a413;
  --star: #78860f;
  --input-line: #868d80;
  --r: 4px;
  --nav-h: 74px;
  --wrap: 1220px;
  --gut: clamp(20px, 5vw, 56px);
  --sp: clamp(64px, 9vw, 120px);
  --display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --body: "Geist", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 1px 2px rgba(20, 26, 44, 0.05), 0 12px 32px -12px rgba(20, 26, 44, 0.16);
  --shadow-lg: 0 2px 4px rgba(2, 11, 56, 0.06), 0 32px 64px -24px rgba(2, 11, 56, 0.34);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
blockquote { margin: 0; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 5.4vw, 4.15rem); }
h2 { font-size: clamp(1.85rem, 3.7vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.016em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
.h3-size { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.016em; }
.h4-size { font-size: 1.05rem; letter-spacing: -0.01em; }
p { margin: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap-tight { max-width: 900px; }
.reading { max-width: 880px; }
.section { padding-block: var(--sp); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 62ch; }
.measure { max-width: 66ch; }
.stack > * + * { margin-top: 1.1rem; }

/* ---------------------------------------------------------------- skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--lime-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible { outline-color: var(--lime); }

/* -------------------------------------------------------------------- header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hdr-in {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { flex: none; display: block; line-height: 0; }
.brand img { height: 42px; width: auto; border-radius: 2px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: var(--r);
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.hdr-call {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 10px;
}
.hdr-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hdr-phone:hover { color: var(--lime); }

.burger {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r);
  width: 44px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 19px;
  height: 1.5px;
  background: #fff;
  position: relative;
  transition: background 0.2s ease;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mob {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px var(--gut) 24px;
}
.mob.open { display: block; }
.mob a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mob .btn { margin-top: 20px; width: 100%; justify-content: center; }

@media (max-width: 1040px) {
  .nav, .hdr-call { display: none; }
  .burger { display: flex; }
}

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease,
    transform 0.12s ease, box-shadow 0.18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 10px 24px -12px rgba(148, 164, 19, 0.9);
}
.btn-primary:hover { background: #c2d434; box-shadow: 0 14px 30px -12px rgba(148, 164, 19, 0.95); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.6); }

.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }

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

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1.5px solid var(--lime);
  padding-bottom: 3px;
  transition: gap 0.18s ease, border-color 0.18s ease;
}
.arrow-link:hover { gap: 14px; border-color: var(--lime-deep); }
.arrow-link svg { flex: none; }
.on-dark .arrow-link { color: #fff; }

/* --------------------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: min(88svh, 800px);
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(2, 11, 56, 0.9) 0%, rgba(2, 11, 56, 0.58) 36%, rgba(2, 11, 56, 0.08) 70%, rgba(2, 11, 56, 0.34) 100%),
    linear-gradient(to right, rgba(2, 11, 56, 0.6) 0%, rgba(2, 11, 56, 0.04) 66%);
}
.hero-in { padding-block: clamp(56px, 11vw, 104px) clamp(44px, 6vw, 68px); width: 100%; }
.hero h1 { color: #fff; max-width: 20ch; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero-sub {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  max-width: 46ch;
  margin-top: 22px;
}
.hero .btn-row { margin-top: 34px; }

.hero-sub-page {
  min-height: 0;
  padding-top: clamp(70px, 12vw, 128px);
  padding-bottom: clamp(52px, 8vw, 84px);
  align-items: flex-end;
}
.hero-sub-page .hero-in { padding-block: 0; }
.hero-sub-page h1 { max-width: 20ch; }

/* --------------------------------------------------------------- proof strip */
.proof {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  padding: 30px 28px 32px 0;
  border-right: 1px solid var(--line);
}
.proof-item:last-child { border-right: 0; }
.proof-item:not(:first-child) { padding-left: 28px; }
.proof-k {
  font-family: var(--display);
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
}
.proof-v { color: var(--muted); font-size: 0.92rem; margin-top: 4px; display: block; line-height: 1.45; }

@media (max-width: 860px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item { padding: 22px 20px; border-bottom: 1px solid var(--line); }
  .proof-item:not(:first-child) { padding-left: 20px; }
  .proof-item:nth-child(2n) { border-right: 0; }
  .proof-item:nth-last-child(-n + 2) { border-bottom: 0; }
}

/* ---------------------------------------------------------- section headings */
.sec-head { max-width: 62ch; }
.sec-head p { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.on-dark .sec-head p { color: rgba(255, 255, 255, 0.72); }
.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------- dark section */
.on-dark {
  background: var(--navy);
  color: #fff;
}
.on-dark h2, .on-dark h3 { color: #fff; }

/* ------------------------------------------------- before / after comparison */
.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--navy-2);
  user-select: none;
  touch-action: pan-y;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); z-index: 2; }
.ba-tag {
  position: absolute;
  bottom: 14px;
  z-index: 4;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(2, 11, 56, 0.74);
  backdrop-filter: blur(4px);
  padding: 6px 11px;
  border-radius: 2px;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.ba-tag-b { left: 14px; }
.ba-tag-a { right: 14px; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-1px);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(2, 11, 56, 0.22);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 4px 16px rgba(2, 11, 56, 0.4);
  transition: transform 0.16s ease;
}
.ba:hover .ba-knob { transform: translate(-50%, -50%) scale(1.06); }
.ba-knob svg { color: var(--navy); }

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 54px; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 54px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
.ba-range:focus-visible ~ .ba-handle { background: var(--lime); box-shadow: 0 0 0 2px rgba(180, 198, 43, 0.5); }

/* featured comparison on the homepage */
.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: 46px;
}
.showcase-meta h3 { margin-bottom: 6px; }
.showcase-where {
  color: var(--lime);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.showcase-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}
.picker {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}
.picker button {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--navy-2);
  opacity: 0.5;
  transition: opacity 0.18s ease, box-shadow 0.18s ease;
}
.picker button img { width: 100%; height: 100%; object-fit: cover; }
.picker button:hover { opacity: 0.85; }
.picker button[aria-pressed="true"] {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--lime);
}

@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; }
  .picker { max-height: 200px; }
}

/* ------------------------------------------------------------ gallery page */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}
.filters button {
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 9px 17px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s ease;
}
.filters button:hover { border-color: var(--ink); color: var(--ink); }
.filters button[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.grid-work {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: 44px;
}
.work-card figcaption { padding-top: 15px; }
.work-card h3 { font-size: 1.09rem; letter-spacing: -0.012em; }
.work-where {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 0.9rem;
}
.work-card[hidden] { display: none; }

/* ------------------------------------------------------------------ services */
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 46px;
}
.tile {
  position: relative;
  grid-column: span 2;
  min-height: 250px;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  background: var(--navy);
  isolation: isolate;
}
.tile:nth-child(1) { grid-column: span 3; min-height: 340px; }
.tile:nth-child(2) { grid-column: span 3; min-height: 340px; }
.tile:nth-child(6),
.tile:nth-child(7) { grid-column: span 3; min-height: 280px; }

/* even three-up rhythm, for grids that hold a multiple of three */
.mosaic-even .tile,
.mosaic-even .tile:nth-child(1),
.mosaic-even .tile:nth-child(2),
.mosaic-even .tile:nth-child(6),
.mosaic-even .tile:nth-child(7) { grid-column: span 2; min-height: 230px; }
.tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(2, 11, 56, 0.95) 2%, rgba(2, 11, 56, 0.72) 34%, rgba(2, 11, 56, 0.14) 76%);
  transition: background 0.35s ease;
}
.tile:hover img { transform: scale(1.05); }
.tile:hover::after { background: linear-gradient(to top, rgba(2, 11, 56, 0.95) 6%, rgba(2, 11, 56, 0.6) 48%, rgba(2, 11, 56, 0.16) 84%); }
.tile-in { padding: 24px; width: 100%; }
.tile h3 { font-size: 1.25rem; }
.tile p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
  line-height: 1.5;
  margin-top: 7px;
  max-width: 44ch;
}
.tile-from {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .mosaic { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tile, .tile:nth-child(1), .tile:nth-child(2),
  .tile:nth-child(6), .tile:nth-child(7) {
    grid-column: span 1;
    min-height: 220px;
  }
  .tile:nth-child(7) { grid-column: span 2; }
}
@media (max-width: 560px) {
  .mosaic { grid-template-columns: 1fr; }
  .tile:nth-child(7) { grid-column: span 1; }
}

/* --------------------------------------------------------------- split block */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}
.split-media {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-media.tall img { aspect-ratio: 4 / 5; }
.split-top { align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.ticks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 0.99rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--lime-deep);
  border-bottom: 2px solid var(--lime-deep);
  transform: rotate(-45deg);
}
.on-dark .ticks li { color: rgba(255, 255, 255, 0.78); }
.on-dark .ticks li::before { border-color: var(--lime); }

/* ------------------------------------------------------------------- process */
.rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.rail h3 { font-size: 1.16rem; }
.rail p { color: var(--muted); font-size: 0.96rem; margin-top: 9px; }
@media (max-width: 860px) { .rail { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .rail { grid-template-columns: 1fr; gap: 26px; } }

/* -------------------------------------------------------------------- rates */
.rates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: var(--line-dark);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.rate { background: var(--navy); padding: 32px 26px 34px; }
.rate-n {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--lime);
  display: block;
  line-height: 1;
}
.rate-u { display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-top: 8px; }
.rate-l { display: block; font-weight: 600; margin-top: 16px; font-size: 1rem; }
@media (max-width: 860px) { .rates { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------- testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: 46px;
}
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.quote blockquote {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.58;
  color: var(--ink);
}
.quote figcaption {
  margin-top: auto;
  padding-top: 22px;
  font-size: 0.9rem;
}
.quote-name { display: block; font-weight: 600; }
.quote-job { display: block; color: var(--muted-2); margin-top: 2px; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--star); }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

.quotes-all { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) { .quotes-all { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------- areas */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}
.areas span {
  font-size: 0.92rem;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--muted);
}
.on-dark .areas span {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------- lists */
.cols-2 {
  columns: 2;
  column-gap: 40px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.cols-2 li {
  break-inside: avoid;
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--muted);
  font-size: 0.98rem;
}
.cols-2 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 9px;
  height: 1.5px;
  background: var(--lime-deep);
}
@media (max-width: 620px) { .cols-2 { columns: 1; } }

/* --------------------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--line); margin-top: 34px; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  letter-spacing: -0.014em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after,
.faq summary::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq summary::after { width: 14px; height: 1.6px; transform: translateY(-50%); }
.faq summary::before { width: 1.6px; height: 14px; right: 12px; transform: translateY(-50%); }
.faq details[open] summary::before { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.faq details p {
  padding: 0 8% 26px 0;
  color: var(--muted);
  max-width: 72ch;
}
.faq-group + .faq-group { margin-top: 54px; }
.faq-group h3 { margin-bottom: 4px; }

/* ------------------------------------------------------------- pricing page */
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(26px, 3vw, 40px);
}
.price-card + .price-card { margin-top: 20px; }
.price-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.price-big {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}
.price-big small { font-size: 0.9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: 8px; }
.price-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  padding-top: 24px;
}
.price-rows { display: grid; gap: 2px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 11px 0;
  font-size: 0.98rem;
}
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-row span:last-child { font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-inc h3 { margin-bottom: 12px; }
.price-inc .ticks { margin-top: 0; }
.price-inc .ticks li { font-size: 0.93rem; }
@media (max-width: 780px) { .price-body { grid-template-columns: 1fr; } }

.note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: var(--r);
  padding: 24px 28px;
  color: var(--muted);
  font-size: 0.96rem;
}
.note strong { color: var(--ink); }

/* --------------------------------------------------------------------- form */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.9rem; font-weight: 600; }
.field .hint { font-size: 0.84rem; color: var(--muted-2); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--input-line);
  border-radius: var(--r);
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #5f665a; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(2, 11, 56, 0.12);
}
.field input::placeholder, .field textarea::placeholder { color: #6a7180; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-2 { grid-template-columns: 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: 0.86rem; color: var(--muted-2); }
.form-note a { color: var(--muted); }
.form-msg {
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 0.94rem;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.ok { background: #edf3d8; color: #4b5606; border: 1px solid #cbd98c; }
.form-msg.bad { background: #fdeeee; color: #8c2020; border: 1px solid #f0c4c4; }

.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r);
  padding: clamp(28px, 3.4vw, 40px);
}
.contact-card h3 { margin-bottom: 22px; }
.contact-line { padding: 15px 0; border-top: 1px solid var(--line-dark); }
.contact-line:first-of-type { border-top: 0; padding-top: 0; }
.contact-line dt { font-size: 0.82rem; color: rgba(255, 255, 255, 0.56); letter-spacing: 0.03em; }
.contact-line dd {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.contact-line dd a { text-decoration: none; }
.contact-line dd a:hover { color: var(--lime); }
.contact-line dd.plain { font-family: var(--body); font-size: 1rem; font-weight: 400; line-height: 1.5; color: rgba(255, 255, 255, 0.82); }

/* ------------------------------------------------------------------ CTA band */
.cta {
  position: relative;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.cta img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(2, 11, 56, 0.96) 26%, rgba(2, 11, 56, 0.72) 62%, rgba(2, 11, 56, 0.4) 100%);
}
.cta-in { padding-block: clamp(64px, 8vw, 104px); max-width: 56ch; }
.cta p { color: rgba(255, 255, 255, 0.82); margin-top: 18px; font-size: 1.08rem; }
.cta .btn-row { margin-top: 32px; }

/* ------------------------------------------------------------------- footer */
.ftr { background: var(--navy); color: rgba(255, 255, 255, 0.72); }
.ftr-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 60px);
  padding-block: clamp(52px, 6vw, 76px) 46px;
}
.ftr img.mark { height: 46px; width: auto; border-radius: 2px; }
.ftr p { font-size: 0.94rem; margin-top: 18px; max-width: 34ch; line-height: 1.6; }
.ftr h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ftr a { color: rgba(255, 255, 255, 0.72); text-decoration: none; font-size: 0.94rem; }
.ftr a:hover { color: var(--lime); }
.ftr-bot {
  border-top: 1px solid var(--line-dark);
  padding-block: 24px 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}
.ftr-bot a { font-size: 0.86rem; color: rgba(255, 255, 255, 0.5); }
@media (max-width: 900px) { .ftr-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ftr-top { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- scroll reveal */
.js .rise {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .rise { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------- prose blocks */
.prose h2 { margin-top: 0; }
.prose h3 { margin-top: 46px; }
.prose p { color: var(--muted); margin-top: 14px; max-width: 68ch; }
.prose p:first-of-type { margin-top: 18px; }
