/* ─────────────────────────────────────────────────────────
   Elevation AI · cuss2.app
   Brand: Poppins (headings) · Inter (body) · JetBrains Mono (accents)
   Patterned after Financials seed-deck.css + Financials index.html
   ───────────────────────────────────────────────────────── */

:root {
  /* Backgrounds */
  --bg:           #070b13;
  --bg-alt:       #0b0f1a;
  --surface:      #111827;
  --surface-2:    #0e1525;

  /* Borders */
  --border:        rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);

  /* Accent (cyan) */
  --accent:         #22d3ee;
  --accent-hover:   #67e8f9;
  --accent-strong:  #06b6d4;
  --accent-bg:      rgba(34,211,238,0.06);
  --accent-border:  rgba(34,211,238,0.2);
  --accent-glow:    rgba(34,211,238,0.18);

  /* Validation red */
  --red:            #ef4444;
  --red-soft:       #f87171;
  --red-border:     rgba(239,68,68,0.45);
  --red-bg:         rgba(239,68,68,0.10);

  /* Amber — used to make the two offer cards stand out from the cyan baseline */
  --amber:          #fb923c;
  --amber-hover:    #fdba74;
  --amber-bg:       rgba(251,146,60,0.06);
  --amber-border:   rgba(251,146,60,0.30);
  --amber-glow:     rgba(251,146,60,0.20);

  /* Text */
  --text:  #f8fafc;
  --body:  #d1dae8;
  --muted: #b8c5d4;
  --dim:   #cbd5e1;

  /* Geometry */
  --radius:     8px;
  --radius-sm:  6px;
  --radius-lg:  12px;
  --max:        1100px;
  --max-narrow: 780px;
}

/* ── Reset ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-narrow); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,11,19,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 42px; width: auto; object-fit: contain; display: block; }
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  color: var(--body); font-size: 14px; font-weight: 500;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--text); }

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  letter-spacing: -0.02em;
}
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent-border);
  display: inline-block;
  margin-bottom: 24px;
}
.section-title {
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 18px;
  color: var(--body);
  max-width: 720px;
  line-height: 1.55;
  margin-bottom: 48px;
}
.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-border);
  transition: border-color 0.15s, color 0.15s;
}
.inline-link:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent);
}
.mono { font-family: 'JetBrains Mono', monospace; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,211,238,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 60% 100% at 50% 100%, rgba(34,211,238,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -200px; left: 50%;
  width: 900px; height: 600px;
  margin-left: -450px;
  background: radial-gradient(ellipse, rgba(34,211,238,0.18) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

/* Hero round logo badge — patterned after Financials index.html .hero-logo */
.hero-logo {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(160deg, #162033 0%, #111827 40%, #0d1320 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  border: 2px solid var(--accent);
  outline: 6px solid var(--accent-glow);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.55),
    0 0 60px rgba(34,211,238,0.25),
    0 0 120px rgba(34,211,238,0.10),
    inset 0 4px 12px rgba(0,0,0,0.7),
    inset 0 -2px 6px rgba(255,255,255,0.04);
  overflow: hidden;
}
.hero-logo img { width: 128px; height: 128px; object-fit: contain; }

.event-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 19px;
  color: var(--body);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn {
  display: inline-block;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #062028;
  box-shadow: 0 4px 24px rgba(34,211,238,0.28);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #062028;
  box-shadow: 0 6px 32px rgba(34,211,238,0.45);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent-border);
}
.btn-secondary:hover {
  background: var(--accent-bg);
  border-color: var(--accent-strong);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(34,211,238,0.12);
}
.hero-presenters {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 28px;
}
.hero-presenters strong {
  color: var(--text);
  font-weight: 600;
}
.meeting-meta {
  font-size: 13px;
  color: var(--muted);
}
.meeting-meta .mono {
  font-size: 10.5px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-right: 4px;
}
.meeting-meta .dot { color: var(--border-strong); margin: 0 8px; }

/* ── Styled hero strip (between Hero and Why) ── */
.industry-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.industry-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background:
    /* Diagonal scanlines */
    repeating-linear-gradient(
      135deg,
      rgba(34,211,238,0.025) 0px,
      rgba(34,211,238,0.025) 2px,
      transparent 2px,
      transparent 10px
    ),
    /* Cyan glow at left + right */
    radial-gradient(ellipse 60% 80% at 25% 50%, rgba(34,211,238,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(8,145,178,0.12) 0%, transparent 60%),
    /* Base diagonal gradient */
    linear-gradient(135deg, #0a1220 0%, #111827 50%, #0a1220 100%);
}

/* ── Agenda section ── */
.section-agenda {
  background: var(--bg);
  padding: 80px 0;
  background-image:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(34,211,238,0.05) 0%, transparent 70%);
}
.agenda-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.agenda-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.agenda-list li:hover {
  border-color: var(--accent-border);
  border-left-color: var(--accent);
  background: linear-gradient(90deg, rgba(34,211,238,0.04) 0%, var(--surface) 60%);
  transform: translateX(2px);
}
.agenda-num {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
}
.agenda-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
}
.agenda-note {
  margin-top: 24px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ── Sections ── */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-alt {
  background: var(--bg-alt);
  background-image:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(34,211,238,0.04) 0%, transparent 70%);
}

/* ── Pillars (3-up) ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pillar:hover {
  border-color: var(--accent-border);
  box-shadow: 0 8px 32px rgba(34,211,238,0.10);
  transform: translateY(-2px);
}
.pillar-tag {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}
.pillar h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar p { font-size: 14.5px; color: var(--body); line-height: 1.55; }

/* ── Offers (2-up cards) ── */
.offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.offer-card {
  background:
    linear-gradient(180deg, var(--surface) 0%, rgba(251,146,60,0.04) 100%),
    var(--surface);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.offer-card:hover {
  border-color: var(--amber);
  box-shadow: 0 12px 40px var(--amber-glow);
  transform: translateY(-3px);
}
.offer-card:hover::before { opacity: 1; }
.offer-tag {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 16px;
}
.offer-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 16px;
}
.offer-body {
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.55;
  margin-bottom: 20px;
}
.offer-points {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.offer-points li {
  font-size: 14.5px;
  color: var(--body);
  padding: 6px 0 6px 26px;
  position: relative;
  line-height: 1.5;
}
.offer-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}
.offer-card .btn { align-self: flex-start; }
/* Offer cards get an amber primary button to match the card accent */
.offer-card .btn-primary {
  background: var(--amber);
  color: #2a1408;
  box-shadow: 0 4px 24px var(--amber-glow);
}
.offer-card .btn-primary:hover {
  background: var(--amber-hover);
  color: #2a1408;
  box-shadow: 0 6px 32px rgba(251,146,60,0.40);
}

/* ── Creds (3-up stat-style) ── */
.creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 24px;
}
.cred {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(34,211,238,0.08), 0 4px 24px rgba(0,0,0,0.35);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cred:hover {
  box-shadow: inset 0 1px 0 rgba(34,211,238,0.12), 0 8px 32px rgba(34,211,238,0.18);
  transform: translateY(-2px);
}
.cred-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(34,211,238,0.3);
}
.cred-label {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.45;
}
.cred-foot {
  font-size: 14.5px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  margin-top: 24px;
}

/* ── Waitlist form ── */
.waitlist-form {
  margin-top: 24px;
  background:
    linear-gradient(180deg, var(--surface) 0%, rgba(34,211,238,0.02) 100%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.45), 0 0 80px rgba(34,211,238,0.04);
  position: relative;
  overflow: hidden;
}
.waitlist-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  opacity: 0.6;
}

.form-section {
  border: none;
  margin-bottom: 32px;
  padding: 0;
}
.form-section:last-of-type { margin-bottom: 24px; }
.form-legend {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.form-step {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  padding: 4px 8px;
  border-radius: 4px;
}
.form-optional {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* Offer radio cards */
.offer-radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.offer-radio { cursor: pointer; }
.offer-radio:nth-child(3) { grid-column: 1 / -1; }
.offer-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.offer-radio-card {
  display: block;
  background: var(--surface-2);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  position: relative;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.15s;
  height: 100%;
}
.offer-radio:hover .offer-radio-card {
  border-color: var(--accent-border);
  transform: translateY(-1px);
}
.offer-radio input:checked + .offer-radio-card {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(34,211,238,0.10) 0%, rgba(34,211,238,0.04) 100%),
    var(--surface-2);
  box-shadow: 0 8px 28px rgba(34,211,238,0.20), inset 0 1px 0 rgba(34,211,238,0.15);
}
.offer-radio input:focus-visible + .offer-radio-card {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.offer-radio-tag {
  display: block;
  font-size: 10.5px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}
.offer-radio-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
  padding-right: 28px;
}
.offer-radio-desc {
  display: block;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
}
.offer-radio-card-mini { padding: 16px 22px; }
.offer-radio-card-mini .offer-radio-name { margin-bottom: 0; }
.offer-radio-card-mini .offer-radio-desc { display: none; }
.offer-radio-check {
  position: absolute;
  top: 18px; right: 18px;
  width: 22px; height: 22px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  background: var(--bg);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.offer-radio input:checked + .offer-radio-card .offer-radio-check {
  border-color: var(--accent);
  background: var(--accent);
  color: #062028;
  font-weight: 800;
}

/* Identity fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.form-field { display: flex; flex-direction: column; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-bottom: 6px;
}

/* Red asterisk for required inputs/textareas */
.form-field:has(input[required]) > label::after,
.form-field:has(textarea[required]) > label::after {
  content: ' *';
  color: var(--red-soft);
  font-weight: 700;
  margin-left: 2px;
  text-shadow: 0 0 8px rgba(239,68,68,0.4);
}

/* Red asterisk on the fieldset legend if the fieldset contains a required input */
.form-section:has(input[required]):not(:has(.form-optional)) > .form-legend::after,
.form-section:has(textarea[required]):not(:has(.form-optional)) > .form-legend::after {
  content: '*';
  color: var(--red-soft);
  font-weight: 700;
  font-size: 18px;
  margin-left: 2px;
  text-shadow: 0 0 8px rgba(239,68,68,0.4);
}
.form-field input,
.form-field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.65;
}
.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--accent-border);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.12);
}
.form-field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

/* Character counter under the textarea */
.form-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.form-counter.over-80 { color: var(--accent); }
.form-counter.over-80 #f-notes-count { color: var(--accent); font-weight: 700; }

/* Honeypot — visually hidden, accessible-text removed for bots-only field */
.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Validation: only show after submit attempt */
.was-validated .form-field input:invalid,
.was-validated .form-field textarea:invalid {
  border-color: var(--red-border);
  background: var(--red-bg);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}
.was-validated .form-field:has(input:invalid) > label,
.was-validated .form-field:has(textarea:invalid) > label {
  color: var(--red-soft);
}
.was-validated .form-section:has(input[name="offer"]:invalid) .offer-radio-card {
  border-color: var(--red-border);
}

/* Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.btn-submit {
  align-self: flex-start;
  padding: 16px 32px;
  font-size: 16px;
}
.form-disclaimer {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success-icon {
  font-size: 48px;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1.5px solid var(--accent);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(34,211,238,0.25);
}
.form-success h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}
.form-success p { font-size: 15px; color: var(--body); }
.form-success p a { color: var(--accent); }
.form-success-offer { color: var(--accent); }

/* ── Resources (2-up) ── */
.resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.resource {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.resource:hover {
  border-color: var(--accent-border);
  background: var(--accent-bg);
  box-shadow: 0 8px 32px rgba(34,211,238,0.12);
  transform: translateY(-2px);
}
.resource h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.resource p { font-size: 14px; color: var(--body); line-height: 1.5; margin-bottom: 12px; }
.resource-link {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Footer ── */
.site-footer {
  padding: 48px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-logo { height: 36px; width: auto; object-fit: contain; }
.footer-creds {
  font-size: 12.5px;
  color: var(--muted);
  border-left: 1px solid var(--border-strong);
  padding-left: 18px;
}
.footer-meta {
  text-align: right;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-meta a { color: var(--accent); }

/* ── Mobile ── */
@media (max-width: 760px) {
  html { scroll-padding-top: 60px; }
  .site-nav { display: none; }
  .hero { padding: 56px 0 64px; }
  .hero-logo { width: 120px; height: 120px; }
  .hero-logo img { width: 96px; height: 96px; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 17px; }
  .industry-image-wrap { height: 220px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 30px; }
  .pillars,
  .offers,
  .creds,
  .resources,
  .offer-radios,
  .form-grid { grid-template-columns: 1fr; }
  .waitlist-form { padding: 28px 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .footer-creds { border-left: none; padding-left: 0; }
  .meeting-meta .dot { display: block; visibility: hidden; height: 4px; }
}
