:root {
  --cream: #fff6e8;
  --cream-deep: #f3e4c4;
  --fur: #f4dfb0;
  --ink: #2a2216;
  --ink-soft: #5c4d38;
  --grass: #3d7a1f;
  --grass-mid: #5ea334;
  --meadow: #b7dc6a;
  --sky: #8ec8ea;
  --sky-deep: #5aa7d4;
  --gold: #f0b429;
  --rust: #c45c26;
  --wood: #7a4b2a;
  --card: rgba(255, 252, 246, 0.92);
  --shadow: 0 18px 40px rgba(42, 34, 22, 0.16);
  --radius: 28px;
  --nav-h: 78px;
  --font-display: "Lilita One", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 50% -10%, #c9ebff 0%, transparent 60%),
    linear-gradient(180deg, #e7f6c9 0%, var(--cream) 28%, #f8edd4 100%);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.sky-glow {
  position: fixed;
  inset: -20% 0 auto 0;
  height: 50vh;
  background: radial-gradient(circle at 80% 0%, #ffe58a 0%, transparent 42%);
  pointer-events: none;
  z-index: 0;
}

.paws-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.paw {
  position: absolute;
  bottom: -40px;
  opacity: 0;
  animation: rise linear forwards;
  font-size: 22px;
  filter: drop-shadow(0 2px 0 rgba(61, 122, 31, 0.2));
}

@keyframes rise {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  12% { opacity: 0.45; }
  100% { transform: translateY(-110vh) rotate(220deg); opacity: 0; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  background: rgba(255, 246, 232, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(61, 122, 31, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 0 var(--grass), 0 8px 16px rgba(0, 0, 0, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.brand-text small {
  color: var(--ink-soft);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 24px;
  background: var(--ink);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 3px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-buy,
.btn-primary {
  background: linear-gradient(180deg, #7ed957, var(--grass));
  color: #fff;
  box-shadow: 0 6px 0 #2d5c16;
}

.btn-ghost {
  background: linear-gradient(180deg, #7ed957, var(--grass));
  color: #fff;
  box-shadow: 0 6px 0 #2d5c16;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social svg {
  width: 20px;
  height: 20px;
  display: block;
  color: #fff;
}

.social-x {
  background: #0f1419;
  box-shadow: 0 4px 0 #000;
}

.social-tg {
  background: #fff;
  box-shadow: 0 4px 0 #1578a8;
}

.social-tg svg {
  width: 44px;
  height: 44px;
  color: #229ed9;
}

.social:hover {
  transform: translateY(-3px) scale(1.06);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%;
  transform: scale(1.06);
  animation: ken 18s ease-in-out infinite alternate;
}

@keyframes ken {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-2%, 1%, 0); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 16, 8, 0.08) 0%, rgba(20, 16, 8, 0.18) 42%, rgba(20, 16, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(20, 16, 8, 0.1) 0%, rgba(20, 16, 8, 0.35) 100%);
}

.cloud {
  position: absolute;
  top: 8%;
  width: 140px;
  height: 46px;
  background: #fff;
  border-radius: 40px;
  opacity: 0.55;
  animation: drift 28s linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud::before {
  width: 60px;
  height: 60px;
  top: -28px;
  left: 22px;
}

.cloud::after {
  width: 80px;
  height: 80px;
  top: -38px;
  left: 58px;
}

.c1 { left: -10%; animation-duration: 36s; }
.c2 { top: 18%; left: 20%; width: 100px; animation-duration: 42s; animation-delay: -12s; }
.c3 { top: 6%; left: 55%; animation-duration: 30s; animation-delay: -8s; }

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(120vw); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 28px 140px;
}

.mascot {
  position: relative;
  width: min(420px, 100%);
  justify-self: start;
}

.mascot-img {
  width: 100%;
  border-radius: 38px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  animation: hop 1.6s ease-in-out infinite;
  transform-origin: 50% 100%;
}

.mascot-shadow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -10px;
  height: 22px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.35), transparent 70%);
  filter: blur(2px);
  animation: squash 1.6s ease-in-out infinite;
}

.mascot-hearts {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #ff5d7a;
  font-size: 28px;
  animation: pop 2.2s ease-in-out infinite;
}

@keyframes hop {
  0%, 100% { transform: translateY(0) rotate(-1.5deg) scale(1, 1); }
  28% { transform: translateY(-26px) rotate(2deg) scale(0.97, 1.05); }
  50% { transform: translateY(0) rotate(-1deg) scale(1.06, 0.9); }
  72% { transform: translateY(-12px) rotate(1deg) scale(0.99, 1.02); }
}

@keyframes squash {
  0%, 100% { transform: scaleX(1); opacity: 0.4; }
  28% { transform: scaleX(0.62); opacity: 0.18; }
  50% { transform: scaleX(1.2); opacity: 0.5; }
}

@keyframes pop {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

.hero-copy {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
  padding-bottom: 12px;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 246, 232, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 12px;
}

.hero-copy h1,
.section-head h2 {
  font-family: var(--font-display);
  line-height: 0.95;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.accent {
  color: var(--gold);
}

.lede {
  font-size: 1.15rem;
  max-width: 34rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 16, 8, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  max-width: 100%;
}

.ca-label {
  font-weight: 800;
  color: var(--gold);
}

.ca-row code {
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.copy-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  background: var(--gold);
  color: var(--ink);
}

.copy-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.grass-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
}

.grass-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

.blades {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 70px;
  height: 40px;
  pointer-events: none;
}

.blades i {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 34px;
  background: linear-gradient(180deg, var(--meadow), var(--grass));
  border-radius: 20px 20px 0 0;
  transform-origin: bottom center;
  animation: sway 2.4s ease-in-out infinite;
}

.blades i:nth-child(odd) { height: 44px; animation-duration: 2.8s; }
.blades i:nth-child(1) { left: 6%; }
.blades i:nth-child(2) { left: 16%; animation-delay: -0.4s; }
.blades i:nth-child(3) { left: 28%; }
.blades i:nth-child(4) { left: 41%; animation-delay: -0.8s; }
.blades i:nth-child(5) { left: 53%; }
.blades i:nth-child(6) { left: 62%; animation-delay: -0.2s; }
.blades i:nth-child(7) { left: 73%; }
.blades i:nth-child(8) { left: 81%; animation-delay: -1s; }
.blades i:nth-child(9) { left: 90%; }
.blades i:nth-child(10) { left: 97%; }

@keyframes sway {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(10deg); }
}

.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
  padding: 12px 0;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.ticker-track span::before {
  content: "🐾 ";
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section {
  position: relative;
  z-index: 2;
  padding: 88px 28px;
}

.section-head {
  max-width: 1100px;
  margin: 0 auto 36px;
}

.section-head .eyebrow {
  background: rgba(61, 122, 31, 0.1);
  border-color: rgba(61, 122, 31, 0.18);
  color: var(--grass);
  text-shadow: none;
}

.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.sub {
  color: var(--ink-soft);
  font-weight: 700;
}

.sub a {
  color: var(--grass);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.story-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
}

.polaroid {
  background: #fff;
  padding: 14px 14px 18px;
  border-radius: 8px 8px 18px 18px;
  box-shadow: var(--shadow);
}

.polaroid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
}

.polaroid.wide {
  grid-column: 1 / -1;
}

.polaroid.wide img {
  height: 360px;
  object-position: 40% 50%;
}

.polaroid figcaption {
  margin-top: 12px;
  font-weight: 800;
  text-align: center;
}

.tilt-left { transform: rotate(-2.5deg); }
.tilt-right { transform: rotate(1.8deg); }

.story-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(61, 122, 31, 0.1);
}

.story-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 10px;
}

.story-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.traits {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.traits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  background: #fff;
  padding: 10px 14px;
  border-radius: 16px;
}

.tiktoks {
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(142, 200, 234, 0.35), transparent),
    linear-gradient(180deg, rgba(183, 220, 106, 0.25), transparent 40%);
}

.tiktok-viewer {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: center;
}

.phone {
  width: min(360px, 100%);
  margin: 0 auto;
  background: #1b1b1b;
  border-radius: 42px;
  padding: 14px 12px 18px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.28), inset 0 0 0 2px #3a3a3a;
  animation: floaty 4.5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-speaker {
  width: 90px;
  height: 8px;
  border-radius: 99px;
  background: #2e2e2e;
  margin: 6px auto 12px;
}

.phone-screen {
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  height: 640px;
}

.phone-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.phone-bar {
  width: 120px;
  height: 5px;
  border-radius: 99px;
  background: #444;
  margin: 12px auto 0;
}

.playlist {
  display: grid;
  gap: 12px;
}

.clip {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: var(--card);
  border: 2px solid rgba(61, 122, 31, 0.12);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: 0 8px 0 rgba(61, 122, 31, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.clip:hover,
.clip.is-active {
  transform: translateX(6px);
  background: #fff;
}

.clip.is-active {
  border-color: var(--grass);
  box-shadow: 0 8px 0 rgba(61, 122, 31, 0.22);
}

.clip-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--grass);
}

.clip-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.clip-body small {
  color: var(--ink-soft);
}

.clip-play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  font-size: 12px;
}

.open-tiktok {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 800;
  color: var(--grass);
}

.chart-board {
  max-width: 1100px;
  margin: 0 auto;
  background: #7a4b2a;
  padding: 14px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.chart-board::before {
  content: "NOEL TREAT BOARD";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.chart-live,
.chart-soon {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  min-height: 640px;
}

.chart-live iframe {
  width: 100%;
  height: 720px;
  border: 0;
}

.chart-soon {
  position: relative;
}

.chart-soon > img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  filter: saturate(1.1);
}

.chart-soon-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: rgba(20, 16, 8, 0.45);
  color: #fff;
  padding: 24px;
}

.soon-mascot {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto 12px;
  animation: hop 1.8s ease-in-out infinite;
}

.how {
  padding-bottom: 40px;
}

.steps {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: hop;
}

.steps li {
  background: var(--card);
  border-radius: 24px;
  padding: 22px 20px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.step-paw {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  background:
    radial-gradient(circle at 30% 32%, var(--ink) 6px, transparent 7px),
    radial-gradient(circle at 70% 32%, var(--ink) 6px, transparent 7px),
    radial-gradient(circle at 18% 52%, var(--ink) 5px, transparent 6px),
    radial-gradient(circle at 82% 52%, var(--ink) 5px, transparent 6px),
    radial-gradient(ellipse at 50% 78%, var(--ink) 12px 9px, transparent 13px);
  opacity: 0.8;
}

.steps h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

.how-cta {
  text-align: center;
  margin-top: 32px;
}

.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 40px 28px 24px;
  margin-top: 40px;
}

.foot-inner {
  max-width: 1100px;
  margin: 0 auto 16px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.foot-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
}

.foot p {
  margin: 4px 0 0;
  color: #d9c7a4;
}

.socials-foot {
  margin-left: auto;
}

.socials-hero .social {
  width: 48px;
  height: 48px;
}

.socials-hero .social-tg svg {
  width: 48px;
  height: 48px;
}

.fine {
  text-align: center;
  color: #b9a888;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .hero-inner,
  .story-grid,
  .tiktok-viewer,
  .steps {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    background: var(--cream);
    padding: 18px 24px 24px;
    box-shadow: var(--shadow);
  }

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

  .nav-links {
    flex-direction: column;
    gap: 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    align-items: start;
    padding-top: 36px;
  }

  .mascot {
    width: min(260px, 70%);
  }

  .phone-screen {
    height: 560px;
  }

  .polaroid.wide img,
  .polaroid img,
  .chart-soon > img {
    height: 240px;
  }

  .chart-live iframe {
    height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
