/* =========================================================
   AI OUTREACH WORKSHOP — Landing Page
   Aesthetic: founder-built editorial · deep navy glassmorphism
   Type: DM Sans (display/body) + DM Mono (metadata)
========================================================= */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  /* Canopy brand tokens */
  --brand-deep: #02188e;
  --brand-primary: #0b6fe4;
  --brand-accent: #70b6fa;
  --brand-violet: #2702fa;

  /* Surfaces */
  --bg: #030a2a;
  --bg-deep: #010417;
  --text: #eaefff;
  --text-muted: #9aa6d4;
  --text-subtle: #6272a4;

  /* Glass */
  --glass-bg: rgba(255,255,255,0.03);
  --glass-bg-strong: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);
  --glass-border-strong: rgba(255,255,255,0.14);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --r-sm: 0.5rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-full: 9999px;

  /* Layout */
  --max-w: 1200px;
}

/* =========================================================
   ATMOSPHERE — layered orbs, grid, noise
========================================================= */

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(11,111,228,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 110%, rgba(39,2,250,0.15) 0%, transparent 50%),
    linear-gradient(180deg, #010417 0%, #030a2a 40%, #050e33 100%);
}

.atmosphere__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  animation: float 22s ease-in-out infinite;
  will-change: transform;
}

.atmosphere__orb--blue {
  width: 620px; height: 620px;
  top: -12%; left: -12%;
  background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
  animation-delay: 0s;
}

.atmosphere__orb--violet {
  width: 720px; height: 720px;
  bottom: -22%; right: -15%;
  background: radial-gradient(circle, var(--brand-violet) 0%, transparent 70%);
  animation-delay: -11s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.05); }
  66%      { transform: translate(-30px, 40px) scale(0.95); }
}

.atmosphere__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 80%);
}

.atmosphere__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.45;
  mix-blend-mode: overlay;
}

/* =========================================================
   SCARCITY BANNER — high impact, always in view
========================================================= */

.banner {
  position: sticky;
  top: 0;
  z-index: 50;
  display: block;
  background: linear-gradient(90deg, #0b6fe4 0%, #2702fa 100%);
  color: white;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 10px 32px -10px rgba(39,2,250,0.55);
  overflow: hidden;
  transition: filter 220ms var(--ease);
}

.banner:hover { filter: brightness(1.08); }

.banner__shimmer {
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.22) 50%,
    transparent 100%
  );
  animation: shimmer 4.5s linear infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%   { left: -40%; }
  100% { left: 120%; }
}

.banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.95rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.banner__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
  animation: pulse-white 1.5s ease-in-out infinite;
}

@keyframes pulse-white {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.75); }
  50%      { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}

.banner__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.92);
}

.banner__text strong {
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}

.banner__divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

.banner__date {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.banner__cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: white;
  padding: 0.4rem 0.95rem;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}

.banner:hover .banner__cta {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.4);
}

.banner__arrow {
  font-weight: 600;
  transition: transform 220ms var(--ease);
  display: inline-block;
}

.banner:hover .banner__arrow { transform: translateX(3px); }

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-violet) 100%);
  color: white;
  box-shadow:
    0 8px 32px -8px rgba(11,111,228,0.55),
    inset 0 1px 0 rgba(255,255,255,0.22);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 42px -8px rgba(11,111,228,0.75),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.btn--primary:active { transform: translateY(0); }

.btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
}

.btn--small:hover { border-color: var(--glass-border-strong); }

.btn--large { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--xl { padding: 1.3rem 2.5rem; font-size: 1.15rem; }

.btn__price {
  padding-left: 0.85rem;
  margin-left: 0.35rem;
  border-left: 1px solid rgba(255,255,255,0.28);
  font-weight: 500;
}

/* =========================================================
   GLASS CARD — base
========================================================= */

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 45%);
  pointer-events: none;
  border-radius: inherit;
}

/* =========================================================
   SECTION PRIMITIVES
========================================================= */

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.section__header { margin-bottom: 3rem; }

.section__eyebrow {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 0.85rem;
  display: inline-block;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 22ch;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem 1.5rem 8rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.hero > .chip {
  animation: fade-up 700ms var(--ease-out) both;
  animation-delay: 200ms;
}

.hero__hosts {
  display: flex;
  justify-content: center;
  animation: fade-up 900ms var(--ease-out) both;
  animation-delay: 100ms;
}

.hero__host {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 8px 24px -6px rgba(11,111,228,0.5);
  background: var(--bg);
  position: relative;
}

.hero__host + .hero__host {
  margin-left: -14px;
}

.hero__host img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chip--warn {
  color: var(--brand-accent);
  border-color: rgba(112,182,250,0.32);
  background: rgba(112,182,250,0.08);
}

.chip--muted { color: var(--text-subtle); }

.chip__dot,
.chip__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
  flex-shrink: 0;
}

.chip__pulse {
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(112,182,250,0.7);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(112,182,250,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(112,182,250,0); }
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 18ch;
  margin: 0 auto;
  animation: fade-up 900ms var(--ease-out) both;
  animation-delay: 150ms;
}

.hero__accent {
  display: block;
  margin-top: 0.25em;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-violet) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
}

.hero__clarity {
  max-width: 42ch;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  animation: fade-up 900ms var(--ease-out) both;
  animation-delay: 300ms;
}

.hero__cta {
  position: relative;
  display: inline-flex;
  animation: fade-up 900ms var(--ease-out) both;
  animation-delay: 450ms;
}

.hero__price-tag {
  position: absolute;
  bottom: -110px;
  right: -200px;
  width: 220px;
  height: auto;
  pointer-events: none;
  transform: rotate(-8deg);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

/* =========================================================
   FORMAT PILLS — below the fold, communicate how it works
========================================================= */

.format {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: flex;
  justify-content: center;
}

.format__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.format__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.15rem;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text);
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}

.format__pill:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-2px);
}

.format__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 10px rgba(112,182,250,0.55);
  flex-shrink: 0;
}

.hero__sub {
  max-width: 46ch;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.5;
  animation: fade-up 900ms var(--ease-out) both;
  animation-delay: 300ms;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
  animation: fade-up 900ms var(--ease-out) both;
  animation-delay: 450ms;
}

.hero__note {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}

.hero__seats {
  max-width: 420px;
  animation: fade-up 900ms var(--ease-out) both;
  animation-delay: 600ms;
}

.hero__seats-bar {
  height: 6px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.hero__seats-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-violet));
  box-shadow: 0 0 14px rgba(112,182,250,0.5);
  border-radius: inherit;
}

.hero__seats-label {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   PROOF STRIP
========================================================= */

.proof {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.proof__item { text-align: center; }

.proof__num {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: baseline;
}

.proof__num-plus,
.proof__num-unit {
  font-size: 0.55em;
  font-weight: 500;
  margin-left: 0.1em;
  color: var(--brand-accent);
  -webkit-text-fill-color: var(--brand-accent);
}

.proof__label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.6rem;
  text-transform: uppercase;
}

.proof__divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, var(--glass-border-strong), transparent);
}

/* =========================================================
   AUDIENCE
========================================================= */

.audience {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.audience__item {
  padding: 2rem;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}

.audience__item:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-strong);
}

.audience__num {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--brand-accent);
  margin-bottom: 1.75rem;
}

.audience__head {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.audience__body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* =========================================================
   OUTCOMES
========================================================= */

.outcomes__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.outcome {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}

.outcome:hover {
  border-color: var(--glass-border-strong);
  transform: translateY(-2px);
}

.outcome__check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-violet));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px -2px rgba(11,111,228,0.4);
}

.outcome__text { display: flex; flex-direction: column; gap: 0.3rem; }
.outcome__text strong { font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.outcome__text span { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* =========================================================
   HOURS TIMELINE
========================================================= */

.hours__timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hour {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  padding: 2rem;
  transition: transform 380ms var(--ease), border-color 380ms var(--ease);
}

.hour:hover {
  transform: translateX(4px);
  border-color: var(--glass-border-strong);
}

.hour__marker {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--glass-border);
  padding-right: 2rem;
}

.hour__marker-label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hour__marker-num {
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, var(--brand-accent) 0%, var(--brand-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hour__title {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.hour__desc {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  max-width: 55ch;
}

.hour__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.hour__list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hour__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 1px;
  background: var(--brand-accent);
}

.hour__outcome {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  text-transform: none;
}

/* =========================================================
   TEACHERS
========================================================= */

.teachers__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.teachers__grid--solo {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.teacher {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.teacher__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-violet) 100%);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 10px 32px -8px rgba(11,111,228,0.45);
  border: 2px solid rgba(255,255,255,0.08);
}

.teacher__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher__avatar--initial span {
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.05em;
}

.teacher__meta { display: flex; flex-direction: column; gap: 0.2rem; }

.teacher__name {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.teacher__role {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--brand-accent);
  letter-spacing: 0.03em;
}

.teacher__body {
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================================
   FAQ
========================================================= */

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color 200ms var(--ease);
}

.faq__item[open] { border-color: var(--glass-border-strong); }

.faq__item summary {
  padding: 1.4rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.01em;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--brand-accent);
  font-weight: 300;
  transition: transform 300ms var(--ease);
  flex-shrink: 0;
  line-height: 1;
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__body {
  padding: 0 1.75rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 60ch;
}

/* =========================================================
   FINAL CTA
========================================================= */

.final {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem 8rem;
}

.final__inner {
  padding: 4rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(11,111,228,0.28) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(39,2,250,0.22) 0%, transparent 60%),
    var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

.final__eyebrow {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1.25rem;
}

.final__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 18ch;
  margin-inline: auto;
}

.final__sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.final__note {
  margin-top: 1.5rem;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  border-top: 1px solid var(--glass-border);
  padding: 2rem 1.5rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__inner img { height: 22px; width: auto; }

.footer__meta {
  display: flex;
  gap: 1.5rem;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

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

/* =========================================================
   STICKY MOBILE CTA
========================================================= */

.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.65rem 0.65rem 1.1rem;
  background: rgba(3,10,42,0.85);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--r-full);
  box-shadow: 0 14px 42px -10px rgba(0,0,0,0.65);
}

.sticky-cta__info { flex: 1; min-width: 0; }

.sticky-cta__price {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
}

.sticky-cta__date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.sticky-cta .btn { padding: 0.65rem 1.1rem; font-size: 0.85rem; }

/* =========================================================
   REGISTER PAGE
========================================================= */

.register-body {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 2.5rem 1.25rem 4rem;
}

.register {
  width: 100%;
  max-width: 560px;
  position: relative;
}

.register__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.8rem 0.4rem 0.65rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}

.register__back:hover {
  color: var(--text);
  border-color: var(--glass-border-strong);
}

.register__card {
  padding: 2.75rem 2.25rem;
  background:
    radial-gradient(ellipse at 30% 10%, rgba(11,111,228,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 90%, rgba(39,2,250,0.15) 0%, transparent 55%),
    var(--glass-bg-strong);
  border-color: var(--glass-border-strong);
  animation: fade-up 900ms var(--ease-out) both;
}

.register__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  background: rgba(112,182,250,0.08);
  border: 1px solid rgba(112,182,250,0.22);
  border-radius: var(--r-full);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--brand-accent);
  margin-bottom: 1.5rem;
}

.register__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
  animation: pulse 1.6s ease-in-out infinite;
}

.register__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand-accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.register__sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.register__summary {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
}

.register__summary li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.register__summary li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.1rem;
  height: 1.1rem;
  display: grid;
  place-items: center;
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.82rem;
}

/* ============ FORM ============ */

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.form__label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.form__optional {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-subtle);
  font-weight: 400;
}

.form__input,
.form__textarea {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 0.9rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.005em;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
  width: 100%;
  font-weight: 400;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-subtle);
  font-weight: 400;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 3px rgba(112,182,250,0.12);
}

.form__textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

.form__submit {
  width: 100%;
  margin-top: 0.5rem;
  position: relative;
  min-height: 3.6rem;
}

.form__submit-loading {
  display: none;
}

.form__submit.is-loading .form__submit-label {
  display: none;
}

.form__submit.is-loading .form__submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form__submit.is-loading .form__submit-loading::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  animation: spin 600ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form__submit:disabled {
  opacity: 0.85;
  cursor: wait;
}

.form__error {
  color: #ff8a8a;
  font-size: 0.85rem;
  margin-top: 0.85rem;
  text-align: center;
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.02em;
  min-height: 1.2rem;
}

.form__hint {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  line-height: 1.5;
}

@media (max-width: 540px) {
  .register__card { padding: 2rem 1.5rem; }
  .register-body { padding-top: 1.5rem; }
}

/* =========================================================
   THANK YOU PAGE
========================================================= */

.thankyou-body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem 1.25rem;
}

.thankyou {
  width: 100%;
  max-width: 560px;
}

.thankyou__card {
  padding: 3rem 2.5rem;
  background:
    radial-gradient(ellipse at 30% 10%, rgba(11,111,228,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 90%, rgba(39,2,250,0.18) 0%, transparent 60%),
    var(--glass-bg-strong);
  border-color: var(--glass-border-strong);
  animation: fade-up 900ms var(--ease-out) both;
}

.thankyou__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  background: rgba(112,182,250,0.1);
  border: 1px solid rgba(112,182,250,0.28);
  border-radius: var(--r-full);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--brand-accent);
  margin-bottom: 1.75rem;
}

.thankyou__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-accent);
  animation: pulse 1.6s ease-in-out infinite;
}

.thankyou__title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand-accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.thankyou__sub {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.thankyou__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.thankyou__list li {
  padding-left: 1.85rem;
  position: relative;
  color: var(--text);
  font-size: 1rem;
}

.thankyou__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.3rem;
  height: 1.3rem;
  display: grid;
  place-items: center;
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Add-to-calendar block */
.thankyou__calendar {
  margin: 1.5rem 0 1.75rem;
  padding: 1.1rem 1.25rem;
  background: rgba(112,182,250,0.06);
  border: 1px solid rgba(112,182,250,0.18);
  border-radius: var(--r-md);
}

.thankyou__calendar-label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 0.7rem;
}

.thankyou__calendar-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-full);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}

.cal-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.cal-btn__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: block;
}

.thankyou__steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.thankyou__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  transition: border-color 200ms var(--ease);
}

.thankyou__step:hover { border-color: var(--glass-border-strong); }

.thankyou__step-num {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--brand-accent);
  flex-shrink: 0;
  padding-top: 0.15rem;
  min-width: 1.5rem;
}

.thankyou__step > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.thankyou__step strong {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.thankyou__step span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.thankyou__ps {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
  line-height: 1.65;
}

.thankyou__ps strong { color: var(--brand-accent); font-weight: 500; }

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

@media (max-width: 900px) {
  .hero__title { max-width: 20ch; }
  .hour { grid-template-columns: 120px 1fr; gap: 1.5rem; }
  .hour__marker-num { font-size: 3.25rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 5rem; }
  .format { padding: 2.5rem 1.25rem 3.5rem; }
  .format__pill { font-size: 0.7rem; padding: 0.55rem 0.95rem; }
  .banner__inner { padding: 0.7rem 1rem; gap: 0.65rem; }
  .banner__text { font-size: 0.85rem; }
  .banner__date { font-size: 0.72rem; letter-spacing: 0.06em; }
  .banner__cta { font-size: 0.8rem; padding: 0.3rem 0.75rem; }
  .proof { padding: 0 1.25rem 4rem; gap: 1.5rem; }
  .proof__divider { display: none; }
  .final { padding: 3rem 1.25rem 7rem; }
  .final__inner { padding: 2.5rem 1.5rem; }
  .sticky-cta { display: flex; }

  .hour {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
  }
  .hour__marker {
    flex-direction: row;
    align-items: baseline;
    gap: 0.85rem;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .hour__marker-num { font-size: 2.4rem; }

  .teacher { padding: 2rem 1.5rem; }
  .nav { padding: 0.75rem 1.25rem; }
  .nav__logo img { height: 24px; }

  .faq__item summary { padding: 1.1rem 1.25rem; font-size: 0.95rem; }
  .faq__body { padding: 0 1.25rem 1.25rem; }

  .thankyou__card { padding: 2.25rem 1.75rem; }
}

@media (max-width: 540px) {
  .hero__price-tag {
    width: 160px;
    right: -130px;
    bottom: -80px;
  }
}

@media (max-width: 400px) {
  .hero__title { font-size: 2.3rem; letter-spacing: -0.03em; }
  .hero__price-tag {
    width: 120px;
    right: -90px;
    bottom: -60px;
  }
  .section__title { font-size: 1.75rem; }
  .final__title { font-size: 2rem; }
  .hero__meta { gap: 0.4rem; }
  .chip { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
  .hour__title { font-size: 1.35rem; }
  .audience__head { font-size: 1.1rem; }
}

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