:root {
  --navy-950: #07182d;
  --navy-900: #0d2440;
  --navy-800: #153555;
  --navy-700: #264b6c;
  --navy-400: #7c96ad;
  --navy-200: #cfdae3;
  --sky-500: #4eaae7;
  --sky-200: #c9ecff;
  --gold-500: #f6b93b;
  --gold-300: #ffd66b;
  --cream-100: #fff8e8;
  --cream-200: #f7ead0;
  --coral-500: #c83f38;
  --coral-600: #a92f2a;
  --pink-500: #ec5b87;
  --purple-500: #7557d9;
  --mint-400: #61d6ac;
  --green-500: #23885a;
  --ink: #10243a;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(7, 24, 45, 0.14);
  --shadow-lg: 0 24px 64px rgba(7, 24, 45, 0.28);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --content: 72rem;
  --reading: 46rem;
  --font-display: "Fredoka", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  color-scheme: light;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
.play-cta,
.nav-link {
  min-height: 44px;
}

:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 10vw, 5.8rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 7vw, 3.75rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}

p {
  margin: 0;
}

.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;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(117, 87, 217, 0.18), transparent 35%, rgba(236, 91, 135, 0.14)),
    var(--navy-950);
  color: var(--white);
}

.header-inner,
.footer-inner,
.section-inner {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.75rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
}

.wordmark-logo {
  width: clamp(7.5rem, 14vw, 10.5rem);
  filter: drop-shadow(0 0.35rem 0.35rem rgb(0 0 0 / 28%));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
}

@media (max-width: 899px) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: flex;
  }
}

.site-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  padding-block: 0 1rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cream-100);
  font-weight: 700;
  text-decoration: none;
}

.play-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 2px solid #ffefbd;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 4px 0 #a56a09;
  color: #4a2c00;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.play-cta:hover {
  box-shadow: 0 6px 0 #a56a09;
  transform: translateY(-2px);
}

.play-cta:active {
  box-shadow: 0 2px 0 #a56a09;
  transform: translateY(2px);
}

.header-cta {
  padding-inline: 0.85rem;
  font-size: 0.9rem;
}

.eyebrow {
  color: var(--coral-600);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.cta-panel .eyebrow {
  color: var(--gold-300);
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section-dark {
  background: var(--navy-950);
  color: var(--cream-100);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-sky {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.62), transparent 18%),
    linear-gradient(135deg, #c9ecff, #bde6ff 48%, #d7f7ee);
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: var(--reading);
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.section-heading p,
.lede {
  max-width: 42rem;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 4.75rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 214, 107, 0.7), transparent 25%),
    radial-gradient(circle at 8% 78%, rgba(97, 214, 172, 0.36), transparent 28%),
    linear-gradient(145deg, #bdeaff, var(--cream-100) 50%, #ffdca0);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(circle, var(--navy-700) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, #000, transparent 42%, #000);
}

.hero::after {
  right: -4rem;
  bottom: -5rem;
  width: 16rem;
  aspect-ratio: 1;
  border: 2.5rem solid rgba(236, 91, 135, 0.22);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero-copy {
  display: grid;
  gap: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  color: var(--navy-950);
  font-weight: 800;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  padding: 0;
  margin: 0;
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.hero-art {
  position: relative;
  border: 0.5rem solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: clip;
  outline: 0.22rem solid var(--gold-300);
  outline-offset: 0.35rem;
  transform: rotate(1.5deg);
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0.2rem solid var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  content: "★";
}

.hero-art::before {
  top: -0.7rem;
  left: -0.8rem;
  width: 3.4rem;
  height: 4.6rem;
  background: linear-gradient(145deg, var(--purple-500), #452f9c);
  transform: rotate(-10deg);
}

.hero-art::after {
  right: -0.65rem;
  bottom: -0.75rem;
  width: 3.2rem;
  height: 4.4rem;
  background: linear-gradient(145deg, var(--pink-500), var(--coral-600));
  transform: rotate(9deg);
}

.hero-art img {
  width: 100%;
}

@media (max-width: 479px) {
  .hero-inner {
    gap: 2rem;
    padding-block: 1.5rem 2.5rem;
  }

  .hero-copy {
    gap: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 2.75rem);
  }

  .hero .lede {
    font-size: 1rem;
    line-height: 1.45;
  }
}

.proof-strip {
  padding-block: 0.85rem;
  background: linear-gradient(110deg, #4b2e9e, var(--navy-900) 45%, #0b5d61);
  color: var(--white);
}

.proof-list,
.loop-grid,
.feature-grid,
.rival-grid,
.guide-grid,
.article-grid {
  display: grid;
  gap: 1rem;
}

.proof-list {
  width: min(calc(100% - 2rem), var(--content));
  padding: 0;
  margin-block: 0;
  margin-inline: auto;
  list-style: none;
}

.proof-list li {
  font-weight: 800;
}

.proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.proof-icon {
  display: grid;
  flex: 0 0 2.25rem;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--gold-300);
  box-shadow: 0 3px 0 #9c6100;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.loop-card,
.feature-card,
.guide-card,
.article-card,
.faq-list details {
  border: 1px solid rgba(13, 36, 64, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.loop-card {
  position: relative;
  border-top: 0.4rem solid var(--sky-500);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.loop-card:nth-child(2) {
  border-top-color: var(--mint-400);
}

.loop-card:nth-child(3) {
  border-top-color: var(--pink-500);
}

.loop-card:nth-child(4) {
  border-top-color: var(--purple-500);
}

.loop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.35rem);
}

.loop-card,
.guide-card,
.article-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem;
}

.step-number {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-300);
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 900;
}

.feature-row {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 8vw, 6rem);
}

.feature-grid .feature-row {
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(13, 36, 64, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-sm);
}

.phone-frame {
  width: min(78vw, 22rem);
  margin-inline: auto;
  padding: 0.4rem;
  border: 0.35rem solid var(--navy-950);
  border-radius: 2.1rem;
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
  overflow: clip;
}

.phone-frame img {
  border-radius: 1.4rem;
}

.feature-copy {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.rival-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 27rem;
  padding: 1.25rem;
  border: 2px solid rgba(255, 214, 107, 0.75);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 24%, rgba(117, 87, 217, 0.5), transparent 38%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  box-shadow: var(--shadow-lg);
  overflow: clip;
  text-align: center;
}

.rival-card picture {
  margin: auto auto 0;
}

.rival-card img {
  max-height: 18rem;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
}

.rival-card figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(7, 24, 45, 0.88);
}

.rival-card strong {
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.guide-card a,
.article-card a {
  color: var(--navy-950);
}

.guide-card:hover,
.article-card:hover {
  border-color: rgba(78, 170, 231, 0.7);
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.2rem);
}

.guide-card,
.article-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.article-card time {
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: var(--reading);
}

.faq-list details {
  padding: 0;
  overflow: clip;
}

.faq-list summary {
  min-height: 44px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  padding: 1.25rem 0;
  margin: 0;
  font-size: 0.9rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.7rem;
  color: var(--sky-500);
}

.article-shell,
.guide-shell,
.legal-shell {
  width: min(calc(100% - 2rem), var(--reading));
  margin-inline: auto;
  padding-block: clamp(3rem, 8vw, 6rem);
}

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

.prose h2 {
  margin-top: 2.25rem;
  font-size: clamp(1.65rem, 5vw, 2.4rem);
}

.prose h3 {
  margin-top: 1.5rem;
}

.page-hero {
  padding-block: clamp(2.5rem, 8vw, 5rem);
}

.page-hero-inner {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.guide-hero-art {
  justify-self: center;
  width: min(100%, 28rem);
}

.guide-hero-art img {
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
  filter: drop-shadow(0 1.25rem 1.75rem rgb(12 31 55 / 22%));
}

.breadcrumbs,
.local-toc ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
  color: var(--navy-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.guide-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.local-toc {
  padding: 1.25rem;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.local-toc ol {
  display: grid;
  margin: 0.8rem 0 0;
  font-weight: 600;
}

.guide-sections {
  max-width: 48rem;
}

.guide-sections > section {
  scroll-margin-top: 7rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--navy-200);
}

.guide-sections > section + section {
  padding-top: 2.75rem;
}

.guide-sections h2 {
  margin-top: 0.35rem;
}

.guide-sections li::marker {
  color: var(--coral-600);
}

.related-guides {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.article-header,
.article-body,
.legal-layout {
  max-width: 60rem;
}

.article-dates {
  color: var(--navy-700);
  font-weight: 700;
}

.article-hero {
  margin-top: clamp(2rem, 5vw, 3rem);
  border: 0.45rem solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: clip;
}

.article-hero img {
  width: 100%;
}

.article-body {
  font-size: 1.08rem;
}

.related-callout,
.support-links {
  padding: 1.5rem;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.related-callout h2 {
  margin-top: 0;
}

.support-layout {
  display: grid;
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.support-links {
  display: grid;
  gap: 0.9rem;
}

.support-links h2 {
  margin-bottom: 0.35rem;
}

.legal-hero {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.legal-copy {
  max-width: var(--reading);
  margin-inline: auto;
}

.legal-copy > section {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--navy-200);
}

.legal-copy li::marker {
  color: var(--coral-600);
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.35rem;
  margin: 0;
}

.cta-panel {
  position: relative;
  display: grid;
  gap: 1.25rem;
  justify-items: start;
  padding: clamp(2rem, 7vw, 4rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 214, 107, 0.2), transparent 26%),
    linear-gradient(135deg, #3c2a82, var(--navy-900) 48%, #07545d);
  box-shadow: var(--shadow-lg);
  color: var(--cream-100);
  overflow: hidden;
}

.cta-panel h2 {
  color: var(--white);
}

.site-footer {
  padding-block: 2rem;
  background: var(--navy-950);
  color: var(--cream-200);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.js [data-reveal]:not(.is-visible) {
  transform: translateY(16px);
}

[data-reveal] {
  transition: opacity 360ms ease, transform 360ms ease;
}

@media (min-width: 600px) {
  .proof-list,
  .loop-grid,
  .guide-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    grid-column: auto;
    justify-content: center;
    padding: 0;
  }

  .hero-inner,
  .feature-row,
  .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  }

  .hero-inner {
    align-items: center;
  }

  .feature-row.is-reversed .phone-frame {
    order: 2;
  }

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

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

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

  .guide-layout {
    grid-template-columns: minmax(13rem, 0.34fr) minmax(0, 1fr);
  }

  .support-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
  }

  .local-toc {
    position: sticky;
    top: 6.5rem;
  }
}

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

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

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