/* ==========================================================================
   LIVE TEMPLATE: summit landing page
   Structure and type treatment cloned from nomadcapitalist.com/live:
   full-bleed hero, bold uppercase sans-serif headlines, square speaker
   photo cards, bright accent CTA band.

   Palette is a warm middle ground rather than Nomad's all-dark theme:
   cream/light body sections (welcoming) bookended by a navy hero and
   footer (premium anchor), gold accent throughout. Pulled from
   microdramasummit.com's live brand.

   To reskin for a different summit, edit the variables in :root only:
   nothing else in this file should need to change.
   ========================================================================== */

:root {
  /* ---- Brand palette (from microdramasummit.com) ---- */
  --color-bg: #fbf4e6;               /* page background, warm cream */
  --color-bg-alt: #ffffff;           /* card / surface background */
  --color-bg-soft: #f3e8d2;          /* alternating section tint, deeper cream */
  --color-ink: #2a2317;              /* primary text on light surfaces */
  --color-ink-soft: #6b5a3c;         /* secondary text on light surfaces */

  --color-navy: #26304a;             /* hero background, medium navy (not black) */
  --color-navy-deep: #1c2438;        /* footer background, one shade deeper */
  --color-text-light: #f7f4ec;       /* primary text on navy */
  --color-text-light-soft: #c3c0b3;  /* secondary text on navy */

  --color-accent: #c9a14a;           /* primary accent + CTA, gold */
  --color-accent-hover: #a98433;     /* accent hover / accent text on light bg */
  --color-accent-soft: rgba(201, 161, 74, 0.14);
  --color-green: #27ce9c;            /* availability / "live" indicator */
  --color-red: #ff5280;              /* urgency */

  --color-border: #e9ddc3;           /* borders on light surfaces */
  --color-border-navy: rgba(247, 244, 236, 0.16); /* borders on navy surfaces */

  /* ---- Type: one sans-serif family, bold uppercase headlines ---- */
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Shape ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  /* ---- Layout ---- */
  --container-w: 1180px;
  --space-section: clamp(64px, 9vw, 128px);

  --shadow-card: 0 1px 3px rgba(42, 35, 23, 0.05), 0 8px 24px rgba(42, 35, 23, 0.06);
  --shadow-lift: 0 20px 40px rgba(42, 35, 23, 0.14);
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                           */
/* ---------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--space-section) 0; }

.section-soft { background: var(--color-bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--color-navy);
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--color-ink-soft);
  font-size: 17px;
  margin: 0;
}

.accent { color: var(--color-accent-hover); }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); }

/* Default outline button: for use on light surfaces (navy border/text). */
.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn-outline:hover { background: var(--color-navy); color: #fff; }

/* Outline variant for use on the dark hero / footer (light border/text). */
.btn-outline-light {
  background: transparent;
  color: var(--color-text-light);
  border: 1.5px solid rgba(247, 244, 236, 0.4);
}
.btn-outline-light:hover { background: rgba(247, 244, 236, 0.1); border-color: rgba(247, 244, 236, 0.7); }

.btn-block { width: 100%; }

/* ---------------------------------------------------------------------- */
/* Header / nav: light, sits above the dark hero (Nomad pattern)         */
/* ---------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-navy);
}

.logo-mark { color: var(--color-accent-hover); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.nav-links a:hover { color: var(--color-navy); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn-primary {
  color: var(--color-navy);
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 4px rgba(28, 22, 8, 0.15), 0 0 0 3px rgba(201, 161, 74, 0.25);
}
.nav-cta .btn-primary:hover {
  box-shadow: 0 4px 10px rgba(28, 22, 8, 0.22), 0 0 0 4px rgba(201, 161, 74, 0.35);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  position: relative;
  transition: 0.2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ---------------------------------------------------------------------- */
/* Hero: full-bleed navy, single centered column (Nomad structure)       */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 161, 74, 0.2), transparent 55%),
    linear-gradient(180deg, #212a42 0%, #26304a 55%, #2c3752 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 26, 44, 0.55);
  border: 1px solid rgba(201, 161, 74, 0.35);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-green);
}

.hero h1 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(42px, 7.4vw, 100px);
  line-height: 1.02;
  color: var(--color-text-light);
  margin: 0 0 26px;
  letter-spacing: -0.02em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  font-size: 19px;
  color: var(--color-text-light);
  margin-bottom: 26px;
}
.hero-meta .divider { color: var(--color-accent); }

/* Pulsing date, scoped to just this element (not the shared .accent class)
   so nothing else on the page inherits the animation. */
#hero-date {
  display: inline-block;
  animation: date-pulse 2s ease-in-out infinite;
}
@keyframes date-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.78; }
}
@media (prefers-reduced-motion: reduce) {
  #hero-date { animation: none; }
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-light-soft);
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 120px));
  justify-content: center;
  gap: clamp(10px, 1.8vw, 20px);
  margin-bottom: 34px;
}
.countdown .cd-unit {
  background: rgba(23, 26, 46, 0.6);
  border: 1px solid rgba(201, 161, 74, 0.55);
  border-radius: var(--radius-md);
  padding: 18px 0;
  text-align: center;
}
.countdown .cd-num {
  display: block;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--color-text-light);
  line-height: 1;
}
.countdown .cd-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light-soft);
  margin-top: 9px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Static credibility-logo strip. Solid navy-deep fill (not the hero's
   gradient) so it reads as its own band through contrast in value, echoing
   the footer's tone. Normal document flow by default (mobile/tablet) so it
   can never overlap the countdown above it, however many rows the logos
   wrap into on a narrow screen. Only pinned to the hero's bottom edge on
   desktop/laptop, in the fit-one-screen media query at the end of this
   file, where the hero has guaranteed empty space at the bottom for it. */
.hero-logos-wrap {
  padding: 28px 0 36px;
  background: var(--color-navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.45);
  margin: 0 0 16px;
}

.hero-logos-viewport {
  width: 100%;
  padding: 0 24px;
}

.hero-logos-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px clamp(36px, 5vw, 72px);
  max-width: var(--container-w);
  margin: 0 auto;
}

.hero-logos-track img {
  height: 34px;
  width: auto;
  opacity: 0.95;
}

.hero-logos-track .logo-placeholder {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.45);
  white-space: nowrap;
}

/* ---------------------------------------------------------------------- */
/* About ("What Is Micro Drama Summit?"): light champagne band right      */
/* after the hero, pill eyebrow + headline + paragraph + three photo      */
/* cards + CTA. Cream/white/gold-gradient, matching the site's warm       */
/* "happy medium" body sections rather than the hero's dark navy.         */
/* ---------------------------------------------------------------------- */

.about-section {
  background: var(--color-bg);
  color: var(--color-ink);
  padding: var(--space-section) 0;
}

.about-container { text-align: center; }

/* Copy stays a readable measure; the card grid below is not wrapped in
   this and spans the full .container width instead. */
.about-copy {
  max-width: 820px;
  margin: 0 auto;
}

.about-pill {
  display: inline-block;
  background: var(--color-navy);
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
}

.about-section h2 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  color: var(--color-navy);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.about-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-navy);
  max-width: 760px;
  margin: 0 auto 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 44px;
}

.about-card {
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* JS sets background-image inline as two layers: the real photo (if the
   file exists at the configured path) painted over this same gradient, so
   a missing photo falls back to the gradient look instead of a flat or
   broken box. Once real photos are dropped in, they cover the gradient
   automatically, no CSS change needed. */
.about-card-media {
  height: 160px;
  background-image: linear-gradient(135deg, var(--color-accent-soft), var(--color-bg-soft));
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 1.5px solid var(--color-accent-hover);
}
.about-card-icon {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  display: flex;
}
.about-card-icon svg { width: 34px; height: 34px; color: var(--color-accent-hover); }

.about-card-body { padding: 26px 28px 30px; }

.about-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  margin: 0 0 8px;
}

.about-card h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--color-navy);
  margin: 0 0 10px;
}
.about-card p:last-child { color: var(--color-ink-soft); margin: 0; font-size: 15px; line-height: 1.6; }

/* White button, navy text: reads as its own distinct call to action
   against this section's cream background, rather than blending in with
   the gold buttons used everywhere else. */
.about-cta.btn-primary {
  background: #fff;
  color: var(--color-navy);
  border: 1px solid var(--color-border);
}
.about-cta.btn-primary:hover {
  background: var(--color-bg-soft);
  color: var(--color-navy);
}

/* ---------------------------------------------------------------------- */
/* Shift stats: real numbers, navy band (premium contrast against cream) */
/* ---------------------------------------------------------------------- */

.shift-section {
  background: var(--color-navy);
  color: var(--color-text-light);
  padding: var(--space-section) 0;
}
.shift-section .section-head h2 { color: var(--color-text-light); }
.shift-section .section-head p { color: var(--color-text-light-soft); }
.shift-section .eyebrow { color: var(--color-accent); }

.shift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shift-card {
  padding: 32px 30px;
  border: 1px solid rgba(201, 161, 74, 0.32);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}
.shift-card .shift-stat {
  display: block;
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 18px;
}
.shift-card h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin: 0 0 10px;
}
.shift-card p {
  font-size: 14.5px;
  color: var(--color-text-light-soft);
  margin: 0;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------- */
/* Audience grid ("The operating stack")                                  */
/* ---------------------------------------------------------------------- */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.audience-card h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  margin: 0 0 10px;
}
.audience-card p {
  font-size: 14px;
  color: var(--color-ink-soft);
  margin: 0;
  line-height: 1.65;
}

/* ---------------------------------------------------------------------- */
/* Feature grid (Make / Monetize / Scale, full track detail)              */
/* ---------------------------------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.feature-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--color-accent-hover);
  box-shadow: var(--shadow-card);
}

.feature-card .fc-body { padding: 26px 24px; }

.fc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 0 0 8px;
}

.fc-question {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 16px;
}

.fc-bullets {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.fc-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.6;
  margin-bottom: 10px;
}
.fc-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.fc-punchline {
  font-size: 13.5px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-navy);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

/* ---------------------------------------------------------------------- */
/* Speakers: circular photo cards, gold-ringed                           */
/* ---------------------------------------------------------------------- */

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.speaker-card {
  cursor: pointer;
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.speaker-card:hover { transform: translateY(-3px); }

.speaker-card.featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lift);
}

.speaker-photo-wrap { padding: 32px 24px 0; }

.speaker-photo {
  position: relative;
  width: 148px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-accent);
  background-color: var(--color-accent-soft);
  background-image: linear-gradient(135deg, var(--color-accent-soft), var(--color-bg-soft));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-initials {
  font-weight: 800;
  font-size: 34px;
  color: var(--color-accent-hover);
}

.speaker-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-info { padding: 12px 24px 24px; }

.speaker-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 4px;
}
.speaker-card .role {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-ink-soft);
  margin: 0;
}
.speaker-cue {
  display: inline-block;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

.speakers-more {
  text-align: center;
  margin-top: 44px;
  font-size: 14px;
  color: var(--color-ink-soft);
}

/* Speaker modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(28, 22, 8, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}
.modal-overlay.open { display: flex; }

.modal-card {
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-navy);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--color-ink);
}
.modal-head { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.modal-head .speaker-photo { width: 76px; height: 76px; margin: 0; flex-shrink: 0; }
.modal-head h3 { font-weight: 800; text-transform: uppercase; font-size: 20px; color: var(--color-navy); margin: 0 0 4px; }
.modal-head .role { color: var(--color-ink-soft); font-size: 14px; }
.modal-card .creds {
  font-size: 13px;
  color: var(--color-accent-hover);
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.6;
}
.modal-card .bio { color: var(--color-ink-soft); font-size: 15px; margin-bottom: 20px; }

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.modal-socials { display: flex; gap: 8px; }
.modal-social {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.modal-talk {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------------------------------------------------------------- */
/* Testimonials                                                           */
/* ---------------------------------------------------------------------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-accent-hover);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.stars { color: var(--color-accent); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 15px;
  color: var(--color-ink);
  margin: 0 0 18px;
  line-height: 1.65;
}

.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-person .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--color-accent-hover);
}
.testimonial-person .name { font-weight: 700; font-size: 14px; color: var(--color-navy); }
.testimonial-person .title { font-size: 12px; color: var(--color-ink-soft); }

/* ---------------------------------------------------------------------- */
/* Pricing                                                                 */
/* ---------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-grid.single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.price-card {
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

.price-card.featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lift);
}

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.price-card h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--color-navy);
  margin: 0 0 6px;
}
.price-card .tagline { font-size: 14px; color: var(--color-ink-soft); margin-bottom: 22px; }

.price-amount {
  font-weight: 800;
  font-size: 42px;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.price-amount span { font-size: 16px; font-weight: 500; color: var(--color-ink-soft); }
.price-note { font-size: 13px; color: var(--color-accent-hover); font-weight: 600; margin-bottom: 22px; }

.price-features { margin-bottom: 26px; }
.price-features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--color-ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.price-features li:last-child { border-bottom: none; }
.price-features .check { color: #1fa57d; flex-shrink: 0; }

.pricing-group-note { text-align: center; margin-top: 32px; }
.group-note-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 6px;
}
.group-note-body {
  font-size: 14px;
  color: var(--color-ink-soft);
  margin: 0;
}
.group-note-body a { color: var(--color-accent-hover); font-weight: 600; }

/* ---------------------------------------------------------------------- */
/* Venue                                                                   */
/* ---------------------------------------------------------------------- */

.venue-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--color-accent-hover);
  box-shadow: var(--shadow-card);
}
.venue-media {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-deep));
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.venue-media img {
  width: 100%;
  height: 100%;
  max-width: 320px;
  object-fit: contain;
}
.venue-info { background: var(--color-bg-alt); padding: 40px; }
.venue-info .eyebrow { margin-bottom: 8px; }
.venue-info h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 24px;
  color: var(--color-navy);
  margin: 0 0 18px;
}
.venue-row { display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; color: var(--color-ink-soft); }
.venue-row strong { color: var(--color-ink); min-width: 84px; }
.venue-info p.desc { margin: 18px 0 24px; color: var(--color-ink-soft); font-size: 14.5px; }

/* ---------------------------------------------------------------------- */
/* FAQ                                                                    */
/* ---------------------------------------------------------------------- */

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-navy);
}

.faq-question .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  margin: 0 0 20px;
  color: var(--color-ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-category {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-hover);
  margin: 36px 0 8px;
}
.faq-category:first-child { margin-top: 0; }

/* ---------------------------------------------------------------------- */
/* Schedule: nested day → session accordion (native <details>)          */
/* ---------------------------------------------------------------------- */

.sched { max-width: 780px; margin: 0 auto; }

.sday {
  border: 1.5px solid var(--color-navy);
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
  margin-bottom: 14px;
  overflow: hidden;
}

.sday-row {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
}
.sday-row::-webkit-details-marker { display: none; }

.sday-date {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-navy);
  font-size: 16px;
}

.sday-slots {
  padding: 0 24px 20px;
  border-top: 1px solid var(--color-border);
}

.slot { border-bottom: 1px solid var(--color-border); }
.slot:last-child { border-bottom: none; }

.slot-row {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 16px;
  padding: 16px 0;
}
.slot-row::-webkit-details-marker { display: none; }

.slot-talk.slot-tbd {
  font-size: 14px;
  font-style: italic;
  color: var(--color-ink-soft);
}
.slot-top { width: 100%; }
.slot-time {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}
.slot-title { font-weight: 700; color: var(--color-navy); font-size: 14.5px; }
.slot-speaker { font-size: 13px; font-weight: 600; color: var(--color-accent-hover); margin-left: auto; margin-right: 8px; }

.slot-detail { padding: 0 0 18px; color: var(--color-ink-soft); font-size: 14px; line-height: 1.7; }
.slot-detail p { margin: 0 0 10px; }
.slot-when { font-weight: 700; color: var(--color-navy); }
.slot-meta b { color: var(--color-navy); }

.slot-tk-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-hover);
  margin: 16px 0 8px;
}
.slot-takeaways { margin: 0; padding: 0; list-style: none; }
.slot-takeaways li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.6;
}
.slot-takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.pm {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.pm::before { content: "+"; font-size: 14px; line-height: 1; }
details[open] > summary .pm { transform: rotate(45deg); }

/* ---------------------------------------------------------------------- */
/* Sponsors band: real orgs backing the Summit                          */
/* ---------------------------------------------------------------------- */

.sponsors-band { background: var(--color-bg-soft); padding: 64px 0; }
.sponsors-band .container { text-align: center; }
.sponsors-band h2 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-navy);
  margin: 0 0 16px;
}
.sponsors-pitch {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--color-ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.sponsor-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sponsor-logo-card {
  padding: 22px 36px;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 19px;
  box-shadow: var(--shadow-card);
}
.sponsor-logo-card.light { background: var(--color-bg-alt); border: 1.5px solid var(--color-accent-hover); color: var(--color-navy); }
.sponsor-logo-card.navy { background: var(--color-navy-deep); color: var(--color-text-light); }
.sponsor-logo-card .accent { color: var(--color-accent); font-style: italic; }

/* ---------------------------------------------------------------------- */
/* Position: closing narrative + scattered topic tags                   */
/* ---------------------------------------------------------------------- */

.position-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.position-copy h2 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--color-navy);
  line-height: 1.15;
  margin: 0 0 24px;
}
.position-copy p {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 8px;
}

.position-tags {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.position-tag {
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
  width: fit-content;
  box-shadow: var(--shadow-card);
}
.position-tag:nth-child(odd) { background: var(--color-accent); color: #fff; align-self: flex-start; transform: rotate(-2deg); }
.position-tag:nth-child(even) { background: var(--color-navy); color: var(--color-text-light); align-self: flex-end; transform: rotate(2deg); }

/* ---------------------------------------------------------------------- */
/* Final CTA band: bright accent, full bleed (Nomad pattern)             */
/* ---------------------------------------------------------------------- */

.final-cta {
  background: var(--color-accent);
  color: #241c0a;
  text-align: center;
  padding: 72px 0;
}
.final-cta h2 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0 0 14px;
  color: #241c0a;
}
.final-cta p { color: rgba(36, 28, 10, 0.75); max-width: 520px; margin: 0 auto 30px; }
.final-cta .btn-primary { background: #241c0a; color: var(--color-accent); }
.final-cta .btn-primary:hover { background: #14100a; }

/* ---------------------------------------------------------------------- */
/* Footer: navy, matches hero (premium bookend)                          */
/* ---------------------------------------------------------------------- */

.site-footer {
  background: var(--color-navy-deep);
  color: var(--color-text-light-soft);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
}

.site-footer .logo { color: var(--color-text-light); }
.site-footer .logo-mark { color: var(--color-accent); }

.footer-brand p { font-size: 14px; margin: 16px 0 20px; max-width: 280px; color: var(--color-text-light-soft); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--color-text-light-soft);
}

.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin: 0 0 16px;
}
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--color-accent); }

.footer-newsletter input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: #6f7488; }

.capture-note {
  min-height: 16px;
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--color-text-light-soft);
}
.capture-note.is-good { color: var(--color-green); }
.capture-note.is-error { color: var(--color-red); }

.cf-turnstile { margin-bottom: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #6f7488;
}
.footer-bottom a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover { color: var(--color-text-light); }

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */

@media (max-width: 960px) {
  .about-grid, .feature-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .speaker-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .venue-card { grid-template-columns: 1fr; }
  .venue-media { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shift-grid { grid-template-columns: 1fr; }
  .position-grid { grid-template-columns: 1fr; gap: 36px; }
  .position-tags { flex-direction: row; flex-wrap: wrap; }
  .position-tag:nth-child(odd), .position-tag:nth-child(even) { align-self: auto; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .feature-grid, .audience-grid { grid-template-columns: 1fr; }
  .speaker-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }

  .modal-overlay { padding: 12px; align-items: flex-start; }
  .modal-card { max-height: calc(100dvh - 24px); padding: 28px 20px 24px; }
  .modal-head { gap: 14px; }
  .countdown { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .countdown .cd-unit { width: auto; padding: 10px 0; }
  .countdown .cd-num { font-size: clamp(20px, 6vw, 28px); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 9px 12px; font-size: 11px; }
  .logo { font-size: 12px; white-space: nowrap; gap: 5px; }
  .site-header .container { padding-left: 16px; padding-right: 16px; }
}

/* ---------------------------------------------------------------------- */
/* Desktop/laptop hero: fit one screen, no scroll to see the whole hero   */
/* ---------------------------------------------------------------------- */

/* Placed at the end of the file on purpose: CSS resolves equal-specificity
   rules by source order, and these need to win over the base .hero-badge,
   .hero h1, etc. rules declared earlier. Every value here is tied to
   viewport HEIGHT via clamp(), biased to stay close to full size on any
   normal laptop/desktop height (800px+) and only easing back on genuinely
   short screens, so the hero stays bold instead of shrinking away. Mobile
   and tablet (below 900px) keep the spacious, normal-flow layout above,
   including .hero-logos-wrap staying in normal flow there so it can never
   overlap the countdown, however many rows the logos wrap into. */
@media (min-width: 900px) {
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 78px); /* 78px = sticky header height */
  }
  .hero-inner {
    padding: clamp(48px, 7vh, 110px) 24px clamp(90px, 13vh, 130px);
  }
  .hero-badge { margin-bottom: clamp(16px, 2.6vh, 26px); }
  .hero h1 {
    font-size: clamp(48px, min(7.4vw, 10.5vh), 100px);
    margin-bottom: clamp(16px, 2.6vh, 26px);
  }
  .hero-meta { margin-bottom: clamp(16px, 2.6vh, 26px); }
  .hero-sub {
    font-size: clamp(15px, 1.9vh, 18px);
    margin-bottom: clamp(18px, 3vh, 30px);
  }
  .countdown { margin-bottom: clamp(20px, 3.4vh, 34px); }
  .countdown .cd-unit { padding: clamp(9px, 1.5vh, 14px) 0; }
  .countdown .cd-num { font-size: clamp(28px, 4.4vh, 42px); }
  .hero-logos-wrap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: clamp(14px, 2.2vh, 28px) 0 clamp(18px, 3vh, 36px);
  }
  .hero-logos-label { margin-bottom: clamp(8px, 1.3vh, 16px); }
}
