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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

em {
  font-style: normal;
}

/* =========================================================
   2. VARIABLES
   ========================================================= */
:root {
  --cream: #fbf6ee;
  --beige: #f3e6d4;
  --honey: #e8a54b;
  --honey-deep: #d4892f;
  --orange: #e07a3a;
  --caramel: #c47a3a;
  --brown: #6b4226;
  --dark-brown: #3b2415;
  --white: #fffdf9;
  --soft-white: #fff8ef;
  --ink: #2a1a10;
  --muted: #7a5a42;
  --shadow: rgba(59, 36, 21, 0.14);
  --shadow-strong: rgba(59, 36, 21, 0.22);
  --glass: rgba(255, 253, 249, 0.72);
  --glass-solid: rgba(255, 253, 249, 0.92);
  --ring: rgba(232, 165, 75, 0.55);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --nav-h: 76px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================================================
   3. GLOBAL STYLES
   ========================================================= */
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(232, 165, 75, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 5%, rgba(224, 122, 58, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(196, 122, 58, 0.08), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--soft-white) 40%, var(--beige) 100%);
  background-attachment: fixed;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 30%, var(--brown) 0.6px, transparent 0.7px),
    radial-gradient(circle at 80% 70%, var(--brown) 0.5px, transparent 0.6px);
  background-size: 120px 120px, 90px 90px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--dark-brown);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

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

.section-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(232, 165, 75, 0.18);
  color: var(--caramel);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-title {
  max-width: 16ch;
  margin-bottom: 2.5rem;
  color: var(--dark-brown);
  font-size: clamp(1.85rem, 4.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-title--wide {
  max-width: 22ch;
}

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

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
  will-change: transform;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

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

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-deep) 55%, var(--orange) 100%);
  color: var(--dark-brown);
  box-shadow:
    0 10px 24px rgba(212, 137, 47, 0.35),
    0 2px 0 rgba(255, 255, 255, 0.35) inset;
}

.btn--primary:hover {
  box-shadow:
    0 14px 30px rgba(212, 137, 47, 0.42),
    0 2px 0 rgba(255, 255, 255, 0.4) inset;
}

.btn--shine {
  overflow: hidden;
}

.btn--shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}

.btn--shine:hover::after {
  left: 130%;
}

.btn--secondary {
  background: var(--white);
  color: var(--dark-brown);
  border: 2px solid rgba(107, 66, 38, 0.14);
  box-shadow: 0 8px 20px var(--shadow);
}

.btn--secondary:hover {
  border-color: rgba(232, 165, 75, 0.55);
  box-shadow: 0 12px 26px var(--shadow-strong);
}

.btn--ghost {
  background: transparent;
  color: var(--dark-brown);
  border: 2px solid rgba(107, 66, 38, 0.2);
}

.btn--ghost:hover {
  background: rgba(255, 253, 249, 0.55);
}

.btn--sm {
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  font-size: 0.85rem;
}

.btn--lg {
  min-height: 60px;
  padding: 1rem 1.85rem;
  font-size: 1.05rem;
}

.btn--nav {
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid rgba(107, 66, 38, 0.1);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pill--ticker {
  background: linear-gradient(135deg, rgba(232, 165, 75, 0.35), rgba(224, 122, 58, 0.2));
  color: var(--dark-brown);
  border-color: rgba(232, 165, 75, 0.4);
}

.pill--soft {
  background: rgba(243, 230, 212, 0.7);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 249, 0.75);
  border: 1px solid rgba(232, 165, 75, 0.35);
  box-shadow: 0 8px 20px rgba(59, 36, 21, 0.06);
  color: var(--caramel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* =========================================================
   4. NAVIGATION
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 1.25rem 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-16px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.site-header.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, calc(var(--max) + 2rem));
  margin-inline: auto;
  padding: 0.65rem 0.85rem 0.65rem 0.85rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 30px rgba(59, 36, 21, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.site-header.is-scrolled .nav {
  background: var(--glass-solid);
  border-color: rgba(107, 66, 38, 0.08);
  box-shadow: 0 14px 36px rgba(59, 36, 21, 0.12);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.nav__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--beige);
  box-shadow: 0 4px 12px var(--shadow);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav__name {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--dark-brown);
  line-height: 1;
}

.nav__ticker {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding: 0.12rem 0.45rem;
  border-radius: var(--radius-pill);
  background: rgba(232, 165, 75, 0.25);
  color: var(--caramel);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease);
}

.nav__ticker:hover {
  transform: scale(1.06) rotate(-2deg);
}

.nav__ticker::after {
  content: attr(data-hover-msg);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px) scale(0.9);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  background: var(--dark-brown);
  color: var(--cream);
  font-size: 0.65rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__ticker:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__links a {
  display: inline-flex;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__links a:hover {
  color: var(--dark-brown);
  background: rgba(232, 165, 75, 0.15);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid rgba(107, 66, 38, 0.1);
}

.nav__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--dark-brown);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

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

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

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

/* =========================================================
   5. HERO
   ========================================================= */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3.5rem) 0 4.5rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 18%;
  left: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 165, 75, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: transform;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem 2.5rem;
  align-items: center;
}

.hero__title {
  margin-bottom: 1.25rem;
  color: var(--dark-brown);
  font-size: clamp(2.4rem, 5.6vw, 4.35rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-line {
  display: block;
}

.hero-line--accent em,
.final-cta__title em {
  display: inline-block;
  background: linear-gradient(135deg, var(--honey-deep), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.35));
}

.hero__sub {
  max-width: 34ch;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 500;
  line-height: 1.5;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--caramel);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero__link:hover {
  color: var(--dark-brown);
  transform: translateX(3px);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.hero__stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero__sun {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 236, 190, 0.95) 0%, rgba(232, 165, 75, 0.35) 38%, transparent 70%);
  filter: blur(8px);
  animation: sunPulse 6s ease-in-out infinite;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
}

.hero__blob--1 {
  width: 55%;
  height: 55%;
  top: 10%;
  right: 0;
  background: rgba(224, 122, 58, 0.28);
}

.hero__blob--2 {
  width: 45%;
  height: 45%;
  bottom: 8%;
  left: 0;
  background: rgba(232, 165, 75, 0.32);
}

.hero__character {
  position: relative;
  z-index: 3;
  width: min(88%, 460px);
  animation: meekoFloat 5.5s ease-in-out infinite;
  cursor: pointer;
  will-change: transform;
}

.hero__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(59, 36, 21, 0.18));
  user-select: none;
  -webkit-user-drag: none;
}

.hero__hover-msg {
  position: absolute;
  top: 12%;
  right: 8%;
  padding: 0.35rem 0.7rem;
  border-radius: 12px;
  background: var(--white);
  border: 2px solid var(--dark-brown);
  color: var(--dark-brown);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transform: rotate(8deg) scale(0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
  box-shadow: 4px 4px 0 rgba(59, 36, 21, 0.15);
}

.hero__character.is-hovered .hero__hover-msg,
.hero__character:hover .hero__hover-msg {
  opacity: 1;
  transform: rotate(8deg) scale(1);
}

.hero__shadow {
  position: absolute;
  z-index: 2;
  bottom: 6%;
  left: 50%;
  width: 48%;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(59, 36, 21, 0.22), transparent 70%);
  transform: translateX(-50%);
  animation: shadowPulse 5.5s ease-in-out infinite;
  pointer-events: none;
}

.sticker {
  position: absolute;
  z-index: 4;
  padding: 0.45rem 0.8rem;
  border-radius: 12px;
  background: var(--white);
  border: 2.5px solid var(--dark-brown);
  color: var(--dark-brown);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 4px 4px 0 rgba(59, 36, 21, 0.12);
  user-select: none;
}

.sticker--much {
  top: 12%;
  left: 0;
  transform: rotate(-12deg);
  animation: stickerBob 4.5s ease-in-out infinite;
}

.sticker--brother {
  bottom: 18%;
  right: 0;
  transform: rotate(8deg);
  background: linear-gradient(135deg, #fff3d6, #ffe0b0);
  animation: stickerBob 5s ease-in-out infinite reverse;
}

.paw-btn {
  position: absolute;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.75);
  border: 1px solid rgba(107, 66, 38, 0.12);
  font-size: 1.15rem;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.paw-btn:hover {
  transform: scale(1.12) rotate(-8deg);
  background: var(--white);
}

.paw-btn--1 {
  top: 28%;
  right: 4%;
  animation: stickerBob 3.8s ease-in-out infinite;
}

.paw-btn--2 {
  bottom: 28%;
  left: 4%;
  animation: stickerBob 4.2s ease-in-out infinite reverse;
}

.sparkle {
  position: absolute;
  z-index: 4;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(232, 165, 75, 0.4));
  animation: sparkleTwinkle 2.8s ease-in-out infinite;
}

.sparkle--1 { top: 8%; right: 22%; }
.sparkle--2 { top: 42%; left: 2%; animation-delay: 0.6s; }
.sparkle--3 { bottom: 12%; right: 18%; animation-delay: 1.2s; }

/* =========================================================
   6. STORY
   ========================================================= */
.story {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem 3rem;
  align-items: center;
}

.story__copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--brown);
  font-size: 1.05rem;
}

.story__emphasis {
  color: var(--dark-brown);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.story__quotes {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.25rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--honey);
}

.story__quotes li {
  color: var(--dark-brown);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.story__media {
  position: relative;
}

.story__banner-wrap {
  position: relative;
  padding: 1.25rem;
}

.story__banner {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow:
    0 24px 50px rgba(59, 36, 21, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.5), rgba(243, 230, 212, 0.3)),
    var(--beige);
}

.quote-card {
  position: absolute;
  z-index: 2;
  max-width: 18ch;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: var(--white);
  border: 2px solid var(--dark-brown);
  color: var(--dark-brown);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 4px 4px 0 rgba(59, 36, 21, 0.12);
  animation: stickerBob 5s ease-in-out infinite;
}

.quote-card--1 {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
}

.quote-card--2 {
  top: 8%;
  right: -0.5rem;
  transform: rotate(7deg);
  animation-delay: 0.4s;
}

.quote-card--3 {
  bottom: 12%;
  left: -0.25rem;
  transform: rotate(5deg);
  animation-delay: 0.8s;
}

.quote-card--4 {
  bottom: 0;
  right: 0.5rem;
  transform: rotate(-4deg);
  animation-delay: 1.1s;
  background: linear-gradient(135deg, #fff6e4, #ffe8c2);
}

/* =========================================================
   7. CARDS (WHY MEEKO)
   ========================================================= */
.why {
  position: relative;
  z-index: 1;
  padding: 3rem 0 5rem;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.meme-card {
  position: relative;
  padding: 2rem 1.6rem 1.8rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 253, 249, 0.95), rgba(243, 230, 212, 0.65));
  border: 1px solid rgba(107, 66, 38, 0.08);
  box-shadow: 0 18px 40px rgba(59, 36, 21, 0.1);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

.meme-card--tilt-left {
  transform: rotate(-2.5deg);
}

.meme-card--tilt-right {
  transform: rotate(2.5deg);
}

.meme-card:hover,
.meme-card.is-tilting {
  box-shadow: 0 24px 48px rgba(59, 36, 21, 0.16);
}

.meme-card:hover {
  transform: rotate(0deg) translateY(-6px);
}

.meme-card__sticker {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  background: var(--honey);
  color: var(--dark-brown);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  transform: rotate(8deg);
}

.meme-card__sticker--alt {
  background: var(--white);
  border: 2px solid var(--dark-brown);
}

.meme-card__icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.meme-card__title {
  margin-bottom: 0.75rem;
  color: var(--dark-brown);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.meme-card__text {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

/* =========================================================
   8. MARQUEE
   ========================================================= */
.marquee-section {
  position: relative;
  z-index: 1;
  padding: 0.75rem 0 1.5rem;
  overflow: hidden;
}

.marquee {
  background: linear-gradient(90deg, var(--honey), #f0b65d 40%, var(--honey-deep));
  color: var(--dark-brown);
  border-block: 2px solid rgba(59, 36, 21, 0.12);
  overflow: hidden;
  white-space: nowrap;
}

.marquee--right {
  background: linear-gradient(90deg, var(--honey-deep), var(--honey) 55%, #f0b65d);
  margin-top: 0.45rem;
  opacity: 0.92;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeLeft 32s linear infinite;
}

.marquee--right .marquee__track {
  animation-name: marqueeRight;
}

.marquee__content {
  padding: 0.85rem 0;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* =========================================================
   9. HOW TO JOIN
   ========================================================= */
.how {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.how__steps {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.how__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(107, 66, 38, 0.08);
  box-shadow: 0 12px 28px rgba(59, 36, 21, 0.06);
}

.how__num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(232, 165, 75, 0.35), rgba(224, 122, 58, 0.2));
  color: var(--dark-brown);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.how__body h3 {
  margin-bottom: 0.35rem;
  color: var(--dark-brown);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.how__body p {
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.how__body .btn {
  margin-top: 0.15rem;
}

.how__disclaimer {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(107, 66, 38, 0.06);
  border: 1px dashed rgba(107, 66, 38, 0.2);
  color: var(--brown);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

/* =========================================================
   10. COMMUNITY
   ========================================================= */
.community {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  overflow: hidden;
}

.community__inner {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 165, 75, 0.28), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(224, 122, 58, 0.16), transparent 50%),
    linear-gradient(160deg, rgba(255, 253, 249, 0.9), rgba(243, 230, 212, 0.75));
  border: 1px solid rgba(107, 66, 38, 0.08);
  box-shadow: 0 24px 50px rgba(59, 36, 21, 0.1);
}

.community__title {
  max-width: 16ch;
  margin: 0 auto 1rem;
  color: var(--dark-brown);
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.community__sub {
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 600;
}

.community__floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floater {
  position: absolute;
  opacity: 0.55;
  animation: floaterDrift 7s ease-in-out infinite;
  user-select: none;
}

.floater--heart {
  color: var(--orange);
  font-size: 1.2rem;
}

.floater--paw {
  font-size: 1.3rem;
}

.floater--wow {
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.8);
  border: 1.5px solid rgba(59, 36, 21, 0.15);
  color: var(--dark-brown);
  font-size: 0.7rem;
  font-weight: 900;
}

.floater--1 { left: 8%; top: 18%; animation-delay: 0s; }
.floater--2 { right: 12%; top: 22%; animation-delay: 0.8s; }
.floater--3 { left: 15%; bottom: 20%; animation-delay: 1.4s; }
.floater--4 { right: 18%; bottom: 18%; animation-delay: 0.4s; }
.floater--5 { left: 42%; top: 12%; animation-delay: 1.8s; }
.floater--6 { right: 40%; bottom: 12%; animation-delay: 1.1s; }

/* =========================================================
   11. FINAL CTA
   ========================================================= */
.final-cta {
  position: relative;
  z-index: 1;
  padding: 2rem 0 5rem;
}

.final-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  overflow: hidden;
  padding: 2.75rem 2.5rem 2.5rem;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(135deg, rgba(59, 36, 21, 0.96), #5a3420 45%, #7a4528 100%);
  color: var(--cream);
  box-shadow: 0 30px 60px rgba(59, 36, 21, 0.28);
}

.final-cta__title {
  max-width: 16ch;
  margin-bottom: 1.6rem;
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.final-cta__title em {
  filter: none;
  background: linear-gradient(135deg, #ffd789, #e8a54b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.final-cta__actions .btn--secondary,
.final-cta__actions .btn--ghost {
  color: var(--cream);
  border-color: rgba(255, 248, 239, 0.28);
  background: rgba(255, 253, 249, 0.08);
}

.final-cta__actions .btn--secondary:hover,
.final-cta__actions .btn--ghost:hover {
  background: rgba(255, 253, 249, 0.16);
  color: var(--white);
}

.final-cta__peek {
  position: relative;
  width: min(240px, 28vw);
  margin-bottom: -2.5rem;
  margin-right: -0.5rem;
  animation: meekoFloat 6s ease-in-out infinite;
}

.final-cta__peek img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
  transform: scaleX(-1);
}

/* =========================================================
   12. FOOTER
   ========================================================= */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(107, 66, 38, 0.1);
  background: rgba(255, 248, 239, 0.55);
}

.footer__inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--beige);
}

.footer__name {
  font-weight: 900;
  color: var(--dark-brown);
  letter-spacing: 0.04em;
}

.footer__ticker {
  color: var(--caramel);
  font-size: 0.85rem;
  font-weight: 800;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
}

.footer__nav a {
  color: var(--brown);
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--dark-brown);
}

.footer__tagline {
  color: var(--dark-brown);
  font-weight: 800;
}

.footer__legal {
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.85rem;
}

/* =========================================================
   13. ANIMATIONS
   ========================================================= */
.particle-layer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  overflow: hidden;
}

.paw-particle {
  position: absolute;
  font-size: 0.95rem;
  opacity: 0;
  animation: pawPop 0.85s var(--ease-out) forwards;
  will-change: transform, opacity;
}

.hero-entrance {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    filter 0.7s var(--ease-out);
}

.hero-entrance.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero__visual.hero-entrance {
  transform: translateY(36px) scale(0.92);
}

.hero__visual.hero-entrance.is-in {
  transform: translateY(0) scale(1);
}

.hero-deco {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) 0.2s;
}

.hero__visual.is-in .hero-deco {
  opacity: 1;
}

.reveal-up,
.reveal-scale,
.reveal-left,
.reveal-right,
.reveal {
  opacity: 0;
  filter: blur(4px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    filter 0.8s var(--ease-out);
  will-change: transform, opacity, filter;
}

.reveal-up,
.reveal {
  transform: translateY(36px);
}

.reveal-scale {
  transform: translateY(24px) scale(0.94);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-up.is-visible,
.reveal-scale.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@keyframes meekoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1.2deg); }
}

@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateX(-50%) scale(0.82); opacity: 0.55; }
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes stickerBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(12deg); }
}

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

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

@keyframes floaterDrift {
  0%, 100% { transform: translateY(0) rotate(-4deg); opacity: 0.4; }
  50% { transform: translateY(-14px) rotate(6deg); opacity: 0.75; }
}

@keyframes pawPop {
  0% { opacity: 0; transform: translate(0, 0) scale(0.4) rotate(0deg); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1) rotate(var(--rot)); }
}

/* =========================================================
   14. RESPONSIVE RULES
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 1.5rem;
  }

  .hero__title {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
  }

  .story__grid {
    gap: 2rem;
  }

  .quote-card--2,
  .quote-card--4 {
    right: 0;
  }
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--glass-solid);
    border: 1px solid rgba(107, 66, 38, 0.1);
    box-shadow: 0 18px 40px rgba(59, 36, 21, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav__links a {
    padding: 0.85rem 1rem;
  }

  .btn--nav {
    width: 100%;
  }

  .nav {
    position: relative;
  }

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

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
    min-height: 380px;
  }

  .hero__sub,
  .section-title,
  .community__title {
    margin-inline: auto;
  }

  .hero__meta,
  .hero__actions {
    justify-content: center;
  }

  .hero__link {
    justify-content: center;
  }

  .story__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .meme-card--tilt-left,
  .meme-card--tilt-right {
    transform: rotate(0deg);
  }

  .final-cta__card {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
  }

  .final-cta__title {
    margin-inline: auto;
  }

  .final-cta__actions {
    justify-content: center;
  }

  .final-cta__peek {
    width: min(200px, 55vw);
    margin: 0.5rem auto -1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
  }

  .section-inner,
  .hero__inner {
    width: min(100% - 1.5rem, var(--max));
  }

  .hero {
    padding-top: calc(var(--nav-h) + 2.25rem);
    padding-bottom: 3rem;
  }

  .hero__visual {
    min-height: 340px;
  }

  .sticker--brother,
  .paw-btn--2,
  .sparkle--2,
  .quote-card--4 {
    display: none;
  }

  .story,
  .how {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .how__step {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .community__inner {
    padding: 2.75rem 1.15rem;
  }

  .floater--5,
  .floater--6 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .quote-card--2,
  .quote-card--3 {
    display: none;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__card {
    padding: 2rem 1.25rem 0;
  }

  .marquee__content {
    font-size: 0.9rem;
  }
}

@media (max-width: 390px) {
  .nav__name {
    font-size: 0.82rem;
  }

  .hero__stage {
    width: min(100%, 340px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-entrance,
  .reveal-up,
  .reveal-scale,
  .reveal-left,
  .reveal-right,
  .reveal,
  .hero-deco {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .marquee__track {
    animation: none !important;
  }

  .site-header {
    opacity: 1;
    transform: none;
  }
}
