@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --cream: #fff8f2;
  --cream-blush: #fbf0f2;
  --line-warm: #eadde1;
  --page: #f2f2f7;
  --surface: #ffffff;
  --blush: #e592ab;
  --heart: #b83a61;
  --heart-dark: #76233f;
  --ink: #2d2130;
  --muted: #665962;
  --shadow-card:
    0 0 0 1px oklch(0 0 0 / 0.06),
    0 12px 30px oklch(0.25 0.03 345 / 0.08),
    0 2px 6px oklch(0.25 0.03 345 / 0.05);
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--heart-dark);
  transform: translateY(-180%);
  transition: transform 150ms ease-out;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  padding-block: 18px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 1.36rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 1px 4px oklch(0.25 0.04 345 / 0.18);
  outline: 1px solid oklch(0 0 0 / 0.1);
  outline-offset: -1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition-property: color, background-color, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgb(255 255 255 / 0.58);
}

.site-nav a:active,
.button:active {
  scale: 0.96;
}

.site-nav .nav-pill {
  padding-inline: 18px;
  color: #fff;
  background: var(--heart-dark);
  box-shadow: 0 1px 2px rgb(64 23 41 / 0.16), 0 4px 12px rgb(64 23 41 / 0.12);
}

.site-nav .nav-pill:hover {
  color: #fff;
  background: #652036;
}

.language-menu {
  position: relative;
}

.language-menu summary {
  min-width: 54px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-inline: 11px;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  list-style: none;
  transition-property: color, background-color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover,
.language-menu[open] summary {
  color: var(--ink);
  background: rgb(255 255 255 / 0.66);
}

.language-menu summary:focus-visible {
  outline: 3px solid rgb(178 48 91 / 0.34);
  outline-offset: 2px;
}

.language-popover {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  max-height: min(460px, calc(100vh - 90px));
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgb(52 35 49 / 0.09);
  border-radius: 20px;
  background: rgb(255 252 249 / 0.98);
  box-shadow: 0 18px 48px rgb(62 35 52 / 0.18), 0 2px 8px rgb(62 35 52 / 0.08);
}

.site-nav .language-popover a {
  width: 100%;
  justify-content: space-between;
  padding-inline: 12px;
  border-radius: 13px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0;
}

.site-nav .language-popover a[aria-current="true"] {
  color: var(--heart-dark);
  background: #f8e8ed;
}

.language-popover small {
  width: 16px;
  color: var(--heart);
  font-size: 0.8rem;
  text-align: center;
}

.site-nav .nav-pill {
  white-space: nowrap;
}

html:lang(ja) h1,
html:lang(zh-CN) h1 {
  letter-spacing: -0.035em;
  line-height: 1.02;
}

@media (max-width: 740px) {
  html:lang(ja) .hero h1,
  html:lang(zh-CN) .hero h1 {
    font-size: clamp(2.9rem, 12.5vw, 4.1rem);
  }
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      ellipse 52% 58% at 78% 23%,
      rgb(249 221 230 / 0.92),
      rgb(249 221 230 / 0.56) 42%,
      rgb(249 221 230 / 0) 78%
    ),
    radial-gradient(
      ellipse 36% 46% at 90% 58%,
      rgb(245 231 239 / 0.62),
      rgb(245 231 239 / 0) 82%
    ),
    var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  right: -210px;
  bottom: 38px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(183 164 225 / 0.24),
    rgb(183 164 225 / 0.18) 58%,
    rgb(183 164 225 / 0) 78%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(40px, 7vw, 112px);
  padding-block: 126px 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--heart);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: clamp(3.7rem, 6.5vw, 6.5rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 18px 0 20px;
  border-radius: 16px;
  font-weight: 750;
  text-decoration: none;
  transition-property: scale, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.button-primary {
  color: #fff;
  background: var(--heart-dark);
  box-shadow: 0 1px 2px rgb(64 23 41 / 0.18), 0 8px 22px rgb(64 23 41 / 0.16);
}

.button-primary:hover {
  background: #652036;
  box-shadow: 0 1px 2px rgb(64 23 41 / 0.2), 0 10px 26px rgb(64 23 41 / 0.2);
}

.hero-actions p {
  max-width: 205px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  text-wrap: pretty;
}

.phone-stage {
  position: relative;
  width: min(100%, 470px);
  min-height: 610px;
  display: grid;
  place-items: center;
  margin: 0;
  isolation: isolate;
}

.nooky-peek {
  position: absolute;
  z-index: 2;
  left: -44px;
  bottom: 17px;
  width: 154px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 14px 18px rgb(85 39 58 / 0.14));
}

.iphone {
  position: relative;
  z-index: 1;
  width: 330px;
  height: 674px;
  padding: 10px;
  border-radius: 58px;
  background: #151318;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.7),
    0 0 0 2px rgb(25 20 29 / 0.52),
    0 18px 32px -18px rgb(69 31 52 / 0.18),
    0 6px 14px -8px rgb(69 31 52 / 0.12);
}

.iphone::before {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 3px;
  border-radius: 55px;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.22);
  pointer-events: none;
}

.iphone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 49px;
  color: #1d1a20;
  background: var(--page);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.18);
}

.iphone-button {
  position: absolute;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(#26222a, #46414a 50%, #211e25);
}

.iphone-button-silent {
  left: -5px;
  top: 108px;
  height: 30px;
}

.iphone-button-volume-up,
.iphone-button-volume-down {
  left: -5px;
  height: 58px;
}

.iphone-button-volume-up { top: 158px; }
.iphone-button-volume-down { top: 228px; }

.iphone-button-power {
  right: -5px;
  top: 182px;
  height: 86px;
  border-radius: 0 3px 3px 0;
}

.status-bar {
  position: absolute;
  z-index: 6;
  top: 13px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding-inline: 24px 21px;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.status-icons {
  font-size: 8px;
  letter-spacing: 0.08em;
}

.dynamic-island {
  position: absolute;
  z-index: 7;
  top: 10px;
  left: 50%;
  width: 92px;
  height: 25px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.app-wash {
  padding: 48px 16px 15px;
  background: linear-gradient(155deg, #f9dde6 0%, #f8e5dc 49%, #eae3f4 100%);
}

.app-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.app-heading div {
  display: grid;
  gap: 1px;
}

.app-heading div span {
  color: #615c66;
  font-size: 9px;
  font-weight: 650;
}

.app-heading strong {
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.heart-balance {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--heart-dark);
  background: rgb(255 255 255 / 0.7);
  box-shadow: 0 1px 6px rgb(95 46 68 / 0.09);
  font-size: 9px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.nook-card {
  position: relative;
  min-height: 182px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 23px;
  background: rgb(255 255 255 / 0.82);
  box-shadow: var(--shadow-card);
}

.couple-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 8px;
  padding: 11px 11px 0;
}

.avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 12px;
  box-shadow: 0 0 0 2px #fff, 0 2px 7px rgb(43 31 47 / 0.15);
}

.avatar-lia { background: linear-gradient(140deg, #f8709c, #b83a61); }
.avatar-teo { background: linear-gradient(140deg, #8b7cf6, #5f55e0); }

.couple-copy {
  display: grid;
  gap: 1px;
  text-align: center;
}

.couple-copy strong {
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 11px;
}

.couple-copy span {
  color: #716d78;
  font-size: 7px;
}

.nook-card > img {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 16px;
  width: 154px;
  transform: translateX(-50%);
  filter: drop-shadow(0 7px 8px rgb(77 38 58 / 0.11));
}

.mood-row {
  position: absolute;
  z-index: 2;
  left: 10px;
  right: 10px;
  bottom: 9px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.mood-row span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #514d56;
  background: rgb(255 255 255 / 0.88);
  box-shadow: 0 1px 4px rgb(47 31 40 / 0.08);
  font-size: 6.5px;
  font-weight: 750;
}

.app-content {
  padding: 15px 16px 28px;
}

.app-section-title {
  display: grid;
  gap: 2px;
  margin-bottom: 10px;
}

.app-section-title strong {
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 13px;
}

.app-section-title span {
  color: #615c66;
  font-size: 7px;
}

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

.app-tile {
  min-height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 11px;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 5px 12px rgb(49 37 53 / 0.12);
}

.app-tile span {
  font-size: 16px;
  font-weight: 800;
}

.app-tile strong {
  max-width: 96px;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 10px;
  line-height: 1.1;
}

.tile-gifts { background: linear-gradient(145deg, #f8709c, #e63577); }
.tile-letters { background: linear-gradient(145deg, #8b7cf6, #5f55e0); }
.tile-fortune { background: linear-gradient(145deg, #ffa53a, #ef7d15); }
.tile-together { background: linear-gradient(145deg, #46c579, #1fa35c); }

.home-indicator {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 7px;
  width: 104px;
  height: 4px;
  border-radius: 999px;
  background: #171419;
  transform: translateX(-50%);
}

:focus-visible {
  outline: 3px solid var(--heart);
  outline-offset: 3px;
}

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

  .nooky-peek {
    left: -12px;
    width: 128px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 740px) {
  :root {
    --shell: min(100% - 28px, 560px);
  }

  .site-header {
    padding-block: 12px;
  }

  .site-nav > a:not(.nav-pill) {
    display: none;
  }

  .site-nav .nav-pill {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
    padding-block: 116px 62px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(3.35rem, 15.5vw, 5rem);
    line-height: 0.96;
  }

  .hero-lead {
    margin: 24px auto 0;
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: center;
    margin-top: 28px;
  }

  .hero-actions p {
    max-width: 260px;
  }

  .phone-stage {
    min-height: 650px;
  }

  .iphone {
    width: 306px;
    height: 625px;
    border-radius: 54px;
  }

  .iphone-screen {
    border-radius: 45px;
  }

  .nooky-peek {
    left: calc(50% - 190px);
    bottom: 5px;
    width: 120px;
  }
}

@media (max-width: 380px) {
  .brand span {
    font-size: 1.16rem;
  }

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

  .site-nav .nav-pill {
    padding-inline: 12px;
  }

  .iphone {
    width: 288px;
    height: 590px;
  }

  .phone-stage {
    min-height: 610px;
  }
}

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

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

::selection {
  color: #fff;
  background: var(--heart);
}

.section {
  padding-block: clamp(82px, 9vw, 132px);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 54px;
}

.section-heading h2,
.nook-copy h2,
.privacy-copy h2,
.quote-inner h2,
.faq-heading h2,
.final-cta h2,
.page-hero h1,
.content-heading h2,
.feature-detail h2 {
  margin: 0;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-weight: 600;
  letter-spacing: -0.046em;
  word-spacing: 0.035em;
  text-wrap: balance;
}

.section-heading h2,
.nook-copy h2,
.privacy-copy h2,
.quote-inner h2,
.faq-heading h2,
.content-heading h2,
.feature-detail h2 {
  font-size: clamp(2.55rem, 4.8vw, 4.7rem);
  line-height: 1;
}

.section-heading > p:last-child,
.nook-copy > p,
.privacy-copy > p,
.quote-inner > p:last-child,
.faq-heading > p:last-child,
.content-heading > p,
.page-lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 24px 0 0;
}

.feature-section {
  position: relative;
  background:
    radial-gradient(
      ellipse 82% 52% at 50% 46%,
      rgb(229 146 171 / 0.09),
      rgb(229 146 171 / 0.05) 38%,
      rgb(229 146 171 / 0) 74%
    ),
    var(--cream);
}

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

.feature-card {
  position: relative;
  min-height: 430px;
  grid-column: span 6;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  border-radius: 34px;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.feature-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 230px;
  right: -90px;
  bottom: -110px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.32);
}

.feature-gifts,
.feature-together,
.feature-story {
  grid-column: span 7;
}

.feature-letters,
.feature-fortune,
.feature-games {
  grid-column: span 5;
}

.feature-gifts { background: linear-gradient(145deg, #ffe4eb, #f6c4d3); }
.feature-letters { background: linear-gradient(145deg, #eee8ff, #d8cdf4); }
.feature-fortune { background: linear-gradient(145deg, #fff0bf, #f7d67d); }
.feature-together { background: linear-gradient(145deg, #dcf4e9, #bce4d2); }
.feature-story { background: linear-gradient(145deg, #e6efff, #cadbf6); }
.feature-games { color: #fff; background: linear-gradient(145deg, #67597e, #3f344f); }

.feature-copy {
  position: relative;
  z-index: 3;
  max-width: 470px;
}

.feature-gifts .feature-copy,
.feature-together .feature-copy,
.feature-story .feature-copy {
  max-width: 55%;
}

.feature-gifts .feature-copy {
  max-width: 50%;
}

.feature-number {
  display: inline-flex;
  min-width: 34px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 999px;
  color: rgb(45 33 48 / 0.72);
  background: rgb(255 255 255 / 0.52);
  font-size: 0.7rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.feature-games .feature-number {
  color: #fff;
  background: rgb(255 255 255 / 0.14);
}

.feature-card h3 {
  max-width: 440px;
  margin: 0;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.feature-card p {
  max-width: 430px;
  margin: 14px 0 0;
  color: rgb(45 33 48 / 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.feature-games p {
  color: rgb(255 255 255 / 0.74);
}

.gift-visual,
.letter-visual,
.fortune-visual,
.together-visual,
.story-visual,
.games-visual {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.gift-visual {
  right: 2px;
  bottom: -30px;
  width: 48%;
}

.gift-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 18px 18px rgb(105 43 62 / 0.18));
}

.gift-note {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 35px;
  width: 148px;
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 18px;
  color: var(--heart-dark);
  background: #fffdfb;
  box-shadow: 0 12px 26px rgb(96 45 61 / 0.12);
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-7deg);
}

.letter-visual {
  width: 246px;
  height: 176px;
  right: 28px;
  bottom: -18px;
  border-radius: 24px;
  background: #8f7bba;
  box-shadow: 0 22px 34px rgb(69 51 95 / 0.22);
  transform: rotate(-4deg);
}

.letter-visual::before,
.letter-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.letter-visual::before {
  clip-path: polygon(0 0, 50% 61%, 100% 0);
  background: #b7a4e1;
}

.letter-visual::after {
  clip-path: polygon(0 100%, 0 40%, 50% 74%, 100% 40%, 100% 100%);
  background: #7f6ca8;
}

.seal {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 78px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--heart);
  box-shadow: 0 5px 12px rgb(61 35 68 / 0.22);
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 1.35rem;
  transform: translate(-50%, -50%);
}

.letter-sheet {
  position: absolute;
  z-index: -1;
  width: 184px;
  height: 150px;
  left: 31px;
  top: -24px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 8px 24px 24px;
  border-radius: 18px 18px 8px 8px;
  color: var(--heart-dark);
  background: #fffdfa;
  box-shadow: 0 8px 18px rgb(58 45 80 / 0.1);
  font-family: "Fredoka", ui-rounded, sans-serif;
}

.letter-sheet i {
  height: 4px;
  border-radius: 999px;
  background: #eadfea;
}

.letter-sheet i:last-child {
  width: 64%;
}

.fortune-visual {
  width: 290px;
  height: 220px;
  right: -18px;
  bottom: -18px;
}

.fortune-visual img {
  position: absolute;
  right: -4px;
  bottom: -22px;
  width: 235px;
  filter: drop-shadow(0 16px 16px rgb(101 68 26 / 0.15));
}

.fortune-slip {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: -22px;
  min-width: 164px;
  padding: 13px 15px;
  border-radius: 12px;
  color: #735022;
  background: #fffdf8;
  box-shadow: 0 9px 20px rgb(98 73 31 / 0.12);
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-5deg);
}

.together-visual {
  width: 42%;
  right: 30px;
  bottom: 36px;
  display: grid;
  gap: 9px;
}

.together-visual > div {
  min-height: 62px;
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 17px;
  background: rgb(255 255 255 / 0.76);
  box-shadow: 0 8px 18px rgb(45 94 69 / 0.08);
  font-size: 0.78rem;
  font-weight: 720;
}

.together-visual small {
  color: #65756d;
  font-size: 0.6rem;
  font-weight: 700;
}

.check {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid #8bc9b1;
  border-radius: 50%;
  color: #fff;
  font-size: 0.68rem;
}

.check.is-done {
  background: #48a47e;
  border-color: #48a47e;
}

.story-visual {
  width: 43%;
  height: 235px;
  right: 34px;
  bottom: 25px;
}

.story-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 37px;
  width: 3px;
  border-radius: 999px;
  background: #94afd6;
}

.story-memory {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 60px;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  padding: 8px 14px 8px 0;
  border-radius: 18px;
  background: rgb(255 255 255 / 0.68);
  box-shadow: 0 7px 16px rgb(57 76 109 / 0.08);
}

.story-memory::before {
  content: "";
  position: absolute;
  left: 31px;
  width: 15px;
  height: 15px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #7697c8;
  box-shadow: 0 0 0 2px #7697c8;
}

.story-memory b {
  color: #4d6790;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 0.72rem;
  text-align: center;
}

.story-memory span {
  color: #3e526f;
  font-size: 0.75rem;
  font-weight: 750;
}

.memory-one { top: 0; }
.memory-two { top: 84px; }
.memory-three { top: 168px; }

.games-visual {
  right: -8px;
  bottom: -32px;
  width: 290px;
  height: 220px;
}

.games-visual img {
  position: absolute;
  width: 170px;
  border-radius: 28px;
  box-shadow: 0 16px 30px rgb(28 21 37 / 0.34);
  outline: 1px solid rgb(255 255 255 / 0.3);
  outline-offset: -1px;
}

.games-visual img:first-child {
  z-index: 2;
  left: 0;
  bottom: 0;
  transform: rotate(-8deg);
}

.games-visual img:last-child {
  right: 0;
  top: 0;
  transform: rotate(8deg);
}

.section-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgb(45 33 48 / 0.24);
  color: var(--heart-dark);
  font-weight: 780;
  text-decoration: none;
  transition-property: color, border-color, gap;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.text-link:hover {
  gap: 14px;
  border-color: var(--heart);
  color: var(--heart);
}

.nook-section {
  background: var(--cream);
}

.section.nook-section,
.section.privacy-section,
.section.quote-section,
.section.faq-section {
  padding-top: 0;
}

.nook-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

.nook-copy > p {
  max-width: 580px;
  margin: 24px 0 0;
}

.steps {
  display: grid;
  gap: 24px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--heart-dark);
  background: #f8dce5;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.steps strong {
  font-size: 1rem;
}

.steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.nook-scene {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 52px;
  background: linear-gradient(150deg, #f5d7e1, #eadff3 52%, #dff1ea);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.5),
    var(--shadow-card);
}

.nook-scene > img {
  position: relative;
  z-index: 3;
  width: min(68%, 370px);
  margin: 0;
  filter: drop-shadow(0 20px 24px rgb(75 40 62 / 0.14));
}

.identity-chip {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 18px;
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 10px 24px rgb(62 41 61 / 0.12);
}

.identity-chip > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Fredoka", ui-rounded, sans-serif;
}

.identity-chip div {
  display: grid;
}

.identity-chip small {
  color: var(--muted);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.identity-chip strong {
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 0.92rem;
}

.chip-lia {
  top: 84px;
  left: 42px;
  transform: rotate(-3deg);
}

.chip-lia > span { background: linear-gradient(140deg, #f8709c, #b83a61); }

.chip-teo {
  top: 118px;
  right: 36px;
  transform: rotate(3deg);
}

.chip-teo > span { background: linear-gradient(140deg, #8b7cf6, #5f55e0); }

.scene-caption {
  position: absolute;
  z-index: 4;
  bottom: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--heart-dark);
  background: rgb(255 255 255 / 0.84);
  box-shadow: 0 8px 20px rgb(75 39 59 / 0.1);
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 0.78rem;
}

.privacy-section {
  padding-top: 0;
  background: var(--cream);
}

.privacy-card {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(30px, 7vw, 100px);
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  border-radius: 52px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 82%, rgb(229 146 171 / 0.22), transparent 30%),
    linear-gradient(145deg, #3f2435, #241a29);
  box-shadow: 0 28px 60px rgb(55 29 45 / 0.2);
}

.privacy-art {
  position: relative;
  min-height: 460px;
  align-self: end;
}

.privacy-art::before {
  content: "";
  position: absolute;
  inset: 42px 0 0;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 50% 50% 34% 34%;
  background: rgb(255 255 255 / 0.06);
}

.privacy-art img {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -76px;
  width: min(90%, 288px);
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 25px rgb(0 0 0 / 0.24));
}

.privacy-shield {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: 16px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 6px solid rgb(255 255 255 / 0.8);
  border-radius: 21px 21px 28px 28px;
  color: #fff;
  background: #579e81;
  box-shadow: 0 11px 26px rgb(0 0 0 / 0.18);
  font-size: 1.25rem;
  font-weight: 900;
  transform: rotate(5deg);
}

.privacy-copy {
  position: relative;
  z-index: 3;
}

.privacy-copy .eyebrow {
  color: #f2b5c9;
}

.privacy-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 0.72);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 22px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(255 255 255 / 0.9);
  font-size: 0.94rem;
  font-weight: 690;
}

.trust-list span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #d8ffef;
  background: rgb(98 179 145 / 0.25);
  font-size: 0.68rem;
}

.privacy-copy .text-link {
  color: #fff;
  border-color: rgb(255 255 255 / 0.35);
}

.privacy-copy .text-link:hover {
  border-color: #f2b5c9;
  color: #f2b5c9;
}

.quote-section {
  background: var(--cream);
}

.quote-inner {
  max-width: 1060px;
  padding: clamp(58px, 7vw, 88px) clamp(28px, 6vw, 76px);
  border-radius: 48px;
  background:
    radial-gradient(circle at 92% 12%, rgb(183 164 225 / 0.22), transparent 34%),
    radial-gradient(circle at 8% 92%, rgb(229 146 171 / 0.17), transparent 30%),
    linear-gradient(145deg, #fff1f3, #f8edf2 58%, #f3edf8);
  box-shadow:
    0 0 0 1px rgb(118 35 63 / 0.05),
    0 22px 50px rgb(70 39 55 / 0.08);
  text-align: center;
}

.quote-inner .eyebrow {
  margin-bottom: 26px;
}

.quote-inner h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.06;
}

.quote-inner > p:last-child {
  max-width: 650px;
  margin: 26px auto 0;
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 40px;
}

.faq-heading > p:last-child {
  margin: 18px 0 0;
}

.faq-list {
  border-top: 1px solid var(--line-warm);
}

.faq-list details {
  border-bottom: 1px solid var(--line-warm);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  cursor: pointer;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--heart-dark);
  background: #f7edf1;
  font-family: ui-sans-serif, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  transition-property: rotate, background-color;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.faq-list details[open] summary::after {
  rotate: 45deg;
  background: #f2dce4;
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 54px 24px 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.final-cta {
  padding-block: 24px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #a93259, #70213c);
}

.final-cta-inner {
  min-height: 176px;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.final-cta img {
  width: 150px;
  align-self: center;
  justify-self: center;
  margin: 0;
  filter: drop-shadow(0 12px 14px rgb(55 16 34 / 0.18));
}

.final-cta .eyebrow {
  margin-bottom: 12px;
  color: #f8c5d5;
}

.final-cta h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.final-cta p:last-child {
  margin: 13px 0 0;
  color: rgb(255 255 255 / 0.72);
}

.button-light {
  color: var(--heart-dark);
  background: #fff;
  box-shadow: 0 8px 22px rgb(52 14 31 / 0.2);
}

.button-light:hover {
  background: #fff8f2;
}

.site-footer {
  padding-block: 76px 30px;
  color: #f8eef2;
  background: #251a22;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 42px;
}

.site-footer .brand {
  width: fit-content;
  color: #fff;
}

.footer-intro > p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 0.58);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-column a {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  color: rgb(255 255 255 / 0.62);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 140ms ease-out;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgb(255 255 255 / 0.46);
  font-size: 0.78rem;
}

/* Internal pages */
.internal-page {
  background: #fff;
}

.site-header-solid {
  position: relative;
  padding-block: 14px;
  border-bottom: 1px solid #eee5e9;
  background: rgb(255 248 242 / 0.96);
}

.site-nav a[aria-current="page"] {
  color: var(--heart-dark);
  background: rgb(255 255 255 / 0.72);
}

.breadcrumbs {
  margin-bottom: 34px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 680;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #b9adb4;
}

.breadcrumbs a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--heart);
}

.page-hero {
  padding-block: clamp(60px, 8vw, 108px);
  background:
    radial-gradient(circle at 85% 25%, rgb(229 146 171 / 0.22), transparent 27%),
    linear-gradient(145deg, #fffaf6, var(--cream));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 6vw, 6rem);
  line-height: 0.98;
}

.page-lead {
  max-width: 710px;
  margin: 26px 0 0;
}

.page-hero-art {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: 38px;
  background: linear-gradient(150deg, #f6d6e1, #e9dff4);
  box-shadow: var(--shadow-card);
}

.page-hero-art img {
  max-height: 310px;
  width: auto;
  filter: drop-shadow(0 17px 20px rgb(82 40 63 / 0.14));
}

.page-hero-art .art-label {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--heart-dark);
  background: rgb(255 255 255 / 0.86);
  box-shadow: 0 7px 18px rgb(73 39 59 / 0.1);
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 0.72rem;
}

.content-section {
  padding-block: clamp(70px, 8vw, 110px);
}

.content-section.is-tinted {
  background: linear-gradient(
    180deg,
    var(--cream),
    var(--cream-blush) 18%,
    var(--cream-blush) 82%,
    var(--cream)
  );
}

.content-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.content-heading > p {
  margin: 20px 0 0;
}

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

.info-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.info-card .card-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--heart-dark);
  background: #f7e2e9;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 0.9rem;
}

.info-card h2,
.info-card h3 {
  margin: 0;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.info-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.info-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--heart-dark);
  font-size: 0.88rem;
  font-weight: 760;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.32fr) minmax(0, 0.68fr);
  align-items: start;
  gap: clamp(40px, 8vw, 110px);
}

.content-nav {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 5px;
  padding: 20px;
  border-radius: 22px;
  background: var(--cream);
}

.content-nav strong {
  padding: 8px 10px 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.content-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 680;
  text-decoration: none;
}

.content-nav a:hover {
  color: var(--heart-dark);
  background: #fff;
}

.prose {
  max-width: 760px;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  scroll-margin-top: 30px;
  margin: 56px 0 16px;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.prose h3 {
  margin: 32px 0 10px;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.prose p,
.prose li {
  color: #584d55;
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.prose a {
  color: var(--heart-dark);
  text-underline-offset: 3px;
}

.callout,
.status-note {
  margin-block: 30px;
  padding: 22px 24px;
  border-radius: 20px;
}

.callout {
  border: 1px solid #ead9e0;
  color: #51434c;
  background: var(--cream);
}

.callout strong,
.status-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.callout p,
.status-note p {
  margin: 0;
  font-size: 0.92rem;
}

.status-note {
  border: 1px solid #e6d29d;
  background: #fff8df;
}

.ordered-steps {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  counter-reset: support-step;
}

.ordered-steps li {
  position: relative;
  min-height: 62px;
  display: grid;
  align-items: center;
  padding: 16px 18px 16px 66px;
  border-radius: 18px;
  background: #f8f5f7;
  counter-increment: support-step;
}

.ordered-steps li::before {
  content: counter(support-step);
  position: absolute;
  left: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--heart-dark);
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.feature-detail-grid {
  display: grid;
  gap: 0;
}

.feature-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
  padding-block: clamp(70px, 8vw, 116px);
  border-bottom: 1px solid #ece6e9;
}

.feature-detail:nth-child(even) .feature-detail-copy {
  order: 2;
}

.feature-detail p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

.feature-detail ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-detail li {
  display: flex;
  gap: 10px;
  color: #554a52;
  font-size: 0.9rem;
}

.feature-detail li::before {
  content: "✓";
  color: var(--heart);
  font-weight: 900;
}

.feature-detail-art {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, #f9e2e9, #eee5f5);
  box-shadow: var(--shadow-card);
}

.feature-detail-art img {
  max-width: 72%;
  max-height: 330px;
  filter: drop-shadow(0 18px 22px rgb(67 36 57 / 0.16));
}

.feature-detail-art.game-pair {
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 18px;
  padding: 36px;
  background: linear-gradient(145deg, #5d506f, #332a40);
}

.feature-detail-art.game-pair img {
  max-width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 30px rgb(15 10 21 / 0.32);
}

.feature-detail-art.game-pair img:first-child { transform: rotate(-5deg); }
.feature-detail-art.game-pair img:last-child { transform: rotate(5deg); }

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding-block: 70px;
  text-align: center;
  background: var(--cream);
}

.error-page img {
  width: 190px;
  margin-inline: auto;
}

.error-page h1 {
  margin: 12px 0 0;
  font-family: "Fredoka", ui-rounded, sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.error-page p {
  max-width: 520px;
  margin: 20px auto 28px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .feature-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .feature-gifts,
  .feature-letters,
  .feature-fortune,
  .feature-together,
  .feature-story,
  .feature-games {
    grid-column: span 1;
  }

  .feature-gifts .feature-copy,
  .feature-together .feature-copy,
  .feature-story .feature-copy {
    max-width: 100%;
  }

  .feature-gifts,
  .feature-together,
  .feature-story {
    min-height: 500px;
  }

  .gift-visual,
  .together-visual,
  .story-visual {
    width: 72%;
  }

  .nook-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 38px;
  }

  .privacy-card {
    grid-template-columns: 280px 1fr;
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
  }

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

@media (max-width: 800px) {
  .site-nav .nav-text {
    display: none;
  }

  .nook-grid,
  .privacy-card,
  .faq-grid,
  .page-hero-grid,
  .content-layout,
  .feature-detail {
    grid-template-columns: 1fr;
  }

  .nook-scene {
    min-height: 500px;
  }

  .privacy-card {
    padding-bottom: 56px;
  }

  .privacy-art {
    min-height: 350px;
  }

  .privacy-art img {
    bottom: -58px;
    width: 230px;
  }

  .privacy-copy {
    padding-top: 16px;
  }

  .faq-heading,
  .content-nav {
    position: static;
  }

  .faq-grid {
    gap: 36px;
  }

  .final-cta-inner {
    grid-template-columns: 140px 1fr;
  }

  .final-cta .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
    margin-bottom: 16px;
  }

  .page-hero-art {
    min-height: 280px;
  }

  .content-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-nav strong {
    grid-column: 1 / -1;
  }

  .feature-detail:nth-child(even) .feature-detail-copy {
    order: 0;
  }
}

@media (max-width: 620px) {
  .section {
    padding-block: 74px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .feature-bento,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-gifts,
  .feature-letters,
  .feature-fortune,
  .feature-together,
  .feature-story,
  .feature-games {
    min-height: 455px;
    border-radius: 28px;
  }

  .feature-story {
    min-height: 520px;
  }

  .feature-card h3 {
    font-size: 1.85rem;
  }

  .gift-visual {
    width: 68%;
  }

  .gift-note {
    left: -72px;
  }

  .together-visual,
  .story-visual {
    width: calc(100% - 50px);
    right: 25px;
  }

  .letter-visual {
    right: 20px;
  }

  .nook-scene {
    min-height: 440px;
    border-radius: 36px;
  }

  .chip-lia {
    top: 56px;
    left: 18px;
  }

  .chip-teo {
    top: 90px;
    right: 18px;
  }

  .privacy-section {
    padding-inline: 14px;
  }

  .privacy-card {
    width: min(100%, 560px);
    padding: 30px 24px 50px;
    border-radius: 36px;
  }

  .privacy-art {
    min-height: 310px;
  }

  .privacy-art img {
    width: 205px;
  }

  .quote-inner {
    padding: 50px 24px;
    border-radius: 32px;
    text-align: left;
  }

  .quote-inner > p:last-child {
    margin-left: 0;
  }

  .final-cta-inner {
    grid-template-columns: 90px 1fr;
    gap: 20px;
  }

  .final-cta img {
    width: 112px;
    max-width: none;
  }

  .final-cta h2 {
    font-size: 2.75rem;
  }

  .final-cta .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .page-hero {
    padding-block: 48px 66px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .page-hero-art {
    min-height: 250px;
    border-radius: 30px;
  }

  .content-nav {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 0;
  }

  .feature-detail-art {
    min-height: 310px;
  }

  .feature-detail-art.game-pair {
    gap: 10px;
    padding: 22px;
  }
}
