/* ─────────────────────────────────────────────────────────────────────
   Midwest Air Pro — site styles
   Palette: Ink #0B0D10 · Carbon #15181D · Steel #8A94A3 · Cloud #F3F4F2 · Ember #FF4A1C · Frost #9FD8FF
   Type: Barlow Condensed (display) · Barlow (body) · IBM Plex Mono (specs)
   ───────────────────────────────────────────────────────────────────── */
:root {
  --ink: #0b0d10;
  --carbon: #15181d;
  --carbon-2: #1e2229;
  --steel: #8a94a3;
  --steel-2: #5c6675;
  --cloud: #f3f4f2;
  --cloud-2: #e6e8e5;
  --paper: #ffffff;
  --ember: #ff4a1c;
  --ember-2: #e33a0f;
  --frost: #9fd8ff;
  --line: rgba(11, 13, 16, 0.12);
  --line-dark: rgba(243, 244, 242, 0.14);
  --display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --gutter: clamp(16px, 4vw, 56px);
  --max: 1360px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -0.01em; line-height: 0.95; text-transform: uppercase; text-wrap: balance; }
p { margin: 0; }
.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-2); }
.dark .eyebrow { color: var(--steel); }
.eyebrow.ember { color: var(--ember); }
.h-xl { font-size: clamp(56px, 9.5vw, 160px); }
.h-l { font-size: clamp(40px, 6vw, 96px); }
.h-m { font-size: clamp(32px, 4vw, 60px); }
.h-s { font-size: clamp(24px, 2.6vw, 36px); }
.lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.45; max-width: 60ch; }
.muted { color: var(--steel-2); }
.dark { background: var(--ink); color: var(--cloud); }
.dark .muted { color: var(--steel); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; border: 2px solid transparent; transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s; }
.btn:hover { transform: translateY(-2px); }
.btn-ember { background: var(--ember); color: #fff; }
.btn-ember:hover { background: var(--ember-2); }
.btn-ghost { border-color: currentColor; background: transparent; }
.btn-ghost:hover { background: var(--cloud); color: var(--ink); }
.dark .btn-ghost:hover { background: var(--cloud); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--cloud); }
.btn-ink:hover { background: var(--carbon-2); }
.btn { white-space: nowrap; }
.btn svg, .cta svg, .more svg { width: 18px; height: 18px; flex: none; }

/* Header */
.site-header { position: sticky; top: calc(env(safe-area-inset-top, 0px) + 52px); z-index: 50; background: rgba(11, 13, 16, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: var(--cloud); border-bottom: 1px solid var(--line-dark); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.header-identity { display: flex; align-items: center; gap: 18px; min-width: 0; }
.brand { white-space: nowrap; display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1; }
.brand .mark { width: 46px; height: 46px; object-fit: contain; flex: none; }
.brand small { display: block; font-family: var(--mono); font-weight: 400; font-size: 12px; letter-spacing: 0.06em; color: var(--steel); text-transform: uppercase; margin-top: 4px; }
.partner-lockup { display: flex; align-items: center; gap: 10px; padding-left: 18px; border-left: 1px solid var(--line-dark); }
.partner-lockup .partner-label { font-family: var(--mono); font-size: 10px; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; color: var(--steel); max-width: 68px; }
.nederman-badge { display: inline-flex; align-items: center; justify-content: center; flex: none; overflow: hidden; background: #000; border-radius: 2px; line-height: 0; }
.nederman-logo { width: 112px; height: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { white-space: nowrap; font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; position: relative; padding: 6px 0; }
.nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--ember); transition: right 0.3s var(--ease); }
.nav a:hover::after, .nav a[aria-current='page']::after { right: 0; }
.nav a:hover, .nav a[aria-current='page'] { opacity: 1; }
.nav .btn { padding: 10px 18px; font-size: 16px; }
.nav-toggle { display: none; background: none; border: 0; color: inherit; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 26px; height: 26px; }
@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: absolute; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); border-bottom: 1px solid var(--line-dark); padding: 12px var(--gutter) 24px; transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none; transition: 0.25s var(--ease); max-height: calc(100dvh - 72px); overflow-y: auto; }
  .nav.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav a { padding: 14px 0; font-size: 22px; border-bottom: 1px solid var(--line-dark); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 16px; justify-content: center; }
}
@media (max-width: 1280px) {
  .partner-lockup { display: none; }
}

/* Hero */
.hero { position: relative; min-height: min(92svh, 900px); display: grid; align-items: end; overflow: hidden; background: var(--ink); color: var(--cloud); isolation: isolate; }
.hero video, .hero .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,13,16,0.25) 0%, rgba(11,13,16,0.05) 35%, rgba(11,13,16,0.85) 100%); }
.hero .wrap { padding-block: clamp(48px, 8vw, 120px) clamp(32px, 5vw, 72px); display: grid; gap: 28px; }
.hero h1 { font-size: clamp(60px, 11vw, 190px); line-height: 0.86; }
.hero h1 em { font-style: normal; color: var(--ember); }
.hero-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.hero-stats b { display: block; font-family: var(--display); font-size: 40px; color: var(--cloud); letter-spacing: 0; line-height: 1; margin-bottom: 4px; }
.hero-ticker { position: absolute; top: 0; left: 0; right: 0; z-index: 1; padding: 10px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(243,244,242,0.7); overflow: hidden; white-space: nowrap; }
.hero-ticker span { display: inline-block; padding-right: 48px; animation: ticker 40s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }
.mute-btn { position: absolute; right: var(--gutter); bottom: var(--gutter); z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-dark); background: rgba(11,13,16,0.5); color: var(--cloud); display: grid; place-items: center; }
.mute-btn svg { width: 18px; height: 18px; }

/* Sections */
.section { padding-block: clamp(64px, 9vw, 140px); }
.section-head { display: grid; gap: 14px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head .row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }

/* Line tiles */
.lines { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.line-tile { position: relative; min-height: 460px; display: grid; align-items: end; overflow: hidden; border-radius: 4px; background: var(--ink); color: var(--cloud); isolation: isolate; }
.line-tile video, .line-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform 1.2s var(--ease); }
.line-tile:hover video, .line-tile:hover img { transform: scale(1.04); }
.line-tile::before { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(11,13,16,0) 30%, rgba(11,13,16,0.9) 100%); }
.line-tile .inner { position: relative; z-index: 1; padding: 32px; display: grid; gap: 12px; }
.line-tile .inner p { max-width: 48ch; color: rgba(243,244,242,0.85); }
.line-tile .cta { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 18px; display: inline-flex; gap: 8px; align-items: center; color: var(--ember); }
@media (max-width: 760px) { .lines { grid-template-columns: 1fr; } .line-tile { min-height: 380px; } }

/* Product grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 16px; }
@media (max-width: 1000px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.card { display: grid; gap: 12px; color: inherit; }
.card .media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px; background: var(--cloud-2); position: relative; }
.card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.card:hover .media img { transform: scale(1.05); }
.card .tag { position: absolute; top: 12px; left: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(11,13,16,0.75); color: var(--cloud); padding: 6px 10px; border-radius: 999px; backdrop-filter: blur(6px); }
.card h3 { font-size: 28px; }
.card .fam { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-2); }
.card p { color: var(--steel-2); font-size: 16px; }
.card .more { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ember); display: inline-flex; gap: 6px; align-items: center; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 8px 16px; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 16px; transition: 0.2s; }
.filters button[aria-pressed='true'] { background: var(--ink); color: var(--cloud); border-color: var(--ink); }
.filters button:hover { border-color: var(--ink); }

/* Split / feature */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split .media { border-radius: 4px; overflow: hidden; background: var(--carbon); aspect-ratio: 4 / 3; }
.split .media img, .split .media video { width: 100%; height: 100%; object-fit: cover; }
.stack { display: grid; gap: 20px; align-content: start; }
.checks { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks svg { width: 22px; height: 22px; flex: none; color: var(--ember); margin-top: 2px; }

/* Stats band */
.band { background: var(--ember); color: #fff; padding-block: 40px; }
.band .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.band b { display: block; font-family: var(--display); font-size: clamp(40px, 5vw, 72px); line-height: 1; font-weight: 800; }
.band span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; }
@media (max-width: 760px) { .band .wrap { grid-template-columns: repeat(2, 1fr); } }

/* Three.js capture demo */
.capture { background: var(--ink); color: var(--cloud); overflow: hidden; padding-block: clamp(48px, 6vw, 96px); }
.capture .wrap { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
.capture .copy { display: grid; gap: 16px; }
.capture .canvas-wrap { position: relative; height: clamp(420px, 60vh, 640px); border-radius: 4px; overflow: hidden; background: var(--carbon); border: 1px solid var(--line-dark); }
.capture canvas { display: block; width: 100%; height: 100%; }
.capture .legend { display: flex; gap: 20px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); }
.capture .legend i { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.capture .toggle { display: inline-flex; border: 1px solid var(--line-dark); border-radius: 999px; overflow: hidden; width: max-content; max-width: 100%; }
.capture .toggle button { background: transparent; color: var(--cloud); border: 0; padding: 10px 18px; font-family: var(--display); text-transform: uppercase; font-weight: 700; letter-spacing: 0.06em; font-size: 16px; }
.capture .toggle button[aria-pressed='true'] { background: var(--ember); }
@media (max-width: 900px) { .capture .wrap { grid-template-columns: 1fr; } .capture .canvas-wrap { order: -1; height: clamp(320px, 55vw, 480px); } }

/* Process steps (real sequence) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { padding: 24px; border-top: 2px solid var(--ink); display: grid; gap: 10px; }
.step::before { counter-increment: step; content: '0' counter(step); font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--ember); }
.step h3 { font-size: 26px; }
.step p { color: var(--steel-2); font-size: 16px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* Product page */
.p-hero { background: var(--ink); color: var(--cloud); }
.p-hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 80px); align-items: end; padding-block: clamp(40px, 6vw, 96px); }
@media (max-width: 900px) { .p-hero .wrap { grid-template-columns: 1fr; } }
.p-hero .media { aspect-ratio: 4 / 3; border-radius: 4px; overflow: hidden; background: var(--carbon); }
.p-hero .media img { width: 100%; height: 100%; object-fit: cover; }
.crumbs { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); display: flex; gap: 10px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--cloud); }
.p-body { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 6vw, 96px); }
@media (max-width: 900px) { .p-body { grid-template-columns: 1fr; } }
.prose { display: grid; gap: 18px; max-width: 64ch; font-size: 18px; }
.specs { border-top: 2px solid var(--ink); }
.specs dl { margin: 0; display: grid; }
.specs div { display: grid; grid-template-columns: 1fr 1.3fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.specs dt { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel-2); }
.specs dd { margin: 0; font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 14px; }
.variants { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.variants div { padding: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; }
.variants b { display: block; font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.variants span { color: var(--steel-2); font-size: 15px; }
@media (max-width: 560px) { .variants { grid-template-columns: 1fr; } }
.quote-box { background: var(--carbon); color: var(--cloud); padding: 28px; border-radius: 4px; display: grid; gap: 14px; }
.quote-box p { color: var(--steel); }

/* Contact form */
.form { display: grid; gap: 16px; align-content: start; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; align-content: start; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel-2); }
.field input, .field select, .field textarea { font: inherit; padding: 14px 16px; border: 1px solid var(--line); border-radius: 4px; background: var(--paper); color: var(--ink); width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--ember); border-color: transparent; }
.field .err { color: var(--ember-2); font-size: 14px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--ember-2); }
.form-note { font-size: 14px; color: var(--steel-2); }
.toast { position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); transform: translate(-50%, 20px); background: var(--ink); color: var(--cloud); padding: 14px 20px; border-radius: 999px; opacity: 0; transition: 0.3s var(--ease); z-index: 60; font-weight: 500; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Footer */
.site-footer { background: var(--ink); color: var(--cloud); padding-block: clamp(48px, 6vw, 88px) 32px; }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 900px) { .site-footer .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .top { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: 15px; letter-spacing: 0.1em; color: var(--steel); margin-bottom: 14px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer li a:hover { color: var(--ember); }
.site-footer .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--steel); }
.site-footer .big { font-family: var(--display); font-size: clamp(48px, 8vw, 120px); line-height: 0.9; font-weight: 800; text-transform: uppercase; color: var(--carbon-2); margin: 32px 0 0; }
.footer-partner { display: grid; justify-items: start; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-dark); width: max-content; max-width: 100%; }
.footer-partner > span:first-child { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); }
.footer-partner .nederman-logo { width: 132px; }
.partner-feature { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.partner-feature .nederman-logo { width: clamp(150px, 20vw, 230px); }

/* Reveal on scroll — pure CSS scroll-driven animation; browsers without
   support (or reduced motion) simply show everything at rest. */
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal { animation: rise 1s var(--ease) both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
  }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.p-body.contact { grid-template-columns: 0.8fr 1.2fr; }
@media (max-width: 900px) { .p-body.contact { grid-template-columns: 1fr; } }

/* Content recovery, accurate media, and accessible contact details. */
[hidden] { display: none !important; }
[id] { scroll-margin-top: 144px; }
.skip { position: fixed; left: -9999px; top: 10px; z-index: 100; padding: 14px 20px; background: white; color: var(--ink); }
.skip:focus { left: 10px; }
.utility { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 60; height: 52px; background: #000; color: var(--cloud); font-size: 14px; border-bottom: 1px solid var(--line-dark); }
.utility .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utility a { display: inline-flex; align-items: center; min-height: 38px; padding: 6px 16px; border-radius: 999px; background: #165dff; color: #fff; font-family: var(--display); font-size: clamp(20px, 1.7vw, 24px); font-weight: 800; letter-spacing: .035em; line-height: 1; }
.utility a:hover { background: #0f4fe0; }
.faq details { border-bottom: 1px solid var(--line); padding-block: 22px; }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 20px; font-weight: 600; padding-right: 16px; }
.faq details p { margin-top: 14px; color: var(--steel-2); }
.grant-section { border-left: 8px solid var(--ember); }
.inquiry-options { border: 1px solid var(--line); border-radius: 4px; padding: 18px; margin: 0; display: grid; gap: 10px; }
.inquiry-options legend { font-weight: 600; padding-inline: 6px; }
.inquiry-options label { display: flex; gap: 10px; align-items: center; cursor: pointer; }
.inquiry-options input { width: 18px; height: 18px; accent-color: var(--ember); }
.form-intro { margin-bottom: 4px; }
.form-note a, .specs a { text-decoration: underline; text-underline-offset: 3px; }
.form-note[data-draft-status]:empty { display: none; }
.form-note[data-draft-status]:not(:empty) { background: white; border-left: 4px solid var(--ember); padding: 16px; color: var(--ink); }
.card .media, .p-hero .media { background: white; }
.card .media img, .p-hero .media img { object-fit: contain; width: 100%; height: 100%; padding: 24px; }
.line-tile:nth-child(2) img { object-fit: contain; background: white; padding: 24px; }
.line-tile:nth-child(2)::before { background: linear-gradient(180deg, rgba(11,13,16,.12), rgba(11,13,16,.98)); }
.split .media img[src$=".jpg"] { object-fit: contain; background: white; padding: 20px; }
.capture .capture-fallback { width: 100%; height: 100%; object-fit: cover; }
.capture .model-ready .capture-fallback { display: none; }
.capture .toggle button:disabled { opacity: .55; cursor: default; }
.field label, .specs dt, .card .tag, .card .fam { font-size: 14px; }
.hero-ticker { font-size: 12px; }
.hero::before { background: linear-gradient(180deg, rgba(11,13,16,.4), rgba(11,13,16,.35) 25%, rgba(11,13,16,.92)); }
.hero-stats { color: var(--cloud); }
.hero h1 { line-height: .97; overflow-wrap: anywhere; }
.brand, .stack, .p-body > *, .split > *, .grid > * { min-width: 0; }
.specs dd, .site-footer a, .form-note { overflow-wrap: anywhere; }
.specs div { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); }
.toast { max-width: calc(100vw - 32px); width: max-content; pointer-events: none; border-radius: 12px; }
@media (max-width: 480px) {
  .utility .wrap { justify-content: center; }
  .utility .wrap > span { display: none; }
  .utility a { font-size: 22px; }
  .brand { font-size: 20px; gap: 8px; }
  .brand small { font-size: 12px; letter-spacing: 0; }
  .brand .mark { width: 32px; height: 32px; flex: none; }
  .btn { white-space: normal; max-width: 100%; }
  .band .wrap { grid-template-columns: 1fr; }
  .site-footer .top { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .h-xl { font-size: clamp(44px, 12vw, 60px); }
  .line-tile .inner { padding: 24px; }
}
