/* ── DESIGN TOKENS are centralized in design-tokens.css ─────── */
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  /* Override header.css overflow-x:hidden which breaks position:sticky.
     clip hides horizontal overflow WITHOUT creating a scroll container. */
  html, body { overflow-x: clip !important; }
  html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: rgba(var(--gold-rgb),0.2) transparent; }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-thumb { background: rgba(var(--gold-rgb),0.2); border-radius: 2px; }
  body {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.6;
    color: var(--text);
    background: var(--ink);
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  button, input, select, textarea { font: inherit; }
  
  /* ── HERO ── */
  .ca-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 40px 70px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    background: var(--ink-2);
  }
  .ca-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 20% 50%, rgba(var(--gold-rgb),0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 80% 30%, rgba(var(--gold-rgb),0.04) 0%, transparent 70%);
    pointer-events: none;
  }
  .ca-hero-eyebrow {
    font-size: 8px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
  }
  .ca-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text);
    max-width: 640px;
    margin: 0 auto 18px;
    position: relative;
  }
  .ca-hero h1 em { font-style: italic; color: var(--gold); }
  .ca-hero p {
    font-size: 13px;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
  }
  
  /* ── STEPS STRIP ── */
  .ca-steps {
    display: flex;
    border-bottom: 1px solid var(--line);
    background: var(--ink-3);
  }
  .ca-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    border-right: 1px solid var(--line);
  }
  .ca-step:last-child { border-right: none; }
  .ca-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
  }
  .ca-step-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
  }
  .ca-step-sub {
    font-size: 9px;
    color: var(--text-faint);
    margin-top: 2px;
  }
  
  /* ── LAYOUT ── */
  .ca-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    min-height: 60vh;
  }
  
  /* ── NAV COLUMN (stretches full height so sticky works) ── */
  .ca-nav-col {
    width: 260px;
    flex-shrink: 0;
    border-right: 1px solid var(--line);
    background: var(--ink-2);
  }
  
  /* ── STICKY NAV ── */
  .ca-nav {
    position: sticky;
    top: 80px;
    padding: 40px 0;
  }
  
  /* ── FORM COLUMN ── */
  .ca-form-col {
    flex: 1;
    min-width: 0;
  }
  .ca-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 28px;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    cursor: pointer;
    transition: color .2s;
    border-left: 2px solid transparent;
    text-transform: uppercase;
  }
  .ca-nav-item:hover { color: var(--text); }
  .ca-nav-item.active { color: var(--gold); border-left-color: var(--gold); background: var(--gold-dim); }
  .ca-nav-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
  }
  
  /* ── FORM AREA ── */
  .ca-form-area {
    padding: 0;
  }

  /* ── IDENTITY CLARITY ── */
  .ca-identity-clarity {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 40px;
    border-bottom: 1px solid var(--line);
    background: var(--ink-2);
  }
  .ca-ic-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ca-ic-icon svg { width: 20px; height: 20px; color: var(--gold); }
  .ca-ic-body { flex: 1; min-width: 0; }
  .ca-ic-company {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }
  .ca-ic-purpose {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 16px;
  }
  .ca-ic-data {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .ca-ic-data-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint);
  }
  .ca-ic-data-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
  
  /* ── ALERTS ── */
  .ca-alert {
    margin: 32px 40px;
    padding: 14px 20px;
    border: 1px solid;
    font-size: 11px;
    line-height: 1.6;
  }
  .ca-alert-error {
    background: var(--red-bg);
    border-color: var(--red-line);
    color: var(--red-text);
  }
  .ca-alert-success {
    background: var(--green-bg);
    border-color: rgba(58,140,100,0.28);
    color: var(--green);
  }
  .ca-alert strong { display: block; margin-bottom: 3px; font-weight: 500; }
  
  /* ── SECTIONS ── */
  .fs {
    padding: 36px 40px;
    border-bottom: 1px solid var(--line);
  }
  .fs:last-of-type { border-bottom: none; }
  .fs-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }
  .fs-head-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .fs-head-icon svg { width: 16px; height: 16px; color: var(--gold); }
  .fs-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.04em;
  }
  .fs-title span { color: var(--gold); }
  
  /* ── FIELD GRID ── */
  .fg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-bottom: 1px;
  }
  .fg:last-child { margin-bottom: 0; }
  .fg-full { grid-column: 1 / -1; }
  .ff {
    background: var(--ink-3);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .ff label {
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
  }
  .ff label .req { color: rgba(224,112,112,0.8); margin-left: 1px; }
  .ff input,
  .ff select,
  .ff textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line2);
    color: var(--text);
    padding: 6px 0;
    outline: none;
    font-size: 12px;
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none;
  }
  .ff input::placeholder,
  .ff textarea::placeholder { color: var(--text-faint); }
  .ff input:focus,
  .ff select:focus,
  .ff textarea:focus { border-bottom-color: var(--gold); }
  .ff select { cursor: pointer; background: transparent; color: var(--text); }
  .ff select option { background: var(--ink-3); color: var(--text); }
  .ff textarea {
    resize: vertical;
    min-height: 88px;
    border: 1px solid var(--line2);
    border-bottom-width: 1px;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 6px 0;
  }
  
  /* ── FILE UPLOAD ── */
  .fu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  .fu input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
  }
  .fu-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--ink-5);
    border: 1px dashed var(--line2);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    white-space: nowrap;
    pointer-events: none;
    transition: all .2s;
  }
  .fu:hover .fu-btn {
    border-color: var(--gold-line);
    color: var(--gold);
  }
  .fu-btn svg { width: 13px; height: 13px; }
  .fu-name {
    font-size: 10px;
    color: var(--text-faint);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .fu-hint {
    font-size: 9px;
    color: var(--text-faint);
    margin-top: 5px;
    letter-spacing: 0.02em;
  }
  
  /* ── SUBMIT ── */
  .ca-submit {
    padding: 36px 40px;
    border-top: 1px solid var(--line);
    background: var(--ink-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .ca-submit-note {
    font-size: 10px;
    color: var(--text-faint);
    line-height: 1.6;
    max-width: 360px;
  }
  .ca-submit-note strong { color: var(--text-dim); font-weight: 500; }
  .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--ink);
    border: none;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
  }
  .btn-submit:hover { background: var(--gold-light); }
  .btn-submit svg { width: 16px; height: 16px; }
  
  /* ── PERKS ASIDE ── */
  .ca-perks {
    padding: 36px 40px;
    border-bottom: 1px solid var(--line);
    background: var(--ink-2);
  }
  .ca-perks-title {
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .perk:last-child { border-bottom: none; }
  .perk-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 8px;
    flex-shrink: 0;
  }
  .perk-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.35;
  }
  .perk-sub {
    font-size: 9px;
    color: var(--text-faint);
    margin-top: 3px;
    line-height: 1.5;
  }
  
  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .ca-wrap { flex-direction: column; border: none; }
    .ca-nav-col { display: none; }
    .ca-form-col { width: 100%; }
    .ca-steps { flex-direction: column; }
    .ca-step { border-right: none; border-bottom: 1px solid var(--line); }
    .ca-step:last-child { border-bottom: none; }
  }
  @media (max-width: 640px) {
    .ca-hero { padding: 60px 20px 48px; }
    .fs { padding: 28px 20px; }
    .fg { grid-template-columns: 1fr; }
    .ca-submit { padding: 28px 20px; flex-direction: column; align-items: stretch; }
    .btn-submit { justify-content: center; }
    .ca-perks { padding: 24px 20px; }
    .ca-alert { margin: 20px; }
    .ca-identity-clarity { padding: 24px 20px; flex-direction: column; }
    .ca-ic-data { flex-direction: column; gap: 12px; }
  }