/* NBN Breakfast & Learn — styles */
:root {
  --navy-deep: #0F2142;
  --navy: #1B3D73;
  --navy-mid: #2A5DAB;
  --gold: #C89630;
  --gold-light: #E8C878;
  --gold-pale: #F5E6C8;
  --teal: #1A7A6E;
  --teal-light: #E0F0EE;
  --cream: #FAF6EE;
  --cream-2: #F4EDDE;
  --ink: #1A1F2B;
  --slate: #4A5A70;
  --slate-light: #8A95A5;
  --line: #E5DFD0;
  --white: #ffffff;
  --accent: var(--gold);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15,33,66,.04), 0 4px 12px rgba(15,33,66,.06);
  --shadow: 0 4px 12px rgba(15,33,66,.08), 0 20px 40px -20px rgba(15,33,66,.12);
  --shadow-lg: 0 8px 24px rgba(15,33,66,.10), 0 32px 64px -24px rgba(15,33,66,.18);
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,238,0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: 1200px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.01em; color: var(--navy-deep); }
.nav-brand .mark { width: 28px; height: 28px; display: grid; place-items: center; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--slate); }
.nav-links a { color: var(--slate); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--navy-deep); }
.nav-cta {
  background: var(--navy-deep); color: var(--white);
  padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 14px;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 60% 30%, rgba(0,0,0,.5), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 30%, rgba(0,0,0,.5), transparent 70%);
  pointer-events: none;
  opacity: .6;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal);
  padding: 6px 14px; border-radius: 999px;
  background: var(--teal-light);
  border: 1px solid rgba(26,122,110,0.15);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity: .35 } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  font-weight: 500;
  margin: 18px 0 14px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 400;
}
.hero .byob-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.hero .byob-tag strong { color: var(--gold-dark, #A8851A); font-weight: 700; }

.hero-lede {
  font-size: 18px; line-height: 1.55; color: var(--slate);
  max-width: 540px; margin: 22px 0 28px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px 32px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-meta-item { display: flex; align-items: center; gap: 12px; }
.hero-meta-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--cream-2); display: grid; place-items: center;
  color: var(--navy);
}
.hero-meta-label { font-size: 11px; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.hero-meta-value { font-size: 15px; color: var(--ink); font-weight: 600; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: var(--navy-deep); color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(15,33,66,0.4);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(15,33,66,0.5); }
.btn-secondary {
  background: transparent; color: var(--navy-deep);
  border: 1.5px solid var(--navy-deep);
}
.btn-secondary:hover { background: var(--navy-deep); color: var(--white); }
.btn-gold {
  background: var(--gold); color: var(--navy-deep);
  box-shadow: 0 8px 20px -6px rgba(200,150,48,0.5);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.seats-inline {
  font-size: 13px; color: var(--slate); display: inline-flex; align-items: center; gap: 8px;
}
.seats-inline .live { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 1.5s ease-in-out infinite; }

/* Hero photo */
.hero-photo {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 460px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo-caption {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  padding: 14px 18px;
  background: rgba(15,33,66,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: var(--radius);
}
.hero-photo-caption .name { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.hero-photo-caption .title { font-size: 12px; opacity: 0.85; margin-top: 2px; }

/* Block decoration */
.block-stack {
  position: absolute;
  top: 40px; right: -20px;
  display: grid; grid-template-columns: repeat(3, 30px); gap: 4px;
  opacity: 0.85;
  z-index: 0;
}
.block-stack div { aspect-ratio: 1; border-radius: 4px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { max-width: 340px; margin: 0 auto; }
  .block-stack { display: none; }
}

/* ---------- COUNTDOWN ---------- */
.countdown-section {
  background: var(--navy-deep);
  color: var(--white);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.countdown-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.countdown-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.countdown-head .label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.countdown-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px); font-weight: 500;
  letter-spacing: -0.015em;
  margin-top: 6px;
}
.countdown-head p { margin-top: 8px; color: rgba(255,255,255,0.7); font-size: 15px; max-width: 420px; }

.countdown-timer { display: flex; gap: 12px; }
.cd-unit {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px 20px;
  min-width: 92px;
  text-align: center;
}
.cd-unit .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.cd-unit .lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-light); margin-top: 8px; font-weight: 600;
}

@media (max-width: 820px) {
  .countdown-inner { grid-template-columns: 1fr; text-align: left; }
  .countdown-timer { flex-wrap: wrap; }
  .cd-unit { min-width: 78px; padding: 14px; flex: 1; }
}

/* ---------- INCENTIVE STRIP ---------- */
.incentive {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #F8EED0 100%);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 28px 0;
}
.incentive-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
}
.incentive-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.incentive-text h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--navy-deep);
}
.incentive-text p { font-size: 14px; color: var(--slate); margin-top: 4px; max-width: 600px; }
.incentive-meter {
  background: var(--white); border-radius: var(--radius); padding: 14px 20px; min-width: 220px;
  box-shadow: var(--shadow-sm);
}
.incentive-meter .count {
  font-family: var(--font-display); font-size: 28px; font-weight: 500;
  color: var(--navy-deep); letter-spacing: -0.02em;
}
.incentive-meter .count em { color: var(--gold-dark, #A8851A); font-style: normal; }
.incentive-meter .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate); font-weight: 600; margin-bottom: 6px; }
.incentive-meter .bar { height: 6px; background: var(--cream-2); border-radius: 3px; overflow: hidden; margin-top: 10px; }
.incentive-meter .bar-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width .6s; }

@media (max-width: 820px) {
  .incentive-inner { grid-template-columns: 1fr; }
}

/* ---------- SECTION SHELL ---------- */
section.panel { padding: 88px 0; }
.panel-head { max-width: 720px; margin-bottom: 48px; }
.panel-head .label {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); font-weight: 600;
}
.panel-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px); font-weight: 500;
  letter-spacing: -0.02em; color: var(--navy-deep);
  margin-top: 10px; line-height: 1.08;
  text-wrap: balance;
}
.panel-head p {
  font-size: 17px; color: var(--slate); margin-top: 16px; line-height: 1.6;
  max-width: 600px;
}

/* ---------- TAKEAWAYS ---------- */
.takeaways {
  background: var(--white);
}
.takeaway-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.takeaway {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.takeaway:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.takeaway .block-num {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--slate-light); letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.takeaway .icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--cream-2); color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.takeaway h4 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--navy-deep); margin-bottom: 8px;
  line-height: 1.2;
}
.takeaway p { font-size: 14px; color: var(--slate); line-height: 1.55; }

@media (max-width: 900px) { .takeaway-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .takeaway-grid { grid-template-columns: 1fr; } }

/* ---------- ABOUT SPEAKER ---------- */
.speaker { background: var(--cream); }
.speaker-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: flex-start; }
.speaker-photo-col { position: sticky; top: 100px; }
.speaker-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  background: var(--cream-2);
}
.speaker-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.speaker-stats {
  margin-top: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.speaker-stat {
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line);
}
.speaker-stat .big {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--navy-deep); letter-spacing: -0.01em; line-height: 1;
}
.speaker-stat .lbl { font-size: 11px; color: var(--slate); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

.speaker-body h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500; color: var(--teal);
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
}
.speaker-body p {
  font-size: 16px; color: var(--ink); line-height: 1.65; margin-bottom: 14px;
}
.speaker-body p.lead {
  font-size: 19px; color: var(--navy-deep); line-height: 1.55; font-weight: 500;
  padding: 20px 24px; border-left: 3px solid var(--gold);
  background: var(--cream-2);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.speaker-body ul { list-style: none; margin: 8px 0 16px; }
.speaker-body ul li {
  position: relative; padding-left: 22px; margin: 8px 0; font-size: 15px; color: var(--slate);
}
.speaker-body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; background: var(--gold); border-radius: 2px;
}
.books {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 16px 0;
}
.book {
  padding: 16px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.book .t-label { font-size: 10px; color: var(--teal); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.book .title { font-family: var(--font-display); font-size: 15px; color: var(--navy-deep); margin-top: 6px; line-height: 1.3; }

@media (max-width: 900px) {
  .speaker-inner { grid-template-columns: 1fr; gap: 32px; }
  .speaker-photo-col { position: static; }
  .speaker-photo-wrap { max-width: 360px; }
  .books { grid-template-columns: 1fr; }
}

/* ---------- AGENDA ---------- */
.agenda { background: var(--white); }
.agenda-list {
  max-width: 800px;
  border-top: 1px solid var(--line);
}
.agenda-row {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 24px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.agenda-time {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--navy); font-weight: 600;
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.agenda-title {
  font-family: var(--font-display); font-size: 20px;
  color: var(--navy-deep); font-weight: 500;
  letter-spacing: -0.01em;
}
.agenda-desc { font-size: 14px; color: var(--slate); margin-top: 4px; }
.agenda-tag {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: var(--teal-light); color: var(--teal);
  white-space: nowrap;
}
.agenda-tag.keynote { background: var(--gold-pale); color: var(--gold-dark, #8C6D14); }

@media (max-width: 720px) {
  .agenda-row { grid-template-columns: 1fr; gap: 6px; }
  .agenda-tag { justify-self: flex-start; margin-top: 4px; }
}

/* ---------- IMPACT STRIP ---------- */
.impact {
  padding: 80px 0;
  background: var(--teal);
  color: var(--white);
  position: relative; overflow: hidden;
}
.impact::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}
.impact-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.impact h2 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.05;
  text-wrap: balance;
}
.impact h2 em { color: var(--gold-light); font-style: italic; }
.impact-body { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.impact-body p + p { margin-top: 14px; }
.impact-sig { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.7); font-style: italic; }

@media (max-width: 820px) { .impact-inner { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- REGISTRATION ---------- */
.register { background: var(--cream); padding: 88px 0; position: relative; }
.register-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: flex-start; }

.register-aside .tag-pill {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--navy-deep); color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.register-aside h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  color: var(--navy-deep); font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.05; margin: 14px 0 16px;
  text-wrap: balance;
}
.register-aside p { font-size: 16px; color: var(--slate); line-height: 1.6; }
.register-aside .checklist { margin-top: 28px; list-style: none; }
.register-aside .checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px; color: var(--ink);
}
.register-aside .checklist li:last-child { border-bottom: none; }
.register-aside .checklist .ico {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-head h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--navy-deep); letter-spacing: -0.01em; }
.form-head p { font-size: 14px; color: var(--slate); margin-top: 4px; }

/* Tier selection list */
.tier-list { display: grid; gap: 8px; }
.tier-row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left;
  padding: 14px 16px; border-radius: 10px;
  background: var(--white); border: 1.5px solid var(--line);
  cursor: pointer; transition: all .15s;
  font-family: inherit;
}
.tier-row:hover { border-color: var(--gold-light); background: #FDFAF2; }
.tier-row.active { border-color: var(--navy-deep); background: #F6F8FC; box-shadow: 0 0 0 3px rgba(43,93,171,0.08); }
.tier-row-main { flex: 1; min-width: 0; }
.tier-row-label {
  font-family: var(--font-display); font-size: 16px; font-weight: 500;
  color: var(--navy-deep); letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.tier-row-desc { font-size: 12px; color: var(--slate); margin-top: 2px; }
.tier-row-price {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--teal); letter-spacing: -0.02em;
  padding-left: 12px; white-space: nowrap;
}
.tier-row.active .tier-row-price { color: var(--gold-dark, #A8851A); }
.vip-chip {
  font-family: var(--font-sans);
  font-size: 9px; letter-spacing: 0.12em; font-weight: 700;
  text-transform: uppercase;
  background: var(--gold); color: var(--navy-deep);
  padding: 2px 7px; border-radius: 999px;
}

/* Designation picker */
.designation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.desig-opt {
  padding: 10px 12px; border-radius: 8px;
  background: var(--white); border: 1.5px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--slate);
  text-align: left; font-family: inherit; cursor: pointer;
  transition: all .15s;
}
.desig-opt:hover { border-color: var(--teal); color: var(--navy-deep); }
.desig-opt.active { border-color: var(--teal); background: var(--teal-light); color: var(--navy-deep); font-weight: 600; }
@media (max-width: 540px) { .designation-grid { grid-template-columns: 1fr; } }

/* Fundraising thermometer */
.thermometer {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.thermo-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.thermo-raised { font-family: var(--font-display); font-size: 40px; font-weight: 500; color: var(--navy-deep); letter-spacing: -0.02em; line-height: 1; }
.thermo-raised em { font-style: normal; color: var(--teal); }
.thermo-goal { font-size: 14px; color: var(--slate); }
.thermo-goal strong { color: var(--navy-deep); font-family: var(--font-display); font-weight: 500; }
.thermo-bar { height: 14px; background: var(--cream-2); border-radius: 7px; overflow: hidden; position: relative; }
.thermo-fill {
  height: 100%; border-radius: 7px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width .8s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.thermo-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%) } 100% { transform: translateX(100%) } }
.thermo-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.thermo-stat .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-light); font-weight: 600; }
.thermo-stat .val { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--navy-deep); margin-top: 4px; letter-spacing: -0.01em; }

/* Impact areas */
.impact-areas { background: var(--cream); }
.impact-areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.impact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.impact-card-head {
  padding: 28px 24px 20px; color: var(--white);
  position: relative; overflow: hidden;
}
.impact-card.one .impact-card-head { background: linear-gradient(135deg, var(--teal), #145f55); }
.impact-card.two .impact-card-head { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.impact-card.three .impact-card-head { background: linear-gradient(135deg, var(--gold), var(--gold-dark, #A8851A)); }
.impact-card-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; opacity: 0.7; }
.impact-card-icon { margin: 16px 0 12px; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.15); display: grid; place-items: center; }
.impact-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.impact-card-body { padding: 20px 24px 24px; flex: 1; }
.impact-card-body p { font-size: 14px; color: var(--slate); line-height: 1.55; }
.impact-card-body .funds {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px;
  padding: 5px 10px; border-radius: 6px; letter-spacing: 0.04em;
  background: var(--cream-2); color: var(--navy-deep); font-weight: 600;
}
@media (max-width: 820px) { .impact-areas-grid { grid-template-columns: 1fr; } }

/* VIP badge in agenda */
.agenda-row.vip { background: linear-gradient(90deg, #FBF3DD 0%, transparent 60%); margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: 8px; }


.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 12px; font-weight: 600; color: var(--slate);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.field label .req { color: #C74444; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-size: 15px;
  border: 1.5px solid var(--line); border-radius: 8px;
  font-family: inherit; color: var(--ink); background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(43,93,171,0.12);
}
.field.error input, .field.error select { border-color: #C74444; }
.field .err-msg { font-size: 12px; color: #C74444; margin-top: 4px; }
.field textarea { resize: vertical; min-height: 84px; }
.field-hint { font-size: 12px; color: var(--slate-light); margin-top: 5px; }

.qty-row { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--cream-2); color: var(--navy-deep);
  font-weight: 700; font-size: 18px; border: 1px solid var(--line);
  transition: all .15s;
}
.qty-btn:hover:not(:disabled) { background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep); }
.qty-btn:disabled { opacity: .35; cursor: not-allowed; }
.qty-val { font-family: var(--font-display); font-size: 22px; color: var(--navy-deep); min-width: 32px; text-align: center; font-weight: 500; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--slate); margin: 12px 0; }
.checkbox-row input { margin-top: 3px; accent-color: var(--navy); }

.total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; margin: 16px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.total-row .lbl { font-size: 13px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.total-row .val { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--navy-deep); letter-spacing: -0.02em; }

.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--navy-deep); color: var(--white);
  font-size: 16px; font-weight: 600;
  border-radius: 10px;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 20px -6px rgba(15,33,66,0.4);
}
.form-submit:hover:not(:disabled) { background: var(--navy); transform: translateY(-1px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }

.form-footer { text-align: center; margin-top: 16px; font-size: 12px; color: var(--slate-light); }

/* success state */
.form-success { padding: 40px 20px; text-align: center; animation: fadeIn .4s; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px) } to { opacity: 1; transform: none } }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  animation: pop .5s cubic-bezier(.68,-.55,.27,1.55);
}
@keyframes pop { 0% { transform: scale(0) } 100% { transform: scale(1) } }
.form-success h3 { font-family: var(--font-display); font-size: 26px; color: var(--navy-deep); font-weight: 500; letter-spacing: -0.01em; }
.form-success p { color: var(--slate); margin-top: 10px; font-size: 15px; }
.confirm-detail {
  background: var(--cream); border-radius: var(--radius);
  padding: 20px; margin-top: 24px; text-align: left;
  border: 1px solid var(--line);
}
.confirm-detail dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 14px; }
.confirm-detail dt { color: var(--slate); font-weight: 500; }
.confirm-detail dd { color: var(--navy-deep); font-weight: 600; }
.gift-award {
  margin-top: 20px; padding: 16px 20px;
  background: linear-gradient(135deg, var(--gold-pale), #F8EED0);
  border-radius: var(--radius); border: 1px solid var(--gold-light);
  display: flex; align-items: center; gap: 14px; text-align: left;
}
.gift-award .ico {
  width: 44px; height: 44px; border-radius: 10px; background: var(--white); display: grid; place-items: center;
  flex-shrink: 0;
}
.gift-award .txt { font-size: 13px; color: var(--navy-deep); font-weight: 500; line-height: 1.4; }
.gift-award .txt strong { font-family: var(--font-display); font-size: 15px; display: block; margin-bottom: 2px; font-weight: 500; }

@media (max-width: 900px) {
  .register-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 24px; }
  .tier-toggle { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--white); padding: 88px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: flex-start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.faq-q .ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream-2); color: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--navy-deep); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  font-size: 15px; color: var(--slate); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
footer h5 { color: var(--gold); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
footer a { color: rgba(255,255,255,0.7); display: block; padding: 4px 0; font-size: 14px; }
footer a:hover { color: var(--gold-light); }
footer .brand { font-family: var(--font-display); font-size: 22px; color: var(--white); font-weight: 500; letter-spacing: -0.01em; }
footer .brand-tag { font-size: 14px; margin-top: 10px; max-width: 360px; color: rgba(255,255,255,0.65); line-height: 1.55; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }

@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- TWEAKS ---------- */
.tweaks-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 300px; background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: none;
  font-size: 13px;
  max-height: calc(100vh - 40px); overflow-y: auto;
}
.tweaks-panel.open { display: block; animation: fadeIn .2s; }
.tweaks-panel h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--navy-deep);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.tweaks-panel .sub { font-size: 12px; color: var(--slate-light); margin-bottom: 16px; }
.tweak-group { margin-bottom: 18px; }
.tweak-group > label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--slate); display: block; margin-bottom: 8px; }
.tweak-swatches { display: flex; gap: 8px; }
.tweak-swatch {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s;
}
.tweak-swatch:hover { transform: scale(1.08); }
.tweak-swatch.active { border-color: var(--ink); box-shadow: 0 0 0 2px var(--white); }
.tweak-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.tweak-opts button {
  padding: 8px 10px; border-radius: 7px; font-size: 12px; font-weight: 600;
  background: var(--cream); color: var(--slate); border: 1px solid var(--line);
  transition: all .15s;
}
.tweak-opts button.active { background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep); }

/* Variant modifiers */
body[data-accent="teal"] { --accent: var(--teal); }
body[data-accent="gold"] { --accent: var(--gold); }
body[data-accent="navy"] { --accent: var(--navy); }

body[data-hero-layout="photo-left"] .hero-inner { direction: rtl; }
body[data-hero-layout="photo-left"] .hero-inner > * { direction: ltr; }

body[data-countdown-style="minimal"] .cd-unit { background: transparent; border-color: transparent; padding: 0; }
body[data-countdown-style="minimal"] .cd-unit + .cd-unit { border-left: 1px solid rgba(255,255,255,0.15); padding-left: 20px; }
