:root {
  --ink: #0d0958;
  --mint: #13e59f;
  --sky: #4dbfff;
  --peach: #ffd9cb;
  --cream: #fffaf4;
  --text: #25244a;
  --muted: #5a5982;
  --card: #ffffff;
  --radius: 22px;
  --shadow: 0 16px 40px rgba(31, 57, 124, 0.14);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 9%, rgba(255, 217, 203, 0.5), transparent 33%),
    radial-gradient(circle at 88% 6%, rgba(77, 191, 255, 0.2), transparent 34%),
    radial-gradient(circle at 80% 85%, rgba(19, 229, 159, 0.2), transparent 29%),
    var(--cream);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  line-height: 1.05;
  margin-top: 0;
  letter-spacing: -0.01em;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(8px);
  z-index: -1;
}

.bg-shape-1 {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -80px;
  background: rgba(255, 217, 203, 0.48);
}

.bg-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -120px;
  right: -90px;
  background: rgba(77, 191, 255, 0.25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(8px);
  background: rgba(255, 250, 244, 0.82);
  border-bottom: 1px solid rgba(13, 9, 88, 0.08);
}

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

.brand img {
  width: 178px;
  height: auto;
  display: block;
}

.top-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.top-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.btn {
  text-decoration: none;
  display: inline-block;
  border-radius: 14px;
  background: linear-gradient(100deg, var(--ink), #272994);
  color: #fff;
  font-weight: 800;
  padding: 0.78rem 1.2rem;
  box-shadow: var(--shadow);
  border: none;
}

.btn-sm {
  padding: 0.58rem 0.95rem;
  border-radius: 12px;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(13, 9, 88, 0.2);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 76px);
  padding: 2.2rem 0 2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 4.9vw, 4.2rem);
  margin-bottom: 1rem;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  margin-bottom: 0.75rem;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.23rem);
}

.lede.small {
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1.2rem;
}

.quick-points {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.05rem;
}

.quick-points li {
  color: var(--muted);
  font-weight: 700;
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  padding: 0.45rem;
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 72ch;
  margin-bottom: 1.4rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(13, 9, 88, 0.11);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 0.8rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.cozy-band {
  background: linear-gradient(120deg, rgba(255, 217, 203, 0.35), rgba(77, 191, 255, 0.2));
  border-top: 1px solid rgba(13, 9, 88, 0.08);
  border-bottom: 1px solid rgba(13, 9, 88, 0.08);
}

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

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

.badge-grid span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(13, 9, 88, 0.16);
  background: #fff;
  min-height: 46px;
  font-weight: 800;
  color: var(--ink);
}

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

.commitment-box {
  background: #fff;
  border: 2px dashed rgba(13, 9, 88, 0.22);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.commitment-box h3 {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.commitment-box ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
}

.commitment-box li {
  color: var(--muted);
  font-weight: 700;
}

.source-card {
  background: #fff;
  border: 1px solid rgba(13, 9, 88, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
}

.source-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.7rem;
}

.source-card ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.source-card a {
  color: #1e3f97;
  font-weight: 700;
}

.faq-wrap {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid rgba(13, 9, 88, 0.15);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

details p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.cta-panel {
  padding-top: 0.7rem;
}

.cta-panel > div {
  background: linear-gradient(130deg, #ffffff, #f5faff);
  border: 1px solid rgba(13, 9, 88, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.waitlist-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  max-width: 620px;
}

.waitlist-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink);
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  border: 1px solid rgba(13, 9, 88, 0.22);
  border-radius: 12px;
  padding: 0.72rem 0.82rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: 3px solid rgba(77, 191, 255, 0.35);
  border-color: #1f4bb7;
}

.hidden-field {
  display: none;
}

.site-footer {
  margin-top: 1rem;
  background: #0d0958;
  color: #fff;
  padding: 2rem 0;
}

.footer-wrap {
  display: grid;
  gap: 0.65rem;
}

.site-footer img { width: 168px; }
.site-footer p,
.site-footer small { margin: 0; opacity: 0.9; }

.footer-link {
  color: #fff;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 640ms ease forwards;
}

.delay-1 { animation-delay: 130ms; }
.delay-2 { animation-delay: 230ms; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1030px) {
  .hero,
  .three-up,
  .source-columns,
  .split {
    grid-template-columns: 1fr;
  }

  .top-nav {
    display: none;
  }

  .site-header {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 1.8rem;
  }
}

.article-page .section {
  padding-top: 2.6rem;
}

.article-hero {
  padding-bottom: 1.2rem;
}

.article-subheads {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.article-subheads p {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(13, 9, 88, 0.12);
  font-weight: 700;
  color: var(--muted);
}

.article-content h2 {
  margin-top: 2rem;
}

.article-content ul {
  padding-left: 1.1rem;
}

.article-content li {
  margin-bottom: 0.45rem;
}

.article-figure {
  margin: 1.4rem 0;
}

.article-figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 9, 88, 0.12);
  background: #fff;
}

.article-figure figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-weight: 700;
}

.article-table-wrap {
  overflow-x: auto;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid rgba(13, 9, 88, 0.14);
  border-radius: 12px;
}

.article-table th,
.article-table td {
  text-align: left;
  padding: 0.72rem 0.7rem;
  border-bottom: 1px solid rgba(13, 9, 88, 0.09);
}

.article-table th {
  color: var(--ink);
  font-size: 0.95rem;
}

.article-links {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.article-links a,
.source-list a {
  color: #1d3f9d;
  font-weight: 800;
}

.source-list {
  padding-left: 1.1rem;
}

.feature-article {
  background: linear-gradient(130deg, #ffffff, #eaf7ff);
  border: 1px solid rgba(13, 9, 88, 0.14);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.feature-article h3 {
  margin-bottom: 0.4rem;
}

.feature-article p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}
