/* ============================================
   Strategic Developments LLC
   Shared Stylesheet
   Palette: black / deep blue / white
   ============================================ */

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

:root {
  /* Surfaces — deep, slightly blue-tinted blacks */
  --ink:        #07090F;
  --ink-1:      #0B0E18;
  --ink-2:      #111624;
  --ink-3:      #171D2F;
  --ink-4:      #1E2538;

  /* Accent — deep blue family */
  --blue-deep:  #1B3358;
  --blue:       #2E5894;
  --blue-soft:  #4A7AC0;
  --blue-glow:  #6B95D6;

  /* Foreground */
  --white:      #F2F4F8;
  --off:        #E2E5EC;
  --light:      #B6BCCB;
  --muted:      #7B8294;
  --dim:        #4E5469;
  --line:       rgba(255,255,255,.07);
  --line-soft:  rgba(255,255,255,.04);
  --line-blue:  rgba(74,122,192,.28);

  /* Type */
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  --cond:       'Barlow Condensed', 'Inter', sans-serif;

  /* Layout */
  --pad-x:      clamp(24px, 5vw, 72px);
  --max:        1320px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--off);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }

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

/* Scrollbar – subtle */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-deep); }

/* ── BASE TYPE HELPERS ─────────────────────── */
.eyebrow {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6.8vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--white);
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
}

.h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.h1 em, .h2 em, .h3 em {
  font-style: italic;
  color: var(--blue-glow);
  font-weight: 300;
}

.lede {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--light);
  line-height: 1.75;
  font-weight: 300;
  max-width: 56ch;
}

.label {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 10px 30px -10px rgba(46,88,148,.6);
}
.btn-primary:hover {
  background: var(--blue-soft);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 14px 36px -10px rgba(74,122,192,.7);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--off);
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover {
  border-color: var(--blue-soft);
  color: var(--blue-glow);
}

.btn-arrow::after {
  content: '→';
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  transition: transform .2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  background: linear-gradient(to bottom, rgba(7,9,15,.92) 0%, rgba(7,9,15,.55) 70%, rgba(7,9,15,0) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: background .25s ease, padding .25s ease;
}

.nav.scrolled {
  background: rgba(7,9,15,.96);
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue-soft);
  color: var(--blue-glow);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  letter-spacing: -.02em;
  position: relative;
}
.nav-mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(74,122,192,.18);
  pointer-events: none;
}

.nav-brand-text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.nav-brand-name {
  font-family: var(--cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-brand-sub {
  font-family: var(--cond);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--cond);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--blue-soft);
}

.nav-cta {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 11px 22px;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--blue-soft); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1px;
  background: var(--off);
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 100px var(--pad-x) 40px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}
.nav-mobile a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.active { color: var(--blue-glow); }

.nav-mobile-cta {
  font-family: var(--cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  padding: 18px 28px;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
}

/* ── LAYOUT WRAPPERS ───────────────────────── */
.section { padding: clamp(72px, 9vw, 120px) var(--pad-x); position: relative; }
.section-sm { padding: clamp(56px, 6vw, 80px) var(--pad-x); }
.container { max-width: var(--max); margin: 0 auto; }
.section.alt { background: var(--ink-1); }
.section.dark { background: var(--ink-2); }

/* Divider */
.divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--pad-x);
  margin: clamp(40px, 6vw, 80px) 0;
}
.divider-line { height: 1px; background: var(--line); }
.divider-mark {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--blue-soft);
  white-space: nowrap;
}

/* Section header */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.section-head-title .label { margin-bottom: 14px; display: block; }
.section-link {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-soft);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--blue-soft);
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.section-link:hover { color: var(--blue-glow); border-color: var(--blue-glow); }

/* ── HERO (shared) ─────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px var(--pad-x) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,9,15,.96) 0%, rgba(7,9,15,.72) 55%, rgba(7,9,15,.45) 100%),
    linear-gradient(to top, rgba(7,9,15,.9) 0%, rgba(7,9,15,0) 50%),
    var(--bg-image, linear-gradient(135deg, #0B0E18 0%, #1B3358 100%)) center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 90% 90%, rgba(46,88,148,.22) 0%, transparent 60%);
  pointer-events: none;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--blue-soft);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  animation: expand .9s ease forwards;
}
@keyframes expand { from { width: 0; } to { width: 48px; } }

.hero-eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s ease .15s forwards;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  opacity: 0;
  animation: fadeUp .9s ease .3s forwards;
}

.hero-sub {
  margin-top: 26px;
  max-width: 52ch;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp .9s ease .45s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s ease .6s forwards;
}

.hero-meta {
  position: absolute;
  bottom: clamp(40px, 6vw, 80px);
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  opacity: 0;
  animation: fadeUp .9s ease .8s forwards;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  justify-content: flex-end;
}
.hero-meta-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 12px var(--blue);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Page hero (smaller variant for inner pages) */
.page-hero {
  min-height: 56vh;
  padding: 160px var(--pad-x) clamp(60px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--ink-1);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 100%, rgba(27,51,88,.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(46,88,148,.18) 0%, transparent 70%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { max-width: 18ch; margin-bottom: 24px; }
.page-hero p { max-width: 60ch; }

/* ── GRID UTILITIES ────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(30px, 4vw, 60px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

/* ── CARDS ─────────────────────────────────── */
.card {
  background: var(--ink-1);
  padding: clamp(32px, 3vw, 44px) clamp(28px, 2.5vw, 36px);
  border-top: 1px solid var(--line-blue);
  position: relative;
  overflow: hidden;
  transition: background .25s ease;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,122,192,.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.card:hover { background: var(--ink-2); }
.card:hover::after { opacity: 1; }

.card-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  color: var(--blue-soft);
  letter-spacing: .1em;
  margin-bottom: 28px;
  display: block;
}
.card-title { margin-bottom: 14px; }
.card-body {
  font-size: 14.5px;
  color: var(--light);
  line-height: 1.8;
}
.card-list {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.card-list li {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-list li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--blue-soft);
  flex-shrink: 0;
}

/* ── STATS ─────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.stat {
  background: var(--ink-1);
  padding: clamp(28px, 3vw, 36px) clamp(24px, 2.5vw, 32px);
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--blue-glow);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.stat-label {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── STEPS ─────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.step:first-child { border-top: 1px solid var(--line); }

.step-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.step-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--blue-soft);
  min-width: 28px;
}
.step-title {
  font-family: var(--cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
}
.step-body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 12px;
  padding-left: 46px;
}

/* ── QUOTE BLOCK ───────────────────────────── */
.quote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  max-width: 30ch;
}
.quote span { color: var(--blue-glow); }

/* ── CTA BAND ──────────────────────────────── */
.cta-band {
  padding: clamp(90px, 11vw, 140px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--ink-1);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(46,88,148,.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 50% 100%, rgba(27,51,88,.28) 0%, transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { margin-bottom: 22px; display: block; }
.cta-band h2 { max-width: 18ch; margin: 0 auto 22px; }
.cta-band p { margin: 0 auto 44px; color: var(--light); max-width: 50ch; }
.cta-band .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--ink-1);
  border-top: 1px solid var(--line);
  padding: 64px var(--pad-x) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: var(--cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand-sub {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 32ch;
}
.footer-col-title {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
}
.footer-domains {
  display: flex;
  gap: 20px;
}
.footer-domain {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-domain:hover { color: var(--blue-glow); }

/* ── FORM ──────────────────────────────────── */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.form-aside .lede { margin-bottom: 32px; }

.form-aside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.form-aside-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-aside-list dt {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.form-aside-list dd {
  font-size: 14px;
  color: var(--light);
}
.form-aside-list dd a { color: var(--off); text-decoration: none; border-bottom: 1px solid var(--line); transition: color .2s, border-color .2s; }
.form-aside-list dd a:hover { color: var(--blue-glow); border-color: var(--blue-soft); }

form {
  background: var(--ink-1);
  padding: clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--line-blue);
}

.fieldset { margin-bottom: 40px; }
.fieldset:last-of-type { margin-bottom: 32px; }
.fieldset-title {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.field-row.triple { grid-template-columns: 1fr 1fr 1fr; }
.field-row.address { grid-template-columns: 2fr 1fr 1fr; }
.field-row.country { grid-template-columns: 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .req { color: var(--blue-soft); margin-left: 4px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--off);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 300;
  padding: 14px 16px;
  transition: border-color .2s, background .2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.65;
  font-family: var(--sans);
}

.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8' fill='none'><path d='M1 1l6 6 6-6' stroke='%234A7AC0' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-soft);
  background: var(--ink-2);
}

.field input::placeholder, .field textarea::placeholder { color: var(--dim); }

.field-radios {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill label {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--light);
  border: 1px solid var(--line);
  padding: 11px 18px;
  cursor: pointer;
  background: var(--ink);
  transition: border-color .2s, color .2s, background .2s;
}
.radio-pill input:checked + label {
  border-color: var(--blue-soft);
  color: var(--white);
  background: var(--ink-3);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.form-consent input { margin-top: 4px; accent-color: var(--blue-soft); }
.form-consent a { color: var(--blue-soft); text-decoration: none; border-bottom: 1px solid var(--line); }
.form-consent a:hover { color: var(--blue-glow); border-color: var(--blue-soft); }

.form-submit {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.form-submit small {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}

.form-success {
  display: none;
  padding: 36px;
  border-left: 2px solid var(--blue-soft);
  background: var(--ink-2);
  font-size: 15px;
  color: var(--off);
  line-height: 1.7;
}
.form-success strong { color: var(--blue-glow); font-weight: 500; }
.form-success a { color: var(--blue-glow); text-decoration: none; border-bottom: 1px solid var(--line); transition: color .2s, border-color .2s; }
.form-success a:hover { color: var(--off); border-color: var(--blue-soft); }
form.submitted .form-success { display: block; }
form.submitted > .fieldset,
form.submitted > .form-consent,
form.submitted > .form-turnstile,
form.submitted > .form-error,
form.submitted > .form-submit,
form.submitted > .hp { display: none; }

/* Honeypot — hidden to humans, visible to bots */
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Turnstile widget container */
.form-turnstile {
  margin-bottom: 24px;
  min-height: 65px;
}

/* Error message */
.form-error {
  display: none;
  padding: 16px 20px;
  border-left: 2px solid #C25C5C;
  background: rgba(194, 92, 92, .08);
  color: var(--off);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
form.has-error .form-error { display: block; }
.form-error a { color: var(--blue-glow); text-decoration: none; border-bottom: 1px solid var(--line); }
.form-error a:hover { color: var(--off); }

/* Disabled submit while in flight */
.btn:disabled,
.btn[aria-busy="true"] {
  opacity: .6;
  cursor: wait;
  pointer-events: none;
}

/* ── PILLS / TAGS ──────────────────────────── */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.pill {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-soft);
  border: 1px solid var(--line-blue);
  padding: 7px 14px;
}

/* ── REVEAL ON SCROLL ──────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero { min-height: 88vh; padding-top: 120px; }
  .hero-meta { position: static; margin-top: 36px; align-items: flex-start; }
  .hero-meta-row { justify-content: flex-start; }

  .section-head { flex-direction: column; align-items: flex-start; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { gap: 2px; }

  .stat-grid { grid-template-columns: repeat(2, 1fr); }

  .field-row,
  .field-row.triple,
  .field-row.address,
  .field-row.country { grid-template-columns: 1fr; gap: 16px; }

  .step-body { padding-left: 0; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .h2 { font-size: clamp(28px, 8vw, 40px); }
  .btn { padding: 14px 24px; font-size: 11px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .nav-brand-sub { display: none; }
  .stat-grid { grid-template-columns: 1fr; }
}

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