
@font-face {
  font-family: 'Bright Sans';
  src: url('dm-sans-variable.ttf') format('truetype');
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

:root {
  --navy: #262f71;
  --navy-deep: #171d4e;
  --pink: #ffb9cc;
  --pink-soft: #ffe5ec;
  --sky: #88d4f2;
  --sky-soft: #ddf5ff;
  --yellow: #ffd786;
  --yellow-soft: #fff0c8;
  --coral: #da6f5b;
  --paper: #fffafc;
  --ink: #292929;
  --muted: #64667b;
  --line: #e7dce4;
  --background: var(--paper);
  --foreground: var(--ink);
  --card: #fff;
  --card-foreground: var(--ink);
  --popover: #fff;
  --popover-foreground: var(--ink);
  --primary: var(--navy);
  --primary-foreground: #fff;
  --secondary: var(--pink);
  --secondary-foreground: var(--navy);
  --muted-foreground: var(--muted);
  --accent: var(--sky);
  --accent-foreground: var(--navy);
  --destructive: #b54f42;
  --border: var(--line);
  --input: var(--line);
  --ring: var(--sky);
  --radius: 1.15rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Bright Sans', Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
.site-shell { min-height: 100vh; overflow: clip; }

.topline {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  color: #fff;
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  position: relative;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--pink);
}
.brand-mark i {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  border: 3px solid var(--navy);
  border-radius: 50%;
}
.brand-mark i:nth-child(1) { left: 9px; top: 17px; }
.brand-mark i:nth-child(2) { left: 21px; top: 9px; }
.brand-mark i:nth-child(3) { left: 23px; top: 25px; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.05rem; letter-spacing: .09em; text-transform: uppercase; }
.brand small { margin-top: 1px; color: var(--sky); font-size: .73rem; font-weight: 700; }
.topline nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 34px); font-size: .88rem; font-weight: 800; }
.topline nav a { position: relative; }
.topline nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
  transition: right .25s ease;
}
.topline nav a:hover::after, .topline nav a:focus-visible::after { right: 0; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  min-height: 780px;
  padding: 130px max(24px, calc((100vw - 1220px) / 2)) 86px;
  background:
    radial-gradient(circle at 10% 82%, rgb(255 185 204 / 15%) 0 110px, transparent 111px),
    radial-gradient(circle at 89% 20%, rgb(136 212 242 / 13%) 0 160px, transparent 161px),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: #fff;
}
.hero::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -37px;
  height: 78px;
  border-radius: 48% 55% 0 0 / 100% 100% 0 0;
  background: var(--paper);
}
.hero-copy { position: relative; z-index: 2; max-width: 680px; }
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 9px 15px;
  border-radius: 999px 999px 999px 14px;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-1.6deg);
}
.sticker-pink { background: var(--pink); color: var(--navy); }
.hero h1 {
  max-width: 700px;
  margin: 25px 0 0;
  font-size: clamp(3.6rem, 7.5vw, 7.25rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.065em;
}
.hero h1 em { display: block; color: var(--yellow); font-style: normal; }
.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #e9f7ff;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 32px; }
.hero-actions > span { color: #fff; font-size: .87rem; font-weight: 750; opacity: .72; }
.pill-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 19px;
  border: 2px solid rgb(255 255 255 / 45%);
  border-radius: 18px 36px 18px 36px;
  background: var(--pink);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 13px 34px rgb(8 14 54 / 28%);
  transition: transform .24s ease, box-shadow .24s ease;
}
.pill-button:hover, .pill-button:focus-visible {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 18px 38px rgb(8 14 54 / 36%);
}
.hero-art { position: relative; z-index: 2; display: grid; place-items: center; min-height: 550px; }
.hero-image-wrap {
  position: relative;
  z-index: 2;
  width: min(92%, 560px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 50% 44% 50% 46%;
  background: var(--sky-soft);
  box-shadow: 0 32px 80px rgb(7 12 52 / 45%);
  transform: rotate(2deg);
  animation: hero-float 5.2s ease-in-out infinite alternate;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.orbit { position: absolute; border-radius: 50%; filter: saturate(1.03); }
.orbit-sky {
  top: 4%; right: 3%; width: 118px; height: 118px;
  background: var(--sky); opacity: .72; animation: orbit-drift 6s ease-in-out infinite alternate;
}
.orbit-yellow {
  left: 0; bottom: 10%; width: 82px; height: 82px;
  border-radius: 24px 50% 35% 50%; background: var(--yellow); transform: rotate(14deg);
}
.art-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 5%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 16px;
  border-radius: 22px 10px 22px 10px;
  background: var(--pink);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 900;
  transform: rotate(2deg);
}
.first-ribbon {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: min(980px, calc(100% - 32px));
  margin: -5px auto 80px;
  padding: 30px 0 0;
}
.first-ribbon span { padding: 13px 20px; border-radius: 999px; color: var(--navy); font-size: .92rem; font-weight: 900; }
.first-ribbon span:nth-child(1) { background: var(--pink); }
.first-ribbon span:nth-child(2) { background: var(--sky); }
.first-ribbon span:nth-child(3) { background: var(--yellow); }
.first-ribbon span:nth-child(4) { background: #a8e6cf; }
.first-ribbon span:nth-child(5) { background: #d7c5ff; }

@keyframes hero-float { to { transform: translateY(-9px) rotate(-1deg); } }
@keyframes orbit-drift { to { transform: translate(-16px, 10px) scale(.92); } }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 145px; }
  .hero h1 { font-size: clamp(3.25rem, 13vw, 6rem); }
  .hero-art { min-height: 470px; margin-top: 24px; }
}

@media (max-width: 580px) {
  .topline { width: calc(100% - 28px); }
  .topline nav { gap: 13px; font-size: .76rem; }
  .topline nav a:first-child { display: none; }
  .brand small { display: none; }
  .hero { padding-inline: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 390px; }
  .art-note { right: 2%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.reveal {
  opacity: 1;
}
.motion-ready .reveal {
  opacity: 0;
  transition:
    opacity .72s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms),
    transform .82s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms),
    clip-path .9s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}
.motion-ready .reveal-up { transform: translateY(42px); }
.motion-ready .reveal-left { transform: translateX(-58px) rotate(-1deg); }
.motion-ready .reveal-right { transform: translateX(58px) rotate(1deg); }
.motion-ready .reveal-pop { transform: scale(.86) rotate(-2deg); }
.motion-ready .reveal-fold { transform: perspective(900px) rotateX(12deg) translateY(35px); transform-origin: 50% 0; }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

.idea-gap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  width: min(1120px, calc(100% - 40px));
  margin: 100px auto 120px;
}
.eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.idea-gap h2,
.section-heading h2,
.inside-copy h2,
.quilt-copy h2,
.closing-copy h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.055em;
}
.idea-gap-note {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--sky);
  border-radius: 18px 42px 18px 42px;
  background: var(--sky-soft);
  color: var(--navy);
  transform: rotate(1deg);
}
.idea-gap-note svg { flex: none; color: var(--coral); }
.idea-gap-note p { margin: 0; font-size: 1.06rem; line-height: 1.65; }

.journey-section {
  position: relative;
  padding: 110px 20px 130px;
  background: var(--pink-soft);
}
.journey-section::before,
.journey-section::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  height: 74px;
  background: var(--paper);
  border-radius: 0 0 48% 54% / 0 0 100% 100%;
}
.journey-section::before { top: -1px; }
.journey-section::after { bottom: -1px; transform: rotate(180deg); }
.section-heading { max-width: 780px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.sticker-navy { background: var(--navy); color: var(--pink); transform: rotate(1deg); }
.sticker-sky { background: var(--sky); color: var(--navy); }
.section-heading h2 { font-size: clamp(2.8rem, 5.2vw, 5rem); }
.section-heading > p:last-child,
.shape-heading > p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}
.journey-path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: min(980px, 100%);
  margin: 70px auto 0;
}
.stitch-line {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.stitch-line path {
  fill: none;
  stroke: var(--navy);
  stroke-width: .65;
  stroke-linecap: round;
  stroke-dasharray: 2 3;
  opacity: .22;
  animation: stitch-dash 15s linear infinite;
}
.journey-stop {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(585px, 88%);
  min-height: 145px;
  padding: 16px 22px 16px 16px;
  border: 1px solid color-mix(in srgb, var(--navy), transparent 78%);
  border-radius: 56px 22px 56px 22px;
  background: #fff;
  box-shadow: 0 15px 45px rgb(38 47 113 / 9%);
}
.journey-stop-right { align-self: flex-end; border-radius: 22px 56px 22px 56px; }
.journey-image {
  flex: none;
  width: 116px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--stop-color, var(--sky));
}
.journey-image img { width: 100%; height: 100%; object-fit: cover; }
.journey-stop p { margin: 0; color: var(--navy); font-size: .69rem; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; }
.journey-stop h3 { margin: 6px 0 4px; color: var(--navy); font-size: 1.55rem; line-height: 1; }
.journey-stop span { color: var(--muted); font-size: .94rem; line-height: 1.5; }
.tone-sky { --stop-color: var(--sky); }
.tone-pink { --stop-color: var(--pink); }
.tone-violet { --stop-color: #d7c5ff; }
.tone-yellow { --stop-color: var(--yellow); }
.tone-mint { --stop-color: #a8e6cf; }
.journey-stop::after {
  content: '';
  position: absolute;
  right: 20px;
  top: -10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--stop-color);
}
.journey-stop-right::after { right: auto; left: 20px; }

.shape-section {
  width: min(1220px, calc(100% - 40px));
  margin: 120px auto 150px;
}
.shape-heading { margin-left: max(0px, 8%); }
.feature-fan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 60px;
}
.feature-card {
  overflow: hidden;
  border: 1px solid var(--stop-color);
  border-radius: 48px 20px 48px 20px;
  background: color-mix(in srgb, var(--stop-color), white 74%);
  box-shadow: 0 20px 65px rgb(38 47 113 / 10%);
}
.feature-card:nth-child(2) { margin-top: 62px; border-radius: 20px 48px 20px 48px; }
.feature-card:nth-child(3) { margin-top: 15px; }
.feature-image { aspect-ratio: 1.15; overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.feature-card:hover .feature-image img { transform: scale(1.045) rotate(.5deg); }
.feature-copy { padding: 23px 23px 28px; }
.feature-copy > p { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--navy); font-size: .7rem; font-weight: 950; letter-spacing: .1em; }
.feature-copy h3 { margin: 11px 0 10px; color: var(--navy); font-size: 1.65rem; line-height: 1.05; }
.feature-copy span { color: var(--muted); line-height: 1.6; }

.inside-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
  padding: 110px max(24px, calc((100vw - 1160px) / 2));
  background: var(--navy);
  color: #fff;
}
.inside-art { position: relative; }
.inside-art > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 50% 42% 50% 45%;
  transform: rotate(-2deg);
}
.inside-bubble {
  position: absolute;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--navy);
  font-size: .75rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgb(8 14 54 / 28%);
}
.bubble-a { top: 7%; right: -2%; background: var(--pink); transform: rotate(3deg); }
.bubble-b { left: -4%; bottom: 18%; background: var(--yellow); transform: rotate(-3deg); }
.bubble-c { right: 4%; bottom: 3%; background: var(--sky); transform: rotate(1deg); }
.inside-copy h2 { color: #fff; font-size: clamp(2.7rem, 4.7vw, 5rem); }
.inside-copy ul { display: grid; gap: 16px; margin: 30px 0 0; padding: 0; list-style: none; }
.inside-copy li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: start;
  color: #e7f6ff;
  font-size: 1rem;
  line-height: 1.6;
}
.inside-copy li svg { color: var(--pink); margin-top: 2px; }

.access-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 140px auto;
}
.access-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 60px rgb(38 47 113 / 9%);
}
.access-card-wide { display: grid; grid-template-columns: .95fr 1.05fr; border-radius: 56px 22px 56px 22px; }
.access-card-tall { border-radius: 22px 56px 22px 56px; margin-top: 95px; }
.access-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.access-card-tall img { height: 310px; }
.access-card > div { padding: 30px; }
.access-card h3 { margin: 10px 0 12px; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.02; }
.access-card > div > p:last-child { margin: 0; color: var(--muted); line-height: 1.65; }

.quilt-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  background: var(--pink-soft);
}
.quilt-copy p:not(.sticker) { max-width: 580px; margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.quilt-legend { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.quilt-legend span { padding: 9px 14px; border-radius: 999px; color: var(--navy); font-size: .78rem; font-weight: 900; }
.quilt-legend span:nth-child(1) { background: var(--sky); }
.quilt-legend span:nth-child(2) { background: var(--pink); }
.quilt-legend span:nth-child(3) { background: var(--yellow); }
.quilt-legend span:nth-child(4) { background: #a8e6cf; }
.quilt-art { position: relative; min-height: 560px; display: grid; place-items: center; }
.quilt-art img {
  position: relative;
  z-index: 2;
  width: min(90%, 560px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 38% 49% 42% 46%;
  box-shadow: 0 24px 70px rgb(38 47 113 / 18%);
}
.quilt-patch { position: absolute; border-radius: 38px 16px 38px 16px; }
.q1 { top: 0; right: 4%; width: 130px; height: 100px; background: var(--yellow); transform: rotate(8deg); }
.q2 { left: 0; bottom: 6%; width: 112px; height: 145px; background: var(--sky); transform: rotate(-7deg); }
.q3 { right: 2%; bottom: 2%; width: 82px; height: 82px; border-radius: 50%; background: #d7c5ff; }

.closing-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 130px auto;
}
.closing-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 50% 43% 48% 41%;
  box-shadow: 0 22px 70px rgb(38 47 113 / 16%);
}
.closing-copy p:not(.eyebrow) { max-width: 610px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.closing-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; padding-bottom: 5px; border-bottom: 3px solid var(--pink); color: var(--navy); font-weight: 900; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 35px max(24px, calc((100vw - 1220px) / 2));
  background: var(--navy-deep);
  color: #fff;
}
.site-footer p { color: #dce8ff; text-align: center; font-size: .86rem; }
.site-footer > a:last-child { display: flex; justify-self: end; align-items: center; gap: 7px; color: var(--pink); font-weight: 850; font-size: .88rem; }

@keyframes stitch-dash { to { stroke-dashoffset: -80; } }

@media (max-width: 960px) {
  .idea-gap, .inside-section, .access-section, .quilt-section, .closing-section { grid-template-columns: 1fr; }
  .idea-gap { gap: 30px; }
  .feature-fan { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(2), .feature-card:nth-child(3) { margin-top: 0; }
  .feature-card:nth-child(3) { grid-column: 1 / -1; width: calc(50% - 12px); margin-inline: auto; }
  .inside-art, .quilt-art, .closing-image { width: min(660px, 100%); margin-inline: auto; }
  .access-card-tall { margin-top: 0; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .site-footer > a:last-child { justify-self: center; }
}

@media (max-width: 650px) {
  .idea-gap { margin-block: 75px 95px; }
  .journey-section { padding-inline: 14px; }
  .journey-path { gap: 15px; }
  .stitch-line { display: none; }
  .journey-stop { width: 100%; align-self: stretch; gap: 14px; padding: 12px; }
  .journey-image { width: 88px; }
  .journey-stop h3 { font-size: 1.28rem; }
  .feature-fan { grid-template-columns: 1fr; }
  .feature-card:nth-child(3) { grid-column: auto; width: 100%; }
  .inside-section, .quilt-section { padding-inline: 18px; }
  .access-card-wide { grid-template-columns: 1fr; }
  .access-card img { min-height: 260px; max-height: 340px; }
  .quilt-art { min-height: 400px; }
  .site-footer { padding-block: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal { opacity: 1; transform: none; }
  .stitch-line path { animation: none; }
}

/* Privacy storybook */
.policy-shell {
  min-height: 100vh;
  overflow: clip;
  background:
    linear-gradient(90deg, transparent 0 5%, rgb(38 47 113 / 3%) 5% 5.12%, transparent 5.12%),
    repeating-linear-gradient(0deg, transparent 0 41px, rgb(38 47 113 / 4%) 41px 42px),
    var(--paper);
}
.policy-topline {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  background: var(--navy-deep);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}
.policy-topline > span { color: var(--pink); text-transform: uppercase; letter-spacing: .1em; }
.policy-topline time { justify-self: end; color: var(--sky); }
.policy-back { display: flex; align-items: center; gap: 8px; }
.policy-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 65px;
  align-items: center;
  min-height: 620px;
  padding: 90px max(24px, calc((100vw - 1180px) / 2)) 120px;
  background:
    radial-gradient(circle at 88% 26%, rgb(255 215 134 / 23%) 0 110px, transparent 111px),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: #fff;
}
.policy-hero::after {
  content: '';
  position: absolute;
  left: -3%; right: -3%; bottom: -42px; height: 84px;
  border-radius: 50% 45% 0 0 / 100% 100% 0 0;
  background: var(--paper);
}
.policy-title { position: relative; z-index: 2; }
.policy-title h1 {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: clamp(3.7rem, 7.6vw, 7.6rem);
  font-weight: 950;
  line-height: .88;
  letter-spacing: -.067em;
}
.policy-title > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: #e8f6ff;
  font-size: 1.15rem;
  line-height: 1.65;
}
.policy-cover-art { position: relative; display: grid; place-items: center; min-height: 390px; }
.cover-circle {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(330px, 78vw);
  aspect-ratio: 1;
  border: 8px solid #fff;
  border-radius: 46% 50% 43% 50%;
  background: var(--pink);
  color: var(--navy);
  box-shadow: 0 28px 70px rgb(8 14 54 / 45%);
  transform: rotate(3deg);
  animation: cover-bob 4.8s ease-in-out infinite alternate;
  font-size: 4.5rem;
  font-weight: 900;
}
.cover-dot { position: absolute; border-radius: 50%; }
.dot-one { left: 4%; top: 7%; width: 75px; height: 75px; background: var(--sky); }
.dot-two { right: 0; bottom: 12%; width: 95px; height: 95px; border-radius: 24px 50% 30px 50%; background: var(--yellow); transform: rotate(15deg); }
.dot-three { left: 12%; bottom: 1%; width: 42px; height: 42px; background: #d7c5ff; }
.chapter-bubbles {
  position: sticky;
  z-index: 30;
  top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  width: min(1060px, calc(100% - 24px));
  margin: 24px auto 0;
  padding: 9px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 250 252 / 88%);
  box-shadow: 0 12px 38px rgb(38 47 113 / 10%);
  backdrop-filter: blur(16px);
}
.chapter-bubbles a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--stop-color), white 20%);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  transition: transform .22s ease;
}
.chapter-bubbles a:hover, .chapter-bubbles a:focus-visible { transform: translateY(-3px); }
.tone-coral { --stop-color: #f1a192; }

.policy-index {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 60px;
  width: min(1120px, calc(100% - 40px));
  margin: 120px auto;
  padding: 34px;
  border: 1px solid var(--sky);
  border-radius: 24px 56px 24px 56px;
  background: var(--sky-soft);
  box-shadow: 0 18px 55px rgb(38 47 113 / 9%);
}
.policy-index h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.05em;
}
.policy-index ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  counter-reset: policy-index;
  list-style: none;
}
.policy-index li { counter-increment: policy-index; }
.policy-index a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 7px 3px;
  border-bottom: 1px dashed rgb(38 47 113 / 24%);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 780;
}
.policy-index a::before {
  content: counter(policy-index, decimal-leading-zero);
  color: var(--coral);
  font-size: .68rem;
  font-weight: 950;
}
.policy-index a span { flex: 1; }

.policy-chapters { display: grid; gap: 90px; }
.policy-chapter {
  --chapter: var(--sky);
  position: relative;
  padding: 100px max(20px, calc((100vw - 1100px) / 2)) 120px;
  scroll-margin-top: 105px;
}
.policy-chapter:nth-child(odd) { background: color-mix(in srgb, var(--chapter), white 78%); }
.policy-chapter:nth-child(even) { background: var(--paper); }
.chapter-sky { --chapter: var(--sky); }
.chapter-pink { --chapter: var(--pink); }
.chapter-yellow { --chapter: var(--yellow); }
.chapter-mint { --chapter: #a8e6cf; }
.chapter-violet { --chapter: #d7c5ff; }
.chapter-coral { --chapter: #f1a192; }
.chapter-heading { max-width: 780px; margin-bottom: 45px; }
.chapter-heading p { margin: 0; color: var(--coral); font-size: .72rem; font-weight: 950; letter-spacing: .12em; }
.chapter-heading h2 {
  margin: 9px 0 0;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 950;
  line-height: .92;
  letter-spacing: -.06em;
}
.policy-flaps { display: grid; gap: 32px; }
.policy-flap { scroll-margin-top: 112px; }
.policy-flap article {
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 32px;
  align-items: center;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--chapter);
  border-radius: 58px 20px 58px 20px;
  background: #fff;
  box-shadow: 0 20px 65px rgb(38 47 113 / 9%);
  scroll-margin-top: 112px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.policy-flap.flap-right article { grid-template-columns: 1fr 255px; border-radius: 20px 58px 20px 58px; }
.policy-flap.flap-right .policy-image-window { grid-column: 2; }
.policy-flap.flap-right .policy-copy { grid-column: 1; grid-row: 1; }
.policy-flap article:hover { transform: translateY(-4px); box-shadow: 0 28px 74px rgb(38 47 113 / 13%); }
.policy-image-window {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 7px solid color-mix(in srgb, var(--chapter), white 20%);
  border-radius: 50% 43% 50% 46%;
  background: color-mix(in srgb, var(--chapter), white 75%);
}
.policy-image-window img { width: 100%; height: 100%; object-fit: cover; }
.policy-number {
  display: inline-flex;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--chapter);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .08em;
}
.policy-copy h3 {
  margin: 13px 0 10px;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.7vw, 3.25rem);
  font-weight: 950;
  line-height: .97;
  letter-spacing: -.045em;
}
.policy-copy strong { display: block; color: var(--ink); font-size: 1.03rem; line-height: 1.5; }
.policy-copy > p:last-child { margin: 12px 0 0; color: var(--muted); line-height: 1.68; }
.policy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
  background: var(--navy-deep);
  color: #fff;
}
.policy-footer > div { display: flex; align-items: center; gap: 12px; }
.policy-footer p, .policy-footer strong, .policy-footer small { display: block; margin: 0; }
.policy-footer small { margin-top: 3px; color: var(--sky); }
.policy-footer > a { display: flex; align-items: center; gap: 7px; color: var(--pink); font-weight: 900; }

@keyframes cover-bob { to { transform: translateY(-9px) rotate(-2deg); } }

@media (max-width: 860px) {
  .policy-hero, .policy-index { grid-template-columns: 1fr; }
  .policy-cover-art { min-height: 330px; }
  .policy-index { gap: 30px; }
  .policy-flap article, .policy-flap.flap-right article { grid-template-columns: 180px 1fr; }
  .policy-flap.flap-right .policy-image-window { grid-column: 1; }
  .policy-flap.flap-right .policy-copy { grid-column: 2; }
}

@media (max-width: 620px) {
  .policy-topline { grid-template-columns: 1fr auto; }
  .policy-topline > span { display: none; }
  .policy-hero { padding-inline: 18px; }
  .chapter-bubbles { justify-content: flex-start; }
  .policy-index { width: calc(100% - 28px); padding: 24px 18px; }
  .policy-index ol { grid-template-columns: 1fr; }
  .policy-chapter { padding-inline: 14px; }
  .policy-flap article, .policy-flap.flap-right article { grid-template-columns: 1fr; padding: 18px; }
  .policy-flap.flap-right .policy-image-window, .policy-flap.flap-right .policy-copy { grid-column: 1; grid-row: auto; }
  .policy-image-window { width: min(240px, 80%); margin-inline: auto; }
  .policy-footer { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cover-circle { animation: none; }
}
