/* =====================================================================
   MARUTI AGRO INDUSTRIES — shared stylesheet
   Palette:  warm paper + ink + signal orange (flat backgrounds only)
   Type:     Geist (UI) + Geist Mono (data, numerals), Tailwind scale steps
   Space:    2 / 4 / 8 / 12 / 16 / 24 / 32 / 40 / 48 / 64 / 80 / 96 only
   Motion:   cubic-bezier(0.32, 0.72, 0, 1)
   ===================================================================== */

/* ============================== TOKENS ============================== */
:root {
  --bg: #f4f1ea;
  --surface: #ffffff;
  --surface-2: #eae6dc;
  --ink: #131209;
  --text-2: #4a463c;
  --text-3: #6b665a;
  --line: #d9d3c5;
  --accent: #f25c1f;
  --accent-hover: #ff6a2b;
  --on-accent: #131209;
  --accent-text: #b23f0c;
  --inverse-bg: #131209;
  --inverse-surface: #1f1f1f;
  --inverse-line: #313131;
  --inverse-text: #f4f1ea;
  --inverse-text-2: #bdb7a9;
  --danger: #b3261e;
  --danger-bg: #fbe9e7;
  --glass: rgba(255, 255, 255, 0.72);
  --overlay: rgba(244, 241, 234, 0.8);
  --shadow: 0 16px 40px rgba(19, 18, 9, 0.08);
  --hero-from: #000000;
  --hero-to: #666666;

  --font: "Geist", "Manrope", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", monospace;

  --s-25: 2px;
  --s-50: 4px;
  --s-75: 8px;
  --s-100: 12px;
  --s-200: 16px;
  --s-300: 24px;
  --s-400: 32px;
  --s-500: 40px;
  --s-600: 48px;
  --s-700: 64px;
  --s-800: 80px;
  --s-900: 96px;

  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 12px;
  --r-2xl: 16px;
  --r-3xl: 24px;
  --r-full: 9999px;

  --max: 1200px;
  --gutter: var(--s-400);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #131209;
    --surface: #1f1f1f;
    --surface-2: #272727;
    --ink: #f4f1ea;
    --text-2: #bdb7a9;
    --text-3: #948e80;
    --line: #313131;
    --accent: #ff6a2b;
    --accent-hover: #ff8a57;
    --accent-text: #ff8a57;
    --inverse-bg: #000000;
    --inverse-surface: #181818;
    --danger: #ff8a80;
    --danger-bg: #313131;
    --glass: rgba(31, 31, 31, 0.72);
    --overlay: rgba(0, 0, 0, 0.8);
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    --hero-from: #ffffff;
    --hero-to: #9b9b9b;
  }
}
:root[data-theme="dark"] {
  --bg: #131209;
  --surface: #1f1f1f;
  --surface-2: #272727;
  --ink: #f4f1ea;
  --text-2: #bdb7a9;
  --text-3: #948e80;
  --line: #313131;
  --accent: #ff6a2b;
  --accent-hover: #ff8a57;
  --accent-text: #ff8a57;
  --inverse-bg: #000000;
  --inverse-surface: #181818;
  --danger: #ff8a80;
  --danger-bg: #313131;
  --glass: rgba(31, 31, 31, 0.72);
  --overlay: rgba(0, 0, 0, 0.8);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  --hero-from: #ffffff;
  --hero-to: #9b9b9b;
}

/* =============================== BASE =============================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--s-900);
}
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 24px;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main,
.footer {
  overflow-x: clip;
}
h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
p,
li,
dd,
blockquote {
  text-wrap: pretty;
}
a {
  color: var(--accent-text);
  text-underline-offset: 3px;
}
i.ph {
  font-style: normal;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-md);
}
::selection {
  background: var(--accent);
  color: var(--on-accent);
}
.skip-link {
  position: fixed;
  left: var(--s-200);
  top: calc(var(--s-900) * -1);
  z-index: 3000;
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-75) var(--s-100);
  border-radius: var(--r-lg);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: var(--s-200);
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--s-900);
}
.section-alt {
  background: var(--surface-2);
}
.section-inverse {
  background: var(--inverse-bg);
  color: var(--inverse-text);
}
.section-inverse h2,
.section-inverse h3 {
  color: var(--inverse-text);
}
.label {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.section-inverse .label {
  color: var(--inverse-text-2);
}

/* Section header: index column + title column */
.sec-head {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: var(--s-400);
  margin-bottom: var(--s-700);
  align-items: start;
}
.sec-index {
  display: flex;
  align-items: center;
  gap: var(--s-100);
  padding-top: var(--s-100);
}
.sec-index b {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--on-accent);
  background: var(--accent);
  padding: var(--s-25) var(--s-75);
  border-radius: var(--r-full);
}
.sec-head h2 {
  font-size: 36px;
  line-height: 40px;
  max-width: 680px;
  margin-bottom: var(--s-200);
}
.sec-head p {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-2);
  max-width: 680px;
}
.section-inverse .sec-head p {
  color: var(--inverse-text-2);
}

/* ============================== BUTTONS ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-75);
  padding: var(--s-75) var(--s-100);
  border-radius: var(--r-full);
  font: 600 16px/24px var(--font);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.5s var(--ease),
    color 0.5s var(--ease),
    border-color 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.btn i {
  font-size: 18px;
  transition: transform 0.5s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover .ph-arrow-right,
.btn:hover .ph-arrow-up-right {
  transform: translateX(4px);
}
.btn:active {
  transform: scale(0.98);
}
.btn-lg {
  padding: var(--s-100) var(--s-300);
}
.btn-sm {
  font-size: 14px;
  line-height: 20px;
}
.btn-accent {
  background: var(--accent);
  color: var(--on-accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
}
.btn-ink {
  background: var(--ink);
  color: var(--bg);
}
.btn-ink:hover {
  background: var(--text-2);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn-text {
  background: transparent;
  color: var(--ink);
}
.btn-text:hover {
  background: var(--surface-2);
}
.btn-block {
  width: 100%;
}
.btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn.is-loading i {
  animation: spin 0.9s linear infinite;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  transition:
    background-color 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.icon-btn:hover {
  background: var(--surface-2);
}
.icon-btn:active {
  transform: scale(0.94);
}

/* ========================== SCROLL PROGRESS ========================== */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--accent);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 2001;
}
@supports (animation-timeline: scroll()) {
  .progress {
    animation: grow linear both;
    animation-timeline: scroll(root);
  }
  @keyframes grow {
    to {
      transform: scaleX(1);
    }
  }
}

/* ========================= FLUID ISLAND NAV ========================= */
.nav-island {
  position: fixed;
  top: var(--s-300);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  width: max-content;
  max-width: calc(100% - var(--s-400));
  display: flex;
  align-items: center;
  gap: var(--s-300);
  padding: var(--s-75);
  padding-left: var(--s-100);
  border-radius: var(--r-full);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  transition:
    box-shadow 0.7s var(--ease),
    top 0.7s var(--ease);
}
.nav-island.is-scrolled {
  box-shadow: var(--shadow);
  top: var(--s-200);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s-75);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-mark i {
  transition: transform 0.7s var(--ease);
}
.logo:hover .logo-mark i {
  transform: rotate(90deg);
}
.nav-links {
  display: flex;
  gap: var(--s-50);
}
.nav-links a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  padding: var(--s-75) var(--s-100);
  border-radius: var(--r-full);
  transition:
    background-color 0.5s var(--ease),
    color 0.5s var(--ease);
}
.nav-links a:hover {
  color: var(--ink);
  background: var(--surface-2);
}
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface-2);
  font-weight: 600;
}
.nav-actions,
.auth-desktop {
  display: flex;
  align-items: center;
  gap: var(--s-50);
}
.user-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-50);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  padding-inline: var(--s-75);
}
.user-chip i {
  font-size: 20px;
  color: var(--accent-text);
}

/* Hamburger that morphs into an X */
.burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  border: none;
  background: var(--ink);
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--bg);
  transition:
    transform 0.7s var(--ease),
    top 0.7s var(--ease);
}
.burger span:nth-child(1) {
  top: 16px;
}
.burger span:nth-child(2) {
  top: 22px;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Full screen glass menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: var(--overlay);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-900) var(--s-300) var(--s-600);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s var(--ease);
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.menu-overlay nav {
  display: grid;
  gap: var(--s-75);
}
.menu-overlay nav a,
.menu-overlay .menu-foot {
  transform: translateY(48px);
  opacity: 0;
  transition:
    transform 0.7s var(--ease),
    opacity 0.7s var(--ease);
}
.menu-overlay.open nav a,
.menu-overlay.open .menu-foot {
  transform: none;
  opacity: 1;
}
.menu-overlay nav a {
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: var(--s-200);
}
.menu-overlay nav a small {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  color: var(--text-3);
  font-weight: 400;
}
.menu-overlay nav a[aria-current="page"] {
  color: var(--accent-text);
}
.menu-overlay.open nav a:nth-child(1) {
  transition-delay: 100ms;
}
.menu-overlay.open nav a:nth-child(2) {
  transition-delay: 150ms;
}
.menu-overlay.open nav a:nth-child(3) {
  transition-delay: 200ms;
}
.menu-overlay.open nav a:nth-child(4) {
  transition-delay: 250ms;
}
.menu-overlay.open .menu-foot {
  transition-delay: 300ms;
}
.menu-foot {
  margin-top: var(--s-600);
  display: grid;
  gap: var(--s-200);
}
.menu-foot .btn-row {
  display: flex;
  gap: var(--s-75);
}
.menu-foot .btn-row .btn {
  flex: 1;
}
.menu-foot p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-2);
}
.menu-foot a {
  color: var(--ink);
}

/* ================================ HERO ================================ */
.hero {
  padding-top: calc(var(--s-900) + var(--s-700));
  padding-bottom: var(--s-700);
}
.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--s-600);
  align-items: end;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--s-75);
  margin-bottom: var(--s-300);
}
.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--accent);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 92, 31, 0.5);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(242, 92, 31, 0);
  }
}
.h-display {
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 680px;
  background: linear-gradient(90deg, var(--hero-from), var(--hero-to));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--s-300);
  padding-bottom: var(--s-50);
}
.hero-lead {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-2);
  max-width: 680px;
  margin-bottom: var(--s-400);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-100);
  margin-bottom: var(--s-400);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--s-100);
  font-size: 14px;
  line-height: 20px;
  color: var(--text-2);
}
.avatars {
  display: flex;
}
.avatars span {
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  font: 600 12px/16px var(--font);
  border: 2px solid var(--bg);
  margin-left: calc(var(--s-75) * -1);
  color: #131209;
}
.avatars span:first-child {
  margin-left: 0;
}

/* Spec sheet card (outer 24, gap 8, inner 16) */
.spec-wrap {
  position: relative;
}
.spec {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  padding: var(--s-75);
  box-shadow: var(--shadow);
}
.spec-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-100) var(--s-200);
}
.spec-body {
  background: var(--surface-2);
  border-radius: var(--r-2xl);
  padding: var(--s-75) var(--s-200);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: var(--s-200);
  padding-block: var(--s-100);
  font-size: 14px;
  line-height: 20px;
}
.spec-row + .spec-row {
  box-shadow: 0 -1px 0 var(--line);
}
.spec-row dt {
  color: var(--text-3);
}
.spec-row dd {
  font-family: var(--mono);
  font-weight: 500;
  text-align: right;
}
.spec-foot {
  display: flex;
  gap: var(--s-75);
  padding: var(--s-75) 0 0;
}
.spec-foot a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-75);
  padding: var(--s-100) var(--s-75);
  border-radius: var(--r-2xl);
  border: 1px solid var(--line);
  font-size: 12px;
  line-height: 16px;
  font-family: var(--mono);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.5s var(--ease);
  min-width: 0;
}
.spec-foot a i {
  font-size: 16px;
  color: var(--accent-text);
  flex-shrink: 0;
}
.spec-foot a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.spec-foot a:hover {
  background: var(--surface-2);
}

/* Rotating certification stamp */
.stamp {
  position: absolute;
  top: calc(var(--s-600) * -1);
  right: calc(var(--s-300) * -1);
  width: 112px;
  height: 112px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  z-index: 2;
}
.stamp svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}
.stamp text {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: currentColor;
}
.stamp i {
  font-size: 32px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Ruled grids: hairline dividers drawn by a 1px gap over a flat line colour */
.ruled {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.ruled > * {
  background: var(--bg);
}
.stat-strip {
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--s-700);
}
.stat {
  padding: var(--s-300);
}
.stat strong {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-75);
}
.stat span {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-2);
}

/* ============================== MARQUEE ============================== */
.marquee {
  overflow: hidden;
  padding-block: var(--s-300);
  background: var(--inverse-bg);
  color: var(--inverse-text);
}
.marquee-track {
  display: flex;
  gap: var(--s-600);
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-200);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  white-space: nowrap;
}
.marquee-track i {
  color: var(--accent);
  font-size: 24px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ======================= SERVICE ROWS (numbered) ======================= */
.rows {
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: grid;
  gap: 1px;
  background: var(--line);
}
.row {
  display: grid;
  grid-template-columns: 64px 4fr 6fr 48px;
  gap: var(--s-300);
  align-items: center;
  padding: var(--s-300);
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  transition:
    background-color 0.7s var(--ease),
    padding 0.7s var(--ease);
}
.row-num {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 20px;
  color: var(--text-3);
}
.row h3 {
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  gap: var(--s-100);
}
.row h3 i {
  font-size: 24px;
  color: var(--accent-text);
}
.row p {
  color: var(--text-2);
}
.row-go {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 20px;
  transition:
    background-color 0.7s var(--ease),
    border-color 0.7s var(--ease),
    transform 0.7s var(--ease);
}
a.row:hover {
  background: var(--surface);
  padding-inline: var(--s-400);
}
a.row:hover .row-go {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  transform: rotate(-45deg);
}
.row-detail {
  grid-template-columns: 64px 4fr 6fr;
  align-items: start;
}
.row-detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-75) var(--s-300);
  margin: var(--s-200) 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-2);
}
.row-detail li {
  display: flex;
  gap: var(--s-75);
  align-items: center;
}
.row-detail li i {
  color: var(--accent-text);
  font-size: 16px;
}
.row-detail:hover {
  background: var(--surface);
}

/* ============================ BENTO TILES ============================ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-200);
}
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: var(--s-300);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.7s var(--ease),
    border-color 0.7s var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}
.tile i.tile-icon {
  font-size: 32px;
  color: var(--accent-text);
  margin-bottom: var(--s-300);
}
.tile h3 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: var(--s-75);
}
.tile p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 20px;
}
.tile-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}
.tile-accent:hover {
  border-color: var(--on-accent);
}
.tile-accent i.tile-icon,
.tile-accent p,
.tile-accent h3 {
  color: var(--on-accent);
}
.tile-ink {
  background: var(--inverse-bg);
  border-color: var(--inverse-bg);
  color: var(--inverse-text);
}
.tile-ink h3 {
  color: var(--inverse-text);
}
.tile-ink p {
  color: var(--inverse-text-2);
}
.tile-ink i.tile-icon {
  color: var(--accent);
}
.tile-big h3 {
  font-size: 30px;
  line-height: 36px;
  margin-top: auto;
}
.tile-big p {
  font-size: 16px;
  line-height: 24px;
}
.span-2 {
  grid-column: span 2;
}
.row-2 {
  grid-row: span 2;
}
.tile .big-num,
.big-num {
  font-family: var(--mono);
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: var(--s-100);
}

/* ============================ STATS BAND ============================ */
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--inverse-line);
  border: 1px solid var(--inverse-line);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.band-grid > div {
  background: var(--inverse-bg);
  padding: var(--s-400) var(--s-300);
}
.band-grid strong {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--inverse-text);
  margin-bottom: var(--s-100);
}
.band-grid span {
  font-size: 14px;
  line-height: 20px;
  color: var(--inverse-text-2);
}

/* ========================= TAGLINE REVEAL ========================= */
.tagline {
  padding-block: var(--s-900);
}
.tagline p {
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 900px;
}
.tagline .w {
  color: var(--ink);
  opacity: 0.28;
  transition:
    opacity 0.9s var(--ease),
    color 0.9s var(--ease);
}
.tagline .w.on {
  opacity: 1;
}
.tagline .w.hl.on {
  color: var(--accent-text);
}
.tagline .label {
  display: block;
  margin-bottom: var(--s-300);
}

/* ============================== PROCESS ============================== */
.steps {
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}
.steps li {
  padding: var(--s-300);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: background-color 0.7s var(--ease);
}
.section-alt .steps li {
  background: var(--surface-2);
}
.steps li:hover {
  background: var(--surface);
}
.step-num {
  font-family: var(--mono);
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: var(--accent-text);
  margin-bottom: auto;
  padding-bottom: var(--s-400);
}
.steps h3 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: var(--s-50);
}
.steps p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-2);
}

/* ============================== QUOTES ============================== */
.quotes {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--s-200);
}
.quotes-side {
  display: grid;
  gap: var(--s-200);
}
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: var(--s-300);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-300);
}
.quote blockquote {
  font-size: 18px;
  line-height: 28px;
}
.quote-feature {
  background: var(--inverse-bg);
  border-color: var(--inverse-bg);
  color: var(--inverse-text);
  padding: var(--s-400);
}
.quote-feature blockquote {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.quote-feature .ph-quotes {
  font-size: 48px;
  color: var(--accent);
}
.who {
  display: flex;
  align-items: center;
  gap: var(--s-100);
  font-size: 14px;
  line-height: 20px;
}
.who strong {
  display: block;
}
.who span {
  color: var(--text-3);
}
.quote-feature .who span {
  color: var(--inverse-text-2);
}
.av {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  font: 600 14px/20px var(--font);
  color: #131209;
  flex-shrink: 0;
}

/* ================================ FAQ ================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: var(--s-600);
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: var(--s-900);
}
.faq-aside h2 {
  font-size: 36px;
  line-height: 40px;
  margin: var(--s-200) 0;
}
.faq-aside p {
  color: var(--text-2);
  margin-bottom: var(--s-300);
}
.faq {
  display: grid;
  gap: var(--s-75);
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  transition: border-color 0.7s var(--ease);
}
.faq details[open] {
  border-color: var(--ink);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-300);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-200);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary i {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  background: var(--surface-2);
  flex-shrink: 0;
  transition:
    transform 0.7s var(--ease),
    background-color 0.7s var(--ease);
}
.faq details[open] summary i {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--on-accent);
}
.faq-body {
  padding: 0 var(--s-300) var(--s-300);
  color: var(--text-2);
}

/* ============================ CTA BLOCK ============================ */
.cta-block {
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--r-3xl);
  padding: var(--s-700) var(--s-600);
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: var(--s-400);
  align-items: end;
  position: relative;
  overflow: hidden;
}
.cta-block > * {
  position: relative;
}
.cta-block h2 {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--on-accent);
  margin-bottom: var(--s-200);
  max-width: 680px;
}
.cta-block p {
  font-size: 18px;
  line-height: 28px;
  max-width: 520px;
}
.cta-actions {
  display: grid;
  gap: var(--s-100);
  justify-items: end;
}
.cta-actions a:not(.btn) {
  color: var(--on-accent);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 20px;
}
.cta-block .btn-ink {
  background: #131209;
  color: #f4f1ea;
}
.cta-block .btn-ink:hover {
  background: #313131;
}
.cta-gear {
  position: absolute !important;
  right: calc(var(--s-600) * -1);
  top: calc(var(--s-700) * -1);
  font-size: 240px;
  opacity: 0.14;
  animation: spin 40s linear infinite;
  pointer-events: none;
}

/* ============================ PAGE HERO ============================ */
.page-hero {
  padding-top: calc(var(--s-900) + var(--s-700));
  padding-bottom: var(--s-700);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--s-600);
  align-items: end;
}
.crumbs {
  display: flex;
  gap: var(--s-75);
  list-style: none;
  margin-bottom: var(--s-300);
}
.crumbs li {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
.crumbs li + li::before {
  content: "/";
  margin-right: var(--s-75);
}
.crumbs a {
  color: var(--text-3);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--ink);
}
.meta-list {
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  display: grid;
  gap: 1px;
  background: var(--line);
  overflow: hidden;
}
.meta-list li {
  background: var(--bg);
  padding: var(--s-100) var(--s-200);
  display: flex;
  justify-content: space-between;
  gap: var(--s-200);
  font-size: 14px;
  line-height: 20px;
}
.meta-list li span:first-child {
  color: var(--text-3);
}
.meta-list li span:last-child,
.meta-list li a {
  font-family: var(--mono);
  text-align: right;
  color: var(--ink);
  word-break: break-word;
}

/* =========================== ABOUT PARTS =========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-600);
  align-items: start;
}
.prose p {
  color: var(--text-2);
  font-size: 18px;
  line-height: 28px;
  max-width: 62ch;
}
.prose p + p {
  margin-top: var(--s-200);
}
.prose h2 {
  font-size: 36px;
  line-height: 40px;
  margin: var(--s-200) 0 var(--s-300);
}
.milestones {
  grid-template-columns: repeat(4, 1fr);
}
.milestones > div {
  padding: var(--s-300);
}
.section-alt .milestones > div,
.section-alt .team > div {
  background: var(--surface-2);
}
.yr {
  font-family: var(--mono);
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  color: var(--accent-text);
  display: block;
  margin-bottom: var(--s-400);
}
.milestones h3 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: var(--s-50);
}
.milestones p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-2);
}
.team {
  grid-template-columns: repeat(3, 1fr);
}
.team > div {
  padding: var(--s-300);
}
.avatar-sq {
  width: 64px;
  height: 64px;
  border-radius: var(--r-2xl);
  display: grid;
  place-items: center;
  font: 600 20px/28px var(--font);
  color: #131209;
  margin-bottom: var(--s-600);
}
.team h3 {
  font-size: 20px;
  line-height: 28px;
}
.role {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-text);
  margin: var(--s-50) 0 var(--s-200);
}
.team p:not(.role) {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-2);
}
.checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-100) var(--s-300);
  margin: var(--s-300) 0 var(--s-400);
}
.checks li {
  display: flex;
  gap: var(--s-75);
  align-items: center;
  font-weight: 500;
}
.checks i {
  color: var(--accent-text);
  font-size: 20px;
}

/* ============================== CONTACT ============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--s-400);
  align-items: start;
}
.info-rows {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.info-rows > div {
  background: var(--bg);
  padding: var(--s-300);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--s-200);
}
.info-rows i.ic {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--accent-text);
}
.info-rows h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: var(--s-50);
}
.info-rows p,
.info-rows a {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-2);
  text-decoration: none;
  word-break: break-word;
}
.info-rows a {
  color: var(--ink);
  font-family: var(--mono);
  display: block;
}
.info-rows a:hover {
  color: var(--accent-text);
}
.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 20px;
  margin-top: var(--s-75);
}
.hours td {
  padding: var(--s-50) 0;
  color: var(--text-2);
}
.hours td:last-child {
  text-align: right;
  font-family: var(--mono);
  color: var(--ink);
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  padding: var(--s-400);
}
.form-card h2 {
  font-size: 30px;
  line-height: 36px;
  margin: var(--s-100) 0 var(--s-75);
}
.form-card .intro {
  color: var(--text-2);
  margin-bottom: var(--s-300);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-200);
}
.map-wrap {
  border-radius: var(--r-3xl);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 400px;
  background: var(--surface-2);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

/* =============================== LEGAL =============================== */
.legal-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: var(--s-600);
  align-items: start;
}
.toc {
  position: sticky;
  top: var(--s-900);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: var(--s-200);
  background: var(--surface);
}
.toc .label {
  display: block;
  padding: var(--s-75);
}
.toc ol {
  list-style: none;
  display: grid;
  gap: var(--s-25);
}
.toc a {
  display: flex;
  gap: var(--s-100);
  padding: var(--s-75);
  border-radius: var(--r-lg);
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  transition:
    background-color 0.5s var(--ease),
    color 0.5s var(--ease);
}
.toc a span {
  font-family: var(--mono);
  color: var(--text-3);
  min-width: 24px;
}
.toc a:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.toc a.active {
  background: var(--ink);
  color: var(--bg);
}
.toc a.active span {
  color: var(--accent);
}
.legal-body {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.legal-section {
  background: var(--bg);
  padding: var(--s-400);
}
.legal-section h2 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: var(--s-200);
  display: flex;
  gap: var(--s-100);
  align-items: baseline;
}
.legal-section h2 span {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--accent-text);
}
.legal-section p,
.legal-section li {
  color: var(--text-2);
}
.legal-section p + p,
.legal-section p + ul,
.legal-section ul + p,
.legal-section .table-wrap + p {
  margin-top: var(--s-100);
}
.legal-section ul {
  padding-left: var(--s-300);
  display: grid;
  gap: var(--s-75);
  margin-top: var(--s-100);
}
.legal-section strong {
  color: var(--ink);
  font-weight: 600;
}
.legal-section .caps {
  font-size: 14px;
  line-height: 20px;
}
.callout {
  margin-top: var(--s-200);
  padding: var(--s-200);
  border-radius: var(--r-xl);
  border: 1px solid var(--accent);
  background: var(--surface);
  font-size: 14px;
  line-height: 20px;
  color: var(--ink);
}
.table-wrap {
  overflow-x: auto;
  margin-top: var(--s-200);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 20px;
  min-width: 480px;
}
.table-wrap th,
.table-wrap td {
  text-align: left;
  padding: var(--s-100) var(--s-200);
}
.table-wrap td {
  box-shadow: inset 0 1px 0 var(--line);
}
.table-wrap th {
  background: var(--surface-2);
  font-weight: 600;
}

/* =============================== FOOTER =============================== */
.footer {
  background: var(--inverse-bg);
  color: var(--inverse-text-2);
  padding: var(--s-800) 0 var(--s-300);
  font-size: 14px;
  line-height: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 4fr;
  gap: var(--s-400);
}
.footer .logo {
  color: var(--inverse-text);
  margin-bottom: var(--s-200);
}
.footer h4 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--inverse-text);
  margin-bottom: var(--s-200);
}
.footer ul {
  list-style: none;
  display: grid;
  gap: var(--s-100);
}
.footer a {
  color: var(--inverse-text-2);
  text-decoration: none;
  transition: color 0.5s var(--ease);
}
.footer a:hover {
  color: var(--accent);
}
.footer-contact li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--s-75);
}
.footer-contact i {
  color: var(--accent);
  font-size: 18px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-75);
  margin-top: var(--s-200);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-50);
  padding: var(--s-50) var(--s-100);
  border-radius: var(--r-full);
  border: 1px solid var(--inverse-line);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  color: var(--inverse-text);
}
.wordmark {
  margin-top: var(--s-700);
  font-size: 96px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--inverse-surface);
  white-space: nowrap;
  user-select: none;
}
.footer-bottom {
  margin-top: var(--s-300);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-100);
}
.footer-bottom nav {
  display: flex;
  gap: var(--s-300);
}

.back-to-top {
  position: fixed;
  bottom: var(--s-300);
  right: var(--s-300);
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 20px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    background-color 0.5s var(--ease);
  z-index: 90;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover {
  background: var(--accent);
  color: var(--on-accent);
}

/* =============================== MODALS =============================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: var(--overlay);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--s-200);
  align-items: center;
  justify-content: center;
}
.modal.show {
  display: flex;
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - var(--s-400));
  overflow-y: auto;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-3xl);
  box-shadow: var(--shadow);
  animation: modalIn 0.7s var(--ease);
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.98);
  }
}
.modal-header {
  padding: var(--s-400) var(--s-400) var(--s-200);
}
.modal-header h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: var(--s-50);
}
.modal-header p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 20px;
}
.modal-body {
  padding: 0 var(--s-400) var(--s-300);
}
.modal-footer {
  padding: var(--s-200) var(--s-400) var(--s-400);
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-2);
}
.modal-close {
  position: absolute;
  top: var(--s-200);
  right: var(--s-200);
}
.form-group {
  margin-bottom: var(--s-200);
}
.form-group label {
  display: block;
  margin-bottom: var(--s-75);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--s-100) var(--s-200);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--bg);
  color: var(--ink);
  font: 16px/24px var(--font);
  transition:
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.form-group textarea {
  resize: vertical;
}
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--text-3);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}
.form-group [aria-invalid="true"] {
  border-color: var(--danger);
}
.field-error {
  display: flex;
  align-items: center;
  gap: var(--s-50);
  margin-top: var(--s-50);
  font-size: 12px;
  line-height: 16px;
  color: var(--danger);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--s-100);
  margin: var(--s-200) 0 var(--s-300);
  font-size: 12px;
  line-height: 16px;
  color: var(--text-2);
}
.checkbox-group input {
  width: 16px;
  height: 16px;
  margin-top: var(--s-25);
  flex-shrink: 0;
  accent-color: var(--accent);
}
.checkbox-group .field-error {
  flex-basis: 100%;
}
.form-note {
  font-size: 12px;
  line-height: 16px;
  color: var(--text-3);
  margin-bottom: var(--s-200);
}
.form-error {
  display: none;
  background: var(--danger-bg);
  color: var(--danger);
  padding: var(--s-100) var(--s-200);
  border-radius: var(--r-xl);
  margin-bottom: var(--s-200);
  font-size: 14px;
  line-height: 20px;
}
.success-message {
  text-align: center;
  padding: var(--s-600) var(--s-400);
}
.success-message h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: var(--s-75);
}
.success-message p {
  color: var(--text-2);
  margin-bottom: var(--s-300);
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto var(--s-300);
  animation: popIn 0.9s var(--ease);
}
@keyframes popIn {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
}

/* ================================ 404 ================================ */
.nf {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-block: var(--s-900);
}
.nf-code {
  font-family: var(--mono);
  font-size: 128px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.06em;
  color: var(--accent-text);
  margin-bottom: var(--s-300);
}

/* ============================ SCROLL REVEAL ============================ */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(64px);
  filter: blur(12px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.js .hero-in {
  opacity: 0;
  transform: translateY(64px);
  filter: blur(12px);
  animation: heroIn 1.1s var(--ease) forwards;
}
.js .hero-in:nth-child(2) {
  animation-delay: 0.1s;
}
.js .hero-in:nth-child(3) {
  animation-delay: 0.2s;
}
.js .hero-in:nth-child(4) {
  animation-delay: 0.3s;
}
.js .hero-in:nth-child(5) {
  animation-delay: 0.4s;
}
.js .hero-in.late {
  animation-delay: 0.45s;
}
@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 1024px) {
  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-grid,
  .quotes,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .faq-aside,
  .toc {
    position: static;
  }
  .spec-wrap {
    max-width: 520px;
    margin-top: var(--s-400);
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps li:last-child {
    grid-column: span 2;
  }
  .steps li {
    min-height: 0;
  }
  .band-grid,
  .stat-strip,
  .milestones {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-block {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    justify-items: start;
  }
  .row {
    grid-template-columns: 48px 1fr 48px;
  }
  .row p {
    grid-column: 2;
  }
  .row-go {
    grid-row: 1;
    grid-column: 3;
  }
  .row-detail {
    grid-template-columns: 48px 1fr;
  }
  .row-detail > div:last-child {
    grid-column: 2;
  }
  .wordmark {
    font-size: 60px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .auth-desktop {
    display: none;
  }
  .burger {
    display: block;
  }
  .nav-island {
    width: calc(100% - var(--s-400));
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: var(--s-200);
  }
  .section,
  .tagline {
    padding-block: var(--s-700);
  }
  .hero,
  .page-hero {
    padding-top: calc(var(--s-900) + var(--s-400));
    padding-bottom: var(--s-600);
  }
  .h-display {
    font-size: 36px;
    line-height: 40px;
  }
  .sec-head {
    grid-template-columns: 1fr;
    gap: var(--s-200);
    margin-bottom: var(--s-400);
  }
  .sec-head h2,
  .faq-aside h2,
  .prose h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .tagline p {
    font-size: 30px;
    line-height: 36px;
  }
  .cta-block {
    padding: var(--s-400) var(--s-300);
  }
  .cta-block h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .bento,
  .steps,
  .band-grid,
  .milestones,
  .team,
  .form-row,
  .checks,
  .row-detail ul,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .span-2,
  .steps li:last-child {
    grid-column: auto;
  }
  .row-2 {
    grid-row: auto;
  }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .stat strong {
    font-size: 30px;
    line-height: 36px;
  }
  .band-grid strong,
  .big-num {
    font-size: 36px;
    line-height: 40px;
  }
  .row {
    grid-template-columns: 1fr 48px;
    gap: var(--s-100);
  }
  .row-num {
    grid-column: 1 / -1;
  }
  .row h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .row p {
    grid-column: 1;
  }
  .row-go {
    grid-row: 2;
    grid-column: 2;
  }
  .row-detail {
    grid-template-columns: 1fr;
  }
  .row-detail > div:last-child {
    grid-column: auto;
  }
  .stamp {
    width: 96px;
    height: 96px;
    right: var(--s-50);
  }
  .stamp text {
    font-size: 8px;
  }
  .form-card {
    padding: var(--s-300);
  }
  .legal-section {
    padding: var(--s-300);
  }
  .quote-feature blockquote {
    font-size: 24px;
    line-height: 32px;
  }
  .wordmark {
    font-size: 36px;
  }
  .nf-code {
    font-size: 96px;
  }
  .hero-ctas .btn {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal],
  .js .hero-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .tagline .w {
    opacity: 1;
  }
}

.checkbox-group {
  flex-wrap: wrap;
}
.checkbox-group label {
  flex: 1;
  min-width: 0;
}
