:root {
    --navy: #1a2b56;
    --navy-deep: #121e3d;
    --navy-mid: #243866;
    --blue: #2f5bb8;
    --blue-soft: #e8eefc;
    --blue-line: #d5deed;
    --ink: #1b2437;
    --muted: #5b6577;
    --surface: #f5f7fb;
    --white: #fff;
    --peach: #f3e6d4;
    --peach-text: #5c4a35;
    --green: #1f8a5b;
    --radius: 14px;
    --shadow: 0 18px 50px rgba(26, 43, 86, .12);
    --shadow-soft: 0 8px 24px rgba(26, 43, 86, .08);
    --page-gutter: clamp(16px, 4.5vw, 1in);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    padding: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}
body, button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.skip-link {
    position: fixed; left: 12px; top: -80px; z-index: 1000;
    padding: 10px 14px; border-radius: 8px; background: var(--white); color: var(--navy); font-weight: 600;
}
.skip-link:focus { top: 12px; }
.container {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: none;
    margin-left: var(--page-gutter);
    margin-right: var(--page-gutter);
    padding-inline: 0;
    box-sizing: border-box;
}

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 60;
    background: #2d3d8a;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
.header-inner {
    min-height: 72px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    position: relative;
}
.brand {
    display: inline-flex; align-items: center; gap: 10px;
    color: #fff;
    flex-shrink: 0;
    max-width: 100%;
}
.brand img {
    width: 40px; height: 40px;
    object-fit: contain; flex-shrink: 0;
}
.brand svg {
    width: min(180px, 34vw);
    height: auto;
    max-width: 100%;
    display: block; flex-shrink: 0;
}
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
    display: block;
    width: 18px; height: 2px;
    background: currentColor;
    border-radius: 2px;
    position: relative;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.site-header.is-nav-open .nav-toggle-bars { background: transparent; }
.site-header.is-nav-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.site-header.is-nav-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }
.header-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.header-nav {
    display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; justify-content: center;
    flex: 1;
}
.header-nav > a,
.nav-dropdown-toggle {
    padding: 8px 12px; color: rgba(255, 255, 255, .88); font-size: .86rem; font-weight: 500;
    border: 0; border-radius: 8px; background: transparent; cursor: pointer; font-family: inherit;
    white-space: nowrap;
}
.header-nav > a:hover,
.header-nav > a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
    color: #fff; background: rgba(255, 255, 255, .12);
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: inline-flex; align-items: center; gap: 6px;
}
.nav-caret {
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: .7;
}
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 80;
    min-width: 230px;
    padding: 8px;
    border: 1px solid var(--blue-line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: grid; gap: 2px;
}
.nav-dropdown-menu[hidden] { display: none; }
.nav-dropdown-menu a {
    display: block; padding: 10px 12px; border-radius: 8px;
    color: var(--navy); font-size: .86rem; font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--blue-soft); }
.nav-dropdown-menu a.is-active {
    background: var(--navy); color: var(--white);
}
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { color: #fff; font-weight: 600; font-size: .9rem; white-space: nowrap; }
.site-header .header-actions .btn {
    background: #fff;
    color: #2d3d8a;
    border-color: #fff;
}
.site-header .header-actions .btn:hover {
    background: #f3f6ff;
    color: #2d3d8a;
}

/* Buttons */
.btn {
    min-height: 46px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--navy-mid); box-shadow: var(--shadow-soft); }
.btn:focus-visible { outline: 3px solid #9bb4ef; outline-offset: 2px; }
.btn--light {
    background: var(--white); color: var(--navy); border-color: var(--blue-line);
}
.btn--light:hover { background: var(--surface); box-shadow: none; }
.btn--ghost {
    background: transparent; color: var(--navy); border-color: var(--blue-line);
}
.btn--full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 16px; }

/* Hero */
.hero {
    padding: 56px 0 40px;
    background:
        radial-gradient(circle at 88% 12%, rgba(47, 91, 184, .08), transparent 34%),
        linear-gradient(180deg, #f7f9fd 0%, var(--white) 100%);
}
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 40px;
    align-items: start;
}
.hero-copy { max-width: none; width: 100%; }
.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.breadcrumb { margin: 0 0 14px; color: var(--muted); font-size: .85rem; }
.breadcrumb a { color: var(--blue); font-weight: 600; }
h1, h2, h3 { margin-top: 0; color: var(--navy); font-weight: 700; letter-spacing: -.02em; line-height: 1.18; }
h1 { margin-bottom: 16px; font-size: clamp(1.85rem, 3.6vw, 2.85rem); max-width: 18ch; }
h2 { margin-bottom: 14px; font-size: clamp(1.4rem, 2.6vw, 2.05rem); }
h3 { margin-bottom: 8px; font-size: 1.05rem; }
.lead { margin: 0 0 8px; color: var(--muted); font-size: 1.02rem; max-width: 42rem; line-height: 1.7; }
.trust-checks {
    display: flex; flex-wrap: wrap; gap: 10px 18px;
    margin-top: 18px; padding: 0; list-style: none;
    color: var(--muted); font-size: .88rem; font-weight: 500;
}
.trust-checks li { display: inline-flex; align-items: center; gap: 7px; }
.trust-checks li::before {
    content: "";
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%232f5bb8' d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 4.6-4.6L12.2 5.5z'/%3E%3C/svg%3E") center/12px no-repeat;
}
.hero-panel {
    padding: 24px;
    border: 1px solid var(--blue-line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}
.hero-panel-kicker {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hero-panel h2 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}
.hero-panel-links {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}
.hero-panel-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--blue-line);
    border-radius: 10px;
    color: var(--navy);
    font-size: .88rem;
    font-weight: 600;
    background: var(--surface);
}
.hero-panel-links a:hover,
.hero-panel-links a.is-active {
    border-color: var(--blue);
    background: var(--blue-soft);
}

/* Form section below hero */
.form-section {
    padding: 8px 0 56px;
    background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}
.form-section-shell {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--blue-line);
    border-radius: 22px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}
.form-section-media {
    border-top: 1px solid var(--blue-line);
    background: var(--surface);
}
.form-section-media-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding: 12px 24px;
    background: linear-gradient(180deg, var(--blue-soft) 0%, #f0f4fc 100%);
    border-bottom: 1px solid var(--blue-line);
}
.form-section-media-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
}
.form-section-photo {
    margin: 0;
    overflow: hidden;
    position: relative;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--navy-mid);
}
.form-section-photo + .form-section-photo {
    border-left: 1px solid var(--blue-line);
}
.form-section-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
}
.form-section-media-eyebrow {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
}
.form-section-media-title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--navy);
}
.form-section-form {
    min-width: 0;
    display: flex;
}
.form-section-shell .form-card {
    flex: 1;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 30px 34px 32px;
}

/* Optional Sign NDA (Share Idea workflow) */
.compliance-nda-box {
    padding: 18px 20px;
    border: 1px solid var(--blue-line);
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfcff 0%, #f4f7fd 100%);
}
.compliance-nda-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.compliance-nda-intro {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
    max-width: 42rem;
}
.compliance-nda-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0;
}
.compliance-nda-chip.is-signed {
    background: #e8f6ef;
    color: var(--green);
}
.compliance-nda-preview {
    border: 1px solid #e6eaf7;
    border-radius: 12px;
    padding: 14px 16px;
    background: var(--white);
    margin-bottom: 14px;
}
.compliance-nda-preview h4 {
    margin: 0 0 10px;
    font-size: .95rem;
    color: var(--navy);
}
.compliance-nda-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}
.compliance-nda-meta div {
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8faff;
    border: 1px solid #e6eaf7;
    font-size: .88rem;
}
.compliance-nda-meta strong {
    display: block;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.compliance-nda-preview-copy {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.5;
}
.compliance-nda-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.compliance-nda-status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--blue-soft);
    border: 1px solid #d6e4ff;
    color: var(--ink);
    font-size: .88rem;
    line-height: 1.5;
}
.compliance-nda-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.compliance-nda-modal[hidden] {
    display: none !important;
}
.compliance-nda-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 32, 51, .55);
}
.compliance-nda-modal__dialog {
    position: relative;
    width: min(900px, 100%);
    max-height: calc(100vh - 40px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.compliance-nda-modal__body {
    padding: 24px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}
.compliance-nda-modal__header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.compliance-nda-modal__header h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--navy);
}
.compliance-nda-modal__header p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .9rem;
}
.compliance-nda-modal__close {
    background: none;
    border: 0;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    padding: 0 4px;
}
.compliance-nda-scroll {
    border: 1px solid #e6eaf7;
    border-radius: 12px;
    padding: 18px;
    background: #fbfcff;
    font-size: .88rem;
    line-height: 1.65;
    color: var(--ink);
}
.compliance-nda-scroll ol,
.compliance-nda-scroll ul {
    padding-left: 20px;
}
.compliance-nda-signature-panel {
    margin-top: 18px;
    border: 1px solid #e6eaf7;
    border-radius: 12px;
    padding: 18px;
    background: var(--white);
}
.compliance-nda-signature-panel h4 {
    margin: 0 0 8px;
    color: var(--navy);
}
.compliance-nda-signature-note,
.compliance-nda-helper {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: .84rem;
}
.compliance-nda-signature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.compliance-nda-signature-span {
    grid-column: 1 / -1;
}
.compliance-nda-signature-panel label {
    display: block;
    margin-bottom: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
}
.compliance-nda-signature-panel input[type="text"],
.compliance-nda-signature-panel input[type="date"],
.compliance-nda-signature-panel input[type="file"] {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid #c9d3e5;
    border-radius: 10px;
    background: var(--white);
}
.compliance-nda-signature-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 12px;
}
.compliance-nda-method-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid #d8e1f6;
    border-radius: 999px;
    background: #f8faff;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
}
.compliance-nda-method-tab.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}
.compliance-nda-method-panel {
    display: none !important;
    border: 1px solid #e6eaf7;
    border-radius: 12px;
    padding: 14px;
    background: #fbfcff;
    margin-bottom: 12px;
    min-height: 120px;
}
.compliance-nda-method-panel.is-active {
    display: block !important;
}
.compliance-nda-canvas-wrap {
    position: relative;
    min-height: 180px;
    border: 1px solid #d8e1f6;
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
}
.compliance-nda-canvas-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .9rem;
    pointer-events: none;
    z-index: 0;
}
.compliance-nda-canvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 180px;
    border: none;
    background: transparent;
    touch-action: none;
}
.compliance-nda-upload-field {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 10px;
}
.compliance-nda-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.compliance-nda-upload-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--blue-line);
    background: var(--white);
    color: var(--navy);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
}
.compliance-nda-upload-btn:hover {
    background: var(--blue-soft);
    border-color: var(--blue);
}
.compliance-nda-upload-name {
    font-size: .86rem;
    color: var(--muted);
}
.compliance-nda-draw-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.compliance-nda-upload-preview,
.compliance-nda-draw-preview {
    margin-top: 12px;
    border: 1px dashed #c9d6fb;
    border-radius: 10px;
    min-height: 100px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
}
.compliance-nda-upload-preview img,
.compliance-nda-draw-preview img {
    max-width: 100%;
    max-height: 140px;
    display: block;
}
.compliance-nda-placeholder {
    font-size: .84rem;
    color: var(--muted);
    text-align: center;
}
.compliance-nda-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    font-size: .88rem;
    line-height: 1.45;
    color: var(--ink);
}
.compliance-nda-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--navy);
}
.compliance-nda-modal-sign-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
body.compliance-nda-modal-open {
    overflow: hidden;
}

.form-card {
    padding: 28px 32px;
    border: 1px solid var(--blue-line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}
.form-card h2 { margin-bottom: 6px; font-size: 1.4rem; }
.form-intro { margin-bottom: 20px; color: var(--muted); font-size: .94rem; max-width: 40rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 16px; }
.field { min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field--span-2 { grid-column: span 2; }
.field label, .field legend {
    display: block; margin-bottom: 6px; color: var(--navy); font-size: .84rem; font-weight: 600;
}
.field legend { padding: 0; }
.required { color: #c0392b; }
.field input:not([type="checkbox"]):not([type="file"]),
.field select, .field textarea {
    width: 100%; min-height: 46px; padding: 10px 12px;
    border: 1px solid #c9d3e5; border-radius: 10px; background: var(--white); color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47, 91, 184, .15);
}
.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 12px;
    padding: 12px;
    border: 1px solid #c9d3e5;
    border-radius: 12px;
    background: #fafbfe;
}
.choice {
    display: flex; gap: 8px; align-items: flex-start;
    padding: 6px 8px; border-radius: 8px;
    font-size: .84rem; color: var(--ink); line-height: 1.35;
}
.choice:hover { background: var(--blue-soft); }
.choice input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--navy); }
.field-label {
    display: block; margin-bottom: 6px; color: var(--navy); font-size: .84rem; font-weight: 600;
}
.file-dropzone {
    position: relative;
    border: 1.5px dashed #b7c4de;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfcff 0%, #f3f6fc 100%);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.file-dropzone.is-dragover {
    border-color: var(--blue);
    background: var(--blue-soft);
    box-shadow: 0 0 0 3px rgba(47, 91, 184, .12);
}
.file-input {
    position: absolute !important;
    width: 1px !important; height: 1px !important;
    opacity: 0 !important; overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}
.file-dropzone-inner {
    padding: 22px 18px;
    text-align: center;
}
.file-dropzone-icon {
    width: 48px; height: 48px; margin: 0 auto 10px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--white);
    color: var(--blue);
    border: 1px solid var(--blue-line);
}
.file-dropzone-title {
    margin: 0 0 4px; color: var(--navy); font-size: .95rem; font-weight: 600;
}
.file-dropzone-sub {
    margin: 0 0 8px; color: var(--muted); font-size: .86rem;
}
.file-browse {
    color: var(--blue); font-weight: 600; cursor: pointer; text-decoration: underline;
}
.file-list {
    margin: 0; padding: 0 14px 14px; list-style: none; display: grid; gap: 8px;
}
.file-list[hidden] { display: none; }
.file-item {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--blue-line);
    border-radius: 10px;
    background: var(--white);
}
.file-item-meta { min-width: 0; }
.file-item-name {
    display: block; color: var(--navy); font-size: .86rem; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.file-item-size { color: var(--muted); font-size: .75rem; }
.file-item-remove {
    flex-shrink: 0;
    min-height: 32px; padding: 4px 10px;
    border: 1px solid var(--blue-line); border-radius: 8px;
    background: var(--white); color: var(--muted);
    font-size: .78rem; font-weight: 600; cursor: pointer;
}
.file-item-remove:hover { color: #a72f29; border-color: #e3b6b2; background: #fff5f4; }
.field-help, .form-reassurance { margin-top: 6px; color: var(--muted); font-size: .78rem; }
.form-status { min-height: 22px; margin: 12px 0; font-size: .85rem; font-weight: 600; }
.form-status[data-state="error"] { color: #a72f29; }
.form-status[data-state="success"] { color: var(--green); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-card button[disabled] { opacity: .7; cursor: wait; transform: none; }
.form-actions {
    display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px;
    margin-top: 8px;
}
.form-actions .btn { min-width: 240px; }

/* Program switcher — all options visible */
.program-bar {
    padding: 18px 0;
    border-bottom: 1px solid var(--blue-line);
    background: var(--white);
}
.program-bar-label {
    margin: 0 0 10px; color: var(--muted); font-size: .78rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
}
.program-links {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.program-links a {
    padding: 8px 12px;
    border: 1px solid var(--blue-line);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    font-size: .8rem;
    font-weight: 600;
}
.program-links a:hover { border-color: var(--blue); background: var(--blue-soft); }
.program-links a.is-active {
    background: var(--navy); border-color: var(--navy); color: var(--white);
}

/* Process ribbon */
.process-ribbon {
    padding: 28px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--blue-line);
}
.process-ribbon-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.ribbon-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center; color: var(--navy); font-size: .84rem; font-weight: 600;
}
.ribbon-num {
    width: 36px; height: 36px; display: grid; place-items: center;
    border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-size: .85rem; font-weight: 700;
}

/* Sections */
.section { padding: 64px 0; }
.section--soft { background: var(--surface); }
.section--dark {
    padding: 72px 0;
    background: var(--navy);
    color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lead { color: rgba(255,255,255,.78); max-width: 42rem; margin-inline: auto; }
.center { text-align: center; }
.section-intro { max-width: 42rem; margin: 0 auto 32px; }
.section-intro .lead { margin-inline: auto; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
    padding: 22px;
    border: 1px solid var(--blue-line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.card p { margin: 0; color: var(--muted); font-size: .92rem; }
.card-num {
    width: 34px; height: 34px; display: grid; place-items: center;
    margin-bottom: 14px; border-radius: 8px;
    background: var(--blue-soft); color: var(--blue); font-size: .82rem; font-weight: 700;
}
.card-link {
    display: inline-block; margin-top: 14px; color: var(--blue); font-weight: 600; font-size: .9rem;
}
.card-link:hover { text-decoration: underline; }

/* Capability dense grid */
.capability-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px;
}
.capability-card {
    display: block; padding: 18px;
    border: 1px solid var(--blue-line); border-radius: 12px; background: var(--white);
}
.capability-card:hover { border-color: var(--blue); box-shadow: var(--shadow-soft); }
.capability-card strong { display: block; margin-bottom: 6px; color: var(--navy); font-size: .95rem; }
.capability-card span { color: var(--muted); font-size: .82rem; line-height: 1.45; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.check-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li {
    position: relative; padding-left: 30px; color: var(--ink); font-weight: 500;
}
.check-list li::before {
    content: "";
    position: absolute; left: 0; top: 3px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #e6f6ee url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231f8a5b' d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 4.6-4.6L12.2 5.5z'/%3E%3C/svg%3E") center/12px no-repeat;
}
.visual-panel {
    min-height: 280px;
    display: grid; place-items: center;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 30%, rgba(47,91,184,.35), transparent 45%),
        linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
    color: var(--white);
    padding: 36px;
    text-align: center;
}
.visual-panel .big-check {
    width: 72px; height: 72px; margin: 0 auto 16px;
    display: grid; place-items: center; border-radius: 50%;
    background: rgba(255,255,255,.12); font-size: 2rem; font-weight: 700;
}
.visual-panel p { margin: 0; color: rgba(255,255,255,.85); max-width: 280px; }

/* Dark process steps */
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 32px;
}
.process-step {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(255,255,255,.05);
}
.process-step .step-label {
    display: block; margin-bottom: 8px;
    color: #9db4ef; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
}
.process-step h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.process-step p { margin: 0; color: rgba(255,255,255,.72); font-size: .86rem; }

/* Failed banner */
.failed-banner {
    padding: 28px 0;
    background: var(--peach);
}
.failed-banner-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.failed-banner h2 { margin: 0 0 4px; font-size: 1.35rem; color: var(--peach-text); }
.failed-banner p { margin: 0; color: var(--peach-text); font-size: .92rem; }

/* FAQ */
.faq-list { max-width: 860px; margin: 28px auto 0; display: grid; gap: 10px; }
.faq-list details {
    border: 1px solid var(--blue-line); border-radius: 12px; background: var(--white);
}
.faq-list summary {
    position: relative; padding: 16px 48px 16px 18px;
    color: var(--navy); font-weight: 600; cursor: pointer; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+"; position: absolute; right: 18px; top: 14px; color: var(--blue); font-size: 1.25rem;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 18px 16px; color: var(--muted); }

/* Final CTA */
.final-cta {
    padding: 28px 32px;
    border: 1px solid var(--blue-line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.final-cta h2 { margin: 0 0 6px; font-size: 1.45rem; }
.final-cta p { margin: 0; color: var(--muted); }

/* Footer handled by shared home footer_v2 include */

.mobile-cta { display: none; }
.consent-banner {
    position: fixed; z-index: 80; right: 1in; bottom: 16px;
    width: min(320px, calc(100% - 2in));
    padding: 12px 14px;
    border: 1px solid var(--blue-line); border-radius: 12px;
    background: var(--white); box-shadow: var(--shadow);
}
.consent-banner p { margin: 0 0 10px; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.consent-actions { display: flex; gap: 8px; }
.consent-actions .btn { min-height: 40px; padding: 8px 12px; font-size: .82rem; }

/* Thank you */
.thank-you {
    min-height: calc(100vh - 72px);
    display: grid; place-items: center;
    padding: 48px 0;
    background: var(--surface);
}
.site-header--dark {
    background: var(--navy);
    border-bottom-color: transparent;
}
.site-header--dark .brand,
.site-header--dark .header-phone { color: var(--white); }
.site-header--dark .btn--light { background: var(--white); color: var(--navy); border-color: var(--white); }
.site-header--dark .nav-toggle {
    background: transparent;
    border-color: rgba(255, 255, 255, .28);
    color: var(--white);
}
.site-header--dark .header-panel {
    background: var(--navy);
    border-bottom-color: rgba(255, 255, 255, .12);
}
.site-header--dark .header-nav {
    border-bottom-color: rgba(255, 255, 255, .12);
}
.site-header--dark .header-nav > a,
.site-header--dark .nav-dropdown-toggle { color: rgba(255, 255, 255, .82); }
.site-header--dark .header-nav > a:hover,
.site-header--dark .nav-dropdown-toggle:hover,
.site-header--dark .nav-dropdown.is-open .nav-dropdown-toggle {
    color: var(--white);
    background: rgba(255, 255, 255, .1);
}
.site-header--dark .nav-dropdown-menu {
    background: rgba(255, 255, 255, .08);
}
.site-header--dark .nav-dropdown-menu a { color: var(--white); }
.site-header--dark .nav-dropdown-menu a:hover { background: rgba(255, 255, 255, .12); }
.site-header--dark .nav-dropdown-menu a.is-active {
    background: var(--white);
    color: var(--navy);
}
.thank-you-card {
    max-width: 820px;
    margin-inline: auto;
    padding: 48px 40px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}
.thank-you-card h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.thank-you-icon {
    width: 64px; height: 64px; margin: 0 auto 16px;
    display: grid; place-items: center; border-radius: 50%;
    background: var(--navy); color: var(--white); font-size: 1.6rem; font-weight: 700;
}
.badge {
    display: inline-block; margin-bottom: 14px;
    padding: 6px 12px; border-radius: 999px;
    background: var(--blue-soft); color: var(--blue);
    font-size: .72rem; font-weight: 700; letter-spacing: .08em;
}
.thank-note { margin: 18px 0 0; color: var(--muted); font-size: .88rem; }
.next-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    margin-top: 36px; text-align: left;
}
.next-step {
    padding: 18px; border: 1px solid var(--blue-line); border-radius: 12px; background: var(--surface);
}
.next-step .card-num { margin-bottom: 10px; }
.next-step h3 { margin-bottom: 6px; }
.next-step p { margin: 0; color: var(--muted); font-size: .88rem; }

.related-links {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px;
}
.related-links a {
    padding: 8px 12px; border: 1px solid var(--blue-line); border-radius: 999px;
    color: var(--navy); font-size: .84rem; font-weight: 600;
}
.related-links a:hover { background: var(--blue-soft); }

/* ========== Responsive: all screen sizes ========== */

/* Large tablets / small laptops */
@media (max-width: 1200px) {
    .capability-grid { grid-template-columns: repeat(3, 1fr); }
    .cards--4 { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablets */
@media (max-width: 1100px) {
    .hero-layout { grid-template-columns: 1fr; gap: 28px; }
    .hero-panel { max-width: none; width: 100%; }
    .hero-panel-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    h1 { max-width: none; }
}

@media (max-width: 980px) {
    .header-inner { gap: 10px; }
    .split { grid-template-columns: 1fr; gap: 28px; }
    .form-section-media-head {
        padding: 10px 18px;
    }
    .form-section-photo img {
        aspect-ratio: 4 / 3;
    }
    .form-grid { grid-template-columns: 1fr 1fr; }
    .choice-grid { grid-template-columns: 1fr 1fr; }
    .cards, .cards--2, .cards--4, .capability-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-ribbon-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .section, .section--dark { padding: 56px 0; }
    .final-cta { gap: 18px; }

    .nav-toggle { display: inline-flex; }
    .header-panel {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: calc(var(--page-gutter) * -1);
        right: calc(var(--page-gutter) * -1);
        width: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px var(--page-gutter) 18px;
        background: rgba(255, 255, 255, .98);
        border-bottom: 1px solid var(--blue-line);
        box-shadow: 0 16px 32px rgba(26, 43, 86, .1);
    }
    .site-header.is-nav-open .header-panel { display: flex; }
    .header-panel {
        background: #2d3d8a;
        border-bottom-color: rgba(255, 255, 255, .12);
    }
    .header-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        flex: none;
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }
    .header-nav > a,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
        font-size: .95rem;
        text-align: left;
    }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 4px;
        box-shadow: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, .1);
        border-color: transparent;
    }
    .nav-dropdown-menu a { color: #fff; }
    .nav-dropdown-menu a:hover { background: rgba(255, 255, 255, .14); }
    .nav-dropdown-menu a.is-active {
        background: #fff;
        color: #2d3d8a;
    }
    .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 12px;
        width: 100%;
    }
    .header-phone {
        display: flex;
        justify-content: center;
        padding: 10px;
        font-size: .95rem;
    }
    .header-actions .btn {
        width: 100%;
        min-height: 48px;
    }
}

/* Large phones / small tablets */
@media (max-width: 760px) {
    :root { --page-gutter: 16px; }

    body { padding-bottom: 76px; font-size: 15px; }
    html { scroll-padding-top: 80px; }

    .header-inner {
        min-height: 64px;
        flex-wrap: nowrap;
    }
    .brand img { width: 36px; height: 36px; }
    .brand svg { width: min(150px, 42vw); }

    .hero { padding: 28px 0 20px; }
    .hero-layout { gap: 20px; }
    .button-row {
        flex-direction: column;
        align-items: stretch;
        margin: 20px 0 14px;
    }
    .button-row .btn { width: 100%; min-height: 48px; }
    .trust-checks {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .hero-panel { padding: 18px; }
    .hero-panel-links { grid-template-columns: 1fr; }

    .form-section { padding: 0 0 32px; }
    .form-section-media-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-section-media-head {
        padding: 10px 16px;
    }
    .form-section-photo img {
        aspect-ratio: 4 / 3;
    }
    .form-section-shell .form-card { padding: 18px 16px; }
    .compliance-nda-meta,
    .compliance-nda-signature-grid { grid-template-columns: 1fr; }
    .compliance-nda-modal__body { padding: 16px; }
    .form-card { padding: 18px 16px; border-radius: 14px; }
    .form-card h2 { font-size: 1.25rem; }
    .form-grid,
    .choice-grid { grid-template-columns: 1fr; }
    .field--span-2,
    .field--full { grid-column: 1 / -1; }
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .form-actions .btn { width: 100%; min-width: 0; min-height: 48px; }
    .file-dropzone-inner { padding: 18px 14px; }

    .process-ribbon { padding: 20px 0; }
    .process-ribbon-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .ribbon-item {
        flex: 0 0 110px;
        scroll-snap-align: start;
    }

    .section, .section--dark { padding: 44px 0; }
    .section-intro { margin-bottom: 24px; }
    .cards,
    .cards--2,
    .cards--4,
    .capability-grid,
    .process-grid,
    .next-steps { grid-template-columns: 1fr; gap: 12px; }
    .card, .capability-card, .process-step { padding: 16px; }
    .visual-panel { min-height: 200px; padding: 24px; }

    .failed-banner { padding: 22px 0; }
    .failed-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .failed-banner .btn { width: 100%; min-height: 48px; }
    .failed-banner h2 { font-size: 1.2rem; }

    .faq-list { margin-top: 20px; }
    .faq-list summary {
        padding: 14px 44px 14px 14px;
        font-size: .95rem;
    }

    .final-cta {
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
    }
    .final-cta .button-row { width: 100%; }
    .final-cta .btn { width: 100%; }

    h1 { font-size: clamp(1.55rem, 7.2vw, 2.1rem); }
    h2 { font-size: clamp(1.25rem, 5.5vw, 1.7rem); }
    .lead { font-size: .95rem; }

    .thank-you { padding: 28px 0 96px; }
    .thank-you-card { padding: 28px 18px; border-radius: 16px; }

    .consent-banner {
        right: 12px;
        left: 12px;
        bottom: 84px;
        width: auto;
    }
    .consent-actions { flex-wrap: wrap; }
    .consent-actions .btn { flex: 1 1 120px; min-height: 44px; }

    .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid var(--blue-line);
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 -8px 24px rgba(26, 43, 86, .08);
    }
    .mobile-cta .btn { min-height: 48px; font-size: .88rem; }
}

/* Small phones */
@media (max-width: 420px) {
    :root { --page-gutter: 12px; }
    .brand img { width: 32px; height: 32px; }
    .brand svg { width: min(132px, 48vw); }
    .eyebrow { letter-spacing: .1em; font-size: .68rem; }
    .hero-panel-kicker { font-size: .68rem; }
    .process-ribbon-grid { grid-template-columns: unset; }
}

/* Very large desktops keep 1in sides */
@media (min-width: 1400px) {
    :root { --page-gutter: 1in; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
