/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --forest: #2F4A3A;
  --sage: #A6BB9A;
  --terra: #E07A5F;
  --mustard: #F2C96D;
  --sand: #F5E9D6;
  --paper: #FAF8F5;
  --ink: #3A2F23;
  --sky: #8BD9E7;

  --f-display: 'Instrument Serif', serif;
  --f-body: 'DM Sans', sans-serif;
  --nav-h: 68px;
}


/* ─── CUSTOM BACKGROUNDS ─────────────────────────────────── */
.bg-paper-img {
  background-image: url('assets/background/back-paper.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ─── SCROLL PROGRESS ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--terra);
  width: 0%;
  z-index: 200;
  transition: width 0.1s linear;
}

/* ─── TYPE ───────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h4 {
  font-size: 1.15rem;
  font-family: var(--f-body);
  font-weight: 700;
  color: var(--forest);
}

h1 em,
h2 em,
h3 em {
  font-style: italic;
  color: var(--terra);
}

.subtitle {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--forest);
  font-weight: 500;
  text-shadow: 0 0 20px rgba(250, 248, 245, 1), 0 0 40px rgba(250, 248, 245, 1), 0 0 10px rgba(250, 248, 245, 1);
  margin-top: 16px;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 14px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.75;
  opacity: 0.82;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.max-w-800 {
  max-width: 800px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 72px;
}

.section-header h2 {
  margin: 8px 0 18px;
}

.mt-32 {
  margin-top: 32px;
}

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.36s;
}

.delay-4 {
  transition-delay: 0.50s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .parallax {
    transform: none !important;
  }

  .scroll-arrow {
    animation: none;
  }
}

.parallax {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

/* ─── BUTTON ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--terra);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid var(--terra);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}

.btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--forest);
  border-color: var(--forest);
}

.btn-dark:hover {
  background: var(--terra);
  border-color: var(--terra);
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(47, 74, 58, 0.1);
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-link {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--terra);
}

.nav-cta {
  background: var(--forest) !important;
  color: var(--sand) !important;
  padding: 9px 22px;
  border-radius: 100px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--terra) !important;
  color: var(--paper) !important;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-blob-1 {
  width: clamp(380px, 50vw, 680px);
  top: -10%;
  right: -8%;
  opacity: 0.3;
}

.hero-blob-2 {
  width: clamp(180px, 22vw, 340px);
  bottom: 8%;
  left: -5%;
  opacity: 0.22;
}

.hero-dots {
  width: 160px;
  bottom: 18%;
  right: 8%;
  opacity: 0.35;
}

.hero-leaf-l {
  width: clamp(140px, 18vw, 260px);
  top: 15%;
  left: 2%;
  opacity: 0.75;
}

.hero-leaf-r {
  width: clamp(120px, 15vw, 220px);
  top: 25%;
  right: 3%;
  opacity: 0.7;
  transform: scaleX(-1);
}

.hero-seeds {
  width: 180px;
  top: 12%;
  right: 15%;
  opacity: 0.65;
}

.hero-hill {
  position: absolute;
  width: 100vw;
  height: auto;
  bottom: -4%;
  left: 0;
  opacity: 0.5;
  z-index: 1;
  object-fit: cover;
  object-position: top;
}

.hero-cloud-lg {
  width: clamp(200px, 28vw, 400px);
  top: 14%;
  left: 6%;
  opacity: 0.75;
}

.hero-cloud-sm {
  width: clamp(120px, 16vw, 220px);
  top: 24%;
  right: 22%;
  opacity: 0.65;
}

.hero-mom {
  width: clamp(280px, 32vw, 460px);
  bottom: 5%;
  right: -2%;
  left: auto;
  transform-origin: bottom center;
  z-index: 2;
}

.hero-kid {
  width: clamp(220px, 24vw, 340px);
  bottom: 5%;
  left: 5%;
  right: auto;
  transform-origin: bottom center;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 40px 24px 220px;
}

.hero-logo {
  height: auto;
  width: clamp(180px, 25vw, 240px);
  margin: 0 auto 24px;
}

.hero-content h1 {
  margin-bottom: 18px;
}

.hero-content .subtitle {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--forest);
  font-weight: 500;
  text-shadow: 0 0 20px rgba(250, 248, 245, 1), 0 0 40px rgba(250, 248, 245, 1), 0 0 10px rgba(250, 248, 245, 1);
  margin-top: 16px;
  letter-spacing: -0.01em;
}

.hero-body {
  font-size: 1.05rem;
  opacity: 0.78;
  margin-bottom: 40px;
  line-height: 1.75;
}

.scroll-hint {
  position: absolute;
  bottom: 140px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.5;
}

.scroll-arrow {
  font-size: 1.3rem;
  color: var(--forest);
  animation: bounce 2.2s ease-in-out infinite;
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

/* ─── OPENING QUESTION ───────────────────────────────────── */
.section-question {
  background: var(--forest);
  padding: 180px 32px;
  position: relative;
  overflow: hidden;
}

.question-bg-blob {
  position: absolute;
  top: -30%;
  left: -10%;
  width: clamp(400px, 60vw, 800px);
  opacity: 0.05;
  pointer-events: none;
}

.question-bg-dots {
  position: absolute;
  bottom: 0%;
  right: -5%;
  width: 300px;
  opacity: 0.08;
  pointer-events: none;
}

.question-setup {
  font-family: var(--f-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--sand);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.question-punchline {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  color: var(--mustard);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto;
}


/* ─── PROBLEM ────────────────────────────────────────────── */
.section-problem {
  padding: 140px 0;
  /* background moved to .bg-paper-img class */
}

.problem-intro {
  max-width: 680px;
  margin: 0 auto 80px;
}

.problem-intro h2 {
  margin: 8px 0 20px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 120px;
  border-top: 1px solid rgba(47, 74, 58, 0.1);
  padding-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--f-display);
  font-size: 3.2rem;
  color: var(--terra);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.8;
}

.problem-visual {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.problem-img-wrap img {
  width: 100%;
  max-width: 240px;
  filter: drop-shadow(4px 8px 24px rgba(47, 74, 58, 0.08));
  margin: 0 auto;
}

.problem-copy h3 {
  margin: 8px 0 16px;
  font-size: 2rem;
}

.problem-copy p {
  font-size: 1.05rem;
  opacity: 0.8;
  line-height: 1.7;
}




  .hero-content {
    padding: 60px 20px 180px;
  }

  .hero-mom {
    width: clamp(280px, 32vw, 460px);
    bottom: 5%;
    right: -2%;
    left: auto;
    transform-origin: bottom center;
    z-index: 2;
  }

  .hero-kid {
    width: clamp(220px, 24vw, 340px);
    bottom: 5%;
    left: 5%;
    right: auto;
    transform-origin: bottom center;
    z-index: 2;
  }

  .nav {
    padding: 0 20px;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-input {
    border-radius: 12px;
  }

  .section-cta .btn {
    border-radius: 12px;
    width: 100%;
    text-align: center;
  }

  .question-text {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

.nav:not(.scrolled) .nav-logo-link {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav.scrolled .nav-logo-link {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: all 0.3s;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}
/* ─── IMPACT HORIZONTAL TRACK ────────────────────────────── */
.impact-horizontal-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 0 64px;
  margin-top: 48px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.impact-horizontal-track::-webkit-scrollbar { display: none; }

.impact-card-h {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(166, 187, 154, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  min-width: 360px;
  width: 35vw;
  flex-shrink: 0;
  scroll-snap-align: center;
  transition: background 0.3s;
}
.impact-card-h:hover { background: rgba(255, 255, 255, 0.08); }

.impact-img-h {
  width: 100%;
  max-width: 240px;
  height: 240px;
  object-fit: contain;
  margin: 0 auto 32px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.25));
}

.impact-card-h h3 {
  font-size: 1.8rem;
  color: var(--mustard);
  margin-bottom: 16px;
  line-height: 1.2;
}

.impact-card-h p {
  font-size: 1.05rem;
  color: var(--sage);
  line-height: 1.65;
  opacity: 0.9;
}

.swipe-hint {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-transform: uppercase;
  margin-top: -24px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .impact-card-h { min-width: 85vw; padding: 32px 24px; }
  .impact-img-h { height: 200px; }
  .impact-card-h h3 { font-size: 1.6rem; }
}

/* ─── IMPACT STICKY SCROLL ───────────────────────────────── */
.section-impact-sticky {
  height: 350vh; /* 4 slides = 400vh to scroll through */
  position: relative;
  background: var(--forest);
  color: var(--paper);
}

.impact-sticky-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.impact-sticky-bg {
  position: absolute;
  top: 10%;
  right: -10%;
  width: clamp(500px, 80vw, 1000px);
  opacity: 0.05;
  pointer-events: none;
}

.impact-sticky-track {
  display: flex;
  width: 400vw;
  height: 100%;
  will-change: transform;
}

.impact-slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.impact-slide-visual {
  display: flex;
  justify-content: center;
}

.impact-slide-visual img {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
}

.impact-slide-text h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--sand);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.impact-slide-text p.eyebrow {
  color: var(--sage);
  margin-bottom: 16px;
}

.impact-slide-text p:not(.eyebrow) {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--sage);
  opacity: 0.95;
  max-width: 500px;
}

@media (max-width: 900px) {
  .impact-slide-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 60px;
  }
  .impact-slide-visual img {
    max-width: 280px;
  }
  .impact-slide-text p:not(.eyebrow) {
    margin: 0 auto;
  }
}

.impact-fixed-header { position: absolute; top: 14vh; left: 0; width: 100%; text-align: center; z-index: 10; }
.impact-fixed-header .eyebrow { color: var(--sage); font-size: 1rem; letter-spacing: 0.15em; }


/* ─── PARENT PAIN ────────────────────────────────────────── */
.section-parent-pain { padding: 160px 0; position: relative; overflow: hidden; border-top: 1px solid rgba(47,74,58,0.05); }
.pain-blob-1 { position: absolute; width: clamp(300px,40vw,560px); top:-15%; right:-8%; opacity:0.15; pointer-events: none; }
.pain-blob-2 { position: absolute; width: clamp(150px,25vw,300px); bottom:10%; left:-5%; opacity:0.25; pointer-events: none; }
.pain-dots { position: absolute; width: 220px; top:15%; left:4%; opacity:0.12; pointer-events: none; }
.pain-leaf { position: absolute; width: 140px; bottom:20%; right:8%; opacity:0.6; pointer-events: none; }

.float-slow { animation: float-anim 6s ease-in-out infinite; }
.float-fast { animation: float-anim 4s ease-in-out infinite reverse; }

@keyframes float-anim {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ─── PIVOT / SOLUTION ───────────────────────────────────── */
.bg-sand { background: var(--sand); }
.section-pivot { padding: 140px 0; position: relative; overflow: hidden; background: var(--sand); }
.pivot-arc { width: clamp(200px,28vw,400px); top:-8%; right:-4%; opacity:0.4; }
.pivot-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.pivot-visual { position: relative; }
.pivot-img { width: 100%; max-width: 480px; filter: drop-shadow(6px 12px 32px rgba(47,74,58,0.1)); }
.pivot-seeds { width: 100px; bottom: -24px; right: -16px; opacity: 0.6; position: absolute; }
.pivot-text h2 { margin: 8px 0 24px; }
.pivot-text > p { font-size: 1.05rem; opacity: 0.82; line-height: 1.75; margin-bottom: 18px; }

/* ─── SKILLS ─────────────────────────────────────────────── */
.section-skills { padding: 140px 0; background: var(--paper); position: relative; overflow: hidden; }
.skills-dots { width: 200px; bottom: 10%; left: 2%; opacity: 0.15; }
.organic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 48px 32px; }
.organic-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.organic-item { display: flex; flex-direction: column; gap: 12px; }
.organic-icon { width: 64px; height: 64px; object-fit: contain; margin-bottom: 8px; }
.skill-icon-wrap { width: 48px; height: 48px; margin-bottom: 8px; }
.skill-icon-wrap img { width: 100%; height: 100%; }
.organic-item h4 { color: var(--forest); }
.organic-item p { font-size: 0.95rem; line-height: 1.6; opacity: 0.8; }

/* ─── FEATURES (Alternating Left/Right) ──────────────────── */
.section-features { padding: 140px 0; background: var(--sand); }
.feature-rows { display: flex; flex-direction: column; gap: 80px; margin-top: 64px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img-box img { width: 100%; max-width: 400px; margin: 0 auto; filter: drop-shadow(0 12px 40px rgba(47,74,58,0.08)); }
.feature-text h3 { font-size: 2.2rem; margin-bottom: 16px; }
.feature-text p { font-size: 1.05rem; line-height: 1.7; opacity: 0.8; }

/* ─── SOCIAL PROOF ───────────────────────────────────────── */
.section-proof { padding: 140px 0; position: relative; overflow: hidden; }
.proof-sun { width: clamp(250px,35vw,500px); top:-10%; right:-8%; opacity:0.1; }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 48px; }
.testi-card { display: flex; flex-direction: column; gap: 16px; }
.testi-quote { font-family: var(--f-display); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: var(--forest); margin-bottom: 12px; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--forest); }
.testi-author span { font-size: 0.8rem; opacity: 0.6; }

/* ─── CTA ────────────────────────────────────────────────── */
.section-cta { padding: 140px 0; background: var(--mustard); position: relative; overflow: hidden; }
.cta-blob  { width: clamp(280px,42vw,580px); top:-15%; left:-8%; opacity:0.2; }
.cta-seeds { width: 130px; bottom: 12%; right: 8%; opacity: 0.4; }
.section-cta h2 { color: var(--forest); margin: 8px 0 20px; }
.section-cta .lead { color: var(--forest); opacity: 0.72; max-width: 500px; margin: 0 auto; }
.cta-form { display: flex; gap: 12px; justify-content: center; margin: 40px auto 16px; max-width: 500px; }
.cta-input { flex: 1; padding: 14px 22px; border: 2px solid var(--forest); border-radius: 100px; font-family: var(--f-body); font-size: 0.95rem; background: var(--paper); color: var(--ink); outline: none; transition: border-color 0.2s; }
.cta-input:focus { border-color: var(--terra); }
.cta-note { font-size: 0.8rem !important; opacity: 0.5 !important; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--paper); padding: 80px 0; text-align: center; }
.footer-logo { height: 44px; width: auto; margin: 0 auto 28px; }
.footer-tagline { font-weight: 500; color: var(--forest); margin-bottom: 20px; }
.footer-copy { font-size: 0.8rem; opacity: 0.4; color: var(--forest); }

/* ─── RESPONSIVE DOWN ────────────────────────────────────── */
@media (max-width: 900px) {
  .pain-split { grid-template-columns: 1fr; gap: 48px; }
  .pivot-split { grid-template-columns: 1fr; gap: 48px; }
  .pivot-img { max-width: 340px; margin: 0 auto; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .feature-row.reverse { direction: ltr; }
  .testimonials { grid-template-columns: 1fr; gap: 48px; }
  .organic-grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cta-form { flex-direction: column; }
  .cta-input { border-radius: 12px; }
  .section-cta .btn { border-radius: 12px; width: 100%; text-align: center; }
}

.skip-btn {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  cursor: pointer;
}
.skip-btn:hover { opacity: 1; color: var(--mustard); }
