:root {
      --navy: #0b1a30;          /* deep navy matched to title graphic */
      --navy-2: #122742;
      --red: #9e1b32;           /* patriotic red */
      --red-bright: #b8233e;
      --red-dark: #7a1426;
      --gold: #b08d3a;          /* muted aged-gilt accent */
      --gold-light: #d9b865;
      --parchment: #f4ecd8;     /* aged paper */
      --parchment-2: #efe5cc;
      --cream: #faf5e9;
      --charcoal: #2b2620;
      --mid: #6a6052;
      --border: #ddd0b3;
      --border-dark: #c9b78f;
      --white: #ffffff;
      --ink: #2b2620;
    }

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

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--parchment);
      background-image:
        radial-gradient(circle at 20% 15%, rgba(176,141,58,0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(20,35,59,0.04) 0%, transparent 45%);
      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;
    }

    /* ── COUNTDOWN BANNER (now the top band of the capture card) ── */
    .countdown-banner {
      background: linear-gradient(180deg, #ffb842,#cc9334);
      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.9);
      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.22);
      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.7);
      margin-top: 4px;
    }

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

    /* ── HERO ── */
    .hero {
      padding: 40px 24px 50px;
      background-color: var(--navy);
      background-image:
        linear-gradient(rgba(20,35,59,0.86), rgba(20,35,59,0.92)),
        url('parchment-flag.png');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      text-align: center;
      position: relative;
      border-bottom: 3px solid var(--gold);
    }

    /* Visually hidden but available to screen readers + search engines */
    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ── HERO IMAGE BANNER ── */
    .hero-banner {
      background: #06101f;
      border-bottom: 3px solid var(--gold);
      line-height: 0;
    }
    .hero-banner-img {
      display: block;
      width: 100%;
      max-width: 1200px;
      height: auto;
      margin: 0 auto;
    }

    /* ── HERO CAPTURE CARD (countdown + email form as one bound unit) ── */
    .capture-card {
      max-width: 772px;
      margin: 24px auto 0;
      position: relative;
      z-index: 3;
      background: var(--white);
      border: 1px solid var(--border-dark);
      border-top: 4px solid var(--gold);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(20,35,59,0.18);
    }
    .capture-body { padding: 22px 28px 20px; text-align: center; }
    .capture-headline {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .capture-card .infusion-form { margin: 0; }
    /* Infusionsoft's timezone script can inject a visible select — keep it out of the row */
    .capture-card select[name="inf_field_TimeZone"],
    .capture-card .infusion-field-input-container > input[type="hidden"] { display: none; }

    .reg-bar-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: nowrap;
    }
    .reg-bar-row .reg-bar-input {
      flex: 1 1 auto;
      width: auto;
      min-width: 0;
      margin: 0;
      padding: 14px 16px;
      font-size: 16px;
      border: 2px solid var(--border-dark);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .reg-bar-row .reg-bar-input:focus {
      outline: none;
      border-color: var(--red);
      box-shadow: 0 0 0 4px rgba(158,27,50,0.15);
    }
    .reg-bar-row .reg-bar-btn {
      flex: 0 0 auto;
      width: auto;
      margin: 0;
      padding: 14px 28px;
      font-size: 15px;
      white-space: nowrap;
      box-shadow: 0 4px 14px rgba(158,27,50,0.35);
    }
    .reg-bar-privacy {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: 11.5px;
      color: var(--mid);
      margin-top: 12px;
    }
    .reg-bar-privacy svg { flex-shrink: 0; }

    /* First-fold trust strip */
    .capture-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .capture-trust-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
    .capture-trust-text {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--charcoal);
      letter-spacing: 0.02em;
    }

    /* Decorative star row */
    .hero-stars {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--gold);
      font-size: 14px;
      letter-spacing: 6px;
    }

    .hero-eyebrow {
      display: inline-block;
      background: rgba(158,27,50,0.22);
      border: 1px solid rgba(158,27,50,0.55);
      color: #e08a98;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 2px;
      margin-bottom: 26px;
    }

    .hero-eyebrow span { color: #fff; }

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

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

    .hero-presenter {
      font-size: 14px;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.6);
      font-weight: 300;
      margin: 0 0 20px;
    }
    .hero-presenter span { color: var(--gold-light); font-weight: 500; }

    .hero-sub {
      font-size: 19px;
      color: rgba(255,255,255,0.82);
      max-width: 680px;
      margin: 0 auto 14px;
      line-height: 1.7;
      font-weight: 300;
    }

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

    .hero-sub em { color: var(--gold-light); font-style: italic; }

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

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

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

    /* ── SINGLE-COLUMN MAIN LAYOUT ── */
    .main {
      max-width: 820px;
      margin: 40px auto 0;
      padding: 0 24px 40px;
      display: flex;
      flex-direction: column;
      gap: 36px;
      position: relative;
      z-index: 2;
    }

    /* ── CARD ── */
    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(20,35,59,0.06);
    }

    .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(--red);
    }

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

    .card-body { padding: 28px; }

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

    .topic-body { font-size: 17px; line-height: 1.8; color: var(--mid); }
    .topic-body p + p { margin-top: 14px; }
    .topic-body em { color: var(--red); font-style: italic; }
    .topic-body strong { color: var(--charcoal); }

    .outcomes { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }

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

    .outcome-icon {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: rgba(158,27,50,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

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

    /* ── FIVE STATES STAIRCASE ── */
    .states-section {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(20,35,59,0.06);
    }

    .states-intro {
      background: var(--navy);
      padding: 32px 28px;
      text-align: center;
      border-bottom: 3px solid var(--gold);
    }

    .states-intro-eyebrow {
      display: inline-block;
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .states-intro h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 4vw, 30px);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .states-intro h2 em { color: var(--gold-light); font-style: normal; }

    .states-intro p {
      font-size: 16px;
      color: rgba(255,255,255,0.72);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.65;
      font-weight: 300;
    }

    .staircase { padding: 28px; display: flex; flex-direction: column; gap: 0; }

    .state-step {
      position: relative;
      display: flex;
      align-items: stretch;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 7px;
      overflow: hidden;
      margin-bottom: 14px;
      background: var(--cream);
      transition: transform 0.15s, box-shadow 0.15s;
    }

    .state-step:hover { transform: translateX(4px); box-shadow: 0 4px 18px rgba(20,35,59,0.1); }

    /* progressive indentation to feel like a staircase */
    .state-step.s1 { margin-left: 0; }
    .state-step.s2 { margin-left: 3%; }
    .state-step.s3 { margin-left: 6%; }
    .state-step.s4 { margin-left: 9%; }
    .state-step.s5 { margin-left: 12%; border: 2px solid var(--gold); background: linear-gradient(135deg, #fff 0%, var(--cream) 100%); }

    .state-num-col {
      flex-shrink: 0;
      width: 64px;
      background: var(--navy);
      color: var(--gold-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      gap: 2px;
    }

    .state-step.s5 .state-num-col { background: var(--red); color: #fff; }

    .state-num-label { font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }
    .state-num { font-size: 26px; font-weight: 700; line-height: 1; }

    .state-content { flex: 1; padding: 16px 20px; min-width: 0; }

    .state-name {
      font-family: 'Playfair Display', serif;
      font-size: 19px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
    }

    .state-step.s5 .state-name { color: var(--red); }

    .state-tagline {
      font-size: 13px;
      font-weight: 600;
      color: var(--mid);
      font-style: italic;
      margin-top: 2px;
      margin-bottom: 8px;
    }

    .state-declaration {
      font-size: 15px;
      color: var(--charcoal);
      line-height: 1.55;
      padding: 8px 12px;
      background: rgba(20,35,59,0.04);
      border-left: 3px solid var(--gold);
      border-radius: 0 4px 4px 0;
    }

    .state-step.s5 .state-declaration { border-left-color: var(--red); background: rgba(158,27,50,0.06); }

    .state-declaration strong { color: var(--navy); font-weight: 600; }

    .states-flag {
      text-align: center;
      font-size: 26px;
      margin-top: 4px;
    }

    /* ── 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(--red);
      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(158,27,50,0.12);
      color: var(--red-dark);
      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-name { font-size: 13px; font-weight: 600; color: var(--navy); }

    .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;
    }

    .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(--red);
      margin-bottom: 10px;
    }

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

    /* ── REGISTRATION FORM (inline, single column) ── */
    .form-card {
      background: var(--white);
      border: 1px solid var(--border-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(20,35,59,0.12);
      width: 100%;
    }

    .form-card-top {
      background: var(--navy);
      padding: 26px 28px 22px;
      text-align: center;
      border-bottom: 3px solid var(--gold);
    }

    /* Edge-to-edge title-graphic header for the bottom form */
    .form-card-img-top {
      line-height: 0;
      border-bottom: 3px solid var(--gold);
      background: var(--navy);
    }
    .form-title-img {
      display: block;
      width: 100%;
      height: auto;
    }

    .spots-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(158,27,50,0.2);
      border: 1px solid rgba(158,27,50,0.45);
      color: #e08a98;
      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: var(--red-bright);
      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: 22px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
    }

    /* Hero form: single bold headline replaces the old pill + subline */
    .hero-form .form-card-top { padding: 28px 28px 26px; }
    .hero-form .form-card-title {
      font-size: 26px;
      font-weight: 900;
      line-height: 1.2;
    }

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

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

    /* Date / time / format line in the cream form area */
    .form-event-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px 22px;
      padding: 12px 16px;
      margin-bottom: 20px;
      background: rgba(20,35,59,0.04);
      border: 1px solid var(--border);
      border-radius: 6px;
    }
    .form-event-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--navy);
    }
    .form-event-item svg { color: var(--gold); flex-shrink: 0; }

    /* Live event banner inside the form */
    .live-banner {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(158,27,50,0.08);
      border: 1px solid rgba(158,27,50,0.25);
      border-radius: 6px;
      padding: 10px 14px;
      margin-bottom: 20px;
    }
    .live-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--red);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 3px;
      flex-shrink: 0;
    }
    .live-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
      animation: livePulse 1.6s ease-out infinite;
    }
    @keyframes livePulse {
      0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
      70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }
    .live-cam { color: var(--red); flex-shrink: 0; }
    .live-text {
      font-size: 13px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.3;
    }

    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-dark);
      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='%236a6052' 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(--red);
      box-shadow: 0 0 0 3px rgba(158,27,50,0.15);
    }

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

    /* Title / First / Last on one row (must follow .form-row to win cascade) */
    .form-row-name { grid-template-columns: 0.6fr 1fr 1fr; }
    .form-row-name .form-group { min-width: 0; }
    .form-row-name .form-control { min-width: 0; }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: var(--red);
      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: var(--red-bright); transform: translateY(-1px); }
    .submit-btn:active { transform: translateY(0); }

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

    /* ── BONUS REPORT TEASER ── */
    .bonus-teaser {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
      border-radius: 7px;
      padding: 18px 20px;
      margin-bottom: 20px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      border: 1px solid rgba(176,141,58,0.4);
      position: relative;
      overflow: hidden;
    }

    .bonus-teaser::before {
      content: '';
      position: absolute;
      top: -20px; right: -20px;
      width: 100px; height: 100px;
      border-radius: 50%;
      background: rgba(176,141,58,0.08);
    }

    .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(20,35,59,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.6); line-height: 1.5; }

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

    /* ── DEDICATED BONUS REPORT SECTION ── */
    .bonus-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
      border: 1px solid rgba(176,141,58,0.45);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(11,26,48,0.12);
      display: flex;
      align-items: center;
      gap: 32px;
      padding: 36px 40px;
    }
    .bonus-section-cover { flex-shrink: 0; }
    .bonus-report-cover-lg {
      width: 120px;
      height: 156px;
      gap: 8px;
    }
    .bonus-report-cover-lg::after { border-width: 0 22px 22px 0; }
    .bonus-report-cover-lg .bonus-report-cover-label {
      font-size: 11px;
      letter-spacing: 0.12em;
    }
    .bonus-section-body { flex: 1; min-width: 0; }
    .bonus-section-body .bonus-badge { margin-bottom: 12px; }
    .bonus-section-title-lg {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 3.5vw, 26px);
      font-weight: 900;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 12px;
    }
    .bonus-section-desc {
      font-size: 15.5px;
      line-height: 1.7;
      color: rgba(255,255,255,0.72);
      margin-bottom: 18px;
      font-weight: 300;
    }
    .bonus-section-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 24px;
      margin-bottom: 22px;
    }
    .bonus-section-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold-light);
    }
    .bonus-section-meta-item svg { flex-shrink: 0; }
    .bonus-section-btn {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 5px;
      padding: 14px 28px;
      transition: background 0.2s, transform 0.15s;
    }
    .bonus-section-btn:hover { background: var(--red-bright); transform: translateY(-1px); }

    /* ── SECTION INTRO HEADINGS (single col) ── */
    .section-heading {
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }
    .section-heading .eyebrow {
      display: inline-block;
      color: var(--red);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .section-heading h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 4vw, 30px);
      font-weight: 900;
      color: var(--navy);
      line-height: 1.2;
    }

    /* ── SMS REMINDER (confirmation) ── */
    .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-light); }
    .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-dark); 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(--red);
      box-shadow: 0 0 0 3px rgba(158,27,50,0.15);
    }
    .sms-btn {
      flex-shrink: 0; padding: 10px 18px;
      background: var(--navy); color: var(--gold-light);
      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: var(--navy-2); }
    .sms-privacy { font-size: 10.5px; color: var(--mid); margin-top: 8px; }

    /* ── CONFIRMATION-SPECIFIC ── */
    .confirm-wrap {
      max-width: 700px;
      margin: -50px auto 0;
      padding: 0 24px 60px;
      position: relative;
      z-index: 2;
    }

    .confirm-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(20,35,59,0.12);
    }

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

    .confirm-checkmark {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(176,141,58,0.18);
      border: 2px solid rgba(176,141,58,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

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

    .confirm-eyebrow {
      display: inline-block;
      background: rgba(158,27,50,0.2);
      border: 1px solid rgba(158,27,50,0.5);
      color: #e08a98;
      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-light); font-style: normal; }

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

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

    .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-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-light);
      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; }

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

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

    .calendar-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      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: var(--red-bright); transform: translateY(-1px); }

    /* ── 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: var(--mid);
      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; }

    /* ── 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 var(--red);
      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.55); margin-top: 2px; }

    .mobile-sticky-btn {
      flex-shrink: 0;
      background: var(--red);
      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: var(--mid);
    }

    .footer a { color: var(--red); }

    /* ── RESPONSIVE ── */
    @media (max-width: 820px) {
      body { padding-bottom: 90px; }
      .main { margin-top: 28px; }
      .capture-card { margin: 20px 16px 0; }
      .capture-headline { font-size: 17px; }
      .reg-bar-row { flex-wrap: wrap; }
      .reg-bar-row .reg-bar-input { flex: 1 1 100%; }
      .reg-bar-row .reg-bar-btn { flex: 1 1 100%; width: 100%; padding: 14px; }
      .countdown-num { font-size: 20px; min-width: 40px; padding: 4px 7px; }
      .countdown-unit { min-width: 40px; }
      .countdown-label { font-size: 12px; }
      .bonus-section { flex-direction: column; text-align: center; padding: 30px 24px; gap: 22px; }
      .bonus-section-meta { justify-content: center; }
      .hero-banner-img { max-width: 100%; }
      .form-row { grid-template-columns: 1fr; }
      .form-row-name { grid-template-columns: 0.7fr 1fr 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; }
      .state-step.s2, .state-step.s3, .state-step.s4, .state-step.s5 { margin-left: 0; }
    }

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

    @media (max-width: 480px) {
      .hero h1 { font-size: 1.5rem !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; }
      .state-num-col { width: 52px; }
      .sms-form { flex-direction: column; }
      .form-row-name { grid-template-columns: 1fr 1fr; }
      .form-row-name .form-group:first-child { grid-column: 1 / -1; }
    }
