
    :root {
      --black: #000000;
      --surface: #080808;
      --surface-2: #101010;
      --surface-3: #171717;
      --white: #ffffff;
      --text: #ffffff;
      --muted: #b8b8b8;
      --muted-2: #828282;
      --red: #e50017;
      --red-bright: #ff001c;
      --red-soft: rgba(229, 0, 23, .12);
      --line: #292929;
      --line-strong: #454545;
      --danger: #ff4f60;
      --shadow: 0 30px 90px rgba(0, 0, 0, .58);
      --radius-xl: 4px;
      --radius-lg: 4px;
      --radius-md: 3px;
      --content: 1180px;
      --font: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; color-scheme: dark; background: var(--black); }
    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--text);
      background: var(--black);
      font-family: var(--font);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    body.modal-open { overflow: hidden; }
    ::selection { color: var(--white); background: var(--red); }
    img { display: block; max-width: 100%; }
    button, input, select, textarea { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    a { color: inherit; }
    [hidden] { display: none !important; }

    .skip-link {
      position: fixed;
      z-index: 1000;
      left: 16px;
      top: 16px;
      transform: translateY(-180%);
      padding: 12px 16px;
      border: 1px solid var(--red);
      border-radius: 2px;
      color: var(--white);
      background: var(--red);
      box-shadow: var(--shadow);
      text-decoration: none;
      font-weight: 800;
    }
    .skip-link:focus { transform: translateY(0); }

    .shell { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; }

    .site-header {
      position: absolute;
      z-index: 20;
      inset: 0 0 auto;
      padding: 20px 0;
      color: var(--white);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      color: var(--white);
      text-decoration: none;
    }
    .brand-logo {
      width: clamp(210px, 19vw, 282px);
      height: auto;
    }
    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border: 1px solid var(--red);
      border-radius: 2px;
      color: var(--white);
      background: transparent;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .045em;
      text-transform: uppercase;
      transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }
    .header-cta:hover {
      border-color: var(--red-bright);
      background: var(--red);
      transform: translateY(-1px);
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 850px;
      color: var(--white);
      background:
        radial-gradient(circle at 88% 22%, rgba(229,0,23,.14), transparent 24%),
        linear-gradient(180deg, #020202 0%, #000000 100%);
      border-bottom: 1px solid var(--line);
    }
    .hero::before {
      content: "//";
      position: absolute;
      z-index: 0;
      right: -1vw;
      top: 19%;
      color: rgba(229, 0, 23, .065);
      font-size: clamp(230px, 29vw, 510px);
      font-weight: 950;
      font-style: italic;
      letter-spacing: -.19em;
      line-height: .72;
      transform: skewX(-8deg);
      pointer-events: none;
      user-select: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      z-index: 1;
      right: 0;
      bottom: 0;
      width: 37%;
      height: 3px;
      background: var(--red);
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 76px;
      min-height: 850px;
      padding: 152px 0 86px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 22px;
      color: var(--white);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .19em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "//";
      color: var(--red);
      font-size: 20px;
      font-style: italic;
      letter-spacing: -.18em;
      line-height: 1;
    }
    h1 {
      max-width: 730px;
      margin: 0;
      color: var(--white);
      font-size: clamp(48px, 6.2vw, 84px);
      line-height: .98;
      letter-spacing: -.057em;
      font-weight: 850;
    }
    h1 .accent { color: var(--red); }
    .hero-lead {
      max-width: 680px;
      margin: 29px 0 0;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.56;
    }
    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 33px 0 0;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 42px;
      padding: 0 14px;
      border: 1px solid var(--line-strong);
      border-radius: 2px;
      color: var(--white);
      background: rgba(255,255,255,.025);
      font-size: 14px;
      font-weight: 750;
    }
    .hero-tag svg { width: 16px; height: 16px; color: var(--red); }
    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 19px;
      margin-top: 39px;
    }
    .button {
      appearance: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 56px;
      padding: 0 24px;
      border: 1px solid var(--red);
      border-radius: 2px;
      color: var(--white);
      background: var(--red);
      text-decoration: none;
      font-weight: 850;
      cursor: pointer;
      box-shadow: 0 15px 38px rgba(229, 0, 23, .19);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }
    .button:hover {
      transform: translateY(-2px);
      border-color: var(--red-bright);
      background: var(--red-bright);
      box-shadow: 0 19px 46px rgba(229, 0, 23, .27);
    }
    .button:focus-visible,
    .choice:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(229, 0, 23, .42);
      outline-offset: 3px;
    }
    .button svg { width: 20px; height: 20px; }
    .microcopy {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--muted);
      font-size: 13px;
    }
    .microcopy svg { width: 18px; height: 18px; color: var(--red); }

    .hero-visual { position: relative; align-self: end; }
    .photo-card {
      position: relative;
      overflow: hidden;
      width: min(100%, 470px);
      margin-left: auto;
      aspect-ratio: .82;
      border: 1px solid var(--line-strong);
      border-left: 4px solid var(--red);
      border-radius: 2px;
      background: #080808;
      box-shadow: var(--shadow);
    }
    .photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 48%;
      filter: grayscale(1) contrast(1.08) brightness(.9);
    }
    .photo-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.94), transparent 48%);
      pointer-events: none;
    }
    .photo-caption {
      position: absolute;
      z-index: 2;
      left: 24px;
      right: 24px;
      bottom: 22px;
      display: grid;
      gap: 3px;
    }
    .photo-caption strong { color: var(--white); font-size: 16px; }
    .photo-caption span { color: var(--muted); font-size: 13px; }
    .floating-note {
      position: absolute;
      z-index: 3;
      top: 15%;
      left: -54px;
      width: 178px;
      padding: 19px;
      border: 1px solid var(--red);
      border-radius: 2px;
      color: var(--white);
      background: var(--red);
      box-shadow: 0 20px 55px rgba(0,0,0,.42);
    }
    .floating-note strong { display: block; font-size: 29px; line-height: 1; }
    .floating-note span {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,.82);
      font-size: 12px;
      line-height: 1.35;
    }

    .section {
      position: relative;
      padding: 106px 0;
      color: var(--white);
      background: var(--black);
    }
    .section.white { background: #050505; }
    .section-head { max-width: 780px; margin-bottom: 47px; }
    .kicker {
      display: flex;
      align-items: center;
      gap: 11px;
      margin: 0 0 14px;
      color: var(--white);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .kicker::before {
      content: "//";
      color: var(--red);
      font-size: 19px;
      font-style: italic;
      letter-spacing: -.18em;
      line-height: 1;
    }
    h2 {
      margin: 0;
      color: var(--white);
      font-size: clamp(36px, 4.7vw, 59px);
      line-height: 1.04;
      letter-spacing: -.047em;
      font-weight: 820;
    }
    .section-head p {
      margin: 21px 0 0;
      color: var(--muted);
      font-size: 18px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .benefit {
      min-height: 220px;
      padding: 27px;
      border: 1px solid var(--line);
      border-top: 3px solid var(--red);
      border-radius: var(--radius-lg);
      color: var(--white);
      background: var(--surface);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    .benefit:hover {
      transform: translateY(-4px);
      border-color: var(--red);
      background: var(--surface-2);
      box-shadow: 0 24px 58px rgba(0,0,0,.46);
    }
    .benefit-icon {
      display: grid;
      place-items: center;
      width: 49px;
      height: 49px;
      border: 1px solid var(--red);
      border-radius: 2px;
      color: var(--red);
      background: var(--red-soft);
    }
    .benefit-icon svg { width: 23px; height: 23px; }
    .benefit h3 {
      margin: 22px 0 8px;
      color: var(--white);
      font-size: 20px;
      letter-spacing: -.02em;
    }
    .benefit p { margin: 0; color: var(--muted); font-size: 15px; }

    .role-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
    .role-card,
    .role-card.light {
      padding: 37px;
      border: 1px solid var(--line);
      border-top: 3px solid var(--red);
      border-radius: var(--radius-xl);
      color: var(--white);
      background: var(--surface);
      box-shadow: none;
    }
    .role-card.light { background: var(--surface-2); }
    .role-card h3 {
      margin: 0 0 25px;
      color: var(--white);
      font-size: 28px;
      letter-spacing: -.035em;
    }
    .role-list {
      display: grid;
      gap: 18px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .role-list li,
    .role-card.light .role-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 13px;
      align-items: start;
      color: var(--muted);
    }
    .role-list svg {
      width: 22px;
      height: 22px;
      margin-top: 1px;
      color: var(--red);
    }
    .role-list strong,
    .role-card.light .role-list strong { color: var(--white); }

    .apply-section {
      position: relative;
      overflow: hidden;
      padding: 112px 0;
      color: var(--white);
      background:
        radial-gradient(circle at 9% 15%, rgba(229,0,23,.09), transparent 22%),
        #050505;
      border-top: 1px solid var(--line);
    }
    .apply-section::after {
      content: "//";
      position: absolute;
      right: -4vw;
      bottom: -7vw;
      color: rgba(229, 0, 23, .045);
      font-size: 39vw;
      font-weight: 950;
      font-style: italic;
      letter-spacing: -.20em;
      line-height: .72;
      transform: skewX(-8deg);
      pointer-events: none;
      user-select: none;
    }
    .application-wrap {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 44px;
      align-items: start;
    }
    .apply-intro { position: sticky; top: 28px; padding: 18px 10px 0 0; }
    .apply-intro h2 { font-size: clamp(39px, 4.8vw, 62px); }
    .apply-intro p { color: var(--muted); font-size: 17px; }
    .apply-points { display: grid; gap: 13px; margin-top: 27px; }
    .apply-point {
      display: flex;
      align-items: center;
      gap: 11px;
      color: var(--muted);
      font-size: 14px;
    }
    .apply-point svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--red); }

    .funnel {
      overflow: hidden;
      border: 1px solid var(--line-strong);
      border-top: 4px solid var(--red);
      border-radius: var(--radius-xl);
      color: var(--white);
      background: rgba(8,8,8,.98);
      box-shadow: var(--shadow);
    }
    .funnel-top { padding: 27px 31px 0; }
    .progress-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 13px;
      color: var(--muted);
      font-size: 12px;
    }
    .progress-meta strong { color: var(--white); }
    .progress-track {
      height: 7px;
      overflow: hidden;
      border-radius: 1px;
      background: var(--surface-3);
    }
    .progress-bar {
      width: 20%;
      height: 100%;
      border-radius: inherit;
      background: var(--red);
      transition: width .35s ease;
    }
    .form-body { min-height: 570px; padding: 39px 31px 31px; }
    .step { animation: stepIn .28s ease; }
    @keyframes stepIn {
      from { opacity: 0; transform: translateY(7px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .step-count {
      margin: 0 0 10px;
      color: var(--red);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .step h3 {
      margin: 0;
      color: var(--white);
      font-size: clamp(28px, 3.2vw, 39px);
      line-height: 1.1;
      letter-spacing: -.036em;
    }
    .step-intro { margin: 13px 0 28px; color: var(--muted); }
    .choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .choice { position: relative; cursor: pointer; }
    .choice input { position: absolute; opacity: 0; pointer-events: none; }
    .choice-content {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 78px;
      padding: 16px;
      border: 1.5px solid var(--line);
      border-radius: var(--radius-md);
      color: var(--white);
      background: var(--surface-2);
      transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .choice:hover .choice-content {
      border-color: var(--line-strong);
      background: var(--surface-3);
      transform: translateY(-1px);
    }
    .choice input:checked + .choice-content {
      border-color: var(--red);
      background: var(--red-soft);
      box-shadow: 0 0 0 3px rgba(229,0,23,.09);
    }
    .choice-icon {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 39px;
      height: 39px;
      border: 1px solid var(--line);
      border-radius: 2px;
      color: var(--red);
      background: var(--surface-3);
    }
    .choice input:checked + .choice-content .choice-icon {
      border-color: var(--red);
      color: var(--white);
      background: var(--red);
    }
    .choice-icon svg { width: 20px; height: 20px; }
    .choice-copy { display: grid; gap: 2px; }
    .choice-copy strong { color: var(--white); font-size: 15px; }
    .choice-copy span { color: var(--muted); font-size: 12px; }
    .checkmark { margin-left: auto; width: 21px; height: 21px; opacity: 0; color: var(--red); }
    .choice input:checked + .choice-content .checkmark { opacity: 1; }

    .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    .field label, .field legend { color: var(--white); font-size: 13px; font-weight: 780; }
    .field small { color: var(--muted-2); font-size: 11px; }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
      width: 100%;
      border: 1.5px solid var(--line-strong);
      border-radius: 2px;
      color: var(--white);
      background: #060606;
      padding: 14px 15px;
      outline: none;
      caret-color: var(--red);
      transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }
    input::placeholder, textarea::placeholder { color: #6f6f6f; opacity: 1; }
    input[type="text"], input[type="email"], input[type="tel"], select { min-height: 52px; }
    textarea { min-height: 112px; resize: vertical; }
    select { color-scheme: dark; }
    select option { color: var(--white); background: #0b0b0b; }
    input:focus, select:focus, textarea:focus {
      border-color: var(--red);
      background: #0a0a0a;
      box-shadow: 0 0 0 4px rgba(229,0,23,.11);
    }
    input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--danger); }
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus {
      -webkit-text-fill-color: var(--white);
      box-shadow: 0 0 0 1000px #080808 inset;
      transition: background-color 9999s ease-in-out 0s;
    }

    .inline-options { display: flex; flex-wrap: wrap; gap: 9px; }
    .pill-option { position: relative; cursor: pointer; }
    .pill-option input { position: absolute; opacity: 0; }
    .pill-option span {
      display: inline-flex;
      align-items: center;
      min-height: 43px;
      padding: 0 15px;
      border: 1.5px solid var(--line-strong);
      border-radius: 2px;
      color: var(--white);
      background: var(--surface-2);
      font-size: 13px;
      font-weight: 750;
      transition: border-color .18s ease, background .18s ease;
    }
    .pill-option input:checked + span {
      border-color: var(--red);
      color: var(--white);
      background: var(--red);
    }

    .consent {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 11px;
      align-items: start;
      margin-top: 21px;
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: 2px;
      color: var(--muted);
      background: var(--surface-2);
      font-size: 12px;
    }
    .consent input { width: 19px; height: 19px; margin: 0; accent-color: var(--red); }
    .consent a { color: var(--red); font-weight: 800; }

    .error-box {
      display: none;
      margin-top: 18px;
      padding: 12px 14px;
      border: 1px solid rgba(255,79,96,.72);
      border-radius: 2px;
      color: #ffbdc4;
      background: rgba(255,79,96,.11);
      font-size: 13px;
    }
    .error-box.show { display: block; }

    .form-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 13px;
      margin-top: 30px;
      padding-top: 23px;
      border-top: 1px solid var(--line);
    }
    .button.secondary {
      border: 1px solid var(--line-strong);
      color: var(--white);
      background: transparent;
      box-shadow: none;
    }
    .button.secondary:hover {
      border-color: var(--white);
      background: var(--surface-3);
      box-shadow: none;
    }
    .button.compact { min-height: 50px; padding: 0 21px; }
    .button[disabled] { opacity: .58; cursor: wait; transform: none; }
    .spinner {
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255,255,255,.36);
      border-top-color: var(--white);
      border-radius: 50%;
      animation: spin .7s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    .success-panel {
      display: grid;
      place-items: center;
      min-height: 570px;
      padding: 48px 24px;
      color: var(--white);
      text-align: center;
    }
    .success-icon {
      display: grid;
      place-items: center;
      width: 78px;
      height: 78px;
      border: 1px solid var(--red);
      border-radius: 50%;
      color: var(--white);
      background: var(--red);
    }
    .success-icon svg { width: 37px; height: 37px; }
    .success-panel h3 { margin: 24px 0 10px; color: var(--white); font-size: 36px; letter-spacing: -.04em; }
    .success-panel p { max-width: 520px; margin: 0; color: var(--muted); }
    .success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
    .fallback-note {
      max-width: 560px;
      margin: 20px auto 0;
      padding: 13px 15px;
      border: 1px solid var(--line);
      border-radius: 2px;
      color: var(--muted);
      background: var(--surface-2);
      font-size: 12px;
    }

    .quote-strip {
      padding: 80px 0;
      color: var(--white);
      background: var(--black);
      border-top: 1px solid var(--line);
      border-bottom: 3px solid var(--red);
    }
    .quote-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 42px;
      padding-left: 30px;
      border-left: 5px solid var(--red);
    }
    .quote-inner blockquote {
      max-width: 830px;
      margin: 0;
      color: var(--white);
      font-size: clamp(28px, 3.7vw, 46px);
      line-height: 1.15;
      letter-spacing: -.043em;
      font-weight: 720;
    }
    .quote-inner blockquote span { color: var(--red); }
    .quote-hash {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      color: var(--muted-2);
      font-size: 14px;
      letter-spacing: .08em;
    }

    footer {
      padding: 40px 0 92px;
      color: var(--muted);
      background: var(--black);
      font-size: 13px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: end;
    }
    .footer-logo { width: 226px; height: auto; margin-bottom: 14px; }
    .footer-address { line-height: 1.75; }
    .footer-address a:hover { color: var(--white); }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 19px;
    }
    .footer-links a { text-decoration: none; }
    .footer-links a:hover { color: var(--red); }

    .mobile-cta {
      position: fixed;
      z-index: 30;
      left: 0;
      right: 0;
      bottom: 0;
      display: none;
      padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
      border-top: 1px solid var(--red);
      background: rgba(0,0,0,.94);
      backdrop-filter: blur(12px);
    }
    .mobile-cta .button { width: 100%; }

    .sr-only {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    @media (max-width: 980px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 170px;
      }
      .hero-visual { width: 100%; }
      .photo-card { width: 100%; max-width: 680px; margin: 0; aspect-ratio: 1.35; }
      .photo-card img { object-position: 50% 40%; }
      .floating-note { left: auto; right: 20px; top: 18px; }
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .application-wrap { grid-template-columns: 1fr; }
      .apply-intro { position: static; padding: 0; }
    }

    @media (max-width: 700px) {
      .shell { width: min(100% - 28px, var(--content)); }
      .site-header { padding: 16px 0; }
      .brand-logo { width: 190px; }
      .header-cta { display: none; }
      .hero { min-height: auto; }
      .hero::before { right: -19vw; top: 24%; font-size: 86vw; }
      .hero-grid { min-height: auto; padding: 118px 0 64px; }
      h1 { font-size: clamp(43px, 14.3vw, 64px); }
      .hero-lead { font-size: 17px; }
      .hero-actions .button { width: 100%; }
      .microcopy { width: 100%; justify-content: center; }
      .photo-card { aspect-ratio: .92; }
      .photo-card img { object-position: 50% 48%; }
      .floating-note { top: 14px; right: 14px; width: 150px; padding: 15px; }
      .section, .apply-section { padding: 78px 0; }
      .benefits-grid, .role-grid, .choices, .fields { grid-template-columns: 1fr; }
      .field.full { grid-column: auto; }
      .benefit { min-height: 0; }
      .role-card, .role-card.light { padding: 28px; }
      .funnel-top { padding: 22px 20px 0; }
      .form-body { min-height: 590px; padding: 31px 20px 25px; }
      .choice-content { min-height: 68px; }
      .form-nav { align-items: stretch; }
      .form-nav .button { flex: 1; padding-inline: 15px; }
      .quote-inner { grid-template-columns: 1fr; padding-left: 20px; }
      .quote-hash { writing-mode: initial; transform: none; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-links { justify-content: flex-start; }
      .mobile-cta.is-visible { display: block; }
      footer { padding-bottom: 122px; }
    }

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

    .file-upload {
      position: relative;
      padding: 18px;
      border: 1px dashed var(--line-strong);
      background: #0b0b0b;
    }
    .file-upload input[type="file"] {
      width: 100%;
      min-height: auto;
      padding: 10px 0;
      border: 0;
      background: transparent;
    }
    .file-upload input[type="file"]::file-selector-button {
      margin-right: 14px;
      padding: 10px 14px;
      border: 1px solid var(--red);
      border-radius: 2px;
      color: var(--white);
      background: transparent;
      font-weight: 800;
      cursor: pointer;
    }
    .file-upload input[type="file"]::file-selector-button:hover { background: var(--red); }
    .submission-reference { display:block; margin-top:14px; color:var(--muted); font-size:13px; }
    .submission-warning { margin-top:16px; padding:12px 14px; border-left:3px solid var(--red); background:rgba(229,0,23,.08); color:var(--white); font-size:14px; }

.noscript-note{margin:24px;padding:18px;border-left:4px solid var(--red);background:#1a1a1a;color:#fff;line-height:1.6}.noscript-note a{color:#fff;font-weight:800;text-decoration:underline;text-decoration-color:var(--red);text-underline-offset:3px}
