:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-soft: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --accent: #1e40af;
  --accent-dark: #1e3a8a;
  --border: #e2e8f0;
  --border-strong: #cbd5e0;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  --radius: 18px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #f8f3ed;
  box-shadow: var(--shadow);
}

.announcement p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 22px;
  row-gap: 6px;
}

.announcement p span {
  position: relative;
}

.announcement p span + span::before {
  content: "·";
  position: absolute;
  left: -14px;
  color: rgba(248, 243, 237, 0.75);
}

.section {
  margin-top: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 26px;
  align-items: center;
  padding: 34px;
}

.hero-copy {
  max-width: 42rem;
}

.hero-kicker,
.kicker,
.eyebrow,
.agenda-day,
.panel-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: "DM Serif Display", serif;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.6rem, 5.4vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3 {
  margin-top: 10px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h4 {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.hero-subline {
  margin: 14px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.lede,
.stack p,
.section p,
.feature-list,
.faq-list p,
ol {
  color: var(--muted);
}

.lede {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 40ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--surface-soft);
}

.hero-panel,
.agenda-card,
.audience-card,
.instructor-card,
.faq-list details,
.comparison-table,
.comparison-table > div {
  border-radius: calc(var(--radius) - 4px);
}

.hero-panel {
  border: 1px solid var(--border-strong);
  background: var(--surface-soft);
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.panel-body {
  padding: 24px;
}

.panel-title {
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.panel-plan {
  margin-top: 18px;
  border-top: 1px solid var(--border);
}

.panel-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.panel-row span {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 36px;
  padding-top: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.panel-row strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text);
}

.panel-row p,
.panel-meta p {
  margin: 6px 0 0;
}

.panel-row p {
  font-size: 0.95rem;
}

.panel-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.spots-left {
  margin: 14px 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.panel-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 14px;
}

.panel-reassurance {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.panel-actions .button {
  flex: 1 1 0;
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.panel-meta p {
  margin: 0;
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
}

.panel-meta p::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
  transform: translateY(-50%);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
}

.pitch-header {
}

.pitch-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.pitch-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.pitch-card-muted {
  background: var(--surface-soft);
}

.pitch-card-strong {
  background: #ffffff;
  border-color: var(--border-strong);
}

.pitch-icon {
  color: var(--muted);
}

.pitch-card-strong .pitch-icon {
  color: var(--accent);
}

.pitch-card-label {
  margin: 16px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pitch-card-text {
  margin: 8px 0 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--muted);
}

.pitch-card-strong .pitch-card-text {
  font-weight: 600;
  color: var(--text);
}

.pitch-image {
  margin-top: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  aspect-ratio: 1200 / 630;
  background: url('./social-card.png') center / cover no-repeat;
}

.pitch-closer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 680px) {
  .pitch-cards {
    grid-template-columns: 1fr;
  }
}

.stack > * + * {
  margin-top: 10px;
}

.ship-closer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.ship-closer p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.ship-closer p + p {
  margin-top: 12px;
}

.monday-story {
  margin-top: 18px;
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.story-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.story-quote {
  margin: 12px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text);
  font-family: "DM Serif Display", serif;
}

.story-lines {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.story-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.story-lines p + p {
  margin-top: 10px;
}

.story-emphasis {
  margin: 18px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.story-footer {
  margin: 8px 0 0;
  color: var(--muted);
}

.comparison-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.comparison-card {
  position: relative;
  padding: 28px 26px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  min-height: 100%;
  overflow: hidden;
}

.comparison-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 22px 0 0 22px;
  background: #cbd5e0;
}

.comparison-after::before {
  background: #1e40af;
}

.comparison-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.comparison-card h4 {
  margin-top: 12px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.comparison-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.98rem;
}

.comparison-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.section-intro {
  max-width: 54rem;
}

.agenda-grid,
.audience-grid,
.instructor-grid {
  display: grid;
  gap: 20px;
}

.agenda-grid,
.instructor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.agenda-card,
.audience-card,
.instructor-card,
.faq-list details {
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.agenda-card,
.audience-card,
.instructor-card {
  padding: 24px;
}

.feature-list,
.panel-steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
ol li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

ol {
  list-style: none;
  counter-reset: step;
  margin: 18px 0 0;
  padding: 0;
}

ol li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
}

ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1;
}

.weekend-note,
.instructor-note,
.closing-note {
  margin-top: 22px;
  font-weight: 500;
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

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

.faq-list p {
  margin: 12px 0 0;
}

.closing {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.closing h3 {
  max-width: 14ch;
  margin: 10px auto 0;
}

.closing .button {
  margin-top: 22px;
}

.footer {
  margin-top: 24px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
}

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

@media (max-width: 980px) {
  .hero,
  .split,
  .agenda-grid,
  .audience-grid,
  .instructor-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 26px;
  }

  .comparison-story {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .announcement {
    padding: 10px 14px;
    border-radius: 18px;
  }

  .announcement p {
    font-size: 0.8rem;
    line-height: 1.45;
    text-align: center;
  }

  .section,
  .hero,
  .footer {
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  h3 {
    font-size: 1.9rem;
  }

  .panel-actions {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .button,
  .button-ghost {
    width: 100%;
  }
}
