
  .cf { padding: 32px 0 120px; min-height: 70vh; }

  /* HEADER */
  .cf__head { max-width: 680px; margin-bottom: 56px; }
  .cf__eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-muted);
    display: block;
    margin-bottom: 18px;
  }
  .cf__title {
    font-size: var(--t-display-2);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .cf__lede {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* GRID */
  .cf__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
  }

  /* FORM */
  .cf-form { display: flex; flex-direction: column; gap: 18px; }
  .cf-row { display: grid; gap: 18px; }
  .cf-row--2 { grid-template-columns: 1fr 1fr; }

  .cf-field { display: flex; flex-direction: column; gap: 6px; }
  .cf-field__label {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
  }
  .cf-field__input {
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 12px 14px;
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    transition: border-color 0.2s ease;
  }
  .cf-field__input::placeholder { color: var(--ink-muted); }
  .cf-field__input:focus { outline: none; border-color: var(--ink-soft); }
  .cf-field__input:user-invalid { border-color: #b42318; }
  .cf-field__textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
  select.cf-field__input {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 38px;
  }

  /* Honeypot: kept in the DOM, removed from view and a11y tree. */
  .cf-hp {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
  }

  .cf-turnstile { min-height: 65px; }

  /* Standard brand button (matches every other CTA): blue at rest, inverts on
     hover via the global .btn rules. Only the layout is page-specific here. */
  .cf-submit { align-self: flex-start; }
  .cf-submit:disabled { opacity: 0.45; cursor: not-allowed; }

  .cf-status {
    font-size: 13px;
    line-height: 1.5;
    min-height: 1px;
    margin: 0;
  }
  .cf-status--pending { color: var(--ink-muted); }
  .cf-status--ok { color: #067647; }
  .cf-status--error { color: #b42318; }

  .cf-fineprint {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.7;
    color: var(--ink-muted);
    margin-top: 4px;
  }

  /* ASIDE */
  .cf__aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
  .cf-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 24px;
  }
  .cf-card--muted { background: var(--paper-cool); }
  .cf-card__title {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    margin-bottom: 12px;
  }
  .cf-card__email {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
    display: inline-block;
    margin-bottom: 10px;
  }
  .cf-card__email:hover { color: var(--ink-soft); }
  .cf-card__note {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .cf-card__note a { color: var(--ink-soft); border-bottom: 1px solid var(--line); }
  .cf-card__note a:hover { border-bottom-color: var(--ink-soft); }

  @media (max-width: 1024px) {
    .cf__grid { grid-template-columns: 1fr; gap: 40px; }
    .cf__aside { position: static; }
    .cf__title { font-size: 48px; }
  }
  @media (max-width: 640px) {
    .cf { padding: 24px 0 80px; }
    .cf__head { margin-bottom: 36px; }
    .cf__title { font-size: 36px; }
    .cf-row--2 { grid-template-columns: 1fr; }
    .cf-submit { width: 100%; }
  }
