:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --navy-light: #1a3060;
  --gold: #c8972a;
  --gold-light: #e8b84b;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --gray-light: #e8e6e0;
  --gray-mid: #9a9590;
  --text-dark: #1a1a2e;
  --red: #8b1a1a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Source Sans 3', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }

/* TOP BAR */
.topbar { background: var(--gold); text-align: center; padding: 10px 20px; font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: .12em; color: var(--navy); font-weight: 600; }

/* NAV */
nav { background: var(--navy); border-bottom: 1px solid rgba(200,151,42,.3); padding: 14px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 48px; width: auto; background: #fff; border-radius: 6px; padding: 4px 8px; }
.logo-divider { width: 1px; height: 36px; background: rgba(200,151,42,.3); }
.logo-text { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600; color: var(--white); letter-spacing: .05em; line-height: 1.25; }
.logo-text small { display: block; font-size: 10px; font-weight: 400; letter-spacing: .18em; color: var(--gold); }
.nav-badge { background: var(--red); color: var(--white); font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .1em; padding: 6px 16px; border-radius: 2px; font-weight: 500; white-space: nowrap; }

/* HERO */
.hero { position: relative; background: var(--navy); overflow: hidden; padding: 56px 40px 0; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(200,151,42,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,151,42,.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-inner { position: relative; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }

/* HERO LEFT */
.live-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,151,42,.1); border: 1px solid rgba(200,151,42,.4); border-radius: 2px; padding: 6px 14px; margin-bottom: 22px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.live-tag span { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .15em; color: var(--gold-light); font-weight: 500; }
.hero-h1 { font-family: 'Oswald', sans-serif; font-size: 60px; font-weight: 700; line-height: 1; letter-spacing: .02em; color: var(--white); margin-bottom: 6px; }
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .sub { display: block; font-size: 36px; font-weight: 500; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-top: 6px; }
.hero-rule { width: 72px; height: 3px; background: var(--gold); margin: 20px 0; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.72; max-width: 480px; font-weight: 300; margin-bottom: 26px; }

/* META CHIPS */
.meta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.meta-chip { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 3px; padding: 8px 14px; }
.meta-chip svg { width: 15px; height: 15px; flex-shrink: 0; }
.meta-chip-text { font-size: 13px; color: rgba(255,255,255,.8); }
.meta-chip-text strong { color: #fff; font-weight: 600; }

/* TOPIC TAGS */
.topics { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 30px; }
.topic { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .1em; font-weight: 600; padding: 5px 11px; border: 1px solid rgba(200,151,42,.5); border-radius: 2px; color: var(--gold-light); background: rgba(200,151,42,.08); }

/* COUNTDOWN */
.cd-wrap { margin-bottom: 40px; }
.cd-label { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: .2em; color: var(--gray-mid); margin-bottom: 10px; text-transform: uppercase; }
.cd-units { display: flex; align-items: center; gap: 5px; }
.cd-unit { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 10px 0; text-align: center; width: 66px; }
.cd-num { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }
.cd-lbl { font-size: 9px; letter-spacing: .16em; color: var(--gray-mid); text-transform: uppercase; display: block; margin-top: 3px; }
.cd-sep { font-family: 'Oswald', sans-serif; font-size: 26px; color: var(--gold); padding-bottom: 16px; font-weight: 700; }

/* FORM CARD */
.form-card { background: var(--white); border-radius: 6px; overflow: hidden; position: relative; top: -6px; }
.form-head { background: var(--navy-mid); padding: 20px 26px 16px; border-bottom: 3px solid var(--gold); }
.form-head-title { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; color: var(--white); letter-spacing: .04em; margin-bottom: 3px; }
.form-head-sub { font-size: 12px; color: rgba(255,255,255,.6); }
.seats-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.seats-track { flex: 1; height: 4px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.seats-fill { height: 100%; width: 73%; background: var(--gold); }
.seats-text { font-size: 11px; color: var(--gold-light); font-weight: 600; white-space: nowrap; }
.form-body { padding: 20px 26px 18px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.fg { margin-bottom: 10px; }
.fg label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--text-dark); text-transform: uppercase; margin-bottom: 4px; }
.fg input, .fg select { width: 100%; height: 40px; border: 1.5px solid var(--gray-light); border-radius: 4px; padding: 0 11px; font-size: 14px; font-family: 'Source Sans 3', sans-serif; color: var(--text-dark); background: var(--off-white); -webkit-appearance: none; appearance: none; }
.fg input:focus, .fg select:focus { outline: none; border-color: var(--gold); background: #fff; }
.fg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9590' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 11px center; padding-right: 30px; background-color: var(--off-white); cursor: pointer; }
.submit-btn { width: 100%; padding: 14px; background: var(--gold); border: none; border-radius: 4px; font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: .1em; color: var(--navy); cursor: pointer; margin-top: 4px; transition: background .2s; }
.submit-btn:hover:not(:disabled) { background: var(--gold-light); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; }
.form-note { font-size: 10px; color: var(--gray-mid); text-align: center; margin-top: 8px; line-height: 1.5; }
.trust-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--gray-light); }
.trust-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--gray-mid); }
.trust-icon { width: 14px; height: 14px; border-radius: 50%; background: #e6f4ed; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* FORM ERROR / STATUS */
.form-error { font-size: 12px; color: #c0392b; margin-top: 8px; text-align: center; display: none; }
.form-error.visible { display: block; }

/* STATS STRIP */
.stats-strip { background: var(--navy-mid); border-top: 1px solid rgba(200,151,42,.15); padding: 20px 40px; margin-top: 48px; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0; }
.stat-block { text-align: center; padding: 0 32px; }
.stat-block + .stat-block { border-left: 1px solid rgba(200,151,42,.2); }
.stat-val { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.stat-key { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .07em; text-transform: uppercase; margin-top: 4px; display: block; }

/* LEARN SECTION */
.section { max-width: 1100px; margin: 0 auto; padding: 64px 40px; }
.eyebrow { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .2em; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Oswald', sans-serif; font-size: 38px; font-weight: 700; letter-spacing: .02em; color: var(--white); line-height: 1.1; margin-bottom: 36px; }
.section-title .gold { color: var(--gold); }
.learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.learn-card { background: var(--navy-mid); border: 1px solid rgba(200,151,42,.15); border-radius: 6px; padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: border-color .2s; }
.learn-card:hover { border-color: rgba(200,151,42,.4); }
.learn-num { font-family: 'Oswald', sans-serif; font-size: 34px; font-weight: 700; color: rgba(200,151,42,.2); line-height: 1; flex-shrink: 0; width: 34px; }
.learn-title { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; color: var(--white); letter-spacing: .03em; margin-bottom: 5px; }
.learn-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; font-weight: 300; }

/* AUDIENCE */
.audience-section { background: var(--navy-mid); border-top: 1px solid rgba(200,151,42,.15); border-bottom: 1px solid rgba(200,151,42,.15); padding: 60px 40px; }
.audience-inner { max-width: 1100px; margin: 0 auto; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.aud-card { background: var(--navy); border: 1px solid rgba(200,151,42,.2); border-radius: 6px; padding: 26px 20px; text-align: center; }
.aud-icon { width: 52px; height: 52px; background: rgba(200,151,42,.08); border: 1px solid rgba(200,151,42,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.aud-icon svg { width: 24px; height: 24px; }
.aud-title { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; color: var(--white); letter-spacing: .04em; margin-bottom: 6px; }
.aud-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; font-weight: 300; }

/* HOST */
.host-section { max-width: 1100px; margin: 0 auto; padding: 64px 40px; display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: center; }
.host-frame-wrap { position: relative; }
.host-frame { width: 100%; aspect-ratio: 1/1; background: #fff; border: 2px solid var(--gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 24px; overflow: hidden; }
.host-frame img { width: 100%; height: auto; object-fit: contain; }
.host-badge { position: absolute; bottom: -12px; left: 20px; right: 20px; background: var(--gold); border-radius: 4px; padding: 8px 16px; text-align: center; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--navy); }
.host-name { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; color: var(--white); letter-spacing: .03em; margin-bottom: 4px; }
.host-org { font-size: 14px; color: var(--gold); letter-spacing: .06em; font-family: 'Oswald', sans-serif; font-weight: 400; margin-bottom: 16px; }
.host-bio { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; font-weight: 300; margin-bottom: 12px; }
.host-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.htag { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .08em; font-weight: 500; padding: 4px 11px; border: 1px solid rgba(200,151,42,.4); border-radius: 2px; color: var(--gold-light); background: rgba(200,151,42,.06); }

/* FINAL CTA */
.cta-section { background: var(--navy-mid); border-top: 1px solid rgba(200,151,42,.2); text-align: center; padding: 64px 40px; }
.cta-section h2 { font-family: 'Oswald', sans-serif; font-size: 44px; font-weight: 700; letter-spacing: .04em; color: var(--white); margin-bottom: 10px; line-height: 1.1; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 28px; font-weight: 300; }
.cta-btn { display: inline-block; padding: 16px 48px; background: var(--gold); border: none; border-radius: 4px; font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: .12em; color: var(--navy); text-decoration: none; cursor: pointer; }
.cta-btn:hover { background: var(--gold-light); }

/* FOOTER */
footer { background: #060d1a; border-top: 1px solid rgba(200,151,42,.12); padding: 22px 40px; text-align: center; }
.footer-brand { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: .1em; margin-bottom: 5px; }
footer p { font-size: 11px; color: rgba(255,255,255,.22); letter-spacing: .03em; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 36px 20px 0; }
  nav { padding: 12px 20px; }
  .hero-h1 { font-size: 44px; }
  .hero-h1 .sub { font-size: 26px; }
  .form-card { top: 0; }
  .frow { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .host-section { grid-template-columns: 1fr; padding: 50px 20px; }
  .host-frame { max-width: 220px; }
  .section { padding: 50px 20px; }
  .audience-section { padding: 50px 20px; }
  .cta-section { padding: 50px 20px; }
  .stats-strip { padding: 20px; }
  .stat-block + .stat-block { border-left: none; border-top: 1px solid rgba(200,151,42,.2); padding: 12px 0; }
  .stats-inner { flex-direction: column; gap: 0; }
  footer { padding: 18px 20px; }
}
