:root {
  --paper: #ffffff;
  --paper-2: #f4f4f4;
  --ink: #000000;
  --ink-dim: #555555;
  --line: rgba(0,0,0,0.12);
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ink);
}
.nav nav { display: none; gap: 22px; }
.nav nav a {
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  opacity: 0.7;
}
.nav nav a:hover { opacity: 1; }
.cta-small {
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink); color: #fff;
}
@media (min-width: 720px) {
  .nav nav { display: inline-flex; }
}

/* HERO */
.hero {
  padding: 64px 22px 48px;
  max-width: 1080px; margin: 0 auto;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,0,0,0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(44px, 8.5vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 22px 0 20px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.lede {
  max-width: 640px;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.5;
  color: #1a1a1a;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 28px 0 40px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  min-height: 48px;
}
.btn.primary {
  background: var(--ink);
  color: #fff;
}
.btn.primary:hover { transform: translateY(-1px); background: #222; }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.big { padding: 18px 28px; font-size: 17px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 640px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-meta > div {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-meta .k {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-dim);
}
.hero-meta .v {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
}
@media (min-width: 720px) {
  .hero-meta { grid-template-columns: repeat(4, 1fr); }
}

/* STRIP */
.strip {
  background: var(--ink);
  color: #fff;
}
.strip-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  max-width: 1080px; margin: 0 auto;
  font-size: 15px;
  flex-wrap: wrap;
}
.strip-inner strong {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
}
.strip .sep { opacity: 0.4; }

/* SECTION HEAD */
.section-head { max-width: 780px; margin: 0 auto 34px; }
.section-head.center { text-align: center; }
.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.section-head p { color: #1a1a1a; font-size: 17px; margin: 0; }

/* PROGRAM */
.program {
  padding: 72px 22px;
  max-width: 1080px; margin: 0 auto;
}
.days {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.days li {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: start;
  gap: 18px;
  padding: 22px 22px 22px 18px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 20px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.days li:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: #fff;
}
.days li:hover p { color: #d0d0d0; }
.days .num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.days h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  margin: 4px 0 6px;
  letter-spacing: -0.01em;
}
.days p { margin: 0; color: #333; }
@media (min-width: 760px) {
  .days { grid-template-columns: repeat(2, 1fr); }
  .days li:last-child { grid-column: 1 / -1; background: var(--ink); color: #fff; }
  .days li:last-child p { color: #d0d0d0; }
}

/* APPLY */
.apply {
  background: var(--ink);
  color: #fff;
  padding: 84px 22px;
}
.apply .tag { color: #fff; border-bottom-color: #fff; }
.apply-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
.apply-copy h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.apply-copy p { color: #e5e5e5; font-size: 17px; max-width: 520px; }
.apply-copy p.muted { color: #9a9a9a; font-size: 15px; }
.apply-copy .btn.primary {
  margin-top: 10px;
  background: #fff;
  color: var(--ink);
}
.apply-copy .btn.primary:hover { background: #ddd; }

.pitch-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.pitch-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 26px;
}
.live { color: #fff; font-weight: 700; }
.pitch-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.pitch-by { color: #9a9a9a; font-size: 14px; margin-bottom: 22px; }
.pitch-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: #fff;
  padding: 16px 18px;
  border-left: 3px solid #fff;
  background: rgba(255,255,255,0.04);
  border-radius: 0 12px 12px 0;
  margin-bottom: 20px;
}
.pitch-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: #d0d0d0;
}
.dot-sep { opacity: 0.4; }

@media (min-width: 860px) {
  .apply-grid { grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
}

/* DEMO */
.demo {
  padding: 88px 22px;
  max-width: 1080px; margin: 0 auto;
  text-align: center;
}

/* FAQ */
.faq {
  padding: 40px 22px 96px;
  max-width: 1080px; margin: 0 auto;
}
.faq-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
.faq h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 6px;
}
.faq p { color: #333; margin: 0; }
@media (min-width: 720px) {
  .faq-grid { grid-template-columns: repeat(3, 1fr); }
}

/* FINAL */
.final {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 96px 22px 110px;
  text-align: center;
}
.final h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
}
.final .muted { margin-top: 18px; }
.small { font-size: 13px; }
.muted { color: var(--ink-dim); }

/* FOOTER */
footer {
  padding: 22px;
  display: flex; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  max-width: 1080px; margin: 0 auto;
  flex-wrap: wrap;
}
footer a { color: var(--ink); text-decoration: underline; }
