@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap");

:root {
  --bg: #f5f1e8;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fffdf8;
  --surface-dark: #231f1a;
  --ink: #111111;
  --ink-soft: #4e4b45;
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.16);
  --accent: #bf3b10;
  --accent-soft: #f8ddcf;
  --gold: #d8a920;
  --shadow: 0 24px 80px rgba(45, 32, 18, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 169, 32, 0.12), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(191, 59, 16, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f4eb 0%, #f3ede2 100%);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.38;
  pointer-events: none;
}

.page-glow-left {
  top: -10rem;
  left: -10rem;
  background: rgba(216, 169, 32, 0.36);
}

.page-glow-right {
  right: -8rem;
  bottom: 18%;
  background: rgba(191, 59, 16, 0.18);
}

.shell {
  width: min(var(--shell), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 1rem 0 0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(6.9rem, 12vw, 8.9rem);
  height: auto;
}

.header-status {
  margin: 0;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 1.2rem;
  padding: 2rem 0 1.25rem;
}

.hero-copy,
.hero-card,
.statement,
.panel,
.curriculum,
.offers,
.examples,
.audience-card,
.faq,
.closing {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 2.2rem;
}

.eyebrow,
.section-tag,
.card-kicker,
.proof-label,
.session-index,
.example-role {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0.38rem 0.74rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag,
.card-kicker,
.session-index,
.example-role {
  background: rgba(216, 169, 32, 0.14);
  color: #6d4b00;
}

.proof-label {
  background: rgba(191, 59, 16, 0.1);
  color: #8e2809;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 5.45vw, 4.15rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.95rem);
}

h3 {
  font-size: 1.18rem;
  line-height: 1.16;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-lead {
  max-width: 54ch;
  margin-top: 1.2rem;
  font-size: 1.16rem;
}

.hero-support {
  max-width: 58ch;
  margin-top: 0.9rem;
  font-size: 1rem;
}

.agent-strip {
  margin-top: 1.1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
}

.agent-strip-label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.agent-strip-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.agent-chip {
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}

.agent-logo {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.agent-logo-claude {
  color: #b86a43;
}

.agent-logo-codex {
  border-radius: 0.32rem;
}

.agent-chip-copy {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.18rem;
}

.agent-chip-name {
  color: var(--ink);
  line-height: 1.1;
}

.agent-chip-link {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.agent-chip:hover {
  background: rgba(255, 255, 255, 0.96);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff8f3;
  box-shadow: 0 12px 30px rgba(191, 59, 16, 0.22);
}

.button-primary:hover {
  background: #a4320d;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.55);
}

.button-full {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 0.46rem 0.76rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.proof-strip {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.proof-text {
  max-width: 42ch;
  font-size: 0.98rem;
}

.cohort-launches {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.cohort-launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.88rem 0.95rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  text-decoration: none;
}

.cohort-launch-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.cohort-launch-name {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.cohort-launch-date {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cohort-launch-cta {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cohort-launch:not(.is-disabled):hover {
  background: rgba(255, 255, 255, 0.9);
}

.cohort-launch.is-disabled {
  opacity: 0.76;
  cursor: default;
}

.cohort-launch.is-disabled .cohort-launch-cta {
  color: var(--ink-soft);
}

.hero-card {
  padding: 1.3rem;
  align-self: start;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(248, 241, 231, 0.96));
}

.hero-card-top {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.hero-card-top > div {
  min-width: 0;
}

.hero-photo {
  width: 112px;
  height: 112px;
  border-radius: 26px;
  object-fit: cover;
}

.card-meta {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  max-width: 29ch;
}

.card-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.card-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  text-decoration: none;
}

.card-social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.card-social-link:hover {
  background: rgba(255, 255, 255, 0.9);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-card-body {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.price-label {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  max-width: none;
}

.card-list,
.feature-list,
.audience-list {
  margin: 1.1rem 0 0;
  padding-left: 1.1rem;
}

.card-list li,
.feature-list li,
.audience-list li {
  margin-bottom: 0.75rem;
}

.card-note {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 0.94rem;
  line-height: 1.45;
}

.statement,
.curriculum,
.offers,
.examples,
.faq,
.closing {
  margin-top: 1.1rem;
  padding: 1.8rem;
}

.statement p:last-child {
  margin-top: 0.9rem;
  max-width: 72ch;
}

.split-layout,
.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.1rem;
}

.panel,
.audience-card {
  padding: 1.8rem;
}

.panel-dark {
  background: linear-gradient(180deg, #231f1a 0%, #2d261f 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff8ef;
}

.panel-dark h2,
.panel-dark h3,
.panel-dark p,
.panel-dark li {
  color: #fff8ef;
}

.panel-dark .section-tag {
  background: rgba(216, 169, 32, 0.18);
  color: #ffd969;
}

.split-layout .panel h2 {
  line-height: 1;
}

.steps {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.2rem;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #1b1713;
  color: #fff7f0;
  font-weight: 800;
}

.step p {
  margin-top: 0.28rem;
  line-height: 1.35;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head .section-side {
  max-width: 32ch;
}

.session-list,
.example-grid,
.offer-grid {
  display: grid;
  gap: 1rem;
}

.session-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.session-item,
.example,
.offer-card {
  padding: 1.1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
}

.session-item p:last-child,
.example p:last-child,
.offer-card p:last-of-type {
  margin-top: 0.55rem;
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.offer-list {
  margin: 0;
  padding-left: 1.1rem;
}

.offer-list li {
  margin-bottom: 0.55rem;
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.section-side {
  font-size: 0.98rem;
}

.example-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  gap: 1rem;
  align-items: start;
}

.example-visual {
  padding: 1.1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(216, 169, 32, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(248, 241, 231, 0.88));
}

.example-visual-title {
  margin-top: 0.25rem;
  line-height: 1.02;
}

.example-patterns {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.example-pattern {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.example-pattern:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.example-pattern-label {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.example-pattern p:last-child {
  margin-top: 0.12rem;
  line-height: 1.35;
}

.example-board {
  width: 100%;
  border-radius: 1rem;
}

.example-visual-copy {
  margin-top: 0.95rem;
  color: var(--ink);
  font-size: 0.97rem;
  font-weight: 700;
}

.example-sparks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.example-sparks li {
  padding: 0.46rem 0.72rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.audience-card-muted {
  background: rgba(255, 249, 241, 0.88);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 800;
}

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

.faq-list p {
  margin-top: 0.7rem;
  max-width: none;
  width: 100%;
}

.closing {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.96), rgba(248, 221, 207, 0.82));
}

.closing h2 {
  max-width: 15ch;
  margin: 0.1rem auto 0;
}

.closing p {
  max-width: 44ch;
  margin: 1rem auto 1.4rem;
}

.closing-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.mobile-cta-bar {
  display: none;
}

.site-footer {
  padding: 1.2rem 0 2rem;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  width: 8rem;
  height: auto;
  opacity: 0.92;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-footer p,
.footer-links,
.footer-links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal-page {
  display: grid;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.legal-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-title {
  max-width: none;
}

.legal-lead {
  max-width: 52ch;
  margin-top: 0.8rem;
}

.legal-card h2 {
  margin-bottom: 0.65rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero,
  .split-layout,
  .audience,
  .session-list,
  .offer-grid,
  .example-grid,
  .example-showcase {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 11ch;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(6.75rem + env(safe-area-inset-bottom, 0px));
  }

  .site-header-inner,
  .site-footer-inner {
    flex-direction: column;
    align-items: start;
  }

  .site-header {
    padding-top: 0.75rem;
  }

  .hero-copy,
  .hero-card,
  .statement,
  .panel,
  .curriculum,
  .offers,
  .examples,
  .audience-card,
  .faq,
  .closing {
    padding: 1.3rem;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .brand-logo {
    width: 6.8rem;
  }

  .header-status {
    width: 100%;
    text-align: center;
  }

  .hero {
    gap: 0.9rem;
    padding-top: 1.1rem;
  }

  .hero-copy {
    padding: 1.45rem;
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-support {
    font-size: 0.96rem;
  }

  .agent-strip {
    padding: 0.9rem;
  }

  .hero-card-top {
    grid-template-columns: 88px 1fr;
  }

  .hero-photo {
    width: 88px;
    height: 88px;
    border-radius: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 3.6rem;
    padding-inline: 1rem;
  }

  .hero-actions .button-primary,
  .closing .button-primary {
    box-shadow: 0 16px 36px rgba(191, 59, 16, 0.28);
  }

  .hero-points li {
    min-height: 100%;
    padding: 0.7rem 0.8rem;
    border-radius: 18px;
    text-align: center;
  }

  .proof-strip {
    margin-top: 1.2rem;
    padding-top: 1.1rem;
  }

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

  .closing .button-primary {
    width: 100%;
    min-height: 3.7rem;
  }

  .closing-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .closing-actions .button {
    width: 100%;
    min-height: 3.6rem;
  }

  .footer-meta,
  .footer-links {
    align-items: start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 246, 0.94);
    box-shadow: 0 18px 48px rgba(35, 31, 26, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-copy {
    min-width: 0;
    flex: 1 1 auto;
  }

  .mobile-cta-label,
  .mobile-cta-price {
    color: var(--ink);
  }

  .mobile-cta-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-cta-price {
    font-size: 0.95rem;
    font-weight: 700;
  }

  .mobile-cta-button {
    min-width: 11rem;
    min-height: 3.4rem;
    padding-inline: 1.1rem;
    box-shadow: 0 14px 32px rgba(191, 59, 16, 0.24);
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
  }

  .shell {
    width: min(var(--shell), calc(100% - 1rem));
  }

  h1 {
    max-width: 9.5ch;
  }

  .hero-copy,
  .hero-card,
  .statement,
  .panel,
  .curriculum,
  .offers,
  .examples,
  .audience-card,
  .faq,
  .closing {
    padding: 1.15rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .mobile-cta-bar {
    gap: 0.6rem;
    align-items: center;
    bottom: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    padding: 0.7rem;
  }

  .mobile-cta-copy {
    flex: 1 1 0;
  }

  .mobile-cta-label {
    font-size: 0.72rem;
  }

  .mobile-cta-price {
    font-size: 0.88rem;
  }

  .mobile-cta-button {
    min-width: 9.5rem;
    min-height: 3.1rem;
    padding-inline: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
