:root {
  --calm-blue: #4A8BD6;
  --sky-blue: #7DB7F0;
  --warm-coral: #FF7A6A;
  --paper-yellow: #FFD98A;
  --soft-paper: #FFF6E6;
  --navy: #1E2B4D;
  --canvas: #FBF7F0;
  --surface: #FFFFFF;
  --surface-muted: #F5F1EA;
  --text-secondary: #5D6783;
  --line: rgba(30, 43, 77, 0.11);
  --shadow: 0 22px 60px rgba(30, 43, 77, 0.11);
  --font-heading: "Nunito Sans", Nunito, Arial, sans-serif;
  --font-body: Inter, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main,
section,
.container {
  min-width: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

p {
  margin: 0;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--navy);
  transform: translateY(-180%);
}

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

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 240, 0.94);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.primary-nav a,
.footer-links a {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.footer-links a:hover {
  color: #326FB7;
  text-decoration: underline;
}

.header-cta,
.primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 14px;
  color: white;
  background: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 120px) 0 clamp(88px, 10vw, 136px);
  background:
    radial-gradient(circle at 7% 12%, rgba(125, 183, 240, 0.18), transparent 30%),
    radial-gradient(circle at 88% 74%, rgba(255, 217, 138, 0.24), transparent 34%),
    var(--canvas);
}

.hero::before,
.hero::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--warm-coral);
  content: "";
}

.hero::before {
  top: 15%;
  left: 4%;
}

.hero::after {
  right: 8%;
  bottom: 12%;
  width: 9px;
  height: 9px;
  opacity: 0.65;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(52px, 8vw, 104px);
}

.hero-grid > *,
.board-row > *,
.mini-card > div,
.info-layout > *,
.prose,
.prose section {
  min-width: 0;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 18px;
  color: #326FB7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--paper-yellow);
}

.hero-lede {
  max-width: 580px;
  margin-top: 28px;
  color: var(--text-secondary);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.store-coming,
.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

.store-coming {
  width: fit-content;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid rgba(74, 139, 214, 0.24);
  border-radius: 15px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.store-coming__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warm-coral);
  box-shadow: 0 0 0 5px rgba(255, 122, 106, 0.14);
}

.store-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 15px;
  color: white;
  background: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.store-link svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #326FB7;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.board-visual {
  position: relative;
  width: 100%;
  max-width: 530px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 32px;
  background: var(--calm-blue);
  box-shadow: 0 34px 90px rgba(30, 43, 77, 0.19);
  transform: rotate(1deg);
}

.board-visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 48%);
  content: "";
  pointer-events: none;
}

.board-visual__top {
  position: relative;
  display: flex;
  min-height: 114px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px 24px;
  color: white;
}

.board-visual__top div {
  display: grid;
  gap: 2px;
}

.board-kicker {
  opacity: 0.78;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-visual__top strong {
  font-family: var(--font-heading);
  font-size: 1.55rem;
}

.board-main {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

.board-card,
.mini-card,
.meal-card,
.birthday-card {
  border: 1px solid var(--line);
  background: white;
}

.board-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(30, 43, 77, 0.1);
}

.pin {
  position: absolute;
  top: -7px;
  left: 20px;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--warm-coral);
  box-shadow: 0 4px 7px rgba(194, 80, 62, 0.28);
}

.board-card__icon,
.feature-icon {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
}

.board-card__icon--blue {
  color: var(--calm-blue);
  background: #EAF2FC;
}

.board-card__icon svg,
.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.board-card div {
  display: grid;
}

.board-card small,
.meal-card small {
  color: var(--text-secondary);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.board-card strong,
.mini-card strong,
.meal-card strong,
.birthday-card strong {
  font-family: var(--font-heading);
}

.board-card strong {
  font-size: 1.08rem;
}

.board-card div span:last-child,
.mini-card div span {
  color: var(--text-secondary);
  font-size: 0.76rem;
}

.board-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 16px;
  border-radius: 17px;
}

.mini-card div {
  display: grid;
}

.mini-check {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: #2D699F;
  background: var(--paper-yellow);
  font-weight: 900;
}

.mini-dot {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.mini-dot--coral {
  background: var(--warm-coral);
  box-shadow: 0 0 0 5px #FFEDEA;
}

.board-row--bottom {
  grid-template-columns: 1.35fr 0.65fr;
}

.meal-card,
.birthday-card {
  display: flex;
  min-height: 91px;
  justify-content: center;
  border-radius: 17px;
}

.meal-card {
  flex-direction: column;
  padding: 17px;
  background: var(--soft-paper);
}

.birthday-card {
  align-items: center;
  gap: 6px;
  color: white;
  background: var(--navy);
}

.birthday-card span svg {
  width: 21px;
  fill: none;
  stroke: var(--paper-yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-section,
.trust-section,
.final-cta {
  padding: clamp(80px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-icon {
  margin-bottom: 48px;
}

.feature-card--blue .feature-icon {
  color: #326FB7;
  background: #EAF2FC;
}

.feature-card--yellow .feature-icon {
  color: #866222;
  background: var(--soft-paper);
}

.feature-card--coral .feature-icon {
  color: #B74537;
  background: #FFEDEA;
}

.feature-card--sky .feature-icon {
  color: #2D699F;
  background: #E8F4FE;
}

.feature-card h3 {
  max-width: 410px;
}

.feature-card p {
  max-width: 470px;
  margin-top: 14px;
  color: var(--text-secondary);
}

.feature-note {
  margin-top: auto;
  padding-top: 28px;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.shared-section {
  padding: 18px 0;
}

.shared-panel {
  position: relative;
  display: grid;
  min-height: 480px;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: clamp(38px, 7vw, 82px);
  border-radius: 32px;
  color: white;
  background: var(--navy);
}

.shared-panel::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(125, 183, 240, 0.12);
  border-radius: 50%;
  content: "";
}

.shared-copy {
  position: relative;
  z-index: 1;
}

.shared-copy p:last-child {
  max-width: 590px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.06rem;
}

.shared-rhythm {
  position: relative;
  z-index: 1;
  min-height: 270px;
}

.rhythm-card {
  position: absolute;
  display: grid;
  width: 190px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.rhythm-card--yellow {
  top: 2px;
  left: 6%;
  background: var(--paper-yellow);
  transform: rotate(-6deg);
}

.rhythm-card--blue {
  top: 76px;
  right: 2%;
  color: white;
  background: var(--calm-blue);
  transform: rotate(5deg);
}

.rhythm-card--coral {
  bottom: 0;
  left: 19%;
  background: #FFEDEA;
  transform: rotate(-1deg);
}

.trust-section {
  background: var(--soft-paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 720px);
  justify-content: center;
  gap: clamp(38px, 8vw, 100px);
}

.trust-mark {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 45px;
  color: white;
  background: var(--calm-blue);
  box-shadow: 0 18px 38px rgba(74, 139, 214, 0.2);
  transform: rotate(-3deg);
}

.trust-mark svg {
  width: 72px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.trust-lede {
  margin-top: 22px;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.trust-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 30px;
}

.trust-list li::before {
  position: absolute;
  top: 0.66em;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warm-coral);
  box-shadow: 0 0 0 4px rgba(255, 122, 106, 0.13);
  content: "";
}

.final-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.final-card h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
}

.final-card p {
  margin-top: 8px;
  color: var(--text-secondary);
}

.final-card .store-coming {
  margin-top: 0;
}

.site-footer {
  padding: 54px 0 40px;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 34px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.info-main {
  min-height: 70vh;
  padding: clamp(64px, 9vw, 108px) 0 clamp(88px, 11vw, 140px);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 10vw, 130px);
  align-items: start;
}

.info-heading {
  position: sticky;
  top: 48px;
}

.info-heading h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.info-heading > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.info-heading .last-updated {
  margin-top: 14px;
  color: #62708E;
  font-size: 0.86rem;
  font-weight: 700;
}

.content-status {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(134, 98, 34, 0.2);
  border-radius: 18px;
  background: var(--soft-paper);
}

.content-status span {
  display: block;
  color: #765519;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-status p {
  margin-top: 8px;
  color: #66532F;
  font-size: 0.91rem;
}

.prose {
  display: grid;
  gap: 18px;
}

.page-index {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(74, 139, 214, 0.24);
  border-radius: 22px;
  background: #EAF2FC;
}

.page-index > strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.page-index ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin-top: 16px;
  padding-left: 24px;
  color: #326FB7;
}

.page-index a {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose section {
  scroll-margin-top: 24px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  letter-spacing: -0.02em;
}

.prose section > p,
.prose ul {
  margin-top: 14px;
  color: var(--text-secondary);
}

.prose .section-note {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.prose ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.prose a {
  color: #326FB7;
  font-weight: 700;
}

.prose-link {
  padding-top: 12px;
}

.link-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.link-cards a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 139, 214, 0.24);
  border-radius: 16px;
  background: #EAF2FC;
  text-decoration: none;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.not-found img {
  margin: 0 auto 24px;
}

.not-found h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.not-found > div > p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: var(--text-secondary);
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 720px;
  }

  .board-visual {
    max-width: 610px;
    justify-self: center;
  }

  .shared-panel {
    grid-template-columns: 1fr;
  }

  .shared-rhythm {
    min-height: 245px;
  }

  .final-card {
    grid-template-columns: auto 1fr;
  }

  .final-card .store-coming,
  .final-card .store-links {
    grid-column: 1 / -1;
  }

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

  .info-heading {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

  .brand {
    font-size: 1.16rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .primary-nav {
    gap: 4px;
  }

  .primary-nav a {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.84rem;
  }

  .primary-nav a:first-child,
  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 58px;
  }

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

  .feature-card {
    min-height: 300px;
  }

  .feature-icon {
    margin-bottom: 36px;
  }

  .shared-panel {
    border-radius: 24px;
  }

  .trust-mark {
    width: 116px;
    height: 116px;
    border-radius: 32px;
  }

  .trust-mark svg {
    width: 54px;
  }

  .final-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-card img {
    margin: 0 auto;
  }

  .final-card .store-coming,
  .final-card .store-links {
    grid-column: auto;
    justify-self: center;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-note {
    grid-column: auto;
  }

  .page-index ol {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .info-heading h1,
  .prose h2 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .primary-nav a {
    padding-inline: 5px;
    font-size: 0.8rem;
  }

  .board-visual {
    border-radius: 24px;
    transform: none;
  }

  .board-visual__top {
    min-height: 98px;
    padding: 20px;
  }

  .board-visual__top img {
    width: 46px;
    height: 46px;
  }

  .board-main {
    padding: 0 12px 12px;
  }

  .board-row {
    grid-template-columns: 1fr;
  }

  .board-row--bottom {
    grid-template-columns: 1fr 1fr;
  }

  .birthday-card {
    flex-direction: column;
  }

  .rhythm-card {
    width: 154px;
    height: 102px;
  }

  .link-cards {
    grid-template-columns: 1fr;
  }
}

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

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