:root {
  --bg: #f4ebdd;
  --bg-soft: #fcfaf4;
  --bg-alt: #f1e9d9;
  --ink: #1f2a44;
  --ink-deep: #23203f;
  --muted: #7a7f8a;
  --gold: #fdba2c;
  --bronze: #c47a2c;
  --green: #3b8c6e;
  --line: rgba(31, 42, 68, 0.14);
  --white: #ffffff;
  --shadow-lg: 0 22px 60px rgba(35, 32, 63, 0.16);
  --shadow-md: 0 12px 28px rgba(35, 32, 63, 0.1);

  --serif: "Newsreader", Georgia, serif;
  --sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -12%, rgba(253, 186, 44, 0.35), transparent 45%),
    radial-gradient(circle at 92% 6%, rgba(196, 122, 44, 0.2), transparent 38%),
    linear-gradient(145deg, var(--bg-soft), var(--bg));
  min-height: 100vh;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(31, 42, 68, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 42, 68, 0.02) 1px, transparent 1px);
  background-size: 90px 90px;
  z-index: 0;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(252, 250, 244, 0.8);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 4px 10px rgba(35, 32, 63, 0.25);
}

.main-nav {
  display: flex;
  gap: 1.35rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 3px;
}

.cta,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta {
  background: var(--ink-deep);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(35, 32, 63, 0.16);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(35, 32, 63, 0.2);
}

.cta-small {
  padding: 0.58rem 1rem;
  font-size: 0.92rem;
}

.ghost {
  border: 1px solid var(--line);
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.6);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
  padding: 5rem 0 4.3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--bronze);
  font-size: 0.79rem;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink-deep);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.45;
  margin: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-metrics article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.75rem;
}

.hero-metrics h3 {
  font-size: 1.7rem;
  color: var(--ink-deep);
}

.hero-metrics p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.proof-line {
  margin: 0.85rem 0 0;
  font-size: 0.93rem;
  color: var(--muted);
}

.proof-line a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.proof-line a:hover {
  text-decoration: underline;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-shell {
  width: 290px;
  background: #10111a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.phone-notch {
  width: 112px;
  height: 20px;
  background: #10111a;
  margin: 0 auto 6px;
  border-radius: 0 0 14px 14px;
}

.phone-screen {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  background: var(--bg-alt);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(31, 42, 68, 0.85), rgba(31, 42, 68, 0));
  color: #fff;
}

.phone-overlay .badge {
  margin: 0;
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(253, 186, 44, 0.9);
  color: #241d34;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-overlay h3 {
  color: #fff;
  font-size: 1.45rem;
  margin: 0.6rem 0 0.25rem;
}

.phone-overlay p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.floating-card {
  position: absolute;
  width: 170px;
  border-radius: 14px;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 42, 68, 0.1);
  box-shadow: var(--shadow-md);
  animation: bob 3.8s ease-in-out infinite;
}

.floating-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.floating-card p {
  margin: 0.45rem 0 0.1rem;
  font-weight: 600;
  color: var(--ink-deep);
  font-size: 0.88rem;
}

.floating-card.one {
  top: 62px;
  right: 18px;
}

.floating-card.two {
  bottom: 46px;
  left: 12px;
  animation-delay: -1.6s;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.ribbon {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.44));
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.8rem;
}

.ribbon article {
  padding: 0.8rem;
  border-radius: 14px;
  background: rgba(244, 235, 221, 0.72);
}

.ribbon h4 {
  font-size: 1.15rem;
  color: var(--bronze);
  margin-bottom: 0.35rem;
}

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

.feature-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.7);
}

.feature-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

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

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

.resources-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.74);
}

.resources-grid h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.resources-grid p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.library,
.map-section,
.audience,
.progress,
.waitlist,
.resources {
  margin-top: 4.8rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.chip-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.chip.active {
  background: rgba(253, 186, 44, 0.2);
  border-color: rgba(196, 122, 44, 0.52);
}

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

.story-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.77);
  transition: transform 0.2s ease, opacity 0.25s ease;
}

.story-card.hidden {
  opacity: 0.2;
  transform: scale(0.98);
}

.story-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.story-card div {
  padding: 0.9rem;
}

.story-card h3 {
  font-size: 1.45rem;
}

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

.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.map-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 0.8rem;
}

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

.map-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.map-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.map-stats {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: var(--ink-deep);
}

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

.audience-grid article {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.audience-grid h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

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

.progress {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.progress h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 0.85rem;
}

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

.progress aside {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.progress ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.progress li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px dashed rgba(31, 42, 68, 0.18);
  padding-bottom: 0.45rem;
  color: var(--ink);
}

.progress li:last-child {
  border-bottom: 0;
}

.waitlist {
  border-radius: 24px;
  border: 1px solid rgba(31, 42, 68, 0.18);
  background:
    linear-gradient(135deg, rgba(35, 32, 63, 0.96), rgba(31, 42, 68, 0.95)),
    radial-gradient(circle at 100% 0, rgba(253, 186, 44, 0.24), transparent 45%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.35rem;
  color: #fff;
}

.waitlist h2,
.waitlist .eyebrow {
  color: #fff;
}

.waitlist-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.waitlist-form {
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.waitlist-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.field-row {
  display: flex;
  gap: 0.5rem;
}

.field-row input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.72rem 0.9rem;
  font-size: 1rem;
  outline: none;
}

.form-note {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.download-panel {
  display: grid;
}

.cta-large {
  width: 100%;
  min-height: 52px;
}

.success-state h3 {
  color: #fff;
  font-size: 2rem;
  margin: 0.25rem 0;
}

.success-state p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.brand-line {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink-deep);
}

.site-footer p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

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

.disclaimer-note {
  max-width: 60ch;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.content-main {
  padding: 3rem 0 4rem;
}

.content-hero {
  margin-bottom: 2rem;
}

.content-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 0.7rem;
}

.content-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  padding: 1.2rem;
}

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

.faq-item h2 {
  font-size: 1.8rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.guide-grid {
  display: grid;
  gap: 0.9rem;
}

.guide-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 1rem;
}

.guide-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

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

.guide-card a {
  text-decoration: none;
}

.article-content {
  display: grid;
  gap: 1.2rem;
}

.article-content section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
}

.article-content h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.article-content p {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.mini-nav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mini-nav a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .hero,
  .map-section,
  .progress,
  .waitlist {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 470px;
  }

  .disclaimer-note {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 62px;
    right: 0;
    background: rgba(252, 250, 244, 0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    display: grid;
    gap: 0.6rem;
  }

  .cta-small {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

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

  .ribbon {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .story-grid,
  .audience-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }

  .floating-card {
    width: 150px;
  }

  .floating-card.one {
    right: -2px;
  }

  .floating-card.two {
    left: -2px;
  }
}
