:root {
  --lucia-purple: #5B35A3;
  --lucia-purple-dark: #3E2678;
  --rayna-green: #798A4F;
  --rayna-green-dark: #5F6F3D;
  --ampersand-yellow: #FFC400;
  --warm-bg: #FFF9EE;
  --cream-card: #FFFDF7;
  --kid-blue: #1687D9;
  --kid-blue-soft: #DDF0FF;
  --kid-pink: #EF4E73;
  --kid-pink-soft: #FFE3EA;
  --kid-orange: #FF9F1C;
  --kid-orange-soft: #FFF0D3;
  --kid-mint: #7BCFA6;
  --ink: #252033;
  --muted: #6f687a;
  --line-soft: rgba(91, 53, 163, 0.14);
  --shadow-soft: 0 18px 40px rgba(89, 64, 37, 0.11);
  --shadow-card: 0 10px 24px rgba(89, 64, 37, 0.1);
  --radius-large: 24px;
  --radius-medium: 18px;
  --radius-small: 12px;
  --page-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 196, 0, 0.2), transparent 16rem),
    radial-gradient(circle at 98% 22%, rgba(239, 78, 115, 0.13), transparent 18rem),
    linear-gradient(180deg, #fffdf8 0%, var(--warm-bg) 52%, #fffaf0 100%);
  font-family: "Nunito", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.5;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  border-radius: 48% 52% 56% 44%;
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

body::before {
  right: -8rem;
  top: 12rem;
  background: var(--kid-blue-soft);
  transform: rotate(-18deg);
}

body::after {
  left: -8rem;
  bottom: 7rem;
  background: linear-gradient(135deg, rgba(123, 207, 166, 0.45), rgba(255, 196, 0, 0.3));
  transform: rotate(18deg);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  width: min(100% - 2rem, var(--page-max));
  margin: 0 auto;
  padding: 1rem 0.25rem 0.75rem;
  background: rgba(255, 249, 238, 0.9);
  backdrop-filter: blur(14px);
}

.site-header::before {
  position: absolute;
  inset: 0.35rem -0.75rem 0.2rem;
  z-index: -1;
  border: 1px solid rgba(91, 53, 163, 0.09);
  border-radius: 0 0 26px 26px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 12px 30px rgba(89, 64, 37, 0.07);
  content: "";
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  letter-spacing: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 950;
  line-height: 0.95;
}

.brand-lucia {
  color: var(--lucia-purple);
}

.brand-amp {
  color: var(--ampersand-yellow);
  margin: 0 -0.01em;
}

.brand-rayna {
  color: var(--rayna-green-dark);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.6rem, 1.6vw, 1.3rem);
}

.main-nav a {
  position: relative;
  border-radius: 999px;
  padding: 0.55rem 0.65rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav .is-active {
  color: var(--lucia-purple);
  background: rgba(91, 53, 163, 0.08);
  outline: none;
}

.main-nav .is-active::after {
  position: absolute;
  right: 0.65rem;
  bottom: 0.28rem;
  left: 0.65rem;
  height: 3px;
  border-radius: 999px;
  background: var(--lucia-purple);
  content: "";
}

.join-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.join-button {
  background: var(--lucia-purple);
  font-size: 0.86rem;
  white-space: nowrap;
}

.join-button svg {
  width: 1rem;
  fill: #fff;
}

.button:hover,
.button:focus-visible,
.join-button:hover,
.join-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(89, 64, 37, 0.17);
  filter: saturate(1.06);
  outline: none;
}

.button svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.button-purple {
  background: var(--lucia-purple);
}

.button-green {
  background: var(--rayna-green-dark);
}

.button-yellow {
  color: var(--ink);
  background: var(--ampersand-yellow);
}

.button-pink {
  background: var(--kid-pink);
}

.button-orange {
  background: #f36c1d;
}

.button-small {
  min-height: 2.6rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.82rem;
}

.nav-toggle-button {
  display: none;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
  align-items: center;
  gap: clamp(1.8rem, 5vw, 5rem);
  width: min(100% - 2rem, var(--page-max));
  min-height: 650px;
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 5rem) 0 2rem;
  isolation: isolate;
}

.paint-splash {
  position: absolute;
  z-index: -1;
  border-radius: 48% 52% 54% 46%;
  filter: blur(0.2px);
  opacity: 0.52;
}

.splash-yellow {
  left: -3.5rem;
  top: 6rem;
  width: 8rem;
  height: 4rem;
  background: rgba(255, 196, 0, 0.45);
  transform: rotate(-22deg);
}

.splash-blue {
  right: -2.8rem;
  top: 20rem;
  width: 10rem;
  height: 5.5rem;
  background: rgba(22, 135, 217, 0.24);
  transform: rotate(-13deg);
}

.splash-pink {
  right: -4rem;
  top: 5.5rem;
  width: 9rem;
  height: 7rem;
  background: rgba(239, 78, 115, 0.18);
  transform: rotate(20deg);
}

.hero-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin: 0 0 1.2rem;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 2px rgba(255, 196, 0, 0.18);
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.kicker-sisters {
  color: var(--lucia-purple);
}

.kicker-explorers {
  color: var(--rayna-green-dark);
}

.kicker-friends {
  color: var(--kid-pink);
}

.hero-title {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.1rem, 6.6vw, 6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-title span {
  display: block;
}

.title-purple {
  color: var(--lucia-purple);
}

.title-pink {
  color: var(--kid-pink);
}

.title-green {
  color: #4e7c22;
}

.title-blue {
  color: var(--kid-blue);
}

.hero-text {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  isolation: isolate;
}

.character-stage {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.4rem, 2.2vw, 1.4rem);
  min-height: 570px;
}

.character-stage::after {
  position: absolute;
  right: 7%;
  bottom: -0.6rem;
  left: 2%;
  z-index: -1;
  height: 7rem;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.13);
  content: "";
}

.hero-character {
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 18px rgba(89, 64, 37, 0.18));
}

.lucia-hero {
  z-index: 2;
  height: min(56vw, 550px);
  max-height: 550px;
}

.rayna-hero {
  z-index: 3;
  height: min(42vw, 400px);
  max-height: 400px;
  margin-left: -1.1rem;
}

.doodle {
  position: absolute;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.doodle-plane {
  left: 0;
  top: 22%;
  width: 4.5rem;
  stroke: var(--lucia-purple);
}

.doodle-bulb {
  left: 20%;
  top: 12%;
  width: 5rem;
  stroke: var(--kid-orange);
}

.doodle-magnifier {
  right: 2%;
  top: 8%;
  width: 5.5rem;
  stroke: var(--kid-blue);
}

.doodle-leaf {
  right: 4%;
  bottom: 24%;
  width: 4.6rem;
  stroke: var(--kid-blue);
}

.doodle-heart {
  left: 23%;
  bottom: 20%;
  width: 3.5rem;
  stroke: var(--kid-pink);
}

.doodle-trail {
  position: absolute;
  z-index: 0;
  fill: none;
  stroke: var(--lucia-purple);
  stroke-dasharray: 8 10;
  stroke-linecap: round;
  stroke-width: 3;
  opacity: 0.7;
}

.trail-one {
  left: 12%;
  top: 34%;
  width: 13rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(100% - 2rem, var(--page-max));
  margin: 0 auto 0.6rem;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow-soft);
  scrollbar-color: rgba(91, 53, 163, 0.35) transparent;
  scrollbar-width: thin;
}

.feature-card {
  position: relative;
  padding: 1.55rem 1.2rem 1.75rem;
  text-align: center;
}

.feature-card + .feature-card {
  border-left: 1px solid rgba(111, 104, 122, 0.14);
}

.feature-card::after {
  position: absolute;
  right: 34%;
  bottom: 1rem;
  left: 34%;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.feature-card h2 {
  margin: 0.8rem 0 0.45rem;
  font-size: 1.04rem;
  line-height: 1.15;
}

.feature-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

.feature-purple {
  color: var(--lucia-purple);
}

.feature-green {
  color: var(--rayna-green-dark);
}

.feature-pink {
  color: var(--kid-pink);
}

.feature-blue {
  color: var(--kid-blue);
}

.feature-orange {
  color: var(--kid-orange);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  color: #fff;
  background: currentColor;
  box-shadow: 0 8px 18px rgba(89, 64, 37, 0.13);
}

.icon-circle svg {
  width: 2.15rem;
  height: 2.15rem;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section {
  width: min(100% - 2rem, var(--page-max));
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.2rem) 0 0;
}

.section-heading {
  text-align: center;
}

.section-kicker {
  margin: 0 0 0.15rem;
  color: var(--kid-orange);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.section-row h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-row .section-heading {
  text-align: left;
}

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

.sister-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(14rem, 0.9fr) minmax(14rem, 1fr);
  min-height: 340px;
  overflow: hidden;
  border: 2px solid;
  border-radius: var(--radius-large);
  background: var(--cream-card);
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.sister-card::after {
  position: absolute;
  width: 7.5rem;
  height: 7.5rem;
  border: 3px dashed currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.lucia-card::after {
  right: -2.2rem;
  top: -2.5rem;
  color: var(--lucia-purple);
}

.rayna-card::after {
  right: -2.2rem;
  top: -2.5rem;
  color: var(--rayna-green-dark);
}

.lucia-card {
  border-color: rgba(91, 53, 163, 0.25);
  background:
    radial-gradient(circle at 88% 15%, rgba(91, 53, 163, 0.12), transparent 8rem),
    linear-gradient(135deg, #fffdf7, #fbf7ff);
}

.rayna-card {
  border-color: rgba(121, 138, 79, 0.28);
  background:
    radial-gradient(circle at 90% 12%, rgba(123, 207, 166, 0.18), transparent 8rem),
    linear-gradient(135deg, #fffdf7, #f8ffef);
}

.sister-details {
  position: relative;
  z-index: 1;
  padding: 1.7rem 1.45rem;
}

.sister-card h3 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 950;
  text-transform: uppercase;
}

.lucia-card h3 {
  color: var(--lucia-purple);
}

.rayna-card h3 {
  color: var(--rayna-green-dark);
}

.stats-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.stats-list div {
  display: grid;
  grid-template-columns: 5.3rem 1fr;
  align-items: center;
  gap: 0.4rem;
}

.stats-list dt {
  color: var(--muted);
  font-weight: 850;
}

.stats-list dd {
  margin: 0;
  font-weight: 950;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.tag-list span {
  border: 2px solid currentColor;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.lucia-card .tag-list {
  color: var(--lucia-purple);
}

.rayna-card .tag-list {
  color: var(--rayna-green-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  font-weight: 950;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  font-size: 1.45rem;
}

.lucia-link {
  color: var(--lucia-purple);
}

.rayna-link {
  color: var(--rayna-green-dark);
}

.sister-image-wrap {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  min-width: 0;
  padding: 0.6rem 0.5rem 0;
}

.sister-image-wrap::before {
  position: absolute;
  right: 8%;
  bottom: -1rem;
  left: 8%;
  height: 5.2rem;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.12);
  content: "";
}

.sister-image-wrap img {
  position: relative;
  z-index: 1;
  max-width: 115%;
  max-height: 320px;
  object-fit: contain;
  object-position: bottom center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 16px rgba(89, 64, 37, 0.16));
}

.adventures-section {
  position: relative;
}

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

.adventure-card {
  border-radius: var(--radius-medium);
  padding: 0.85rem 0.85rem 1.15rem;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: var(--shadow-card);
}

.story-art {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--kid-blue-soft);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.58);
}

.story-art::before,
.story-art::after {
  position: absolute;
  display: block;
  border-radius: 50%;
  content: "";
}

.story-art::before {
  left: 13%;
  top: 18%;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.72);
}

.story-art::after {
  right: 9%;
  top: 18%;
  width: 5.5rem;
  height: 1.8rem;
  background: rgba(255, 255, 255, 0.62);
}

.story-forest {
  background:
    radial-gradient(circle at 22% 74%, #5f9f52 0 14%, transparent 15%),
    radial-gradient(circle at 62% 52%, #75bf62 0 18%, transparent 19%),
    linear-gradient(160deg, #8fd8ff 0 42%, #60b56a 43% 100%);
}

.story-build {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.9) 0 14%, transparent 15%),
    linear-gradient(160deg, #7bd6ff, #ffe18a);
}

.story-pool {
  background:
    radial-gradient(circle at 78% 18%, #fff4c2 0 8%, transparent 9%),
    linear-gradient(160deg, #80d6ff 0 44%, #9cc784 45% 100%);
}

.story-doodle,
.story-block,
.story-shell,
.story-ripple {
  position: absolute;
  display: block;
}

.map-line {
  inset: 30% 18%;
  border: 4px dashed rgba(91, 53, 163, 0.55);
  border-color: rgba(91, 53, 163, 0.55) transparent transparent rgba(91, 53, 163, 0.55);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.story-badge {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  color: var(--ampersand-yellow);
  font-size: 2.4rem;
}

.story-block {
  width: 3rem;
  height: 3rem;
  border: 3px solid rgba(37, 32, 51, 0.18);
  border-radius: 9px;
}

.block-one {
  left: 30%;
  bottom: 18%;
  background: var(--kid-pink);
  transform: rotate(-12deg);
}

.block-two {
  left: 44%;
  bottom: 31%;
  background: var(--ampersand-yellow);
  transform: rotate(8deg);
}

.block-three {
  left: 56%;
  bottom: 18%;
  background: var(--kid-blue);
  transform: rotate(16deg);
}

.story-shell {
  right: 16%;
  bottom: 17%;
  width: 4.7rem;
  height: 3.4rem;
  border: 5px solid #f36c1d;
  border-radius: 50% 50% 20% 20%;
}

.story-ripple {
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.ripple-one {
  left: 14%;
  bottom: 23%;
  width: 6rem;
  height: 2rem;
}

.ripple-two {
  left: 34%;
  bottom: 37%;
  width: 5rem;
  height: 1.55rem;
}

.adventure-card time {
  display: block;
  margin: 0.95rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.adventure-card h3 {
  margin: 0;
  color: var(--kid-blue);
  font-size: 1.35rem;
  line-height: 1.1;
}

.adventure-card:nth-child(2) h3 {
  color: var(--rayna-green-dark);
}

.adventure-card p {
  margin: 0.5rem 0 0;
  font-weight: 700;
}

.action-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.95fr);
  gap: 1.35rem;
}

.activity-card,
.mini-card,
.newsletter-section {
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.activity-card {
  position: relative;
  min-height: 310px;
  padding: 1.75rem;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 196, 0, 0.32) 0 13%, transparent 14%),
    radial-gradient(circle at 94% 98%, rgba(255, 255, 255, 0.85) 0 12%, transparent 13%),
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.22), transparent 8rem),
    linear-gradient(135deg, #1cb5e8, var(--kid-blue));
}

.activity-card h2,
.mini-card h2,
.newsletter-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.activity-card p {
  margin: 0.45rem 0 1.45rem;
  font-size: 1.08rem;
  font-weight: 850;
}

.activity-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.45rem;
}

.activity-icons span {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  min-width: 0;
  font-weight: 950;
}

.activity-icons svg {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  padding: 1rem;
  background: #fff;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.activity-icons span:nth-child(1) svg {
  color: var(--lucia-purple);
}

.activity-icons span:nth-child(2) svg {
  color: var(--kid-orange);
}

.activity-icons span:nth-child(3) svg {
  color: var(--rayna-green-dark);
}

.activity-icons span:nth-child(4) svg {
  color: var(--kid-blue);
}

.side-card-stack {
  display: grid;
  gap: 1.35rem;
}

.mini-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 145px;
  padding: 1.35rem 1.45rem;
  border: 2px solid transparent;
}

.mini-card p {
  max-width: 24rem;
  margin: 0.35rem 0 0.8rem;
  font-weight: 750;
}

.mini-card svg {
  width: clamp(5.5rem, 11vw, 8.5rem);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.parents-card {
  border-color: rgba(239, 78, 115, 0.22);
  background: linear-gradient(135deg, #fff8fb, var(--kid-pink-soft));
}

.parents-card h2,
.parents-card svg {
  color: var(--kid-pink);
  stroke: var(--kid-pink);
}

.shop-card {
  border-color: rgba(255, 159, 28, 0.24);
  background: linear-gradient(135deg, #fff8dd, var(--kid-orange-soft));
}

.shop-card h2,
.shop-card svg {
  color: #f36c1d;
  stroke: #f36c1d;
}

.newsletter-section {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(16rem, 0.9fr) minmax(20rem, 1.1fr);
  align-items: center;
  gap: 1.4rem;
  width: min(100% - 2rem, var(--page-max));
  margin: 2.3rem auto 1.5rem;
  padding: 1.55rem 1.75rem;
  color: #fff;
  background:
    radial-gradient(circle at 96% 16%, rgba(255, 196, 0, 0.36), transparent 9rem),
    radial-gradient(circle at 7% 96%, rgba(123, 207, 166, 0.32), transparent 7rem),
    linear-gradient(120deg, var(--lucia-purple-dark), var(--lucia-purple) 46%, var(--kid-blue));
}

.newsletter-plane {
  width: clamp(4.5rem, 8vw, 6.7rem);
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.newsletter-section p {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  font-weight: 850;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(37, 32, 51, 0.07);
}

.newsletter-form input {
  min-width: 0;
  border: 0;
  padding: 1.05rem 1.35rem;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.newsletter-form:focus-within {
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.28), inset 0 0 0 2px rgba(37, 32, 51, 0.07);
}

.newsletter-form input::placeholder {
  color: #948ba2;
}

.newsletter-form button {
  border: 0;
  padding: 0 1.7rem;
  color: var(--ink);
  background: var(--ampersand-yellow);
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  width: min(100% - 2rem, var(--page-max));
  margin: 0 auto;
  padding: 0 0 1.2rem;
  text-align: center;
}

.social-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  min-height: 3.1rem;
  border-radius: 50%;
  padding: 0.35rem;
  color: #fff;
  font-size: 0;
  font-weight: 950;
}

.social-links a::after {
  font-size: 1rem;
  content: attr(data-short);
}

.social-links a:nth-child(1) {
  background: var(--lucia-purple);
}

.social-links a:nth-child(2) {
  background: #e32728;
}

.social-links a:nth-child(3) {
  background: #2f6bce;
}

.social-links a:nth-child(4) {
  background: #111;
}

.footer-links {
  margin-top: 0.9rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
    border-radius: 20px;
    padding: 0.75rem;
    background: rgba(255, 253, 247, 0.97);
    box-shadow: var(--shadow-soft);
  }

  .nav-toggle-button {
    display: inline-grid;
    justify-self: end;
    gap: 0.28rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    padding: 0.78rem;
    background: rgba(91, 53, 163, 0.08);
    cursor: pointer;
  }

  .nav-toggle-button span {
    height: 3px;
    border-radius: 999px;
    background: var(--ink);
  }

  .nav-toggle:checked ~ .main-nav {
    display: grid;
  }

  .join-button {
    justify-self: end;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-title,
  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .character-stage {
    min-height: 500px;
  }

  .lucia-hero {
    height: min(70vw, 500px);
  }

  .rayna-hero {
    height: min(54vw, 370px);
  }

  .feature-strip {
    grid-template-columns: repeat(5, minmax(12rem, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .feature-strip::after {
    content: "";
    width: 0.2rem;
  }

  .feature-card {
    scroll-snap-align: start;
  }

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

  .sister-image-wrap {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 1.1rem, var(--page-max));
    gap: 0.55rem;
  }

  .brand-wordmark {
    font-size: clamp(1.68rem, 8.5vw, 2.55rem);
  }

  .join-button {
    grid-column: 1 / -1;
    justify-self: stretch;
    min-height: 2.65rem;
    padding: 0.7rem 1rem;
  }

  .nav-toggle-button {
    grid-column: 2;
    grid-row: 1;
  }

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

  .hero-section,
  .section,
  .feature-strip,
  .newsletter-section,
  .site-footer {
    width: min(100% - 1.1rem, var(--page-max));
  }

  .hero-section {
    padding-top: 1.45rem;
  }

  .hero-kicker {
    justify-content: center;
    border-radius: 18px;
  }

  .hero-title {
    font-size: clamp(2.68rem, 13vw, 4.15rem);
  }

  .hero-text {
    font-size: 1rem;
  }

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

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

  .character-stage {
    min-height: 405px;
  }

  .lucia-hero {
    height: min(88vw, 395px);
  }

  .rayna-hero {
    height: min(66vw, 290px);
    margin-left: -1.8rem;
  }

  .doodle-plane {
    left: -0.4rem;
    top: 10%;
    width: 3rem;
  }

  .doodle-bulb {
    left: 7%;
    top: 0;
    width: 3.5rem;
  }

  .doodle-magnifier {
    right: 0;
    top: 3%;
    width: 3.7rem;
  }

  .trail-one {
    display: none;
  }

  .feature-strip {
    border-radius: 20px;
  }

  .sister-grid,
  .adventure-grid,
  .action-section {
    grid-template-columns: 1fr;
  }

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

  .sister-details {
    padding: 1.35rem 1.15rem;
  }

  .stats-list div {
    grid-template-columns: 4.6rem 1fr;
  }

  .section-row {
    align-items: start;
    flex-direction: column;
  }

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

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

  .mini-card svg {
    justify-self: end;
  }

  .newsletter-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-plane {
    justify-self: center;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .newsletter-form button {
    min-height: 3rem;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 390px;
  }

  .character-stage {
    min-height: 365px;
    gap: 0;
  }

  .lucia-hero {
    height: 350px;
  }

  .rayna-hero {
    height: 250px;
    margin-left: -2.2rem;
  }

  .activity-icons span {
    font-size: 0.82rem;
  }
}
