:root {
      --navy: #0d1b2a;
      --gold: #c9a84c;
      --gold-light: #f0d080;
      --cream: #faf7f2;
      --charcoal: #2b2b2b;
      --mid: #5a5a5a;
      --border: #e0d8cc;
      --white: #ffffff;
      --red: #c0392b;
    }

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

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      min-height: 100vh;
      padding-bottom: 80px;
    }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--navy);
      text-align: center;
      padding: 10px 20px;
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 500;
    }




.sms-section {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.sms-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.sms-icon svg { color: var(--gold); }
.sms-content { flex: 1; }
.sms-heading { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 3px; }
.sms-sub { font-size: 12.5px; color: var(--mid); margin-bottom: 12px; line-height: 1.4; }
.sms-form { display: flex; gap: 10px; }
.sms-input {
  flex: 1; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: 5px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--charcoal); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sms-input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.sms-btn {
  flex-shrink: 0; padding: 10px 18px;
  background: var(--navy); color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: none; border-radius: 5px; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.sms-btn:hover { background: #162840; }
.sms-privacy { font-size: 10.5px; color: #bbb; margin-top: 8px; }
.sms-success {
  display: none; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: #2a7a4b; margin-top: 10px;
}




    /* ── CONFIRMATION-SPECIFIC STYLES ── */
    .confirm-wrap {
      max-width: 700px;
      margin: -40px auto 0;
      padding: 0 24px 60px;
    }

    .confirm-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(13,27,42,0.10);
    }

    .confirm-card-top {
      background: var(--navy);
      padding: 36px 28px 32px;
      text-align: center;
    }

    .confirm-checkmark {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(201,168,76,0.15);
      border: 2px solid rgba(201,168,76,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

    .confirm-checkmark svg {
      color: var(--gold);
    }

    .confirm-eyebrow {
      display: inline-block;
      background: rgba(139,26,47,0.2);
      border: 1px solid rgba(139,26,47,0.5);
      color: #c4445a;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 2px;
      margin-bottom: 16px;
    }

    .confirm-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(18px, 4vw, 28px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .confirm-title em {
      color: var(--gold);
      font-style: normal;
    }

    .confirm-sub {
      font-size: 15px;
      color: rgba(255,255,255,0.7);
      line-height: 1.65;
      max-width: 500px;
      margin: 0 auto;
      font-weight: 300;
    }

    .confirm-body {
      padding: 36px 40px;
    }

    /* ── EVENT DETAILS BOX ── */
    .event-details-box {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 22px 28px;
      margin-bottom: 32px;
    }

    .event-details-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 16px;
    }

    .event-details-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .event-detail-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 500;
      color: var(--charcoal);
    }

    .event-detail-item svg {
      color: var(--gold);
      flex-shrink: 0;
    }

    /* ── NEXT STEPS ── */
    .next-steps-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 18px;
    }

    .steps-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 32px;
    }

    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .step-num {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .step-content {
      flex: 1;
    }

    .step-heading {
      font-size: 14px;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 3px;
    }

    .step-desc {
      font-size: 13.5px;
      color: var(--mid);
      line-height: 1.6;
    }

    /* ── DIVIDER ── */
    .confirm-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 28px 0;
    }

    /* ── BONUS SECTION ── */
    .bonus-section-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 14px;
    }

    /* ── ADD TO CALENDAR ── */
    .calendar-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #8b1a2f;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border: none;
      border-radius: 5px;
      padding: 14px 28px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      width: 100%;
      justify-content: center;
      margin-top: 8px;
    }

    .calendar-btn:hover {
      background: #a82039;
      transform: translateY(-1px);
    }

    @media (max-width: 600px) {
      .confirm-body { padding: 28px 20px; }
      .event-details-box { padding: 18px 20px; }
    }

    /* ── COUNTDOWN BANNER ── */
    .countdown-banner {
      background: linear-gradient(90deg, #6b1224 0%, #8b1a2f 50%, #6b1224 100%);
      padding: 12px 20px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .countdown-label {
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .countdown-units { display: flex; gap: 8px; align-items: center; }

    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 48px;
    }

    .countdown-num {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      background: rgba(0,0,0,0.25);
      padding: 4px 10px;
      border-radius: 4px;
      min-width: 48px;
      text-align: center;
    }

    .countdown-unit-label {
      font-size: 9px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-top: 4px;
    }

    .countdown-sep {
      font-size: 22px;
      color: rgba(255,255,255,0.4);
      font-weight: 300;
      margin-bottom: 12px;
    }

    /* ── HERO ── */
    .hero {
	padding: 34px 24px 80px;
  background-color: var(--navy);
  background-image: 
	  linear-gradient(rgba(13,27,42,0.5), rgba(13,27,42,0.5)),
	  url('arrows_chain_sm.png');
  background-size: 80% auto;
  background-position: center center;
  background-repeat: no-repeat;
	text-align: center; /* ← must be here */
    }

    .hero-eyebrow {
      display: inline-block;
      background: rgba(139,26,47,0.15);
      border: 1px solid rgba(139,26,47,0.4);
      color: #c4445a;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 2px;
      margin-bottom: 28px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 5vw, 56px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.15;
      max-width: 820px;
      margin: 0 auto 20px;
    }

    .hero h1 em { color: var(--gold); font-style: normal; }

    .hero-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.78);
      max-width: 640px;
      margin: 0 auto 8px;
      line-height: 1.65;
      font-weight: 300;
    }

    .hero-sub strong { color: #fff; font-weight: 600; }

    .event-meta {
      display: inline-flex;
      gap: 32px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 14px 32px;
      border-radius: 4px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .event-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.85);
      font-size: 14px;
      font-weight: 500;
    }

    .event-meta-item svg { color: var(--gold); flex-shrink: 0; }

    /* ── MEDIA / LOGO BAR ── */
    .media-bar {
      background: transparent;
      padding: 36px 24px 20px;
      text-align: center;
    }

    .media-bar-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #bbb;
      margin-bottom: 14px;
    }

    .media-logos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 24px;
      align-items: center;
      justify-items: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .media-logo-img {
      width: 100%;
      max-width: 420px;
      height: auto;
    }

    /* ── MAIN LAYOUT ── */
    .main {
      max-width: 1100px;
      margin: -40px auto 0;
      padding: 0 24px 40px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 48px;
      align-items: start;
    }

    .left-col { display: flex; flex-direction: column; gap: 36px; }

    /* ── CARD ── */
    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }

    .card-header {
      padding: 20px 28px 16px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .card-header-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--gold);
    }

    .card-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--mid);
    }

    .card-body { padding: 28px; }

    /* ── VIDEO ── */
    .video-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--navy);
      background-image: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%);
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      border: 2px dashed rgba(201,168,76,0.35);
    }

    .play-btn {
      width: 68px; height: 68px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .play-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 0 0 12px rgba(201,168,76,0.2);
    }

    .play-btn svg { color: var(--navy); margin-left: 4px; }

    .video-caption {
      color: rgba(255,255,255,0.6);
      font-size: 13px;
      position: relative;
      z-index: 1;
      font-style: italic;
    }

    .video-embed-note {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      position: absolute;
      bottom: 10px; right: 14px;
      font-family: monospace;
    }

    /* ── TOPIC ── */
    .topic-headline {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .topic-body { font-size: 15px; line-height: 1.75; color: var(--mid); }
    .topic-body p + p { margin-top: 12px; }

    .outcomes { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

    .outcome-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14.5px;
      color: var(--charcoal);
      line-height: 1.5;
    }

    .outcome-icon {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(201,168,76,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .outcome-icon svg { color: var(--gold); }

    /* ── TESTIMONIALS ── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .testimonial {
      background: var(--cream);
      border: 1px solid var(--border);
      border-left: 4px solid var(--gold);
      border-radius: 0 6px 6px 0;
      padding: 18px 20px;
    }

    .testimonial-quote {
      font-size: 14.5px;
      line-height: 1.65;
      color: var(--charcoal);
      font-style: italic;
      margin-bottom: 14px;
    }

    .testimonial-quote::before { content: '\201C'; }
    .testimonial-quote::after  { content: '\201D'; }

    .testimonial-result {
      display: inline-block;
      background: rgba(201,168,76,0.15);
      color: #7a5c00;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 2px;
      margin-bottom: 10px;
      letter-spacing: 0.04em;
    }

    .testimonial-author { display: flex; align-items: center; gap: 10px; }

    .testimonial-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--mid);
      text-align: center;
      line-height: 1.2;
      flex-shrink: 0;
      overflow: hidden;
    }

    .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .testimonial-name { font-size: 13px; font-weight: 600; color: var(--navy); }
    .testimonial-meta { font-size: 11px; color: var(--mid); margin-top: 1px; }

    .stars {
      color: var(--gold);
      font-size: 12px;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    /* ── BIO ── */
    .bio-inner { display: flex; gap: 22px; align-items: flex-start; }

    .bio-photo {
      width: 90px; height: 90px;
      border-radius: 50%;
      background: var(--border);
      flex-shrink: 0;
      overflow: hidden;
      border: 3px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--mid);
      text-align: center;
      line-height: 1.4;
    }

    .bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .bio-text { flex: 1; }

    .bio-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px;
    }

    .bio-title {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .bio-copy { font-size: 14px; line-height: 1.65; color: var(--mid); }

    /* ── FORM CARD ── */
    .form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      position: sticky;
      top: 24px;
      box-shadow: 0 8px 40px rgba(13,27,42,0.10);
    }

    .form-card-top {
      background: var(--navy);
      padding: 24px 28px 20px;
      text-align: center;
    }

    .spots-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.35);
      color: var(--gold);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 2px;
      margin-bottom: 12px;
    }

    .spots-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #8b1a2f;
      animation: pulse 1.4s ease infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .form-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
    }

    .form-card-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; }

    .form-body { padding: 24px 28px 28px; }
    .form-group { margin-bottom: 16px; }

    label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--charcoal);
      margin-bottom: 6px;
    }

    select, input[type="text"], input[type="email"] {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 5px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: var(--charcoal);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }

    select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5a5a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }

    select:focus, input:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: #8b1a2f;
      color: #fff;
      border: none;
      border-radius: 5px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s, transform 0.15s;
    }

    .submit-btn:hover { background: #a82039; transform: translateY(-1px); }
    .submit-btn:active { transform: translateY(0); }

    .privacy-note {
      text-align: center;
      font-size: 11.5px;
      color: #aaa;
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    /* ── BONUS REPORT TEASER ── */
    .bonus-teaser {
      background: linear-gradient(135deg, #0d1b2a 0%, #162840 100%);
      border-radius: 7px;
      padding: 18px 20px;
      margin-bottom: 20px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      border: 1px solid rgba(201,168,76,0.3);
      position: relative;
      overflow: hidden;
    }

    .bonus-teaser::before {
      content: '';
      position: absolute;
      top: -20px; right: -20px;
      width: 100px; height: 100px;
      border-radius: 50%;
      background: rgba(201,168,76,0.07);
    }

    .bonus-report-cover {
      flex-shrink: 0;
      width: 62px; height: 80px;
      background: var(--gold);
      border-radius: 3px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      position: relative;
      box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
      overflow: hidden;
    }

    .bonus-report-cover::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 0; height: 0;
      border-style: solid;
      border-width: 0 14px 14px 0;
      border-color: transparent rgba(13,27,42,0.4) transparent transparent;
    }

    .bonus-report-cover svg { color: var(--navy); }

    .bonus-report-cover-label {
      font-size: 7px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--navy);
      text-align: center;
      line-height: 1.2;
      padding: 0 5px;
    }

    .bonus-info { flex: 1; min-width: 0; }

    .bonus-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 2px;
      margin-bottom: 7px;
    }

    .bonus-title {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 5px;
    }

    .bonus-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }

    .bonus-download-note {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 8px;
      font-size: 11px;
      color: var(--gold);
      font-weight: 600;
    }

    .bonus-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 20px; }

    /* ── SOCIAL PROOF STRIP ── */
    .social-strip {
      display: flex;
      gap: 20px;
      padding: 16px 28px;
      border-top: 1px solid var(--border);
    }

    .social-stat { flex: 1; text-align: center; }

    .social-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
    }

    .social-stat-label { font-size: 11px; color: var(--mid); margin-top: 2px; }

    /* ── MOBILE STICKY CTA ── */
    .mobile-sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--navy);
      border-top: 2px solid #8b1a2f;
      padding: 14px 20px;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    }

    .mobile-sticky-text { flex: 1; }
    .mobile-sticky-title { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
    .mobile-sticky-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }

    .mobile-sticky-btn {
      flex-shrink: 0;
      background: #8b1a2f;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      padding: 12px 18px;
      cursor: pointer;
      white-space: nowrap;
      text-decoration: none;
      display: inline-block;
    }

    /* ── FOOTER ── */
    .footer {
      text-align: center;
      padding: 30px 24px;
      border-top: 1px solid var(--border);
      font-size: 12px;
      color: #bbb;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 820px) {
      body { padding-bottom: 90px; }
      .main { grid-template-columns: 1fr; margin-top: 24px; }
      .left-col { order: 2; }
      .form-card { order: 1; position: static; margin-bottom: 8px; }
      .form-row { grid-template-columns: 1fr; }
      .event-meta { flex-direction: column; gap: 10px; }
      .bio-inner { flex-direction: column; align-items: center; text-align: center; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .media-logos { grid-template-columns: 1fr; gap: 16px; }
      .media-logo-img { max-width: 320px; }
      .mobile-sticky-cta { display: flex; }
	   .topbar {font-size: .8rem;}
	  .hero-eyebrow {
    font-size: 0.6rem;
  }
	
    }
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.4rem !important;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p, li, label {
    font-size: 0.95rem;
  }

  .hero-eyebrow {
    font-size: 0.8rem;}
	
 .topbar {
	 font-size: .7rem;}
}