/* ============================================================
   INCLYN AI  Design System
   Palette: white background, black text, grey accents
   Type:    Manrope (display + body), JetBrains Mono (eyebrow only)
   ============================================================ */

:root {
  /* Palette mirrors the logo: white surface, black ink, grey for AI superscript / muted UI */
  --paper:    #ffffff;
  --paper2:   #fafafa;   /* alternating section */
  --ink:      #000000;
  --ink90:    rgba(0,0,0,0.90);
  --ink70:    rgba(0,0,0,0.70);
  --ink55:    rgba(0,0,0,0.55);
  --ink35:    rgba(0,0,0,0.35);
  --ink15:    rgba(0,0,0,0.15);
  --ink08:    rgba(0,0,0,0.08);
  --grey:     #6a6a6a;    /* the "AI" superscript grey */
  --line:     rgba(0,0,0,0.12);

  /* Type */
  --font-display: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Rhythm */
  --section-y: clamp(5rem, 9vw, 8.5rem);
  --container: 1280px;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: var(--ink); color: var(--paper); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ───── Typography ───── */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.75rem, 7.5vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 .bold {
  font-weight: 800;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 .bold { font-weight: 800; }

h3 {
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h5 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
}

p { color: var(--ink70); }

p.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.375rem);
  line-height: 1.5;
  color: var(--ink90);
  max-width: 56ch;
  font-weight: 400;
}

p.lede.lg { max-width: 64ch; }

/* Eyebrow label (mono) the only dash we keep is the bullet glyph · */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--ink);
  display: inline-block;
}

.eyebrow.muted { color: var(--ink55); }
.eyebrow.muted::before { background: var(--ink55); }

.mono { font-family: var(--font-mono); letter-spacing: 0.04em; }

.num-mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ───── Brand mark in header ───── */

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.brand .b-incl { font-weight: 300; }
.brand .b-yn   { font-weight: 800; }
.brand .b-ai   {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-left: 0.2rem;
  color: var(--grey);
  text-transform: uppercase;
  position: relative;
  top: -0.85rem;
}

/* ───── Header / Nav ───── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links > a, .dropdown-toggle {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink70);
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links > a:hover, .dropdown-toggle:hover { color: var(--ink); }

.nav-links > a.active {
  color: var(--ink);
}

.has-dropdown {
  position: relative;
  padding: 1rem 0;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 360px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s ease;
}

.dropdown a small {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--ink55);
  margin-top: 0.15rem;
}

.dropdown a:hover { background: var(--ink08); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn-primary:hover { background: #222; border-color: #222; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-toggle span { top: 13px; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top: 7px; }

.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* ───── Sections + Hero ───── */

section { padding: var(--section-y) 0; }

.alt { background: var(--paper2); }

.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  max-width: 18ch;
  margin-top: 1.5rem;
}

.hero .lede { margin-top: 2rem; }

.hero-meta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-head {
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.crumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink55);
  margin-bottom: 2rem;
}

.crumb a { color: var(--ink); }

.page-head h1 { margin-top: 1.25rem; max-width: 18ch; }
.page-head .lede { margin-top: 1.5rem; }

/* ───── Marquee ───── */

.marquee {
  border-block: 1px solid var(--line);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink55);
}

.marquee-track span { display: inline-flex; align-items: center; gap: 4rem; }
.marquee-track span::after { content: "·"; color: var(--ink35); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───── Grid + Cards ───── */

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.split.flip { grid-template-columns: 2fr minmax(260px, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.2vw, 2rem);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover { border-color: var(--ink); }

.card.dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.card.dark h3, .card.dark h4, .card.dark .eyebrow { color: var(--paper); }
.card.dark p { color: rgba(255,255,255,0.72); }
.card.dark .eyebrow::before { background: var(--paper); }

.card .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink55);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.25rem;
}

.card h3 { margin-bottom: 0.75rem; }
.card p  { font-size: 0.95rem; }

.card .meta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.card.dark .meta { border-top color: rgba(255,255,255,0.15); }

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink70);
}

.card.dark .tag {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}

/* ───── Index list rows (numbered list with right side meta) ───── */

.index-list { list-style: none; }

.index-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.2s ease;
}

.index-row:last-child { border-bottom: 1px solid var(--line); }
.index-row:hover { padding-left: 0.5rem; }

.index-row .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink55);
}

.index-row h4 { font-size: 1.05rem; font-weight: 600; }

.index-row .desc {
  font-size: 0.9rem;
  color: var(--ink55);
  grid-column: 2 / 3;
  margin-top: 0.25rem;
  font-weight: 400;
}

.index-row .arrow {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--ink);
  transition: transform 0.2s ease;
}

.index-row:hover .arrow { transform: translateX(4px); }

/* ───── Stats block ───── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 2rem clamp(1rem, 2vw, 1.75rem);
  border-left: 1px solid var(--line);
}

.stat:first-child { border-left: none; }

.stat .figure {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.stat .figure .bold { font-weight: 800; }

.stat .label {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink55);
}

/* ───── Pull quote ───── */

.pull {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.pull blockquote {
  max-width: 24ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.pull blockquote .bold { font-weight: 800; }

.pull cite {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ───── Process / steps ───── */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--ink);
}

.step .step-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink55);
  margin-bottom: 1rem;
  display: block;
}

.step h4 { margin-bottom: 0.85rem; }

.step p { font-size: 0.92rem; }

/* ───── CTA band ───── */

.cta-band {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.cta-band h2 { color: var(--paper); }
.cta-band .lede { color: rgba(255,255,255,0.75); margin: 1.5rem auto 0; }
.cta-band .eyebrow { color: rgba(255,255,255,0.7); }
.cta-band .eyebrow::before { background: rgba(255,255,255,0.7); }
.cta-band .btn-row { margin-top: 2.5rem; display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

.cta-band .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-band .btn-primary:hover { background: rgba(255,255,255,0.85); }
.cta-band .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.4); }
.cta-band .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ───── FAQ accordion ───── */

.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.faq-q .icon {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q .icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--ink70);
  font-size: 0.98rem;
  line-height: 1.65;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 600px;
  margin-top: 1rem;
}

/* ───── Spec table (services) ───── */

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr { border-top: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: 1px solid var(--line); }

.spec-table th, .spec-table td {
  padding: 1.25rem 0;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 30%;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink55);
}

.spec-table td {
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
}

/* ───── Form ───── */

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink70);
  font-weight: 500;
}

.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink15);
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-bottom color: var(--ink);
}

.form-field textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  padding: 1.5rem;
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.form-success.show { display: block; }

/* ───── Footer ───── */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand h2 {
  color: var(--paper);
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
}

.footer-brand h2 .bold { font-weight: 800; }
.footer-brand p { color: rgba(255,255,255,0.65); margin-top: 1.25rem; max-width: 36ch; font-size: 0.95rem; }

.footer-col h5 {
  color: var(--paper);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a small { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover small { color: var(--paper); }

.footer-mega {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.06);
  text-align: center;
  margin-top: 2rem;
  user-select: none;
  pointer-events: none;
}

/* ───── Tech stack pills (homepage) ───── */

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink70);
  transition: all 0.2s ease;
}

.pill:hover { color: var(--ink); border-color: var(--ink); }

/* ───── Reveal animation ───── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }

/* ───── Legal prose ───── */

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
}

.legal-prose h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 3rem 0 1rem;
  border-top: 1px solid var(--line);
  padding-top: 2.25rem;
  letter-spacing: -0.02em;
}

.legal-prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.legal-prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
}

.legal-prose p { margin: 0 0 1.25rem; color: var(--ink90); }

.legal-prose a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink35);
  transition: border-color 0.2s ease;
}

.legal-prose a:hover { border-bottom color: var(--ink); }

.legal-prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--ink08);
  padding: 0.15em 0.45em;
  border-radius: 3px;
}

/* ───── Responsive ───── */

@media (max-width: 1024px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split, .split.flip { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 2rem; gap: 1.25rem; overflow: auto; border-top: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links > a, .dropdown-toggle { font-size: 1.25rem; font-weight: 600; }
  .has-dropdown { width: 100%; padding: 0; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding-left: 1rem; min-width: 0; margin-top: 0.5rem; }
  .menu-toggle { display: block; }

  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:first-child, .stat:nth-child(2) { border-top: none; }
  .stat:nth-child(2) { border-left: 1px solid var(--line); }
  .stat:nth-child(4) { border-left: 1px solid var(--line); }
  .process { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .index-row { grid-template-columns: 40px 1fr auto; gap: 1rem; padding: 1.25rem 0; }
  .index-row .desc { grid-column: 2 / 4; }

  .legal-prose { font-size: 1rem; }
  .legal-prose h2 { font-size: 1.4rem; padding-top: 1.75rem; margin-top: 2.25rem; }
}
