:root {
  --bg: #fdfbf7;
  --bg-warm: #f5f0e6;
  --ink: #1c2418;
  --muted: #66705f;
  --leaf: #1f4d3a;
  --leaf-mid: #2f6b4f;
  --leaf-soft: #e7f0e8;
  --sand: #e4dccb;
  --line: #ebe6dc;
  --accent: #e8a04a;
  --amber: #c4842a;
  --blue: #5b7fbf;
  --warm: #fbf6ea;
  --peach: #f8eee3;
  --surface: #ffffff;
  --font: "Prompt", system-ui, sans-serif;
  --shell: 1180px;
  --pad: clamp(1.1rem, 3.2vw, 1.85rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-weight: 400;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

/* —— Header —— */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 1rem var(--pad);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 700;
  font-size: 1.28rem;
  text-decoration: none;
  letter-spacing: -0.02em;
  color: var(--leaf);
}

.brand-a {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 5px auto;
  background: var(--leaf);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

nav a:hover,
.nav-login {
  color: var(--ink);
}

.nav-login {
  font-weight: 600;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.05rem;
  padding: 0 1.35rem;
  border-radius: 0.85rem;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(31, 77, 58, 0.22);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  background: #163d2e;
  transform: translateY(-1px);
}

.btn-lg {
  min-height: 3.3rem;
  padding: 0 1.6rem;
  font-size: 1.05rem;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--leaf);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-link:hover {
  color: #163d2e;
}

.play {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1.5px solid var(--leaf);
  color: var(--leaf);
}

/* —— Hero —— */
.hero {
  display: grid;
  gap: 1.25rem;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0.85rem var(--pad) 3rem;
  grid-template-areas:
    "photo"
    "copy"
    "note";
}

.hero-copy {
  grid-area: copy;
}

.hero-visual {
  display: contents;
}

.hero-photo-wrap {
  grid-area: photo;
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.85rem, 7vw, 3.35rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--leaf);
}

.headline-mark {
  position: relative;
  display: inline-block;
}

.underline-doodle {
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 100%;
  height: 0.45em;
  overflow: visible;
}

.lede {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.cta .btn {
  width: 100%;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 67% center;
  border-radius: 1.15rem;
}

.note-card {
  grid-area: note;
  position: relative;
  padding: 0.95rem 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(28, 36, 24, 0.1);
}

.note-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}

.note-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.note-date {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.note-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin: 0.7rem 0 0.65rem;
}

.note-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.4rem;
}

.note-body {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

.doodle {
  position: absolute;
  pointer-events: none;
}

.doodle-star {
  top: 0.75rem;
  right: 0.85rem;
  width: 1.65rem;
  height: 1.65rem;
  opacity: 0.9;
  animation: twinkle 2.8s ease-in-out infinite;
}

.doodle-heart {
  position: absolute;
  right: 1rem;
  bottom: 0.85rem;
  width: 1.4rem;
  height: 1.25rem;
}

.doodle-heart-lg {
  position: absolute;
  left: 0;
  bottom: -2.2rem;
  width: 1.7rem;
  height: 1.5rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.tag {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--leaf-soft);
  color: var(--leaf);
}

.tag-math {
  background: #f7edd9;
  color: var(--amber);
}

.tag-think {
  background: #eaf0fa;
  color: var(--blue);
}

.tag-life {
  background: #f7e9df;
  color: #b86a3c;
}

.tag-lang {
  background: var(--leaf-soft);
  color: var(--leaf);
}

.tag-world {
  background: #e5f0e2;
  color: #3f6b3a;
}

/* —— Sections —— */
.section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 3.5rem var(--pad);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: center;
  color: var(--leaf);
}

.section-lede {
  margin: 0.7rem auto 0;
  max-width: 34rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
}

.why {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

/* —— Radial orbit diagram —— */
.orbit {
  position: relative;
  width: min(100%, 640px);
  margin: 2.5rem auto 0;
  aspect-ratio: 640 / 420;
  min-height: 320px;
}

.orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin: 0;
  width: min(38%, 168px);
  transform: translate(-50%, -52%);
  text-align: center;
}

.orbit-center img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
  border: 5px solid #fff;
  box-shadow: 0 12px 32px rgba(28, 36, 24, 0.14);
}

.orbit-center figcaption {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--leaf);
}

.orbit-nodes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.node {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 7.2rem;
  text-align: center;
}

.node strong {
  display: block;
  font-size: 0.82rem;
  color: var(--leaf);
  line-height: 1.25;
}

.node p {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.35;
}

.node-icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1.5px solid var(--sand);
  color: var(--leaf);
  box-shadow: 0 6px 16px rgba(28, 36, 24, 0.08);
}

.node-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.node.n1 {
  left: 2%;
  top: 8%;
}

.node.n2 {
  left: 50%;
  top: -2%;
  transform: translateX(-50%);
}

.node.n3 {
  right: 2%;
  top: 8%;
}

.node.n4 {
  left: 6%;
  bottom: 2%;
}

.node.n5 {
  right: 6%;
  bottom: 2%;
}

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.15rem;
}

.step {
  padding: 1.35rem 1.2rem 1.2rem;
  border-radius: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.step-badge {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.step h3 {
  margin: 0.7rem 0 0.15rem;
  font-size: 1.35rem;
  color: var(--leaf);
}

.step-lead {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.step > p:not(.step-lead) {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.step > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.85rem;
}

.step-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem;
  border-radius: 0.85rem;
  background: var(--warm);
  border: 1px solid #efe6d4;
}

.step-card img {
  width: 84px;
  height: 63px;
  object-fit: cover;
  border-radius: 0.45rem;
}

.step-card-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.growth-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.45rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 0.85rem;
  background: var(--warm);
  border: 1px solid #efe6d4;
}

.growth-pair figure {
  margin: 0;
  min-width: 0;
}

.growth-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.5rem;
}

.growth-pair figcaption {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--muted);
}

.growth-pair figcaption span {
  display: block;
  font-weight: 700;
  color: var(--leaf);
  font-size: 0.74rem;
}

.growth-arrow {
  display: grid;
  place-items: center;
  color: var(--leaf);
  flex-shrink: 0;
}

/* —— Showcase trio —— */
.showcase {
  background: var(--bg-warm);
}

.showcase-trio {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.15rem;
  align-items: center;
  justify-items: center;
}

.device-shot {
  margin: 0;
  width: min(100%, 260px);
  padding: 0.55rem;
  border-radius: 1.85rem;
  background: #1a2218;
  box-shadow: 0 20px 44px rgba(28, 36, 24, 0.2);
}

.device-shot img {
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
  background: #fffcf8;
}

.timeline-panel {
  width: min(100%, 360px);
  padding: 1.15rem 1.1rem 1rem;
  border-radius: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(28, 36, 24, 0.06);
}

.panel-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--leaf);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.timeline img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 0.45rem;
}

.tl-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.tl-meta {
  margin: 0.1rem 0 0.35rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.timeline .tags .tag {
  font-size: 0.62rem;
  padding: 0.12rem 0.4rem;
}

.timeline-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--leaf);
  text-decoration: none;
}

.timeline-more:hover {
  color: #163d2e;
}

.quote-card {
  position: relative;
  width: min(100%, 240px);
  display: grid;
  place-items: center;
  padding: 2.6rem 1.35rem 2.4rem;
  border-radius: 0.35rem 1.1rem 0.9rem 1.15rem;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(180, 150, 100, 0.08) 28px
    ),
    linear-gradient(155deg, #f7ebd7, #efe0c8 55%, #e8d7ba);
  border: 1px solid #e5d7be;
  text-align: center;
  box-shadow:
    0 10px 28px rgba(120, 90, 40, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transform: rotate(-1.8deg);
}

.quote-tape {
  position: absolute;
  top: 0.35rem;
  width: 5.5rem;
  opacity: 0.9;
}

.quote-card p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--leaf);
}

/* —— Progress —— */
.progress-pair {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.progress-pair figure {
  margin: 0;
  padding: 0.65rem;
  border-radius: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.progress-pair img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.8rem;
}

.progress-pair figcaption {
  margin-top: 0.7rem;
  padding: 0 0.25rem 0.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.progress-pair figcaption span {
  display: block;
  margin-bottom: 0.15rem;
  font-weight: 700;
  color: var(--leaf);
}

/* —— Benefits —— */
.benefits {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
  border-radius: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.benefit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--leaf);
}

.benefit-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.benefit-list strong {
  display: block;
  font-size: 0.98rem;
  color: var(--leaf);
}

.benefit-list p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* —— Help —— */
.help-block {
  padding-top: 1rem;
}

.help-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.5rem 1.35rem;
  border-radius: 1.15rem;
  background: var(--warm);
  border: 1px solid #efe6d4;
  text-align: center;
}

.help-card h2 {
  margin-bottom: 0.55rem;
}

.help-card p {
  margin: 0;
  color: var(--muted);
}

.help-card a {
  color: var(--leaf);
  font-weight: 600;
}

.help-card ul {
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  text-align: left;
  max-width: 26rem;
}

.help-card li {
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  color: var(--ink);
}

.help-note {
  margin-top: 0.85rem !important;
  font-size: 0.82rem;
}

/* —— Final CTA (split) —— */
.final-cta {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  padding: 2.5rem var(--pad) 3.5rem;
}

.final-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.final-copy {
  position: relative;
  text-align: left;
}

.final-copy h2 {
  margin: 0 0 1.35rem;
  max-width: 14ch;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--leaf);
}

.final-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 70% center;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(28, 36, 24, 0.12);
}

/* —— Footer —— */
footer {
  display: grid;
  gap: 1rem;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 2rem var(--pad) 2.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-brand p {
  margin: 0.3rem 0 0;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--leaf);
}

.footer-social a:hover {
  background: var(--leaf);
  color: #fff;
}

footer a {
  color: var(--leaf);
  text-decoration: none;
  font-weight: 500;
}

.copy {
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.12) rotate(8deg);
    opacity: 1;
  }
}

/* —— Mobile orbit stack —— */
@media (max-width: 639px) {
  .orbit {
    aspect-ratio: auto;
    min-height: 0;
    display: grid;
    gap: 1.25rem;
    justify-items: center;
  }

  .orbit-lines {
    display: none;
  }

  .orbit-center {
    position: static;
    transform: none;
    width: min(52%, 160px);
  }

  .orbit-nodes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .node {
    position: static;
    transform: none !important;
    width: auto;
    padding: 0.85rem 0.55rem;
    border-radius: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
  }

  .node.n5 {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 11rem);
  }
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: 0.92fr 1.08fr;
    grid-template-areas: "copy visual";
    align-items: center;
    gap: 2.5rem;
    min-height: min(84vh, 760px);
    padding: 2rem var(--pad) 3.75rem;
  }

  .hero-copy {
    grid-area: copy;
  }

  .hero-visual {
    display: block;
    grid-area: visual;
    position: relative;
  }

  .hero-photo-wrap {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2rem, 5.2vw, 3.35rem);
  }

  .lede {
    margin-top: 1.15rem;
    font-size: 1.02rem;
  }

  .cta {
    gap: 0.95rem;
    margin-top: 1.65rem;
  }

  .cta .btn {
    width: auto;
  }

  .hero-photo {
    aspect-ratio: 5 / 4;
    min-height: 460px;
    border-radius: 1.25rem;
  }

  .note-card {
    position: absolute;
    left: auto;
    right: -0.35rem;
    bottom: 1.4rem;
    width: min(74%, 310px);
    border: 0;
    box-shadow: 0 14px 36px rgba(28, 36, 24, 0.14);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .showcase-trio {
    grid-template-columns: minmax(200px, 240px) minmax(280px, 1fr) minmax(200px, 230px);
    gap: 1.75rem;
    align-items: center;
    justify-items: stretch;
  }

  .device-shot {
    width: 100%;
  }

  .timeline-panel {
    width: 100%;
  }

  .quote-card {
    width: 100%;
    justify-self: center;
  }

  .progress-pair {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }

  .benefit-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
  }

  .final-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }

  footer {
    grid-template-columns: 1.2fr 2fr auto;
    align-items: start;
  }

  .footer-legal,
  .copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 879px) {
  .nav-toggle {
    display: grid;
    place-content: center;
    margin-left: auto;
  }

  nav {
    position: fixed;
    inset: 3.6rem var(--pad) auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(28, 36, 24, 0.12);
  }

  body.nav-open nav {
    display: flex;
  }

  nav a {
    padding: 0.85rem 0.95rem;
    border-radius: 0.65rem;
  }

  nav a:hover {
    background: var(--leaf-soft);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .doodle-star {
    animation: none;
  }
}
