:root {
  --bg: #f3efe6;
  --bg-strong: #0f1720;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-dark: rgba(15, 23, 32, 0.74);
  --text: #0f1720;
  --text-soft: #425363;
  --accent: #57c7b6;
  --accent-2: #cbb38a;
  --border: rgba(15, 23, 32, 0.12);
  --shadow: 0 22px 60px rgba(15, 23, 32, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Aptos, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(87, 199, 182, 0.28), transparent 34%),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 100%);
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(243, 239, 230, 0.8);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
}

nav {
  display: flex;
  gap: 1.2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 600;
}

.hero,
.page-hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split h2,
.card h2 {
  font-family: "Avenir Next", Montserrat, "Segoe UI", sans-serif;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  max-width: 10ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-soft);
  margin: 0 0 1rem;
}

.lede,
.split p,
.card p,
.footer-grid p {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--bg-strong);
  color: var(--bg);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
}

.hero-card,
.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1.75rem;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
}

.section {
  padding: 2rem 0 4rem;
}

.section-alt {
  padding-bottom: 5rem;
}

.section-heading {
  margin-bottom: 1.6rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  padding: 1.4rem;
}

.card h2,
.card h3 {
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.site-footer {
  background: var(--bg-strong);
  color: var(--bg);
  padding: 2.2rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.footer-grid a {
  display: block;
  color: #dbe7ef;
  margin-bottom: 0.45rem;
  text-decoration: none;
}

.dark-page {
  color: #f3efe6;
  background:
    radial-gradient(circle at top left, rgba(87, 199, 182, 0.18), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(203, 179, 138, 0.16), transparent 22%),
    linear-gradient(180deg, #091018 0%, #0f1720 42%, #121f2c 100%);
}

.dark-page .site-header {
  background: rgba(9, 16, 24, 0.78);
  border-bottom-color: rgba(243, 239, 230, 0.08);
}

.dark-page nav a,
.dark-page .eyebrow,
.dark-page .lede,
.dark-page .bullet-list,
.dark-page .split p,
.dark-page .card p,
.dark-page .footer-grid p {
  color: rgba(243, 239, 230, 0.76);
}

.dark-page .hero-copy h1,
.dark-page .page-hero h1,
.dark-page .section-heading h2,
.dark-page .split h2,
.dark-page .card h2,
.dark-page .card h3,
.dark-page .brand,
.dark-page .footer-grid a {
  color: #f3efe6;
}

.dark-page .button-primary {
  background: var(--accent);
  color: #0f1720;
}

.dark-page .button-secondary {
  border-color: rgba(243, 239, 230, 0.14);
  background: rgba(243, 239, 230, 0.06);
  color: #f3efe6;
}

.dark-page .card,
.dark-page .hero-card {
  background: rgba(243, 239, 230, 0.05);
  border-color: rgba(243, 239, 230, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.dark-page .site-footer {
  background: rgba(5, 10, 15, 0.6);
  border-top: 1px solid rgba(243, 239, 230, 0.08);
}

.promo-hero {
  padding: 5.5rem 0 3rem;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.promo-hero .hero-copy h1 {
  max-width: 12ch;
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(87, 199, 182, 0.12);
  border: 1px solid rgba(87, 199, 182, 0.26);
  color: #9ee3d8;
  font-size: 0.86rem;
  font-weight: 700;
}

.promo-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 2rem 0 0;
}

.promo-points article,
.timeline-card,
.cta-panel {
  border: 1px solid rgba(243, 239, 230, 0.08);
  background: rgba(243, 239, 230, 0.05);
  border-radius: 1.4rem;
}

.promo-points article {
  padding: 1rem;
}

.promo-points strong,
.timeline-card strong,
.access-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.promo-points p,
.timeline-card p,
.access-list p,
.cta-panel p {
  margin: 0;
  color: rgba(243, 239, 230, 0.76);
  line-height: 1.6;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.2rem;
}

.poster-frame::before,
.poster-frame::after {
  content: "";
  position: absolute;
  inset: auto auto 1.4rem 1.4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 199, 182, 0.9), rgba(87, 199, 182, 0));
  filter: blur(18px);
  opacity: 0.55;
}

.poster-frame::after {
  inset: 1rem 1rem auto auto;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(203, 179, 138, 0.85), rgba(203, 179, 138, 0));
}

.poster-frame img {
  border-radius: 1.2rem;
  border: 1px solid rgba(243, 239, 230, 0.08);
  position: relative;
  z-index: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-card {
  padding: 1.15rem;
}

.visual-card img {
  margin-top: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(243, 239, 230, 0.08);
}

.timeline-card span,
.stat-card span {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: #9ee3d8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.access-list,
.stat-card {
  padding: 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(243, 239, 230, 0.08);
  background: rgba(243, 239, 230, 0.05);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cta-panel {
  padding: 1.35rem;
}

.cta-panel h2,
.cta-panel h3 {
  margin-top: 0;
}

.cta-panel .button {
  margin-top: 1.2rem;
}

@media (max-width: 860px) {
  .hero-grid,
  .promo-grid,
  .grid-3,
  .grid-2,
  .split,
  .footer-grid,
  .timeline,
  .access-grid,
  .stats-grid,
  .promo-points {
    grid-template-columns: 1fr;
    display: grid;
  }

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