@charset "utf-8";

:root {
  --blue: #0637C8;
  --blue-2: #0A2EA8;
  --blue-deep: #071A3A;
  --ink: #0B1A36;
  --steel: #5B7194;
  --silver: #D8DEE7;
  --hairline: #E6E2D6;
  --paper: #FBFAF6;
  --warm: #F5F2EA;
  --sand: #E6E2D5;
  --gold: #B8924A;
  --gold-soft: #D4B574;
  --graphite: #1D2433;
  --ok: #0F8A5F;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-wordmark: "Marcellus", Georgia, "Times New Roman", serif;
  --font-italic: "EB Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --motion: .2s ease;
}

*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  font-family: var(--font-body);
  color: var(--graphite);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

html { scroll-behavior: smooth; }

::selection { background: var(--blue); color: #fff; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

img, svg { display: block; max-width: 100%; }

ul { list-style: none; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }

.page { width: 100%; max-width: none; margin: 0; background: var(--paper); overflow: hidden; position: relative; }

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 56px;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.nav-mark { width: 32px; height: 32px; display: block; object-fit: cover; }

.nav-word { font-family: var(--font-wordmark); font-weight: 400; font-size: 22px; letter-spacing: 0.1em; color: var(--blue-deep); }

.nav-links { display: flex; gap: 36px; font-size: 13px; color: var(--ink); font-weight: 500; }

.nav-links a { position: relative; padding: 6px 0; transition: color var(--motion); }

.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--blue); }

.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; }

.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--blue-deep); margin: 0 auto; }

.nav-toggle span + span { margin-top: 5px; }

@media (max-width: 1024px) {
  .nav { padding: 18px 28px; }
  .nav-links, .nav .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    padding: 24px 28px;
    border-bottom: 1px solid var(--hairline);
    gap: 18px;
    font-size: 16px;
  }
}

@media (max-width: 720px) { .nav { padding: 14px 16px; } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; font-size: 13px; font-weight: 500; transition: all var(--motion); border-radius: 2px; letter-spacing: 0.005em; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-2); }
.btn-outline { border: 1px solid var(--blue); color: var(--blue); background: #fff; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-ghost { color: var(--blue); padding: 13px 0; }
.btn-ghost:hover { color: var(--blue-2); }
.btn-gold { background: var(--gold); color: var(--blue-deep); }
.btn-gold:hover { background: var(--gold-soft); }

/* ===== TYPOGRAPHY ===== */
.eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.sec-title { font-family: var(--font-display); font-weight: 300; font-size: 56px; line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); margin-top: 16px; text-wrap: balance; }

.sec-title .ital { font-family: var(--font-italic); font-style: italic; font-weight: 400; }

.sec-lede { font-size: 16px; color: var(--steel); line-height: 1.65; max-width: 640px; margin-top: 18px; text-wrap: pretty; }

/* ===== SECTIONS ===== */
.sec { padding: 96px 56px; border-bottom: 1px solid var(--hairline); background: #fff; position: relative; }
.sec.warm { background: var(--warm); }
.sec.paper { background: var(--paper); }

@media (max-width: 1024px) { .sec { padding: 72px 28px; } .sec-title { font-size: 44px; } }
@media (max-width: 720px) { .sec { padding: 56px 18px; } .sec-title { font-size: 32px; } }

.skip-link { position: absolute; top: 0; left: 0; padding: 12px 16px; background: var(--blue-deep); color: #fff; transform: translateY(-100%); z-index: 100; }
.skip-link:focus { transform: translateY(0); }

/* ===== HERO ===== */
.hero { position: relative; background: #fff; overflow: hidden; }

.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 620px; }

.hero-left { padding: 64px 56px 56px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-right::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.4) 14%, transparent 30%); z-index: 2; pointer-events: none; }

.kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.kicker .gline { width: 32px; height: 1px; background: var(--gold); }

.hero-title { font-family: var(--font-display); font-weight: 300; font-size: 84px; line-height: 0.98; letter-spacing: -0.03em; color: var(--ink); text-wrap: balance; }
.hero-title .ital { font-family: var(--font-italic); font-style: italic; font-weight: 400; }

.hero-lede { font-size: 17px; line-height: 1.65; color: var(--steel); max-width: 520px; margin-top: 32px; text-wrap: pretty; }

.hero-cta { display: flex; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

.hstat { padding: 24px 28px; border-right: 1px solid var(--hairline); display: flex; align-items: center; gap: 16px; }
.hstat:last-child { border-right: none; }
.hstat-icon { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--blue); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; background: rgba(6,55,200,.04); }
.hstat-text .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
.hstat-text .desc { font-size: 12px; color: var(--steel); margin-top: 4px; line-height: 1.5; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-left { padding: 48px 28px; }
  .hero-right { aspect-ratio: 16/10; max-height: 420px; }
  .hero-title { font-size: 60px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hstat:nth-child(2) { border-right: none; }
  .hstat:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
}

@media (max-width: 720px) {
  .hero-left { padding: 40px 18px; }
  .hero-title { font-size: 44px; }
  .hero-lede { font-size: 15px; margin-top: 24px; }
  .hero-cta { gap: 12px; margin-top: 28px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hstat { border-right: none; border-bottom: 1px solid var(--hairline); }
  .hstat:last-child { border-bottom: none; }
}

/* ===== PROOFBAR ===== */
.proofbar { padding: 22px 56px; background: var(--paper); border-bottom: 1px solid var(--hairline); }
.logos { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 18px; }
.lg { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel); line-height: 1; }
.lg-sep { color: var(--gold); font-size: 10px; line-height: 1; }

@media (max-width: 720px) { .proofbar { padding: 18px; } .lg { font-size: 10px; letter-spacing: 0.16em; } }

/* ===== POSITION ===== */
.position-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.position-list { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.notrow { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.notrow:last-child { border-bottom: none; }
.notrow .ic { color: var(--steel); width: 18px; height: 18px; flex-shrink: 0; }
.notrow .tx { font-size: 14px; color: var(--steel); }
.notrow .gtag { margin-left: auto; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--steel); text-transform: uppercase; }
.notrow.is .ic { color: var(--ok); }
.notrow.is .tx { color: var(--ink); font-weight: 500; }
.notrow.is .gtag { color: var(--gold); }

@media (max-width: 1024px) { .position-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== SERVICES ===== */
.services-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
.svc { padding: 32px 28px; border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: #fff; display: flex; flex-direction: column; gap: 14px; min-height: 340px; position: relative; transition: background .2s; }
.svc:hover { background: var(--paper); }
.svc-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(6,55,200,.06); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.svc-num { position: absolute; top: 24px; right: 24px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gold); }
.svc-title { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
.svc-desc { font-size: 13px; color: var(--steel); line-height: 1.6; text-wrap: pretty; }
.svc-list { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.svc-list li { font-size: 12px; color: var(--graphite); padding-left: 14px; position: relative; }
.svc-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 1px; background: var(--gold); }
.svc-link { margin-top: auto; font-size: 12px; color: var(--blue); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.01em; }
.svc-link:hover { color: var(--blue-2); }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: minmax(240px,.75fr) minmax(0,1.6fr); gap: 64px; align-items: start; }
.proc-line { margin-top: 32px; position: relative; }
.proc-steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 28px; }
.pstep { text-align: left; min-width: 0; }
.pstep .pnum { width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 13px; font-family: var(--font-mono); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--blue); margin-bottom: 18px; }
.pstep .ptl { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ink); }
.pstep .pdr { font-family: var(--font-mono); font-size: 10px; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 4px; }
.pstep .pdc { font-size: 12px; color: var(--steel); line-height: 1.6; margin-top: 10px; text-wrap: pretty; }

@media (max-width: 1024px) {
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .proc-steps { grid-template-columns: 1fr; gap: 28px; }
  .pstep { padding-left: 56px; position: relative; }
  .pstep .pnum { position: absolute; top: 0; left: 0; width: 38px; height: 38px; margin: 0; }
}

/* ===== STATS BAND ===== */
.statband { display: grid; grid-template-columns: repeat(4,1fr); background: var(--blue-deep); color: var(--paper); }
.stb { padding: 48px 32px; border-right: 1px solid rgba(251,250,246,.08); }
.stb:last-child { border-right: none; }
.stb .num { font-family: var(--font-display); font-weight: 300; font-size: 64px; line-height: 1; color: #fff; letter-spacing: -0.03em; }
.stb .num .un { color: var(--gold); font-size: 32px; margin-left: 6px; font-weight: 400; }
.stb .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 16px; }
.stb .ds { font-size: 12px; color: rgba(251,250,246,.65); margin-top: 6px; line-height: 1.5; }

@media (max-width: 1024px) {
  .statband { grid-template-columns: repeat(2,1fr); }
  .stb { padding: 36px 24px; }
  .stb .num { font-size: 48px; }
  .stb:nth-child(2) { border-right: none; }
  .stb:nth-child(-n+2) { border-bottom: 1px solid rgba(251,250,246,.08); }
}

@media (max-width: 720px) {
  .statband { grid-template-columns: 1fr; }
  .stb { border-right: none; border-bottom: 1px solid rgba(251,250,246,.08); }
  .stb:last-child { border-bottom: none; }
}

/* ===== INDUSTRIES ===== */
.ind-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; background: var(--hairline); margin-top: 48px; border: 1px solid var(--hairline); }
.ind { background: #fff; padding: 28px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: background var(--motion); }
.ind:hover { background: var(--paper); }
.ind-ic { color: var(--blue); width: 36px; height: 36px; }
.ind-name { font-family: var(--font-display); font-size: 14px; color: var(--ink); font-weight: 500; letter-spacing: -0.005em; }
.ind-rev { font-family: var(--font-mono); font-size: 9px; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; }

@media (max-width: 1024px) { .ind-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 720px) { .ind-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== FOUNDER NOTE ===== */
.note-letter { max-width: 720px; margin: 0 auto; text-align: center; }
.note-letter .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; display: inline-block; }
.note-letter h3 { font-family: var(--font-display); font-weight: 400; font-size: 40px; color: var(--ink); letter-spacing: -0.02em; line-height: 1.15; margin-top: 18px; text-wrap: balance; }
.note-letter p { font-size: 15px; color: var(--steel); line-height: 1.75; margin-top: 22px; text-wrap: pretty; }
.note-letter .sig { margin-top: 36px; display: flex; justify-content: center; }
.note-letter .sig .sigtxt { font-size: 13px; color: var(--steel); line-height: 1.5; text-align: center; }
.note-letter .sig .sigtxt strong { color: var(--ink); font-weight: 500; font-family: var(--font-display); font-size: 16px; letter-spacing: -0.005em; }

@media (max-width: 720px) { .note-letter h3 { font-size: 30px; } .note-letter p { font-size: 14px; } }

/* ===== TEAM ===== */
.team-section { background: var(--paper); }
.team-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.team-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; margin-top: 44px; }
.partner { display: grid; grid-template-columns: minmax(180px,.45fr) 1fr; background: #fff; border: 1px solid var(--hairline); min-height: 360px; }
.partner img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-right: 1px solid var(--hairline); }
.partner-copy { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.partner-copy h3 { font-family: var(--font-display); color: var(--ink); font-size: 32px; font-weight: 400; letter-spacing: -0.02em; }
.partner-copy .role { font-family: var(--font-mono); color: var(--gold); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 8px; }
.partner-copy p:not(.role) { color: var(--steel); font-size: 14px; line-height: 1.7; margin-top: 20px; text-wrap: pretty; }

@media (max-width: 1024px) { .team-head, .team-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .partner { grid-template-columns: 1fr; }
  .partner img { border-right: 0; border-bottom: 1px solid var(--hairline); min-height: 260px; }
  .partner-copy { padding: 24px; }
}

/* ===== INSIGHTS ===== */
.insights-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.ins-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.ins { background: #fff; border: 1px solid var(--hairline); overflow: hidden; transition: transform var(--motion), box-shadow var(--motion); }
.ins:hover { transform: translateY(-2px); box-shadow: rgba(7,26,58,.15) 0 12px 32px -10px; }
.ins .ph { aspect-ratio: 16/10; overflow: hidden; background: #0a1322; position: relative; }
.ins .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ins .ph .cat { position: absolute; top: 16px; left: 16px; background: #fff; padding: 6px 10px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
.ins-body { padding: 24px; }
.ins-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 20px; color: var(--ink); letter-spacing: -0.005em; line-height: 1.25; text-wrap: balance; }
.ins-body p { font-size: 13px; color: var(--steel); line-height: 1.6; margin-top: 10px; }
.ins-meta { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; }
.ins-link { display: block; color: inherit; }
.ins-link:hover .read { color: var(--blue-2); }
.ins-meta .read { font-size: 12px; color: var(--blue); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: color var(--motion); }
.ins-meta .time { font-family: var(--font-mono); font-size: 10px; color: var(--steel); letter-spacing: 0.12em; }

@media (max-width: 1024px) { .ins-row { grid-template-columns: 1fr; } }

/* ===== CONFIDENTIALITY ===== */
.conf { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; padding: 56px; background: var(--blue-deep); color: var(--paper); }
.conf-icon { width: 96px; height: 96px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.conf h3 { font-family: var(--font-display); font-weight: 300; font-size: 36px; color: #fff; letter-spacing: -0.02em; line-height: 1.1; margin-top: 14px; text-wrap: balance; }
.conf-lede { font-size: 15px; color: rgba(251,250,246,.8); line-height: 1.7; max-width: 560px; }
.conf .points { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 32px; }
.conf .pt { padding-left: 14px; border-left: 1px solid var(--gold); }
.conf .pt .pn { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.conf .pt .pd { font-size: 13px; color: rgba(251,250,246,.85); margin-top: 8px; line-height: 1.6; }
.conf .pt .pd strong { color: #fff; font-weight: 500; }

@media (max-width: 1024px) { .conf { grid-template-columns: 1fr; gap: 32px; padding: 48px 28px; } .conf .points { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 720px) { .conf { padding: 40px 18px; } }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.faqs { display: flex; flex-direction: column; border-top: 1px solid var(--hairline); }
.faq { border-bottom: 1px solid var(--hairline); }
.faq summary { padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; gap: 24px; }
.faq summary::-webkit-details-marker { display: none; }
.faq .qt { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -0.005em; flex: 1; }
.faq .qi { width: 28px; height: 28px; border: 1px solid var(--hairline); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); transition: all var(--motion); flex-shrink: 0; }
.faq[open] .qi { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(45deg); }
.faq .qa { padding: 0 0 24px; font-size: 14px; color: var(--steel); line-height: 1.7; max-width: 680px; text-wrap: pretty; }
.faq .qa strong { color: var(--ink); font-weight: 500; }

@media (max-width: 1024px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== CTA ===== */
.cta { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; padding: 96px 56px; background: var(--blue-deep); color: var(--paper); position: relative; overflow: hidden; }
.cta-left h2 { font-family: var(--font-display); font-weight: 300; font-size: 56px; line-height: 1.05; letter-spacing: -0.025em; color: #fff; text-wrap: balance; }
.cta-left h2 .ital { font-family: var(--font-italic); font-style: italic; }
.cta-left p { font-size: 15px; color: rgba(251,250,246,.75); line-height: 1.7; margin-top: 18px; max-width: 440px; }
.cta-left .reassure { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.cta-left .reassure .r { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: rgba(251,250,246,.85); }
.cta-left .reassure .r svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.cta-form { background: radial-gradient(circle at 25% 15%, rgba(184,146,74,.06), transparent 60%), radial-gradient(circle at 80% 90%, rgba(6,55,200,.08), transparent 55%) rgba(255,255,255,.04); border: 1px solid rgba(251,250,246,.1); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field label { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15); color: #fff; font-family: inherit; font-size: 13px; border-radius: 2px; transition: border-color var(--motion); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(251,250,246,.4); }
.field textarea { resize: vertical; min-height: 96px; }
.field select option { background: var(--blue-deep); color: #fff; }

.consent { display: flex; gap: 12px; align-items: center; margin-top: 14px; font-size: 12px; color: rgba(251,250,246,.7); line-height: 1.5; cursor: pointer; }
.consent input { appearance: none; flex-shrink: 0; width: 16px; height: 16px; margin: 0; border: 1px solid rgba(184,146,74,.5); background: transparent; cursor: pointer; position: relative; transition: border-color var(--motion), background var(--motion); }
.consent input:hover { border-color: var(--gold); }
.consent input:checked { background: var(--gold); border-color: var(--gold); }
.consent input:checked::after { content: ""; position: absolute; left: 4px; top: 1px; width: 5px; height: 9px; border-right: 1.5px solid var(--blue-deep); border-bottom: 1.5px solid var(--blue-deep); transform: rotate(45deg); }
.consent a { color: var(--gold); border-bottom: 1px solid rgba(184,146,74,.4); padding-bottom: 1px; }
.consent a:hover { border-bottom-color: var(--gold); }

.cta-form button[type="submit"] { width: 100%; margin-top: 18px; padding: 14px 22px; background: var(--gold); color: var(--blue-deep); font-weight: 600; font-size: 13px; letter-spacing: 0.01em; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: background var(--motion); border: none; cursor: pointer; font-family: inherit; }
.cta-form button[type="submit"]:hover { background: var(--gold-soft); }
.cta-form .alt { margin-top: 14px; text-align: center; font-size: 12px; color: rgba(251,250,246,.55); }
.cta-form .alt a { color: #fff; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.form-status { font-size: 13px; color: var(--gold); margin-top: 8px; min-height: 1em; }

@media (max-width: 1024px) { .cta { grid-template-columns: 1fr; gap: 32px; padding: 72px 28px; } }
@media (max-width: 720px) { .cta { padding: 56px 18px; } .cta-left h2 { font-size: 36px; } .form-row { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer { background: rgb(5,14,34); color: var(--paper); padding: 64px 56px 32px; }
.foot-top { display: grid; grid-template-columns: minmax(220px,1.35fr) minmax(110px,.72fr) minmax(170px,.9fr) minmax(130px,.74fr) minmax(190px,1fr); gap: clamp(24px,4vw,72px); align-items: start; padding-bottom: 48px; border-bottom: 1px solid rgba(251,250,246,.08); }
.foot-brand-row { display: flex; align-items: center; gap: 12px; }
.foot-mark { display: block; width: 36px; height: 36px; object-fit: cover; flex-shrink: 0; }
.foot-brand .word { font-family: var(--font-wordmark); font-weight: 400; font-size: 24px; letter-spacing: 0.1em; color: #fff; }
.foot-brand .tag { font-family: var(--font-italic); font-style: italic; font-size: 18px; color: rgba(251,250,246,.7); margin-top: 8px; line-height: 1.4; }
.foot-col h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251,250,246,.5); margin-bottom: 18px; font-weight: 500; }
.foot-col ul li { font-size: 13px; color: rgba(251,250,246,.85); padding: 5px 0; }
.foot-col ul li a:hover { color: var(--gold); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,250,246,.45); flex-wrap: wrap; gap: 16px; }
.foot-bottom .legal { display: flex; gap: 24px; }
.foot-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-lang { display: flex; gap: 6px; }
.footer-lang a { min-width: 32px; height: 32px; padding: 0 8px; border: 1px solid rgba(251,250,246,.15); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: rgba(251,250,246,.7); transition: border-color var(--motion), color var(--motion), background var(--motion); }
.footer-lang a.on, .footer-lang a:hover { background: var(--gold); border-color: var(--gold); color: var(--blue-deep); }
.foot-bottom .social { display: flex; gap: 10px; }
.foot-bottom .social a { width: 32px; height: 32px; border: 1px solid rgba(251,250,246,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(251,250,246,.7); }
.foot-bottom .social a:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 1180px) {
  .footer { padding: 48px 28px 24px; }
  .foot-top { grid-template-columns: minmax(220px,1.2fr) repeat(2,minmax(150px,1fr)); gap: 34px 44px; }
  .foot-brand { grid-row: span 2; }
}

@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; } .foot-brand { grid-area: auto/1/auto/-1; } }

@media (max-width: 720px) {
  .footer { padding: 40px 18px 24px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  .foot-brand { grid-column: 1/-1; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .foot-top { grid-template-columns: 1fr; }
  .foot-brand { grid-column: auto; }
  .foot-bottom .legal { flex-wrap: wrap; gap: 12px 18px; }
}

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