/* ============================================================
   MuMuCool — candy-cool sticker-pop design system
   ============================================================ */

:root {
  --paper: #EAF7F3;
  --paper-2: #DFF3ED;
  --frost: #F4FBF8;
  --ink: #14233B;
  --ink-soft: rgba(20, 35, 59, 0.72);
  --blue: #2EC5FF;
  --blue-deep: #0E9CDC;
  --lime: #B8F04B;
  --coral: #FF7A59;
  --banana: #FFD21E;
  --violet: #8F7BFF;
  --card: #ffffff;
  --panel: #14233B;
  --panel-ink: #F4FBF8;
  --candy-ink: #14233B;
  --header-bg: rgba(255, 255, 255, 0.92);
  --border: 3px solid var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-md: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --font-display: "Cherry Bomb One", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, monospace;
  --page: 1160px;
  --bg-dot: rgba(20, 35, 59, 0.05);
  --bg-glow-1: rgba(46, 197, 255, 0.14);
  --bg-glow-2: rgba(143, 123, 255, 0.10);
  --bg-glow-3: rgba(255, 210, 30, 0.13);
  --bg-glow-4: rgba(255, 122, 89, 0.09);
  --icepop-shadow: rgba(20, 35, 59, 0.9);
  --aura-border: rgba(20, 35, 59, 0.35);
  --dash-border: rgba(20, 35, 59, 0.2);
  --nav-bg: rgba(234, 247, 243, 0.98);
}

[data-theme="dark"] {
  --paper: #0B1626;
  --paper-2: #16243B;
  --frost: #101E32;
  --ink: #F4FBF8;
  --ink-soft: rgba(233, 244, 240, 0.74);
  --card: #16243B;
  --panel: #0A1420;
  --panel-ink: #F4FBF8;
  --candy-ink: #14233B;
  --header-bg: rgba(11, 22, 38, 0.92);
  --blue-deep: #6AD7FF;
  --bg-dot: rgba(244, 251, 248, 0.05);
  --bg-glow-1: rgba(46, 197, 255, 0.10);
  --bg-glow-2: rgba(143, 123, 255, 0.09);
  --bg-glow-3: rgba(255, 210, 30, 0.07);
  --bg-glow-4: rgba(255, 122, 89, 0.06);
  --icepop-shadow: rgba(0, 0, 0, 0.55);
  --aura-border: rgba(244, 251, 248, 0.3);
  --dash-border: rgba(244, 251, 248, 0.2);
  --nav-bg: rgba(11, 22, 38, 0.98);
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(var(--bg-dot) 1px, transparent 1.6px),
    radial-gradient(1200px 700px at 88% -8%, var(--bg-glow-1), transparent 60%),
    radial-gradient(1000px 620px at -12% 32%, var(--bg-glow-2), transparent 58%),
    radial-gradient(900px 600px at 108% 68%, var(--bg-glow-3), transparent 55%),
    radial-gradient(800px 560px at 8% 96%, var(--bg-glow-4), transparent 55%);
  background-size: 26px 26px, auto, auto, auto, auto;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

::selection { background: var(--banana); color: var(--candy-ink); }

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

a { color: inherit; }

.wrap { max-width: var(--page); margin: 0 auto; padding: 0 24px; }

/* ---------------- skip link ---------------- */
.skip {
  position: absolute; left: 16px; top: -64px;
  background: var(--banana); border: var(--border); border-radius: var(--radius-sm);
  padding: 10px 18px; font-weight: 700; z-index: 300;
  transition: top 0.25s ease;
}
.skip:focus { top: 16px; }
.skip { color: var(--candy-ink); }

/* ---------------- reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0 22px;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--header-bg);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 10px 14px 10px 12px;
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  transition: transform 0.25s ease;
}
.brand:hover { transform: rotate(-2deg) scale(1.03); }

.brand-mark {
  width: 46px; height: 46px;
  border: var(--border);
  border-radius: 12px;
  background: var(--card);
  display: grid; place-items: center;
  box-shadow: 3px 3px 0 var(--ink);
  flex: none;
}
.brand-mark svg { width: 34px; height: 34px; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-top: 2px;
}
.brand-name em { font-style: normal; color: var(--blue-deep); }

.main-nav { display: flex; align-items: center; gap: 6px; }

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 3px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.main-nav a:hover { background: var(--paper-2); transform: translateY(-2px); }
.main-nav a.is-active {
  background: var(--banana);
  color: var(--candy-ink);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

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

/* language picker */
.lang {
  position: relative;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--card);
  border: var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lang-btn:hover { transform: translateY(-2px); }
.lang-btn svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.lang.open .lang-btn svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 190px;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 110;
}
.lang.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lang-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  border-radius: 9px;
  padding: 9px 12px;
  cursor: pointer;
}
.lang-menu button:hover { background: var(--paper-2); }
.lang-menu button[aria-current="true"] { background: var(--lime); color: var(--candy-ink); font-weight: 700; }
.lang-menu .tick { visibility: hidden; font-weight: 800; }
.lang-menu button[aria-current="true"] .tick { visibility: visible; }

/* theme toggle */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: var(--border);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  flex: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}
.theme-btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.theme-btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.theme-btn svg { width: 21px; height: 21px; }
.theme-btn .ico-moon { display: none; }
[data-theme="dark"] .theme-btn .ico-sun { display: none; }
[data-theme="dark"] .theme-btn .ico-moon { display: block; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border: var(--border);
  border-radius: 12px;
  background: var(--banana);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 3.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ============================================================
   Buttons & badges
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border: var(--border);
  border-radius: 999px;
  padding: 15px 28px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn-blue { background: var(--blue); color: var(--candy-ink); box-shadow: var(--shadow-sm); }
.btn-banana { background: var(--banana); color: var(--candy-ink); box-shadow: var(--shadow-sm); }
.btn-lime { background: var(--lime); color: var(--candy-ink); box-shadow: var(--shadow-sm); }
.btn-white { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: var(--shadow-sm); }
.btn-violet { background: var(--violet); color: #fff; box-shadow: var(--shadow-sm); }

.btn-lg { font-size: 1.1rem; padding: 18px 34px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 7px 16px;
  background: var(--card);
  box-shadow: 3px 3px 0 var(--ink);
}
.chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); animation: blink 2.4s ease infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 64px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 6.4vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 26px 0 22px;
  text-wrap: balance;
}
.hero h1 .pop {
  display: inline-block;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.hero h1 .pop::after {
  content: "";
  position: absolute;
  left: -3%; right: -3%;
  bottom: 0.04em;
  height: 0.32em;
  border-radius: 6px;
  background: var(--banana);
  z-index: -1;
  transform: rotate(-1.2deg);
}
.hero h1 .grad {
  background: linear-gradient(94deg, var(--blue-deep) 10%, var(--violet) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 34em;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-note {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* hero visual — ice pop sticker */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}
.pop-scene {
  position: relative;
  width: min(340px, 78vw);
  aspect-ratio: 0.78;
}
.pop-scene .aura {
  position: absolute;
  inset: -16% -14%;
  border-radius: 50%;
  background:
    radial-gradient(58% 58% at 50% 50%, rgba(46, 197, 255, 0.32), transparent 70%),
    radial-gradient(42% 42% at 68% 30%, rgba(255, 210, 30, 0.4), transparent 70%),
    radial-gradient(46% 46% at 30% 72%, rgba(143, 123, 255, 0.32), transparent 70%);
  border: 3px dashed var(--aura-border);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.icepop {
  position: relative;
  width: 68%;
  margin: 0 auto;
  filter: drop-shadow(9px 11px 0 var(--icepop-shadow));
  animation: bob 5.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

.spark {
  position: absolute;
  font-size: 1.6rem;
  animation: bob 4s ease-in-out infinite;
}
.spark:nth-child(2) { top: 4%; left: 2%; animation-delay: 0.4s; }
.spark:nth-child(3) { top: 12%; right: 0; animation-delay: 1.3s; }
.spark:nth-child(4) { bottom: 20%; left: -6%; animation-delay: 2s; }
.spark:nth-child(5) { bottom: 6%; right: 4%; animation-delay: 0.9s; }

.float-card {
  position: absolute;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bob 6s ease-in-out infinite;
}
.float-card small { display: block; font-weight: 600; color: var(--ink-soft); font-size: 0.76rem; }
.float-card .big { font-family: var(--font-display); font-size: 1.25rem; line-height: 1; }
.float-card.fc-a { top: 9%; left: -14%; animation-delay: 0.7s; }
.float-card.fc-b { bottom: 13%; right: -12%; animation-delay: 1.8s; }

/* ============================================================
   Marquee ribbon
   ============================================================ */
.ribbon {
  margin: 30px 0 0;
  transform: rotate(-1.1deg);
}
.ribbon-track {
  display: flex;
  gap: 0;
  background: var(--panel);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 13px 0;
}
.ribbon-row {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
  flex: none;
  min-width: 100%;
  animation: marquee 26s linear infinite;
}
.ribbon:hover .ribbon-row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.ribbon-row span {
  color: var(--panel-ink);
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.09em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 42px;
}
.ribbon-row span::after { content: "✦"; color: var(--banana); font-size: 1rem; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 84px 0; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.08;
  margin: 18px 0 14px;
  text-wrap: balance;
}
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }
.section-alt { background: var(--frost); border-top: var(--border); border-bottom: var(--border); }

/* ---------------- cards ---------------- */
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.product-card {
  position: relative;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px 32px 30px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(45deg, var(--banana) 0 22px, var(--coral) 22px 44px, var(--blue) 44px 66px, var(--lime) 66px 88px);
}
.product-card:hover { transform: translate(-4px, -4px) rotate(-0.5deg); box-shadow: 12px 12px 0 var(--ink); }

.product-tag {
  position: absolute;
  top: 26px;
  right: -42px;
  transform: rotate(38deg);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--candy-ink);
  padding: 6px 52px;
  border: 2.5px solid var(--ink);
}
.tag-clean { background: var(--lime); }
.tag-game { background: var(--violet); color: #fff; }

.product-icon {
  width: 84px; height: 84px;
  border: var(--border);
  border-radius: 22px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.product-icon svg { width: 48px; height: 48px; }
.pi-clean { background: #DDF6C8; }
.pi-game { background: #E7E0FF; }

.product-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.product-card .p-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.product-card p.desc { color: var(--ink-soft); margin-bottom: 20px; }

.feat-list { list-style: none; margin: 0 0 24px; display: grid; gap: 10px; }
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: 0.97rem;
}
.feat-list li::before {
  content: "✦";
  flex: none;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  background: var(--banana);
  color: var(--candy-ink);
  font-size: 0.72rem;
  margin-top: 2px;
}
.pi-game ~ * .feat-list li::before, .card-game .feat-list li::before { background: var(--violet); color: #fff; }

.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-store {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pill-store:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.pill-store svg { width: 17px; height: 17px; }
.pill-store.soon { opacity: 0.65; cursor: default; }

/* ---------------- value / service grid ---------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tile {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tile:hover { transform: translateY(-5px) rotate(-0.6deg); box-shadow: 8px 9px 0 var(--ink); }
.tile .t-ico {
  width: 56px; height: 56px;
  border: var(--border);
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.tile .t-ico svg { width: 30px; height: 30px; }
.tile h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.22rem; margin-bottom: 8px; }
.tile p { font-size: 0.94rem; color: var(--ink-soft); }

.bg-blue { background: var(--blue); }
.bg-lime { background: var(--lime); }
.bg-banana { background: var(--banana); }
.bg-coral { background: var(--coral); }
.bg-violet { background: var(--violet); }
.bg-mint { background: #A8EFD8; }

/* ---------------- stats ---------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
  text-align: center;
}
.stat .s-num {
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
}
.stat .s-num.hl-b { background: rgba(46, 197, 255, 0.28); }
.stat .s-num.hl-l { background: rgba(184, 240, 75, 0.55); }
.stat .s-num.hl-y { background: rgba(255, 210, 30, 0.5); }
.stat .s-num.hl-v { background: rgba(143, 123, 255, 0.3); }
.stat .s-label { margin-top: 10px; font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------------- CTA band ---------------- */
.cta-band {
  position: relative;
  background: var(--panel);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 58px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 85% 20%, rgba(46, 197, 255, 0.35), transparent 70%),
    radial-gradient(380px 260px at 10% 90%, rgba(255, 210, 30, 0.22), transparent 70%),
    radial-gradient(rgba(244, 251, 248, 0.07) 1px, transparent 1.4px);
  background-size: auto, auto, 24px 24px;
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  color: var(--panel-ink);
  margin-bottom: 14px;
}
.cta-band p { position: relative; color: rgba(244, 251, 248, 0.75); max-width: 34em; }
.cta-band .cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* ============================================================
   Product page
   ============================================================ */
.product-hero {
  padding: 62px 0 30px;
}
.product-hero .ph-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 64px;
}
.product-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5.4vw, 3.8rem);
  line-height: 1.05;
  margin: 20px 0 18px;
  text-wrap: balance;
}
.product-hero .lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 32em; }
.ph-visual { display: grid; place-items: center; }

.phone-mock {
  width: min(300px, 70vw);
  border: var(--border);
  border-radius: 40px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  position: relative;
}
.phone-notch {
  width: 96px; height: 12px;
  border: 2.5px solid var(--ink);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  margin: 0 auto 12px;
  background: var(--paper-2);
}
.phone-screen {
  border: 2.5px solid var(--ink);
  border-radius: 26px;
  background: linear-gradient(180deg, #E9FBFF 0%, #F6FFF9 100%);
  overflow: hidden;
}
.cleaner-ui { padding: 20px 16px 24px; text-align: center; }
.cleaner-ring {
  width: 172px; height: 172px;
  margin: 6px auto 16px;
  border: var(--border);
  border-radius: 50%;
  background: conic-gradient(var(--lime) 0 76%, #fff 76% 100%);
  display: grid;
  place-items: center;
  position: relative;
}
.cleaner-ring::after {
  content: "";
  position: absolute;
  width: 128px; height: 128px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: #fff;
}
.cleaner-ring .cr-label { position: relative; z-index: 1; }
.cleaner-ring .cr-num { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; display: block; }
.cleaner-ring .cr-txt { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; }
.cleaner-rows { display: grid; gap: 8px; text-align: left; }
.cleaner-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 3px 3px 0 rgba(20, 35, 59, 0.85);
}
.cleaner-row .cr-dot { width: 12px; height: 12px; border-radius: 50%; border: 2.5px solid var(--ink); flex: none; }
.cleaner-row .cr-val { margin-left: auto; font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-soft); }

/* phone mock stays a light app screenshot in dark mode too */
[data-theme="dark"] .phone-mock { border-color: #14233B; box-shadow: 10px 10px 0 var(--icepop-shadow); }
[data-theme="dark"] .phone-notch,
[data-theme="dark"] .phone-screen,
[data-theme="dark"] .cleaner-ring,
[data-theme="dark"] .cleaner-ring::after,
[data-theme="dark"] .cleaner-row { border-color: #14233B; }
[data-theme="dark"] .phone-mock,
[data-theme="dark"] .cleaner-row,
[data-theme="dark"] .cleaner-ring::after { color: #14233B; }
[data-theme="dark"] .cleaner-row .cr-val { color: rgba(20, 35, 59, 0.72); }

/* wheel of fortune */
.wheel-station {
  position: relative;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 34px 34px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
}
.wheel-station::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(45deg, var(--violet) 0 26px, var(--banana) 26px 52px, var(--coral) 52px 78px, var(--blue) 78px 104px);
}
.wheel-box { position: relative; display: grid; place-items: center; padding: 12px 0; }
.wheel-pointer {
  position: absolute;
  top: -6px;
  width: 0; height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 26px solid var(--ink);
  z-index: 5;
  filter: drop-shadow(0 0 0 var(--ink));
}
.wheel-pointer::after {
  content: "";
  position: absolute;
  left: -11px;
  top: -25px;
  width: 22px; height: 12px;
  background: var(--coral);
  border: 2.5px solid var(--ink);
  border-radius: 6px;
}
.wheel {
  width: min(330px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: var(--border);
  box-shadow: var(--shadow-md);
  transition: transform 5.6s cubic-bezier(0.12, 0.8, 0.16, 1);
  will-change: transform;
}
.wheel-hub {
  position: absolute;
  width: 58px; height: 58px;
  border: var(--border);
  border-radius: 50%;
  background: var(--banana);
  box-shadow: 3px 3px 0 var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--candy-ink);
  z-index: 4;
}
.wheel-info h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.85rem;
  margin-bottom: 10px;
}
.wheel-info > p { color: var(--ink-soft); margin-bottom: 18px; }
.wheel-demo { display: grid; gap: 12px; }
.wheel-hint { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); }
.wheel-prize {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  border: 2.5px dashed var(--ink);
  border-radius: var(--radius-sm);
  background: var(--frost);
  padding: 12px 18px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.wheel-prize .wp-face { font-size: 1.5rem; }
.wheel-prize.is-won {
  border-style: solid;
  background: var(--lime);
  color: var(--candy-ink);
  transform: scale(1.04);
  animation: winpulse 0.5s ease;
}
@keyframes winpulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.1) rotate(1.5deg); }
  100% { transform: scale(1.04); }
}

.confetti-bit {
  position: absolute;
  width: 11px; height: 15px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 20;
  animation: confetti-fall 1.9s ease-in forwards;
}
@keyframes confetti-fall {
  0% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) rotate(var(--rot)); }
}

/* feature sections on product page */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 30px 0;
}
.feature-band .fb-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin: 16px 0 14px;
  line-height: 1.12;
}
.feature-band .fb-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
.check-list li::before {
  content: "✓";
  flex: none;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  color: var(--candy-ink);
  font-weight: 800;
  margin-top: 1px;
}
.fb-visual { display: grid; place-items: center; }

.tech-strip {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tech-strip .chip { font-size: 0.74rem; padding: 6px 13px; box-shadow: none; background: var(--paper); }

/* junk report mock */
.junk-report {
  width: min(400px, 88vw);
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 24px 24px 20px;
}
.jr-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.jr-head svg { flex: none; background: var(--lime); border: 2.5px solid var(--ink); border-radius: 50%; padding: 3px; }
.jr-row {
  display: grid;
  grid-template-columns: 86px 1fr 64px;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.jr-ico { font-size: 0.8rem; font-family: var(--font-mono); color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jr-bar {
  height: 16px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  overflow: hidden;
}
.jr-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: repeating-linear-gradient(45deg, var(--blue) 0 10px, var(--blue-deep) 10px 20px);
  animation: jrgrow 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.jr-row:nth-child(3) .jr-bar i { background: repeating-linear-gradient(45deg, var(--violet) 0 10px, #7463e6 10px 20px); }
.jr-row:nth-child(4) .jr-bar i { background: repeating-linear-gradient(45deg, var(--banana) 0 10px, #ecbe15 10px 20px); }
.jr-row:nth-child(5) .jr-bar i { background: repeating-linear-gradient(45deg, var(--coral) 0 10px, #ec6845 10px 20px); }
@keyframes jrgrow { from { width: 0 !important; } }
.jr-val { font-family: var(--font-mono); font-size: 0.78rem; text-align: right; color: var(--ink-soft); }
.jr-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px dashed var(--dash-border);
  margin-top: 16px;
  padding-top: 14px;
  font-weight: 700;
}
.jr-total strong { font-family: var(--font-display); font-size: 1.3rem; background: var(--lime); color: var(--candy-ink); padding: 2px 10px; border-radius: 8px; border: 2.5px solid var(--ink); }
.jr-cta {
  margin-top: 14px;
  text-align: center;
  font-weight: 800;
  color: var(--candy-ink);
  background: var(--blue);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: default;
}

/* party scene mock */
.party-scene {
  width: min(400px, 88vw);
  position: relative;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 40px 28px 30px;
  text-align: center;
  overflow: hidden;
}
.party-scene::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(45deg, var(--violet) 0 26px, var(--banana) 26px 52px, var(--coral) 52px 78px, var(--blue) 78px 104px);
}
.party-emoji {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.9rem;
  margin-bottom: 20px;
}
.party-emoji span { animation: bob 3.6s ease-in-out infinite; }
.party-emoji span:nth-child(2) { animation-delay: 0.3s; }
.party-emoji span:nth-child(3) { animation-delay: 0.6s; }
.party-emoji span:nth-child(4) { animation-delay: 0.9s; }
.party-emoji span:nth-child(5) { animation-delay: 1.2s; }
.party-emoji span:nth-child(6) { animation-delay: 1.5s; }
.party-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 4px; }
.party-sub { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 18px; }
.party-dots { display: flex; justify-content: center; gap: 8px; }
.party-dots i {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--paper);
}
.party-dots i.on { background: var(--coral); animation: blink 1.6s ease infinite; }

/* ============================================================
   About page
   ============================================================ */
.about-hero { padding: 62px 0 30px; text-align: center; }
.about-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.6vw, 3.9rem);
  line-height: 1.05;
  margin: 20px auto 18px;
  max-width: 15em;
}
.about-hero .lede { max-width: 40em; margin: 0 auto; color: var(--ink-soft); font-size: 1.1rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}
.about-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  margin: 26px 0 12px;
}
.about-copy h2:first-child { margin-top: 0; }
.about-copy p { color: var(--ink-soft); margin-bottom: 14px; }

.value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.value-strip .chip { box-shadow: none; background: var(--card); }

/* fact stack */
.about-side { display: grid; gap: 22px; }
.fact-stack { display: grid; gap: 14px; }
.fact {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
  transition: transform 0.25s ease;
}
.fact:hover { transform: translateX(6px); }
.fact-ico {
  flex: none;
  width: 52px; height: 52px;
  border: var(--border);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.fact-ico svg { width: 26px; height: 26px; }
.fact strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; }
.fact span:last-child { font-size: 0.88rem; color: var(--ink-soft); }

/* contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s ease;
}
.contact-card:hover { transform: translateY(-5px); }
.contact-card .c-ico {
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  border: var(--border);
  border-radius: 18px;
  display: grid;
  place-items: center;
}
.contact-card .c-ico svg { width: 30px; height: 30px; }
.contact-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; margin-bottom: 8px; }
.contact-card p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 14px; }
.contact-card a.big-link {
  display: inline-block;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--blue-deep);
  text-decoration-thickness: 2.5px;
  text-underline-offset: 4px;
  word-break: break-all;
}
.contact-card a.big-link:hover { text-decoration: underline; }

.map-card {
  margin-top: 26px;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.map-card .m-ico {
  flex: none;
  width: 56px; height: 56px;
  border: var(--border);
  border-radius: 16px;
  background: var(--coral);
  display: grid;
  place-items: center;
}
.map-card .m-ico svg { width: 28px; height: 28px; }
.map-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; margin-bottom: 6px; }
.map-card address { font-style: normal; color: var(--ink-soft); line-height: 1.8; }

/* ============================================================
   Privacy page
   ============================================================ */
.page-head { padding: 58px 0 10px; }
.page-head .chip { margin-bottom: 6px; }
.page-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 16px 0 10px;
}
.page-head .meta { font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-soft); }

.legal-toc {
  margin: 26px 0 0;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px 26px;
}
.legal-toc h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; margin-bottom: 12px; }
.legal-toc ol { margin-left: 20px; display: grid; gap: 6px; }
.legal-toc a { color: var(--blue-deep); font-weight: 600; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.legal-toc a:hover { text-decoration: underline; }

.legal-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 26px 24px 90px;
}
.legal-section {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 30px 32px;
  margin-bottom: 26px;
  scroll-margin-top: 120px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.42rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 3px dashed var(--dash-border);
}
.legal-section p { color: var(--ink-soft); margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--ink); }
.legal-section ul { margin: 0 0 12px 20px; color: var(--ink-soft); display: grid; gap: 8px; }
.legal-section a { color: var(--blue-deep); font-weight: 600; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  margin-top: 40px;
  background: var(--panel);
  border-top: var(--border);
  color: rgba(244, 251, 248, 0.82);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
  background:
    radial-gradient(circle at 10px -3px, transparent 12px, var(--panel) 13px) repeat-x;
  background-size: 26px 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 64px 0 40px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--panel-ink);
  margin-bottom: 16px;
}
.footer-brand .brand-mark { background: var(--paper); }
.footer-brand span { font-family: var(--font-display); font-size: 1.35rem; }
.footer-brand span em { font-style: normal; color: var(--blue); }
.site-footer .f-desc { font-size: 0.93rem; max-width: 30em; }
.site-footer h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--panel-ink);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.f-links { list-style: none; display: grid; gap: 10px; }
.f-links a {
  color: rgba(244, 251, 248, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.f-links a:hover { color: var(--banana); padding-left: 5px; }
.f-contact { list-style: none; display: grid; gap: 12px; font-size: 0.93rem; }
.f-contact li { display: flex; gap: 10px; align-items: flex-start; }
.f-contact svg { width: 17px; height: 17px; flex: none; margin-top: 4px; }
.f-contact a { color: rgba(244, 251, 248, 0.9); text-decoration: none; }
.f-contact a:hover { color: var(--banana); }
.footer-bottom {
  border-top: 1.5px solid rgba(244, 251, 248, 0.16);
  padding: 20px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  font-family: var(--font-mono);
  color: rgba(244, 251, 248, 0.55);
}
.footer-bottom .f-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.f-badge {
  border: 1.5px solid rgba(244, 251, 248, 0.3);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.72rem;
}

/* cookie notice */
.cookie {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 95;
  max-width: 430px;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.cookie.show { opacity: 1; visibility: visible; transform: none; }
.cookie-text { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 12px; }
.cookie-actions { display: flex; align-items: center; gap: 16px; }
.cookie-actions a { font-weight: 700; font-size: 0.88rem; color: var(--blue-deep); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.cookie-accept {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--candy-ink);
  background: var(--lime);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 8px 20px;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-accept:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }

@media (max-width: 620px) {
  .cookie { left: 14px; right: 14px; bottom: 14px; max-width: none; }
}

/* back to top */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px; height: 52px;
  border: var(--border);
  border-radius: 50%;
  background: var(--banana);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { min-height: 420px; }
  .float-card.fc-a { left: 2%; }
  .float-card.fc-b { right: 2%; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 46px 36px; }
  .cta-band .cta-actions { justify-content: flex-start; }
  .product-hero .ph-grid { grid-template-columns: 1fr; }
  .wheel-station { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; gap: 26px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: var(--nav-bg);
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 120;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-size: 1.4rem; padding: 12px 30px; }
  .cards-2 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 32px; }
  .cta-band { padding: 36px 24px; }
  .product-card { padding: 28px 22px 26px; }
  .wheel-station { padding: 30px 20px 26px; }
  .legal-section { padding: 24px 20px; }
  .float-card { display: none; }
  .hero-visual { min-height: 360px; }
  .brand-name { font-size: 1.2rem; }
  .ribbon { transform: none; }
}
