/* ================================================================
   SUPANOVA CREATIVES — Webinar Landing Page Stylesheet
   Direct visual extension of supanovacreatives.com
   
   Brand Colors (exact match to live main site):
   --sn-dark:    #2b181e  primary dark background
   --sn-plum:    #48182e  secondary dark / accent bg
   --sn-gold:    #765d03  primary accent — gold
   --sn-gold-light: #9a7c0a  gold highlight
   --sn-sand:    #dbc9be  warm neutral / body text
   --sn-cream:   #dfdbd2  lightest neutral / headings
   
   Typography (exact match to live main site):
   Display Serif:  Cormorant Garamond
   Body Sans:      Inter
   ================================================================ */


/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  --sn-dark:       #2b181e;
  --sn-plum:       #48182e;
  --sn-gold:       #765d03;
  --sn-gold-light: #9a7c0a;
  --sn-sand:       #dbc9be;
  --sn-cream:      #dfdbd2;
  --sn-dark-80:    rgba(43, 24, 30, 0.8);
  --sn-plum-20:    rgba(72, 24, 46, 0.2);
  --sn-gold-20:    rgba(118, 93, 3, 0.2);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 4px;
  --radius-md: 8px;

  --header-h: 72px;

  /* Section vertical rhythm — conversion-focused, not oversized */
  --section-py: clamp(4rem, 8vh, 6.5rem);
}


/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 2rem);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--sn-dark);
  color: var(--sn-sand);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

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

::selection {
  background: var(--sn-gold);
  color: var(--sn-cream);
}


/* ----------------------------------------------------------------
   UTILITY: CONTAINER
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}


/* ----------------------------------------------------------------
   UTILITY: EYEBROW LABELS
   ---------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sn-gold-light);
  margin-bottom: 1rem;
  display: block;
}

.eyebrow-light {
  color: var(--sn-sand);
  opacity: 0.62;
}

.eyebrow-gold {
  color: var(--sn-gold-light);
  opacity: 0.9;
}


/* ----------------------------------------------------------------
   UTILITY: SECTION HEADINGS
   ---------------------------------------------------------------- */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--sn-cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-subheading {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--sn-sand);
  margin-bottom: 1.1rem;
}

.section-body {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--sn-sand);
  opacity: 0.92;
  margin-bottom: 1.2rem;
}

/* Italic accent — Cormorant Garamond italic for brand phrases */
em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: inherit;
}


/* ----------------------------------------------------------------
   BUTTONS — exact match to live main site
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.88rem 2rem;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

/* Gold fill — primary action */
.btn-gold {
  background-color: var(--sn-gold);
  color: var(--sn-cream);
  border: 1px solid var(--sn-gold);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background-color: var(--sn-gold-light);
  border-color: var(--sn-gold-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(118, 93, 3, 0.38);
  outline: none;
}

/* Outline — secondary action */
.btn-outline {
  background-color: transparent;
  color: var(--sn-sand);
  border: 1px solid rgba(219, 201, 190, 0.3);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--sn-gold-light);
  color: var(--sn-cream);
  background-color: var(--sn-gold-20);
  transform: translateY(-1px);
  outline: none;
}

.btn-sm {
  font-size: 0.7rem;
  padding: 0.62rem 1.3rem;
}

.btn-lg {
  font-size: 0.78rem;
  padding: 1.05rem 2.2rem;
}

/* Text arrow link — secondary navigation style */
.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--sn-sand);
  opacity: 0.72;
  text-decoration: none;
  transition: opacity var(--transition-base), gap var(--transition-base), color var(--transition-base);
}

.btn-text-link:hover {
  opacity: 1;
  gap: 0.7rem;
  color: var(--sn-cream);
}

.btn-text-link .arrow {
  transition: transform var(--transition-base);
}

.btn-text-link:hover .arrow {
  transform: translateX(3px);
}


/* ----------------------------------------------------------------
   HEADER / NAVIGATION
   Exact match to live main site — 72px, gold separator on scroll
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background-color: var(--sn-dark);
  border-bottom: 1px solid rgba(219, 201, 190, 0.06);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.site-header.scrolled {
  background-color: rgba(43, 24, 30, 0.97);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo — image only, no text beside it */
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Desktop nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--sn-sand);
  opacity: 0.6;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition-base), color var(--transition-base);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  opacity: 1;
  color: var(--sn-cream);
  outline: none;
}

.header-cta {
  margin-left: 0.75rem;
  flex-shrink: 0;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--sn-sand);
  opacity: 0.7;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); opacity: 1; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); opacity: 1; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: rgba(43, 24, 30, 0.99);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.25rem var(--container-pad) 2rem;
  border-bottom: 1px solid rgba(219, 201, 190, 0.08);
  gap: 0.15rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sn-sand);
  opacity: 0.65;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(219, 201, 190, 0.06);
  transition: opacity var(--transition-base), color var(--transition-base);
}

.mobile-nav-link:hover { opacity: 1; color: var(--sn-cream); }

.mobile-nav-cta {
  margin-top: 1.25rem;
  justify-content: center;
}


/* ----------------------------------------------------------------
   SECTION: HERO
   Two-column: copy left / concierge panel right
   Exact system panel from live main site
   ---------------------------------------------------------------- */
.hero-section {
  padding-top: var(--header-h);
  background-color: var(--sn-dark);
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

/* Ambient gradients — plum right, gold hint left */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 72% 40%, rgba(72, 24, 46, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 12% 80%, rgba(118, 93, 3, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(1.5rem, 3vh, 3rem);
  padding-bottom: clamp(1.5rem, 3vh, 3rem);
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-copy { max-width: 580px; }

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.8vw, 3.9rem);
  font-weight: 300;
  line-height: 1.07;
  color: var(--sn-cream);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-subheadline {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.45vw, 1.12rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--sn-sand);
  margin-bottom: 0.75rem;
  max-width: 520px;
  opacity: 0.92;
}

.hero-support {
  margin-bottom: 0.75rem;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(118, 93, 3, 0.38);
}

.hero-support p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--sn-sand);
  opacity: 0.78;
  margin-bottom: 0.3rem;
}

.hero-support p:last-child { margin-bottom: 0; }

.hero-note {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--sn-sand);
  opacity: 0.52;
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Right: Concierge panel — exact match to live site */
.hero-visual { flex-shrink: 0; }

.system-panel {
  background: linear-gradient(145deg, rgba(72, 24, 46, 0.55) 0%, rgba(43, 24, 30, 0.88) 100%);
  border: 1px solid rgba(219, 201, 190, 0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(219, 201, 190, 0.06);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(219, 201, 190, 0.07);
  background: rgba(43, 24, 30, 0.5);
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-amber { background-color: var(--sn-gold); opacity: 0.9; }
.dot-dim   { background-color: rgba(219, 201, 190, 0.18); }

.panel-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sn-sand);
  opacity: 0.38;
  margin-left: 0.4rem;
}

.panel-feed { padding: 0.35rem 0; }

.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid rgba(219, 201, 190, 0.04);
  transition: background var(--transition-base);
}

.feed-item:last-child { border-bottom: none; }

.feed-item:hover { background: rgba(219, 201, 190, 0.025); }

.feed-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.feed-active     .feed-indicator { background-color: var(--sn-gold); }
.feed-processing .feed-indicator { background-color: rgba(219, 201, 190, 0.35); }
.feed-done       .feed-indicator { background-color: rgba(118, 93, 3, 0.38); }

.feed-indicator.pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(118, 93, 3, 0.55); opacity: 1; }
  50%       { box-shadow: 0 0 0 5px rgba(118, 93, 3, 0); opacity: 0.65; }
}

.feed-content { flex: 1; min-width: 0; }

.feed-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--sn-cream);
  margin-bottom: 0.12rem;
}

.feed-detail {
  display: block;
  font-size: 0.7rem;
  color: var(--sn-sand);
  opacity: 0.48;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-time {
  font-size: 0.66rem;
  color: var(--sn-sand);
  opacity: 0.28;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  margin-top: 3px;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.2rem;
  border-top: 1px solid rgba(219, 201, 190, 0.07);
  background: rgba(43, 24, 30, 0.4);
}

.panel-status {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sn-gold-light);
  opacity: 0.8;
}

.panel-uptime {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--sn-sand);
  opacity: 0.3;
}


/* ----------------------------------------------------------------
   SECTION DIVIDER LINE — gold gradient
   ---------------------------------------------------------------- */
.section-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 93, 3, 0.28), transparent);
}


/* ----------------------------------------------------------------
   SECTION: WEBINAR PREVIEW
   Dark base with elegant video / fallback panel
   ---------------------------------------------------------------- */
.preview-section {
  background-color: var(--sn-plum);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-h);
}

.preview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 15% 50%, rgba(43, 24, 30, 0.5) 0%, transparent 65%);
  pointer-events: none;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.preview-copy { max-width: 480px; }

.preview-copy .section-heading { margin-bottom: 1.2rem; }

.preview-copy .section-body { margin-bottom: 1.75rem; }

/* Video wrapper */
.video-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(43, 24, 30, 0.7);
  border: 1px solid rgba(219, 201, 190, 0.09);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 9;
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* hidden until canplay fires */
}

/* Fallback panel — visible by default, JS hides on canplay */
.video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.video-fallback-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(118, 93, 3, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 24, 30, 0.6);
}

.video-fallback-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--sn-gold);
  opacity: 0.7;
  margin-left: 2px;
}

.video-fallback-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sn-sand);
  opacity: 0.4;
}


/* ----------------------------------------------------------------
   SECTION: WHY THIS MATTERS
   Dark — two-column copy + leakage visual
   ---------------------------------------------------------------- */
.why-section {
  background-color: var(--sn-dark);
  padding: var(--section-py) 0;
  position: relative;
  scroll-margin-top: var(--header-h);
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 93, 3, 0.28), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}

.why-copy .section-heading { margin-bottom: 1.25rem; }

.strategic-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  border-left: 2px solid rgba(118, 93, 3, 0.45);
  padding-left: 1.1rem;
  color: var(--sn-sand);
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

/* Missed moments list */
.missed-moments-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.missed-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(219, 201, 190, 0.06);
}

.missed-item:first-child { border-top: 1px solid rgba(219, 201, 190, 0.06); }

.missed-icon {
  font-size: 0.5rem;
  color: var(--sn-gold);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 6px;
}

.missed-label {
  font-size: 0.875rem;
  color: var(--sn-sand);
  opacity: 0.85;
  line-height: 1.55;
}

/* Leakage diagram — from live main site */
.leakage-diagram {
  background: rgba(72, 24, 46, 0.25);
  border: 1px solid rgba(219, 201, 190, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
}

.diagram-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sn-sand);
  opacity: 0.32;
  margin-bottom: 1.5rem;
}

.diagram-stages {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diag-stage {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.95rem 0;
}

.stage-icon {
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.stage-leak .stage-icon   { color: rgba(219, 201, 190, 0.3); }
.stage-recover .stage-icon { color: var(--sn-gold); opacity: 0.8; }

.stage-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sn-cream);
  opacity: 0.8;
  margin-bottom: 0.15rem;
}

.stage-leak .stage-label { opacity: 0.55; }

.stage-sub {
  font-size: 0.72rem;
  color: var(--sn-sand);
  opacity: 0.45;
  line-height: 1.5;
}

.stage-connector {
  padding: 0.25rem 0 0.25rem 1.75rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leak-connector    { color: rgba(219, 201, 190, 0.2); }
.recover-connector { color: var(--sn-gold); opacity: 0.6; }


/* ----------------------------------------------------------------
   SECTION: WHO SHOULD ATTEND
   Plum tinted — card grid
   ---------------------------------------------------------------- */
.who-section {
  background-color: var(--sn-plum);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-h);
}

.who-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 88% 50%, rgba(43, 24, 30, 0.45) 0%, transparent 65%);
  pointer-events: none;
}

.who-inner {
  position: relative;
  z-index: 1;
}

.who-header {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.who-header .section-heading { margin-bottom: 0; }

/* Card grid */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(219, 201, 190, 0.06);
  border: 1px solid rgba(219, 201, 190, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.who-card {
  background: rgba(43, 24, 30, 0.45);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: background var(--transition-base);
}

.who-card:hover {
  background: rgba(43, 24, 30, 0.65);
}

.who-card-mark {
  font-size: 0.5rem;
  color: var(--sn-gold);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 6px;
}

.who-card-text {
  font-size: 0.875rem;
  color: var(--sn-sand);
  opacity: 0.88;
  line-height: 1.55;
}

/* Not for block */
.not-for-block {
  background: rgba(43, 24, 30, 0.35);
  border: 1px solid rgba(219, 201, 190, 0.07);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.not-for-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(219, 201, 190, 0.3);
  white-space: nowrap;
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.not-for-body {
  font-size: 0.83rem;
  color: var(--sn-sand);
  opacity: 0.42;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--font-serif);
}


/* ----------------------------------------------------------------
   SECTION: WHAT YOU'LL SEE
   Dark base — numbered learning points
   ---------------------------------------------------------------- */
.what-section {
  background-color: var(--sn-dark);
  padding: var(--section-py) 0;
  position: relative;
  scroll-margin-top: var(--header-h);
}

.what-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 93, 3, 0.28), transparent);
}

.what-header {
  max-width: 680px;
  margin-bottom: 3rem;
}

.learn-list {
  display: flex;
  flex-direction: column;
}

.learn-item {
  border-top: 1px solid rgba(219, 201, 190, 0.08);
  transition: padding-left var(--transition-base);
}

.learn-item:last-child {
  border-bottom: 1px solid rgba(219, 201, 190, 0.08);
}

.learn-item-inner {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  padding: 1.9rem 0;
  align-items: start;
}

.learn-item:hover { padding-left: 0.4rem; }

.learn-num {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--sn-gold);
  opacity: 0.55;
  padding-top: 0.15rem;
}

.learn-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--sn-cream);
  letter-spacing: -0.005em;
  margin-bottom: 0.45rem;
}

.learn-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--sn-sand);
  opacity: 0.78;
}


/* ----------------------------------------------------------------
   SECTION: DEMO PREVIEW
   Plum — pathway flow + closing quote
   overflow: visible is required so pathway labels never clip
   ---------------------------------------------------------------- */
.demo-section {
  background-color: var(--sn-plum);
  padding: var(--section-py) 0;
  padding-bottom: calc(var(--section-py) + 1.5rem); /* extra for labels */
  position: relative;
  overflow: visible;
  scroll-margin-top: var(--header-h);
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 93, 3, 0.22), transparent);
}

.demo-header {
  max-width: 620px;
  margin-bottom: 1rem;
}

.demo-body {
  font-size: 0.9rem;
  color: var(--sn-sand);
  opacity: 0.75;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2.75rem;
}

/* Pathway track — scrollable on mobile, labels never clip */
.pathway-wrap {
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 3.5rem;   /* ensures labels clear the container */
  padding-top: 0.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
}

.pathway-wrap::-webkit-scrollbar { display: none; }

.pathway {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
}

.pathway-step {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Connector line between steps */
.pathway-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(50% + 22px);
  width: calc(100% - 44px);
  height: 1px;
  background: linear-gradient(90deg, rgba(118, 93, 3, 0.4), rgba(118, 93, 3, 0.1));
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(118, 93, 3, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 24, 30, 0.65);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--sn-gold);
  opacity: 0.85;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.pathway-step:hover .step-circle {
  border-color: rgba(118, 93, 3, 0.65);
  background: rgba(72, 24, 46, 0.7);
}

.step-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sn-sand);
  opacity: 0.72;
  text-align: center;
  line-height: 1.4;
  max-width: 100px;
  padding: 0 4px;
  /* Never clip — white-space allows wrap */
  white-space: normal;
  word-break: normal;
  hyphens: auto;
}

/* Demo closing quote */
.demo-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
  color: var(--sn-sand);
  opacity: 0.78;
  border-left: 2px solid rgba(118, 93, 3, 0.45);
  padding-left: 1.25rem;
  max-width: 640px;
}


/* ----------------------------------------------------------------
   SECTION: AGENDA
   Dark — numbered list + side panel CTA
   ---------------------------------------------------------------- */
.agenda-section {
  background-color: var(--sn-dark);
  padding: var(--section-py) 0;
  position: relative;
  scroll-margin-top: var(--header-h);
}

.agenda-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 93, 3, 0.28), transparent);
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}

.agenda-header {
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.agenda-list {
  display: flex;
  flex-direction: column;
}

.agenda-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(219, 201, 190, 0.07);
  transition: padding-left var(--transition-base);
}

.agenda-item:first-child { border-top: 1px solid rgba(219, 201, 190, 0.07); }

.agenda-item:hover { padding-left: 0.35rem; }

.agenda-num {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--sn-gold);
  opacity: 0.5;
  flex-shrink: 0;
  width: 28px;
  padding-top: 0.12rem;
}

.agenda-text {
  font-size: 0.9rem;
  color: var(--sn-sand);
  opacity: 0.88;
  line-height: 1.55;
}

/* Sticky side panel */
.agenda-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.agenda-panel {
  background: rgba(72, 24, 46, 0.3);
  border: 1px solid rgba(219, 201, 190, 0.09);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
}

.agenda-panel-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--sn-cream);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.agenda-panel-body {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--sn-sand);
  opacity: 0.72;
  margin-bottom: 1.75rem;
}

.agenda-panel-divider {
  width: 100%;
  height: 1px;
  background: rgba(219, 201, 190, 0.07);
  margin: 1.5rem 0;
}

.agenda-panel-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hint-icon {
  font-size: 0.55rem;
  color: var(--sn-gold);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 4px;
}

.hint-text {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--sn-sand);
  opacity: 0.52;
  line-height: 1.55;
}


/* ----------------------------------------------------------------
   SECTION: STRATEGIC, NOT TECHNICAL
   Plum — centered editorial moment
   ---------------------------------------------------------------- */
.strategic-section {
  background-color: var(--sn-plum);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.strategic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(43, 24, 30, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.strategic-inner {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.strategic-inner .section-heading {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.25rem;
}

.strategic-body {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--sn-sand);
  opacity: 0.82;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-inline: auto;
}

.strategic-body + .strategic-body {
  margin-top: -1.5rem;
}

.brand-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--sn-cream);
  opacity: 0.88;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(118, 93, 3, 0.22);
  border-radius: var(--radius-md);
  background: rgba(43, 24, 30, 0.4);
}


/* ----------------------------------------------------------------
   SECTION: REGISTRATION CTA
   Dark — focused conversion block
   ---------------------------------------------------------------- */
.register-section {
  background-color: var(--sn-dark);
  padding: var(--section-py) 0;
  position: relative;
  scroll-margin-top: var(--header-h);
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 93, 3, 0.28), transparent);
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}

.register-copy .section-heading { margin-bottom: 1.2rem; }

.register-panel {
  background: rgba(72, 24, 46, 0.3);
  border: 1px solid rgba(219, 201, 190, 0.09);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
}

.register-panel-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--sn-cream);
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.register-panel-body {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--sn-sand);
  opacity: 0.72;
  margin-bottom: 1.75rem;
}

.register-cta-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.register-reassurance {
  font-size: 0.72rem;
  color: var(--sn-sand);
  opacity: 0.42;
  line-height: 1.6;
}

.register-panel-divider {
  width: 100%;
  height: 1px;
  background: rgba(219, 201, 190, 0.07);
  margin: 1.5rem 0;
}

.register-alt-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sn-sand);
  opacity: 0.38;
  display: block;
  margin-bottom: 0.5rem;
}

.register-alt-link {
  font-size: 0.8rem;
  color: var(--sn-sand);
  opacity: 0.58;
  display: block;
  transition: opacity var(--transition-base), color var(--transition-base);
}

.register-alt-link:hover { opacity: 0.9; color: var(--sn-cream); }


/* ----------------------------------------------------------------
   SECTION: AFTER THE WEBINAR
   Plum — three option cards
   ---------------------------------------------------------------- */
.after-section {
  background-color: var(--sn-plum);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.after-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 15% 60%, rgba(43, 24, 30, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.after-inner {
  position: relative;
  z-index: 1;
}

.after-header {
  max-width: 600px;
  margin-bottom: 2.75rem;
}

.after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.after-card {
  background: rgba(43, 24, 30, 0.5);
  border: 1px solid rgba(219, 201, 190, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.after-card:hover {
  border-color: rgba(118, 93, 3, 0.3);
  background: rgba(43, 24, 30, 0.7);
}

.after-card-letter {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sn-gold);
  opacity: 0.55;
  display: block;
  margin-bottom: 0.75rem;
}

.after-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--sn-cream);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.after-card-body {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--sn-sand);
  opacity: 0.72;
}

.after-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}


/* ----------------------------------------------------------------
   FOOTER
   Exact match to live main site — plum base
   ---------------------------------------------------------------- */
.site-footer {
  background-color: var(--sn-plum);
  border-top: 1px solid rgba(219, 201, 190, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  padding-top: clamp(3rem, 6vh, 5rem);
  padding-bottom: clamp(2.5rem, 5vh, 4rem);
}

.footer-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.1rem;
  opacity: 0.82;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--sn-sand);
  opacity: 0.52;
  margin-bottom: 0.9rem;
}

.footer-email {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--sn-sand);
  opacity: 0.38;
  transition: opacity var(--transition-base), color var(--transition-base);
  display: inline-block;
}

.footer-email:hover { opacity: 0.78; color: var(--sn-cream); }

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-heading {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sn-sand);
  opacity: 0.28;
  margin-bottom: 0.4rem;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--sn-sand);
  opacity: 0.52;
  transition: opacity var(--transition-base), color var(--transition-base);
  letter-spacing: 0.02em;
}

.footer-link:hover { opacity: 0.9; color: var(--sn-cream); }

.footer-cta-link { color: var(--sn-sand); opacity: 0.72; }

.footer-cta-link:hover { opacity: 1; color: var(--sn-cream); }

/* Legal bar — exact required text */
.footer-legal {
  border-top: 1px solid rgba(219, 201, 190, 0.06);
  padding: 1.2rem 0;
}

.legal-line {
  font-size: 0.68rem;
  color: var(--sn-sand);
  opacity: 0.28;
  letter-spacing: 0.02em;
  text-align: center;
}


/* ----------------------------------------------------------------
   CONCIERGE CHAT LAUNCHER
   Exact match to live main site — pill with ◆ icon + "Concierge"
   ---------------------------------------------------------------- */
.concierge-launcher {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(145deg, var(--sn-plum), rgba(43, 24, 30, 0.96));
  border: 1px solid rgba(219, 201, 190, 0.15);
  border-radius: 40px;
  padding: 0.72rem 1.3rem;
  color: var(--sn-sand);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base),
    color var(--transition-base);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.concierge-launcher:hover {
  background: linear-gradient(145deg, rgba(72, 24, 46, 0.92), rgba(43, 24, 30, 0.98));
  border-color: rgba(118, 93, 3, 0.42);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(118, 93, 3, 0.15);
  transform: translateY(-2px);
  color: var(--sn-cream);
}

.concierge-launcher:focus-visible {
  outline: 2px solid rgba(118, 93, 3, 0.6);
  outline-offset: 3px;
}

.concierge-icon {
  font-size: 0.55rem;
  color: var(--sn-gold);
  opacity: 0.8;
}

.concierge-label { letter-spacing: 0.12em; }


/* ----------------------------------------------------------------
   SCROLL-REVEAL ANIMATION
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ----------------------------------------------------------------
   Large desktop (≥ 1200px)
   ---------------------------------------------------------------- */
@media (min-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr 440px; }
}


/* ----------------------------------------------------------------
   Tablet/small laptop (768px – 1199px)
   ---------------------------------------------------------------- */
@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
  }
  .preview-grid,
  .why-grid,
  .register-grid {
    gap: 3rem;
  }
  .agenda-grid   { gap: 3rem; }
  .footer-inner  { gap: 3rem; }
  .after-grid    { grid-template-columns: 1fr 1fr; }
}


/* ----------------------------------------------------------------
   Tablet (< 1024px) — collapse grids, show mobile nav
   ---------------------------------------------------------------- */
@media (max-width: 1023px) {
  :root { --header-h: 64px; }

  /* Header */
  .header-nav, .header-cta { display: none; }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: clamp(1.5rem, 3.5vh, 3rem);
    padding-bottom: clamp(1.5rem, 3.5vh, 3rem);
  }
  .hero-section { min-height: auto; padding-bottom: clamp(3rem, 6vh, 5rem); }
  .hero-copy    { max-width: 100%; }
  .hero-visual  { max-width: 520px; margin-inline: auto; }

  /* Sections — single column */
  .preview-grid   { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .agenda-grid    { grid-template-columns: 1fr; }
  .agenda-sidebar { position: static; }
  .register-grid  { grid-template-columns: 1fr; }
  .after-grid     { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2.5rem; }

  .video-wrap { max-width: 100%; }
}


/* ----------------------------------------------------------------
   Mobile (< 640px)
   ---------------------------------------------------------------- */
@media (max-width: 639px) {
  :root {
    --header-h: 60px;
    --container-pad: 1.25rem;
    --section-py: clamp(3rem, 7vh, 5rem);
  }

  .hero-headline { font-size: clamp(1.95rem, 7.5vw, 2.6rem); }

  .who-grid { grid-template-columns: 1fr; }
  .after-grid { grid-template-columns: 1fr; }

  .footer-nav { grid-template-columns: 1fr; gap: 2rem; }

  .concierge-launcher {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.62rem 1rem;
  }

  .hero-ctas, .after-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .btn-lg { width: 100%; justify-content: center; }

  .not-for-block {
    flex-direction: column;
    gap: 0.75rem;
  }

  .learn-item-inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }

  .learn-num { display: none; }

  .pathway-step { min-width: 110px; }

  .register-cta-block { align-items: stretch; }
  .register-cta-block .btn { justify-content: center; }
}


/* ----------------------------------------------------------------
   Focus visible (accessibility)
   ---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid rgba(118, 93, 3, 0.65);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ----------------------------------------------------------------
   Reduced motion
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
