/* AK Venture Corp — Landing Pad
   Editorial proof-board aesthetic: ink surfaces, one cool accent, serif display */

:root {
  --bg: #0b0c0e;
  --bg-elevated: #121418;
  --bg-subtle: #181b20;
  --bg-panel: #14171c;
  --fg: #eceeef;
  --fg-muted: #9aa3ad;
  --fg-subtle: #6d7682;
  --border: color-mix(in oklab, var(--fg) 12%, transparent);
  --border-strong: color-mix(in oklab, var(--fg) 22%, transparent);
  --accent: #c5ced8;
  --accent-fg: #0b0c0e;
  --accent-soft: color-mix(in oklab, var(--accent) 14%, transparent);
  --success: #6fbf9a;
  --danger: #e07a7a;

  --font-display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.25rem + 0.9vw, 2rem);
  --text-2xl: clamp(2rem, 1.5rem + 1.8vw, 2.75rem);
  --text-3xl: clamp(2.5rem, 1.7rem + 2.8vw, 3.75rem);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --header-h: 72px;
  --shell: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 220ms;
  --motion-quick: 150ms;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--fg);
  background:
    radial-gradient(1200px 600px at 80% -10%, color-mix(in oklab, var(--accent) 8%, transparent), transparent 60%),
    linear-gradient(180deg, #0d0f12 0%, var(--bg) 32%, var(--bg) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(var(--fg) 1px, transparent 1px),
    linear-gradient(90deg, var(--fg) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

body > * {
  position: relative;
  z-index: 1;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  background: var(--accent);
  color: var(--accent-fg);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { top: var(--space-4); }

.shell {
  width: min(100% - 2 * var(--space-5), var(--shell));
  margin-inline: auto;
}
.shell.narrow { width: min(100% - 2 * var(--space-5), 760px); }

.mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--fg-subtle);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  backdrop-filter: blur(14px);
  transition: border-color var(--motion-fast) var(--ease), background var(--motion-fast) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--fg);
  min-height: 44px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-5);
}
.nav-desktop a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) 0;
  transition: color var(--motion-quick) var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--fg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: var(--fg);
  transition: transform var(--motion-quick) var(--ease), opacity var(--motion-quick) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) 0 var(--space-5);
}
.mobile-nav-inner a:not(.btn) {
  text-decoration: none;
  color: var(--fg);
  font-weight: 500;
  padding: var(--space-3) 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-inner .btn { margin-top: var(--space-4); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--motion-quick) var(--ease),
    border-color var(--motion-quick) var(--ease),
    color var(--motion-quick) var(--ease),
    transform var(--motion-quick) var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-sm { min-height: 40px; padding: 0.5rem 0.9rem; }
.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--fg);
}
.btn-secondary:hover {
  background: color-mix(in oklab, var(--fg) 5%, transparent);
}
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + var(--space-8)) 0 var(--space-8);
}
.hero-grid {
  display: grid;
  gap: var(--space-7);
  align-items: start;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--space-5);
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: var(--space-5);
}
.hero h1 em {
  font-style: italic;
  color: color-mix(in oklab, var(--fg) 92%, var(--accent));
}
.lede {
  font-size: var(--text-lg);
  color: var(--fg-muted);
  max-width: 46ch;
  margin-bottom: var(--space-6);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}
.hero-stats dt {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--space-1);
}
.hero-stats dd {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--fg);
}

.hero-panel { min-width: 0; }
.panel-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow);
}
.panel-kicker {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--space-3);
}
.panel-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.panel-card > p {
  color: var(--fg-muted);
  margin-bottom: var(--space-5);
}
.panel-list {
  display: grid;
  gap: var(--space-3);
}
.panel-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: start;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: color-mix(in oklab, var(--fg) 3%, transparent);
  border: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--fg-muted);
}
.panel-list .mono { color: var(--accent); padding-top: 2px; }

/* Sections */
.section {
  padding: var(--space-9) 0;
}
.section-alt {
  background: color-mix(in oklab, var(--bg-elevated) 70%, transparent);
  border-block: 1px solid var(--border);
}
.section-head {
  margin-bottom: var(--space-7);
  max-width: 48rem;
}
.section-head-split {
  display: grid;
  gap: var(--space-4);
  max-width: none;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--space-3);
}
.section-head h2,
.contact-copy h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-desc {
  color: var(--fg-muted);
  font-size: var(--text-base);
  max-width: 48ch;
}
.section-desc.center { margin-inline: auto; text-align: center; }
.section-desc.left { margin-inline: 0; }
.section-head.center,
.section-head:has(.section-desc.center) { text-align: center; margin-inline: auto; }

.prose { color: var(--fg-muted); display: grid; gap: var(--space-4); }
.prose-lead {
  font-size: var(--text-lg);
  color: var(--fg);
  font-weight: 500;
}
.prose strong { color: var(--fg); font-weight: 600; }

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-4);
}
.card-grid.four { grid-template-columns: 1fr; }
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  transition: border-color var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}
.card-icon svg { width: 20px; height: 20px; }
.card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.card p {
  color: var(--fg-muted);
  font-size: var(--text-sm);
}

/* Focus */
.focus-grid {
  display: grid;
  gap: var(--space-4);
}
.focus-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  transition: border-color var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease);
}
.focus-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.focus-card.flagship {
  border-left: 3px solid color-mix(in oklab, var(--accent) 70%, transparent);
}
.focus-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-fg);
  background: var(--accent);
}
.badge-muted {
  color: var(--fg-muted);
  background: color-mix(in oklab, var(--fg) 8%, transparent);
  border: 1px solid var(--border);
}
.focus-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}
.focus-card > p {
  color: var(--fg-muted);
  margin-bottom: var(--space-5);
}
.meta-rows {
  display: grid;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.meta-rows div {
  display: grid;
  gap: 2px;
}
.meta-rows dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.meta-rows dd {
  font-size: var(--text-sm);
  color: var(--fg-muted);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.chips span {
  font-size: var(--text-xs);
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  background: color-mix(in oklab, var(--fg) 3%, transparent);
}

/* Steps */
.steps {
  display: grid;
  gap: var(--space-4);
  counter-reset: none;
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
}
.step-num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent);
  min-width: 2ch;
  padding-top: 2px;
}
.steps h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.steps p {
  color: var(--fg-muted);
  font-size: var(--text-sm);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: var(--space-7);
}
.contact-list {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}
.contact-list li {
  display: grid;
  gap: var(--space-1);
}
.contact-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.contact-list a {
  color: var(--fg);
  font-weight: 600;
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; }
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.social {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: var(--text-sm);
  color: var(--fg-muted);
  transition: border-color var(--motion-quick) var(--ease), color var(--motion-quick) var(--ease), background var(--motion-quick) var(--ease);
}
.social:hover {
  color: var(--fg);
  border-color: var(--border-strong);
  background: color-mix(in oklab, var(--fg) 4%, transparent);
}

.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow);
}
.form { display: grid; gap: var(--space-4); }
.field { display: grid; gap: var(--space-2); }
.field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--fg-muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  padding: 0.7rem 0.9rem;
  transition: border-color var(--motion-quick) var(--ease), box-shadow var(--motion-quick) var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-subtle); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: color-mix(in oklab, var(--accent) 55%, transparent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239aa3ad' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field .is-invalid {
  border-color: color-mix(in oklab, var(--danger) 70%, transparent);
}
.field-error {
  color: var(--danger);
  font-size: var(--text-xs);
}
.form-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: stretch;
}
.form-note {
  font-size: var(--text-xs);
  color: var(--fg-subtle);
}
.form-status {
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
}
.form-status.is-success {
  background: color-mix(in oklab, var(--success) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--success) 40%, transparent);
  color: var(--success);
}
.form-status.is-error {
  background: color-mix(in oklab, var(--danger) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--danger) 40%, transparent);
  color: var(--danger);
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-8) 0 var(--space-6);
  background: var(--bg);
}
.footer-inner {
  display: grid;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
.footer-brand p {
  margin-top: var(--space-3);
  color: var(--fg-muted);
  max-width: 28ch;
  font-size: var(--text-sm);
}
.footer-cols {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.footer-cols h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.footer-cols a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer-cols a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-5);
  color: var(--fg-subtle);
  font-size: var(--text-sm);
}

.to-top {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--fg);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 40;
  transition: opacity var(--motion-fast) var(--ease), transform var(--motion-fast) var(--ease);
}
.to-top[hidden] { display: none; }
.to-top svg { width: 18px; height: 18px; }
.to-top:hover { transform: translateY(-2px); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Breakpoints */
@media (min-width: 720px) {
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .focus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-head-split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
  .form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  /* denser tablet: two-column hero earlier */
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-6);
    align-items: center;
  }
  .hero h1 { max-width: 12ch; }
  .panel-card { padding: var(--space-5); }
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-8);
    align-items: center;
  }
  .hero h1 { max-width: 14ch; }
  .panel-card { padding: var(--space-6); }
  .card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-inner {
    grid-template-columns: 1.2fr 1.8fr;
  }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .steps li {
    grid-template-columns: 1fr;
    min-height: 100%;
  }
}

/* Narrow phones keep single-column hero; mid tablets keep 2-col from 720+ */
@media (max-width: 719px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .shell { width: min(100% - 2 * var(--space-4), var(--shell)); }
  .hero-stats { grid-template-columns: 1fr; gap: var(--space-3); }
  .hero-cta .btn { width: 100%; }
  .header-actions .btn-sm { display: none; }
}
