/* ============================================================
   WaveGate — Smart Paid Access
   Theme: brushed silver + black + white. Industrial-grade contrast.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  /* Light body surfaces */
  --bg:         #FFFFFF;
  --surface:    #F4F5F7;
  --surface-2:  #E8EAEE;
  --surface-3:  #DCDEE3;
  --border:     #DCDEE3;
  --border-2:   #BFC3CA;

  /* Dark sections — hero, page-hero, cta-banner, footer, utility bar, pitch-block */
  --dark:         #0E0E10;
  --dark-2:       #18181B;
  --dark-3:       #232328;
  --border-dark:  #2A2A30;
  --border-dark-2:#3A3A42;

  /* Brushed-steel palette (the brand accent — replaces yellow) */
  --silver-1:   #ECEEF2;   /* highlight */
  --silver-2:   #C8CCD3;   /* mid */
  --silver-3:   #9097A0;   /* shadow */
  --silver-4:   #5D636B;   /* deep */
  --silver-5:   #3D4148;   /* near-black steel */

  /* Brand accent tokens (silver, used like the old yellow accent) */
  --accent:     #8E97A0;
  --accent-2:   #B5BBC4;
  --accent-3:   #5D636B;

  /* Brushed-metal gradient — for step numbers, icons, accent strokes */
  --metal:        linear-gradient(135deg, #ECEEF2 0%, #C8CCD3 35%, #9097A0 70%, #6D7480 100%);
  --metal-soft:   linear-gradient(135deg, #F4F5F7 0%, #DCDEE3 100%);
  --metal-dark:   linear-gradient(135deg, #5D636B 0%, #2A2E33 100%);

  /* Text */
  --ink:           #0E0E10;
  --text:          #1A1A1D;
  --muted:         #525258;
  --muted-2:       #7A7A82;
  --text-light:    #F2F2F4;
  --muted-light:   #A8A8B0;
  --muted-light-2: #7C7C84;

  --white:      #FFFFFF;
  --black:      #000000;

  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;

  --radius:     4px;
  --radius-lg:  6px;
  --max:        1180px;
  --max-narrow: 880px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main [id] { scroll-margin-top: 200px; }

img { max-width: 100%; display: block; }
a   { color: var(--ink); text-decoration: none; transition: color var(--transition); border-bottom: 1px solid transparent; }
a:hover { color: var(--silver-4); }
button { font: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: 0.01em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; text-transform: uppercase; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
p  { font-size: 1rem; line-height: 1.7; color: var(--muted); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
  max-width: 60ch;
}

/* Section label chip — black on light bg, brushed silver on dark bg */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: var(--ink);
  border-radius: 2px;
}

em.accent-text   { font-style: normal; color: var(--silver-4); }
.section-darker em.accent-text,
.hero em.accent-text,
.page-hero em.accent-text,
.cta-banner em.accent-text,
.pitch-block em.accent-text { color: var(--silver-2); }

.accent-text { color: var(--silver-4); }
.white-text  { color: var(--white); }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--max-narrow); }
section { padding: 96px 0; }
section.tight { padding: 56px 0; }

.section-alt    { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-darker { background: var(--dark); color: var(--text-light); }
.section-darker h1, .section-darker h2, .section-darker h3, .section-darker h4 { color: var(--white); }
.section-darker p { color: var(--muted-light); }
.section-darker .lead { color: var(--text-light); }
.section-darker .section-label {
  background: var(--metal);
  color: var(--ink);
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .lead { margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 16px; }

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-2) 50%, transparent 100%);
}

/* ── UTILITY BAR ── */
.utility-bar {
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.78rem;
  color: var(--muted-light);
}
.utility-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.utility-bar__tag {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}
.utility-bar__sep { color: var(--border-dark-2); }
.utility-bar__item { color: var(--text-light); }
.utility-bar a { color: var(--silver-2); border-bottom: 1px solid transparent; }
.utility-bar a:hover { color: var(--white); border-bottom-color: var(--silver-2); }

/* ── NAV ── */
nav[aria-label="Primary"] {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 168px;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.nav-brand:hover { color: var(--ink); }
.nav-brand img {
  height: 136px;
  width: auto;
  display: block;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--ink);
  width: 44px; height: 44px;
  border-radius: var(--radius);
  font-size: 1.4rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius);
  display: block;
  transition: all var(--transition);
  white-space: nowrap;
  font-weight: 600;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-links a:hover { color: var(--ink); background: var(--surface); }
.nav-links a.active {
  color: var(--ink);
  background: var(--surface-2);
  box-shadow: inset 0 -2px 0 var(--silver-4);
}
.nav-links a.nav-cta {
  margin-left: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 20px;
}
.nav-links a.nav-cta:hover {
  background: var(--silver-5);
  color: var(--white);
}
.nav-links a.nav-cta.active { background: var(--silver-5); color: var(--white); }

@media (max-width: 1000px) {
  .nav-inner { padding: 12px 16px; gap: 12px; height: auto; }
  .nav-brand img { height: 108px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 12px 14px; font-size: 0.98rem; }
  .nav-links a.nav-cta { margin-left: 0; text-align: center; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
/* Primary = solid black on light bg, inverts to white on dark bg */
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 6px 18px rgba(14, 14, 16, 0.18);
}
.btn-primary:hover {
  background: var(--silver-5);
  border-color: var(--silver-5);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(14, 14, 16, 0.28);
}
.btn-secondary {
  background: var(--metal);
  color: var(--ink);
  border-color: var(--silver-3);
}
.btn-secondary:hover { background: var(--silver-1); border-color: var(--silver-4); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-lg { font-size: 1rem; padding: 16px 32px; }

/* Buttons on dark sections — invert */
.section-darker .btn-primary,
.hero .btn-primary,
.cta-banner .btn-primary,
.page-hero .btn-primary,
.pitch-block .btn-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: 0 6px 22px rgba(255, 255, 255, 0.10);
}
.section-darker .btn-primary:hover,
.hero .btn-primary:hover,
.cta-banner .btn-primary:hover,
.page-hero .btn-primary:hover,
.pitch-block .btn-primary:hover {
  background: var(--silver-1);
  border-color: var(--silver-1);
  color: var(--ink);
}

.section-darker .btn-ghost,
.hero .btn-ghost,
.cta-banner .btn-ghost,
.page-hero .btn-ghost,
.pitch-block .btn-ghost {
  color: var(--white);
  border-color: var(--white);
}
.section-darker .btn-ghost:hover,
.hero .btn-ghost:hover,
.cta-banner .btn-ghost:hover,
.page-hero .btn-ghost:hover,
.pitch-block .btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 120px 0 88px;
  background: var(--dark);
  color: var(--text-light);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(200, 204, 211, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 5% 90%, rgba(200, 204, 211, 0.05) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 640px; height: 640px;
  border: 1px solid rgba(200, 204, 211, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead { color: var(--text-light); margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
}
.trust-strip__item {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted-light);
  display: flex; align-items: center; gap: 8px;
}
.trust-strip__item::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--metal);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(200, 204, 211, 0.3);
}

/* Hero visual collage tile (right column) */
.hero-visual {
  position: relative;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.60);
  overflow: hidden;
}
.hero-visual__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hero-visual__cell {
  aspect-ratio: 1 / 1;
  background: var(--dark-3);
  border: 1px solid var(--border-dark-2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.hero-visual__cell:hover {
  border-color: var(--silver-3);
  background: #2A2A30;
}
.hero-visual__cell::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(200, 204, 211, 0.08), transparent 70%);
  pointer-events: none;
}

/* Photo variant — full-bleed image with caption pinned to bottom */
.hero-visual__cell--photo { padding: 0; justify-content: flex-end; align-items: stretch; }
.hero-visual__cell--photo::before { display: none; }
.hero-visual__cell--photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.35s ease;
}
.hero-visual__cell--photo:hover img { transform: scale(1.05); }
.hero-visual__cell--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,0) 35%, rgba(14,14,16,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-visual__cell--photo .hero-visual__label {
  position: relative;
  z-index: 2;
  padding: 12px 12px 14px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
}
.hero-visual__icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.hero-visual__label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-visual__caption {
  margin-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}
.hero-visual__caption strong {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Powered-by badge in hero */
.powered-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--dark);
  border: 1px solid var(--silver-4);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
  font-family: var(--font-head);
  font-weight: 600;
  z-index: 2;
}
.powered-badge strong { color: var(--white); font-weight: 700; }

@media (max-width: 960px) {
  .hero { padding: 88px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero::after { display: none; }
  .powered-badge { top: 16px; right: 16px; }
}

/* ── PAGE HERO (non-home) ── */
.page-hero {
  padding: 88px 0 64px;
  background: var(--dark);
  color: var(--text-light);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #ECEEF2 0%, #9097A0 50%, #ECEEF2 100%) 1;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(200, 204, 211, 0.10), transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero h1 em {
  font-style: normal;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero .lead { color: var(--text-light); max-width: 64ch; }
.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted-light);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--muted-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--silver-2); }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--silver-3);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--silver-4);
  border-top-color: var(--silver-5);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(14, 14, 16, 0.10);
}
.section-alt .card { background: var(--white); }
.section-darker .card {
  background: var(--dark-2);
  border-color: var(--border-dark);
  border-top: 3px solid var(--silver-3);
  color: var(--text-light);
}
.section-darker .card:hover {
  border-color: var(--silver-3);
  border-top-color: var(--silver-1);
}
.section-darker .card h3 { color: var(--white); }
.section-darker .card p { color: var(--muted-light); }

.card-icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--metal);
  color: var(--ink);
  border-radius: var(--radius);
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
              0 2px 6px rgba(14, 14, 16, 0.12);
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; letter-spacing: 0.03em; }
.card p  { font-size: 0.92rem; margin-bottom: 0; }

/* ── INDUSTRY TILES ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.industry-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  transition: all var(--transition);
}
.industry-tile:hover {
  border-color: var(--silver-4);
  background: var(--surface);
  transform: translateY(-2px);
}
.industry-tile__icon {
  width: 58px; height: 58px;
  background: var(--metal);
  color: var(--ink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
              0 2px 6px rgba(14, 14, 16, 0.12);
}
.industry-tile__label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── STEPS / HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  list-style: none;
  position: relative;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 0 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step::after {
  content: '';
  position: absolute;
  top: 26px;
  left: 64px;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--silver-3) 0%, var(--silver-2) 100%);
  z-index: 0;
}
.section-darker .step::after {
  background: linear-gradient(90deg, var(--silver-4) 0%, var(--silver-3) 100%);
}
.step:last-child::after { display: none; }
.step__num {
  position: relative;
  z-index: 1;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--metal);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
              0 0 0 4px rgba(144, 151, 160, 0.20),
              0 2px 6px rgba(14, 14, 16, 0.18);
}
.section-darker .step__num {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
              0 0 0 4px rgba(144, 151, 160, 0.16),
              0 2px 6px rgba(0, 0, 0, 0.35);
}
.step__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.section-darker .step__title { color: var(--white); }
.step__desc { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin: 0; }
.section-darker .step__desc { color: var(--muted-light); }

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { padding: 0; flex-direction: row; align-items: flex-start; gap: 18px; }
  .step::after {
    top: 56px;
    left: 26px;
    right: auto;
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, var(--silver-3) 0%, var(--silver-2) 100%);
  }
  .step > div { flex: 1; }
}

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--silver-4);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.feature-list li:hover { border-left-color: var(--ink); }
.feature-list li h4 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.feature-list li p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ── INVESTOR PITCH BLOCK ── */
.pitch-block {
  background: var(--dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.pitch-block::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 360px; height: 360px;
  border: 1px solid rgba(200, 204, 211, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.pitch-block h2 { color: var(--white); margin-bottom: 18px; }
.pitch-block h2 em {
  font-style: normal;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pitch-block p { color: var(--muted-light); }
.pitch-block .section-label {
  background: var(--metal);
  color: var(--ink);
}
.pitch-block ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pitch-block ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text-light);
}
.pitch-block ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--silver-2);
  font-weight: 800;
}
@media (max-width: 880px) {
  .pitch-block { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
}

/* ── FORM ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--silver-4);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 8px 24px rgba(14, 14, 16, 0.08);
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 24px; font-size: 0.92rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group { display: flex; flex-direction: column; margin-bottom: 14px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(14, 14, 16, 0.10);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-note { margin-top: 12px; font-size: 0.82rem; color: var(--muted); }

/* ── FORM TABS ── */
.form-tabs { display: flex; gap: 0; margin-bottom: 28px; flex-wrap: wrap; }
.form-tab {
  flex: 1;
  min-width: 110px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.form-tab + .form-tab { border-left: none; }
.form-tab:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.form-tab:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.form-tab:hover { color: var(--ink); background: var(--surface-2); }
.form-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.form-panel { display: none; }
.form-panel.active { display: block; }

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--silver-4);
  border-radius: var(--radius);
}
.contact-detail__icon {
  width: 46px; height: 46px;
  background: var(--metal);
  color: var(--ink);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
              0 2px 5px rgba(14, 14, 16, 0.12);
}
.contact-detail h4 { margin-bottom: 4px; color: var(--ink); }
.contact-detail p  { margin: 0; font-size: 0.92rem; color: var(--muted); }
.contact-detail p a { color: var(--ink); border-bottom: 1px solid var(--silver-3); }
.contact-detail p a:hover { color: var(--silver-4); border-bottom-color: var(--ink); }

/* ── CTA BANNER ── */
.cta-banner {
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200, 204, 211, 0.18), transparent 70%),
    var(--dark);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, #ECEEF2 0%, #9097A0 50%, #ECEEF2 100%) 1;
  text-align: center;
  padding: 96px 24px;
  color: var(--text-light);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner h2 em {
  font-style: normal;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-banner .lead { color: var(--text-light); margin: 0 auto 32px; }
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 64px 0 28px;
  color: var(--muted-light);
  font-size: 0.9rem;
}
footer h4 { color: var(--white); }
footer p  { color: var(--muted-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img {
  height: 144px;
  width: auto;
  /* Logo is dark on transparent — invert for the black footer.
     Once an owner-provided light variant lands, drop the filter. */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand p { margin-top: 16px; max-width: 36ch; font-size: 0.88rem; }
.footer-cta {
  color: var(--silver-1);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--silver-3);
}
.footer-cta:hover { color: var(--white); border-bottom-color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted-light); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted-light-2);
}

/* ── MISC ── */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.note-box {
  margin-top: 32px;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--silver-4);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.94rem;
}
.note-box strong { color: var(--ink); }
.section-darker .note-box {
  background: var(--dark-2);
  border-color: var(--border-dark);
  border-left-color: var(--silver-2);
  color: var(--text-light);
}
.section-darker .note-box strong { color: var(--white); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--silver-3); border-left-color: var(--ink); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.faq-question:hover { color: var(--silver-5); }
.faq-icon {
  color: var(--white);
  font-size: 1.2rem;
  transition: transform var(--transition);
  background: var(--ink);
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--silver-5); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; padding: 0 22px 18px; }
.faq-answer p { font-size: 0.92rem; margin: 0; color: var(--muted); }

/* Focus visibility */
:focus-visible {
  outline: 3px solid var(--silver-4);
  outline-offset: 2px;
}
