/* =========================================================
   NAY Studios — Deep Teal / High-Tech System · Outfit
   ========================================================= */

/* Outfit — one variable WOFF2 (latin subset) covers weights 100–900 */
@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* high-tech palette — base is the charcoal logo variant, brand teal + aqua + a coral
     accent (all pulled from the actual NAY logo color set) carry the highlights */
  --bg: #181f1f;            /* page background — darkened charcoal (logo's charcoal mark) */
  --bg-soft: #222b2b;       /* alternate panel background (slightly lighter charcoal) */
  --bg-deep: #0e1313;       /* deepest background (header glass, footer) */
  --primary: #005250;       /* brand teal — hero / cta base */
  --primary-deep: #012e2c;  /* darker teal for gradients */
  --surface: #2a3333;       /* card / input surfaces on dark charcoal */
  --surface-2: #323d3d;     /* hover / raised surface */

  --text: #f4fbfa;          /* primary text — light, on dark backgrounds everywhere */
  --text-dim: #aab8b7;      /* secondary / muted text on dark charcoal */
  --text-faint: rgba(244, 251, 250, 0.55); /* faint placeholder-style text */
  --text-on-light: #04302e; /* dark text, only for native light UI (select options) */

  --aqua: #2dd9c1;          /* bright accent — the "high-tech" glow color */
  --aqua-soft: #8af4e2;     /* lighter glow variant for hover states */
  --aqua-deep: #12877a;     /* deeper teal-aqua — third tone for the mixed logo mark */
  --aqua-glow: rgba(45, 217, 193, 0.45);

  --coral: #f26969;         /* the logo's coral variant — used sparingly (~10%) for highlights */
  --coral-soft: #ff8d8d;
  --coral-glow: rgba(242, 105, 105, 0.45);

  --line: rgba(244, 251, 250, 0.1);         /* hairlines on dark */
  --line-bright: rgba(45, 217, 193, 0.4);   /* accent hairlines / dashed borders */

  --container: 1280px;
  --measure: 720px;
  --pad-desktop: 80px;
  --pad-mobile: 24px;

  --display: "Outfit", system-ui, -apple-system, sans-serif;
  --body: "Outfit", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: dark;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* the hidden attribute must always win, even over display:grid/flex rules
   (used by the lead form → confirmation swap) */
[hidden] { display: none !important; }

/* ---------- skip link (accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 9999;
  background: var(--aqua);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-desktop);
}
@media (max-width: 768px) {
  .container { padding-inline: var(--pad-mobile); }
}

.section { padding-block: 96px; }
@media (max-width: 768px) {
  .section { padding-block: 72px; }
}

.measure { max-width: var(--measure); }

/* ---------- typography ---------- */
h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(44px, 7.6vw, 88px);
  font-weight: 700;
}

h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 700;
}

h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 30px;
}

.eyebrow-bright {
  color: var(--aqua-soft);
  text-shadow: 0 0 18px var(--aqua-glow);
}

.lead {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 0.9em;
  color: var(--text);
}

.section-intro {
  max-width: var(--measure);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0 0 68px;
}

.section-intro-onteal {
  color: var(--text);
}

p { margin: 0 0 1.2em; color: var(--text-dim); }
p:last-child { margin-bottom: 0; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(14, 19, 19, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.logo-cube {
  display: inline-flex;
  width: 28px;
  filter: drop-shadow(0 0 10px var(--aqua-glow));
  transition: filter 0.25s var(--ease);
}

/* the mark is built from 3 reed strokes — mix the palette across them
   instead of one flat tone, so it reads as a gradient rather than a block */
.logo-cube svg path:nth-of-type(1) { fill: var(--aqua-soft); }
.logo-cube svg path:nth-of-type(2) { fill: var(--aqua); }
.logo-cube svg path:nth-of-type(3) { fill: var(--aqua-deep); }

.logo:hover .logo-cube {
  filter: drop-shadow(0 0 16px var(--aqua-glow)) brightness(1.15);
}

.logo-word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--text);
  transition: color 0.25s var(--ease);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto 28px;
}

@media (max-width: 768px) {
  .header-nav { display: none; }
}

.nav-link {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--text-dim);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.nav-link:hover {
  color: var(--aqua-soft);
  border-bottom-color: var(--aqua);
}

.nav-link.is-active {
  color: var(--aqua-soft);
  border-bottom-color: var(--aqua);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-hero {
  padding-top: 168px;
}

.about-services-note {
  max-width: var(--measure);
  margin-top: 48px;
}

.about-cta {
  margin-top: 24px;
}

.header-cta {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--text);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.header-cta:hover {
  color: var(--coral-soft);
  border-bottom-color: var(--coral);
}

/* scrolled state */
.site-header.is-scrolled {
  background: rgba(14, 19, 19, 0.96);
  border-bottom-color: var(--line-bright);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .header-inner { height: 66px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--primary) 0%, var(--primary-deep) 55%, var(--bg) 100%);
  color: var(--text);
  padding-top: 168px;
  padding-bottom: 128px;
}

#gl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bg-deep);
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}

.loader.is-hidden {
  opacity: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- lockup (cube singularity + Studios reveal) ---------- */
.lockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  cursor: pointer;
  pointer-events: auto;
}

.singularity {
  position: relative;
  display: inline-flex;
  filter: drop-shadow(0 0 24px var(--aqua-glow));
  transition: filter 0.55s var(--ease), opacity 0.55s var(--ease);
  animation: singularity-float 6s ease-in-out infinite;
}

.lockup:hover .singularity {
  filter: drop-shadow(0 0 40px var(--aqua-glow)) brightness(1.1);
  opacity: 0.16;
  animation-play-state: paused;
}

.singularity::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, var(--bg-deep) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

@keyframes singularity-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mark {
  width: 120px;
  overflow: visible;
}

.mark .face {
  transform-box: view-box;
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mark .face-n path { fill: var(--aqua-soft); }
.mark .face-a path { fill: var(--aqua); }
.mark .face-y path { fill: var(--aqua-deep); }

.lockup:hover .face-n { transform: translateX(-36px); }
.lockup:hover .face-a { transform: translateY(-34px); }
.lockup:hover .face-y { transform: translateX(36px); }

.studio-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.52em;
  text-indent: 0.52em;
  color: var(--aqua-soft);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s,
              transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s;
  pointer-events: none;
}

.lockup:hover .studio-word {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .singularity {
    animation: none;
  }
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 5.4vw, 70px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 30px;
  color: var(--text);
  text-transform: uppercase;
}

.hero-title .accent {
  font-style: italic;
  color: var(--coral);
  text-shadow: 0 0 28px var(--coral-glow);
}

.hero-sub {
  max-width: 560px;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0 auto 46px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: all 0.25s var(--ease);
  padding: 16px 32px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--aqua) 0%, #17b6a0 100%);
  color: var(--bg-deep);
  box-shadow: 0 0 0 rgba(45, 217, 193, 0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--aqua-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--aqua);
  padding: 14px 30px;
}

.btn-ghost:hover {
  color: var(--coral-soft);
  border-color: var(--coral);
  box-shadow: 0 0 24px var(--coral-glow);
}

.btn-send {
  background: linear-gradient(135deg, var(--aqua) 0%, #17b6a0 100%);
  color: var(--bg-deep);
  font-weight: 700;
  padding: 16px 38px;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--aqua-glow);
}

/* =========================================================
   CLIENTS — compact glass strip
   ========================================================= */
.clients-section {
  padding-block: 40px;
}

@media (max-width: 768px) {
  .clients-section { padding-block: 28px; }
}

.clients-intro {
  margin-bottom: 40px;
  text-align: center;
}

.clients-intro .eyebrow {
  display: block;
  font-size: clamp(15px, 1.6vw, 17px);
  margin-bottom: 12px;
}

.clients-intro h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.client-item {
  overflow: hidden;
  width: 148px;
  aspect-ratio: 1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.client-item:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 105, 105, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(244, 251, 250, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 0 24px var(--coral-glow);
}

.client-logo {
  width: 100%;
  max-width: 92px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}

.client-item:hover .client-logo {
  filter: none;
  opacity: 1;
}

/* =========================================================
   GLASS SYSTEM — shared glassmorphism primitives
   ========================================================= */
.glass {
  position: relative;
  background: linear-gradient(160deg, rgba(244, 251, 250, 0.065) 0%, rgba(244, 251, 250, 0.018) 100%);
  border: 1px solid rgba(45, 217, 193, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow:
    inset 0 1px 0 rgba(244, 251, 250, 0.08),
    0 20px 44px rgba(0, 0, 0, 0.28);
}

/* top edge light — the "pane catching light" detail */
.glass::before {
  content: "";
  position: absolute;
  inset: 0 12% auto 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 244, 226, 0.55), transparent);
  pointer-events: none;
}

.glass-section {
  position: relative;
  overflow: hidden;
}

/* ambient orbs floating behind the glass */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb-aqua  { background: rgba(45, 217, 193, 0.14); }
.orb-teal  { background: rgba(0, 82, 80, 0.5); }
.orb-coral { background: rgba(242, 105, 105, 0.1); }

.orb-1 { width: 440px; height: 440px; top: -140px; left: -160px; }
.orb-2 { width: 380px; height: 380px; bottom: -140px; right: -140px; }
.orb-3 { width: 300px; height: 300px; top: 38%; left: 58%; }

/* =========================================================
   BAND (dark panel behind the services grid)
   ========================================================= */
.band {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  color: var(--text);
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45, 217, 193, 0.22) 1px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

.band .eyebrow { color: var(--aqua); }

.band-title {
  max-width: 18ch;
  margin: 0 0 18px;
}

.band-sub {
  max-width: 58ch;
  font-size: 19px;
  color: var(--text-dim);
  margin: 0 0 56px;
}

/* =========================================================
   SERVICES — bento glass grid
   ========================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.svc-card {
  grid-column: span 2;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.svc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 217, 193, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(244, 251, 250, 0.1),
    0 26px 52px rgba(0, 0, 0, 0.36),
    0 0 36px rgba(45, 217, 193, 0.12);
}

/* ghost numeral, top-right */
.svc-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(45, 217, 193, 0.13);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  transition: color 0.35s var(--ease);
}

.svc-card:hover .svc-num { color: rgba(45, 217, 193, 0.3); }

.svc-icon {
  width: 54px;
  height: 54px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(45, 217, 193, 0.08);
  border: 1px solid rgba(45, 217, 193, 0.22);
  box-shadow: inset 0 1px 0 rgba(244, 251, 250, 0.08), 0 0 20px rgba(45, 217, 193, 0.08);
}

.svc-icon svg {
  width: 30px;
  height: 30px;
  overflow: visible;
}

.svc-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 4px 0 0;
}

.svc-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}

.svc-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(244, 251, 250, 0.04);
  white-space: nowrap;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.svc-card:hover .svc-tag {
  color: var(--aqua-soft);
  border-color: rgba(45, 217, 193, 0.3);
}

/* featured card — spans 4 columns */
.svc-feat {
  grid-column: span 4;
}

.svc-feat .svc-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.svc-art {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.svc-art svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.3));
}

/* wide card — strategy, full row */
.svc-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding-block: 26px;
}

.svc-wide .svc-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.svc-wide .svc-tags {
  margin-top: 0;
  padding-top: 0;
  justify-content: flex-end;
  flex: none;
}

/* uniform two-column variant (services page) */
.svc-grid-2 { grid-template-columns: 1fr 1fr; }
.svc-grid-2 .svc-card { grid-column: auto; }

@media (max-width: 680px) {
  .svc-grid-2 { grid-template-columns: 1fr; }
}

/* staggered reveal within the grid */
.svc-grid > .reveal:nth-child(2) { transition-delay: 0.07s; }
.svc-grid > .reveal:nth-child(3) { transition-delay: 0.1s; }
.svc-grid > .reveal:nth-child(4) { transition-delay: 0.17s; }
.svc-grid > .reveal:nth-child(5) { transition-delay: 0.24s; }
.svc-grid > .reveal:nth-child(6) { transition-delay: 0.3s; }

@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { grid-column: span 1; }
  .svc-feat { grid-column: 1 / -1; }
  .svc-wide { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-feat { grid-template-columns: 1fr; }
  .svc-art { order: -1; }
  .svc-wide { flex-direction: column; align-items: flex-start; }
  .svc-wide .svc-tags { justify-content: flex-start; }
}

/* =========================================================
   PROCESS — glass timeline
   ========================================================= */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
}

.tl-step {
  position: relative;
}

/* connector — runs from each node to the next */
.tl-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 66px;
  right: -28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 217, 193, 0.45), rgba(45, 217, 193, 0.08));
}

.tl-node {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--aqua);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(160deg, rgba(244, 251, 250, 0.07), rgba(244, 251, 250, 0.02));
  border: 1px solid rgba(45, 217, 193, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(244, 251, 250, 0.08),
    0 0 24px rgba(45, 217, 193, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 22px;
}

.tl-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 10px;
}

.tl-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
  max-width: 30ch;
}

.timeline .reveal:nth-child(2) { transition-delay: 0.08s; }
.timeline .reveal:nth-child(3) { transition-delay: 0.16s; }
.timeline .reveal:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .tl-step:nth-child(2)::before { display: none; }
}

@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; gap: 30px; }

  /* side-rail layout: node in a left gutter, text beside it —
     the connector stays in the gutter, never behind the text */
  .tl-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
    row-gap: 4px;
  }

  .tl-node {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .tl-name {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
  }

  .tl-desc {
    grid-column: 2;
    grid-row: 2;
  }

  .tl-step:not(:last-child)::before {
    top: 60px;
    left: 27px;
    right: auto;
    bottom: -26px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(45, 217, 193, 0.45), rgba(45, 217, 193, 0.08));
  }
}

/* =========================================================
   THE GAP — editorial text + signal illustration
   ========================================================= */
.gap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

.gap-grid .measure {
  max-width: 100%;
}

.gap-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* editorial panel — the craft dissolving from view, told in the brand's
   dot-matrix language rather than illustration */
.gap-panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 10 / 11;
  border-radius: 24px;
  overflow: hidden;
}

.gap-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45, 217, 193, 0.9) 1.6px, transparent 2px);
  background-size: 21px 21px;
  background-position: 10px 10px;
  -webkit-mask-image: linear-gradient(118deg,
    rgba(0, 0, 0, 0.95) 8%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.16) 62%,
    rgba(0, 0, 0, 0.04) 80%,
    transparent 94%);
  mask-image: linear-gradient(118deg,
    rgba(0, 0, 0, 0.95) 8%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.16) 62%,
    rgba(0, 0, 0, 0.04) 80%,
    transparent 94%);
}

/* faint diagonal hairline marking the falloff */
.gap-scale {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 58%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(242, 105, 105, 0.4), transparent);
  transform: rotate(24deg);
}

.gap-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gap-label-a { top: 28px; left: 30px; }

.gap-label-b {
  bottom: 28px;
  right: 30px;
  text-align: right;
}

.gap-label-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.gap-label-v {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--aqua);
  text-shadow: 0 0 22px var(--aqua-glow);
  font-variant-numeric: tabular-nums;
}

.gap-label-v-coral {
  color: var(--coral);
  text-shadow: 0 0 22px var(--coral-glow);
}

@media (max-width: 860px) {
  .gap-grid { grid-template-columns: 1fr; gap: 56px; }
  .gap-visual { max-width: 440px; margin-inline: auto; }
}

/* =========================================================
   ON OUR NAME
   ========================================================= */
.name-note {
  max-width: 620px;
}

.name-section {
  padding-block: 48px;
}

@media (max-width: 768px) {
  .name-section { padding-block: 32px; }
}

.name-body {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(19px, 2.3vw, 23px);
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  margin: 0 0 1.2em;
}

.name-body:last-of-type {
  margin-bottom: 0;
}

/* =========================================================
   CTA PANEL (start a project)
   ========================================================= */
.cta-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--text);
  padding-block: 64px;
}

@media (max-width: 768px) {
  .cta-panel { padding-block: 48px; }
}

.cta-dots {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background-image: radial-gradient(circle, rgba(45, 217, 193, 0.3) 1px, transparent 1.2px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-inline: auto;
}

.cta-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--text);
}

.cta-sub {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dim);
  max-width: 56ch;
  line-height: 1.6;
  margin: 0 0 36px;
}

/* ---------- form ---------- */
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .lead-form { grid-template-columns: 1fr; gap: 16px; }
}

.field {
  display: flex;
  flex-direction: column;
}

.field-full {
  grid-column: 1 / -1;
}

.field label, .field legend {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
  padding: 0;
}

.field .hint {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-faint);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  border-radius: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--aqua);
  box-shadow: 0 1px 0 0 var(--aqua);
}

.field textarea {
  resize: vertical;
  line-height: 1.6;
  font-size: 17px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232DD9C1' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
}

.field select option {
  color: var(--text-on-light);
  background: #f5fbfa;
}

fieldset.field {
  border: none;
  margin: 0;
  padding: 0;
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}

.choice input {
  appearance: none;
  width: 19px;
  height: 19px;
  border: 1.5px solid var(--line-bright);
  border-radius: 4px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.choice input::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 2px;
  transform: scale(0);
  background: var(--aqua);
  transition: transform 0.15s var(--ease);
}

.choice input:checked {
  border-color: var(--aqua);
  background: transparent;
  box-shadow: 0 0 12px var(--aqua-glow);
}

.choice input:checked::before {
  transform: scale(1);
}

.form-foot {
  margin-top: 8px;
}

/* honeypot — visually removed, invisible to humans, tempting to bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-confirm {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  max-width: 56ch;
  line-height: 1.6;
}

.form-confirm a {
  color: var(--aqua-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--aqua);
  padding-bottom: 1px;
}

.form-confirm a:hover {
  opacity: 0.8;
}

.cta-below {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  max-width: 60ch;
  line-height: 1.6;
}

.cta-below a {
  color: var(--aqua-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--aqua);
  padding-bottom: 1px;
}

.cta-below a:hover {
  opacity: 0.8;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg-deep);
  padding-block: 56px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-foot .logo-cube {
  width: 22px;
}

.logo-foot .logo-word {
  font-size: 16px;
  color: var(--text);
}

.footer-meta {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-meta a {
  text-decoration: none;
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.footer-meta a:hover {
  border-bottom-color: var(--coral);
  color: var(--coral-soft);
}

.footer-meta .dot {
  color: var(--line-bright);
  font-weight: 300;
}

/* =========================================================
   REVEAL / SCROLL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   FOCUS & ACCESSIBILITY
   ========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-section {
  padding-block: 56px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

details.faq-item {
  background: linear-gradient(160deg, rgba(244, 251, 250, 0.055) 0%, rgba(244, 251, 250, 0.015) 100%);
  border: 1px solid rgba(45, 217, 193, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

details.faq-item[open] {
  border-color: rgba(45, 217, 193, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 0 20px rgba(45, 217, 193, 0.06);
}

details.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.35;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: color 0.25s var(--ease);
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary:hover { color: var(--aqua-soft); }

.faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(45, 217, 193, 0.28);
  display: grid;
  place-items: center;
  color: var(--aqua);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.35s var(--ease);
}

details.faq-item[open] .faq-icon {
  background: rgba(45, 217, 193, 0.12);
  border-color: rgba(45, 217, 193, 0.5);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.faq-body {
  padding: 0 28px 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dim);
}

.faq-body a {
  color: var(--aqua-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 217, 193, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease);
}

.faq-body a:hover { color: var(--aqua); }

/* =========================================================
   PHILOSOPHY PILLARS (about page)
   ========================================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

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

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

.pillar-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(244, 251, 250, 0.06) 0%, rgba(244, 251, 250, 0.018) 100%);
  border: 1px solid rgba(45, 217, 193, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pillar-card:hover {
  border-color: rgba(45, 217, 193, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28), 0 0 24px rgba(45, 217, 193, 0.08);
}

.pillar-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(45, 217, 193, 0.1);
  position: absolute;
  top: 18px;
  right: 22px;
  pointer-events: none;
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(45, 217, 193, 0.08);
  border: 1px solid rgba(45, 217, 193, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--aqua);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.pillar-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0;
}

/* =========================================================
   FOUNDER TEAM CARDS (about page)
   ========================================================= */
.team-section {
  padding-block: 72px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

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

.founder-card {
  padding: 32px 28px 28px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(244, 251, 250, 0.065) 0%, rgba(244, 251, 250, 0.018) 100%);
  border: 1px solid rgba(45, 217, 193, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(244, 251, 250, 0.07), 0 16px 36px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0 20% auto 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 244, 226, 0.4), transparent);
  pointer-events: none;
}

.founder-card:hover {
  border-color: rgba(45, 217, 193, 0.3);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(244, 251, 250, 0.09), 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 28px rgba(45, 217, 193, 0.08);
}

.founder-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(45, 217, 193, 0.3);
  background: linear-gradient(135deg, rgba(45, 217, 193, 0.18), rgba(0, 82, 80, 0.4));
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 0 20px rgba(45, 217, 193, 0.12);
}

.founder-avatar-letter {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--aqua-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}

.founder-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}

.founder-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0;
}

.founder-bio {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 4px 0 0;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 10px;
}

.founder-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(244, 251, 250, 0.04);
  white-space: nowrap;
}

/* =========================================================
   ENGAGEMENT PROCESS (services page)
   ========================================================= */
.process-section {
  padding-block: 72px;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

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

.process-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(244, 251, 250, 0.055) 0%, rgba(244, 251, 250, 0.015) 100%);
  border: 1px solid rgba(45, 217, 193, 0.11);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.process-card:hover {
  border-color: rgba(45, 217, 193, 0.28);
  transform: translateY(-3px);
}

.process-step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: rgba(45, 217, 193, 0.1);
  letter-spacing: -0.04em;
  position: absolute;
  top: 14px;
  right: 18px;
  pointer-events: none;
}

.process-step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 12px;
}

.process-step-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.process-step-desc {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

/* =========================================================
   404 PAGE ENHANCEMENTS
   ========================================================= */
.nf-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45, 217, 193, 0.18) 1.5px, transparent 1.8px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  opacity: 0.5;
}

.nf-code {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(100px, 18vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: transparent;
  background: linear-gradient(135deg, rgba(45, 217, 193, 0.25) 0%, rgba(45, 217, 193, 0.06) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.nf-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.nf-inner {
  position: relative;
  z-index: 1;
}

.nf-shortcuts {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 480px;
}

@media (max-width: 520px) {
  .nf-shortcuts { grid-template-columns: 1fr; }
}

.nf-shortcut {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(45, 217, 193, 0.12);
  background: linear-gradient(160deg, rgba(244, 251, 250, 0.05) 0%, rgba(244, 251, 250, 0.012) 100%);
  text-decoration: none;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.nf-shortcut:hover {
  border-color: rgba(45, 217, 193, 0.3);
  color: var(--aqua-soft);
  transform: translateX(4px);
}

.nf-shortcut-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(45, 217, 193, 0.08);
  border: 1px solid rgba(45, 217, 193, 0.18);
  display: grid;
  place-items: center;
  flex: none;
  color: var(--aqua);
}

.nf-shortcut-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* =========================================================
   FOCUS & ACCESSIBILITY
   ========================================================= */

@media (max-width: 768px) {
  :root {
    --pad-desktop: var(--pad-mobile);
  }

  body {
    font-size: 17px;
    line-height: 1.6;
  }

  .section {
    padding-block: 72px;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .mark {
    width: 90px;
  }

  .section-intro {
    margin-bottom: 48px;
    font-size: 17px;
  }

  .band-sub {
    font-size: 17px;
    margin-bottom: 44px;
  }

  .cta-panel {
    padding-block: 80px;
  }

  .lead-form {
    gap: 32px;
  }
}
