:root {
  --teal:         #008080;
  --purple:       #590BD5;
  --text:         #161622;
  --text-2:       #3D3D55;
  --muted:        #676780;
  --bg:           #FFFFFF;
  --off:          #F8F9FC;
  --border:       #E6E8F0;
  --teal-faint:   rgba(0,128,128,.06);
  --teal-light:   rgba(0,128,128,.12);
  --teal-line:    rgba(0,128,128,.25);
  --purple-faint: rgba(89,11,213,.05);

  --dark-bg:      #1A1A2E;
  --dark-surface: #232338;
  --dark-border:  rgba(255,255,255,.10);
  --dark-text:    #E8EAF2;
  --dark-text-2:  #B8BECE;
  --dark-muted:   #8E95A8;
  --teal-hc:         #4CC7C1;
  --teal-hc-faint:   rgba(76,199,193,.10);
  --teal-hc-border:  rgba(76,199,193,.28);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: var(--text); margin: 0; }
p { color: var(--text-2); margin: 0 0 16px; }
a { text-decoration: none; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 48px; }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); opacity: .9; display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

/* Topbar */
.topbar { background: var(--teal); padding: 10px 48px; text-align: center; }
.topbar p { margin: 0; font-size: 13px; color: rgba(255,255,255,.92); font-weight: 600; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 300; height: 58px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { height: 36px; width: auto; display: block; }
.btn-fill {
  font-size: 13px; font-weight: 700; color: #fff; background: var(--purple);
  padding: 9px 20px; border-radius: 7px; transition: background .15s, transform .12s; display: inline-block;
}
.btn-fill:hover { background: #4908b0; transform: translateY(-1px); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 64px 0 76px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 30%, rgba(0,128,128,.12), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(89,11,213,.05), transparent 65%),
    linear-gradient(180deg, #F4FBFB 0%, #FFFFFF 75%);
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,128,128,.38) 40%, rgba(0,128,128,.38) 60%, transparent 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,128,128,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,128,.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.hero h1 {
  font-size: 44px; font-weight: 700; line-height: 1.4; letter-spacing: -.8px; margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.lede { font-size: 19px; line-height: 1.65; color: var(--muted); font-weight: 300; max-width: 560px; margin-bottom: 28px; }

.meta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 8px; }
.meta-chip {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--text-2);
  background: var(--off); border: 1px solid var(--border);
  padding: 9px 14px; border-radius: 8px;
}
.meta-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

.countdown { margin-top: 30px; }
.countdown-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.countdown-units { display: flex; align-items: center; gap: 10px; }
.cd-unit {
  background: var(--off); border: 1px solid var(--border); border-radius: 9px;
  padding: 10px 14px; min-width: 58px; text-align: center;
}
.cd-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 22px;
  color: var(--purple); line-height: 1;
}
.cd-lbl { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }
.cd-sep { font-size: 20px; font-weight: 700; color: var(--border); }

.speaker-mini { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.speaker-mini .name { font-size: 14.5px; font-weight: 700; color: var(--text); }
.speaker-mini .role { font-size: 12.5px; color: var(--muted); }

/* Form card */
.form-card h3{text-align: center;padding-bottom: 20px;}
.form-card {
  position: sticky; top: 76px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 26px 24px; box-shadow: 0 12px 32px rgba(22,22,34,.07);
}
.form-card::before {
  content: ''; display: block; height: 3px; margin: -28px -26px 22px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--purple) 100%);
  border-radius: 14px 14px 0 0;
}
.form-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.form-card .form-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.hs-form-wrap .hs-button { background: var(--purple) !important; }
.form-trust {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted); text-align: center;
}

/* Sections */
section.content { padding: 76px 0; }
section.content h2 { font-size: 28px; letter-spacing: -.4px; margin-bottom: 18px; }
.section-head {  margin-bottom: 36px; }
.body-copy p { font-size: 16.5px; }

.intel {
  border-left: 3px solid var(--teal);
  padding: 8px 0 8px 20px; margin: 28px 0 0;
  background: linear-gradient(90deg, var(--teal-faint), transparent 80%);
  max-width: 720px;
}
.intel p { margin: 0; color: var(--text-2); font-size: 15.5px; }

/* Feature grid */
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; margin-top: 8px; }
.feat {
  display: flex; gap: 16px; padding: 22px 0 22px 0; border-top: 1px solid var(--border);
}
.feat-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: var(--teal-faint); border: 1px solid rgba(0,128,128,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-weight: 700; font-size: 14px;
}
.feat h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 6px; }
.feat p { font-size: 14.5px; margin: 0; color: var(--text-2); }

/* Dark speaker section */
.section-dark {
  position: relative; overflow: hidden;
  background: var(--dark-bg); border-radius: 14px;
  padding: 48px 48px 44px; margin: 0 0 0;
}
.section-dark::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,199,193,.45) 40%, rgba(76,199,193,.45) 60%, transparent);
}
.section-dark::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(76,199,193,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,199,193,.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}
.section-dark > * { position: relative; z-index: 1; }
.section-dark .eyebrow { color: var(--teal-hc); }
.section-dark .eyebrow::before { background: var(--teal-hc); }
.speaker-block { display: flex; gap: 28px; align-items: center; }
.avatar-lg {
  width: 150px; height: 150px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; display: block;
}
.speaker-block h3 { color: var(--dark-text); font-size: 22px; margin-bottom: 4px; }
.speaker-block .role { color: var(--teal-hc); font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.speaker-block p { color: var(--dark-text-2); font-size: 15px; margin: 0;  }

/* Who should attend */
.tag-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.tag-card {
  font-size: 14px; font-weight: 600; color: var(--text-2);
  background: var(--off); border: 1px solid var(--border);
  padding: 12px 18px; border-radius: 9px;
}
.tag-card strong { color: var(--teal); font-weight: 700; }

/* Footer CTA */
.footer-cta {
  background: var(--off); border-top: 1px solid var(--border); border-radius: 14px;
  padding: 56px 48px; text-align: center; margin: 0 0 60px;
}
.footer-cta h2 { font-size: 26px; margin-bottom: 12px; }
.footer-cta p { max-width: 480px; margin: 0 auto 26px; }
.btn-cta {
  background: var(--purple); color: #fff; padding: 13px 30px; border-radius: 8px;
  font-size: 14.5px; font-weight: 700; display: inline-block;
}
.trust-row { margin-top: 22px; font-size: 12.5px; color: var(--muted); }
.trust-row strong { color: var(--text-2); }

footer { padding: 20px 0; margin-top: 40px; text-align: center; border-top: 1px solid var(--border); }
footer p { font-size: 12.5px; color: var(--muted); margin: 0; }

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .feat-grid { grid-template-columns: 1fr; }
  .speaker-block { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 22px; }
  .topbar { padding: 10px 22px; }
  .hero { padding: 44px 0 52px; }
  .hero h1 { font-size: 30px; }
  section.content { padding: 52px 0; }
  .section-dark, .footer-cta { padding: 34px 24px; }
}

/* ==============================
   Thank-you page overrides & components
   ============================== */

.ty-page .wrap { max-width: 760px; padding: 0 24px; }
.ty-page .nav { position: static; backdrop-filter: none; }
.ty-page .nav .wrap { justify-content: center; }
.ty-page .eyebrow { justify-content: center; margin-bottom: 18px; }
.ty-page .hero { padding: 72px 0 56px; text-align: center; }
.ty-page .hero::before { display: none; }
.ty-page .hero .wrap { display: block; }
.ty-page .hero h1 { font-size: 32px; line-height: 1.2; letter-spacing: -.5px; margin-bottom: 14px; }
.ty-page .lede { font-size: 17px;  margin: 0 auto 8px; }
.ty-page section.content { padding: 56px 0; }
.ty-page .section-head { text-align: center; margin-bottom: 32px; }
.ty-page .section-head h2 { font-size: 22px; margin-bottom: 8px; }
.ty-page .section-head p { max-width: 480px; margin: 0 auto; font-size: 15px; }

.check-badge {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  box-shadow: 0 10px 28px rgba(0,128,128,.28);
}
.check-badge svg { width: 30px; height: 30px; }

.topic-line {     font-size: 28px;
    max-width: 520px;
    margin: 30px auto;
    font-weight: 600;}

.details-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 28px; margin: 0 auto 30px; max-width: 480px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 8px 24px rgba(22,22,34,.05);
  text-align: left;
}
.details-card::before {
  content: ''; display: block; height: 3px; margin: -24px -28px 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--purple) 100%);
  border-radius: 14px 14px 0 0;
}
.detail-row { display: flex; align-items: center; gap: 12px; }
.detail-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: var(--teal-faint); border: 1px solid rgba(0,128,128,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.detail-icon svg { width: 16px; height: 16px; }
.detail-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.detail-value { font-size: 15px; font-weight: 600; color: var(--text); }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.btn-outline {
  font-size: 14px; font-weight: 600; color: var(--teal);
  padding: 11px 24px; border-radius: 8px;
  border: 1px solid var(--teal-line);
  transition: background .15s; display: inline-block;
}
.btn-outline:hover { background: var(--teal-faint); }

.fine-print { font-size: 13px; color: var(--muted); }

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  text-align: center; padding: 24px 16px;
  border: 1px solid var(--border); border-radius: 12px; background: var(--off);
}
.step-n {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13px;
  margin: 0 auto 12px;
}
.step h4 { font-size: 14.5px; margin-bottom: 6px; }
.step p { font-size: 13px; margin: 0; }

.share-row { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.share-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--off); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: background .15s, color .15s;
}
.share-btn:hover { background: var(--teal-faint); color: var(--teal); }
.share-btn svg { width: 16px; height: 16px; }

@media (max-width: 620px) {
  .ty-page .hero { padding: 52px 0 40px; }
  .ty-page .hero h1 { font-size: 26px; }
  .step-grid { grid-template-columns: 1fr; }
}
