:root {
  --red: #e6192c;
  --red-hot: #ff2d3f;
  --red-deep: #a30012;
  --ink: #070708;
  --coal: #0d0d10;
  --smoke: #141418;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f6f6f7;
  --muted: #9c9ca6;
  --font-display: "Sora", "Trebuchet MS", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --radius: 22px;
  --shadow-red: 0 18px 60px -18px rgba(230, 25, 44, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='0.6'/></svg>");
}

::selection {
  background: var(--red);
  color: #fff;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

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

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

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.grad {
  background: linear-gradient(100deg, var(--red-hot), var(--red) 45%, #ff7a5c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-hot), var(--red-deep));
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px -16px rgba(230, 25, 44, 0.75);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.85rem;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.86);
}

.brand strong {
  font-weight: 800;
  font-style: italic;
  color: #fff;
}

.brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--red-hot), var(--red-deep));
  box-shadow: 0 0 18px rgba(230, 25, 44, 0.9);
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: var(--red-hot);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 78% 30%, rgba(230, 25, 44, 0.16), transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(70, 20, 40, 0.35), transparent 60%),
    linear-gradient(180deg, #0b0b0e 0%, var(--ink) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.glow-red {
  width: 480px;
  height: 480px;
  right: 6%;
  top: 16%;
  background: rgba(230, 25, 44, 0.32);
  animation: breathe 9s ease-in-out infinite;
}

.glow-coal {
  width: 380px;
  height: 380px;
  left: -6%;
  bottom: -10%;
  background: rgba(120, 30, 50, 0.28);
}

.hero-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(9rem, 28vw, 26rem);
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  user-select: none;
  white-space: nowrap;
}

.bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -40px;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.03) 60%);
  animation: rise var(--dur) linear var(--delay) infinite;
  opacity: 0;
}

@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 0.7; }
  92% { opacity: 0.5; }
  100% { transform: translateY(-108vh) translateX(var(--drift)); opacity: 0; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.8; }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero h1 {
  font-size: clamp(2.9rem, 6.2vw, 5.2rem);
  margin-bottom: 22px;
}

.hero .lede {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 34px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 0 0 rgba(255, 45, 63, 0.6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 45, 63, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(255, 45, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 63, 0); }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-facts {
  display: flex;
  gap: 38px;
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.hero-facts strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-facts span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero-can {
  width: min(300px, 60vw);
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 46px rgba(230, 25, 44, 0.38));
  animation: floaty 6.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}

.hero-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(230, 25, 44, 0.3);
  animation: spin 26s linear infinite;
}

.hero-ring::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 16px var(--red-hot);
}

.hero-ring-2 {
  width: 540px;
  height: 540px;
  border-color: rgba(255, 255, 255, 0.07);
  animation-duration: 40s;
  animation-direction: reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue:hover {
  color: #fff;
}

.cue-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--red-hot), transparent);
  overflow: hidden;
  position: relative;
}

.cue-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, #fff);
  animation: cue 1.8s var(--ease) infinite;
}

@keyframes cue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.marquee {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--red-deep), var(--red) 50%, var(--red-deep));
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding-right: 2rem;
}

.marquee-track em {
  font-style: normal;
  margin: 0 1.6rem;
  opacity: 0.7;
}

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

.section {
  padding: 110px 0;
  position: relative;
}

.section-alt {
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(230, 25, 44, 0.07), transparent 55%),
    var(--coal);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-head h2,
.cta-copy h2,
.planet-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  margin-bottom: 18px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.grid {
  display: grid;
  gap: 22px;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
}

.glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 25, 44, 0.45);
  background: linear-gradient(160deg, rgba(230, 25, 44, 0.09), rgba(255, 255, 255, 0.02));
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--red-hot);
  background: linear-gradient(150deg, rgba(230, 25, 44, 0.22), rgba(230, 25, 44, 0.05));
  border: 1px solid rgba(230, 25, 44, 0.3);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.flavors-grid {
  grid-template-columns: repeat(4, 1fr);
}

.flavor {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008));
  padding: 44px 24px 30px;
  text-align: center;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.flavor::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(closest-side, var(--disc-a), transparent);
  opacity: 0.16;
  transition: opacity 0.4s;
}

.flavor:hover {
  border-color: color-mix(in srgb, var(--disc-a) 55%, transparent);
  box-shadow: 0 30px 70px -30px color-mix(in srgb, var(--disc-a) 45%, transparent);
}

.flavor:hover::before {
  opacity: 0.3;
}

.flavor-can {
  width: 96px;
  margin: 0 auto 26px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.55));
  transition: transform 0.5s var(--ease);
}

.flavor:hover .flavor-can {
  transform: translateY(-10px) scale(1.06);
}

.flavor h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.flavor p {
  color: var(--muted);
  font-size: 0.88rem;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  padding: 40px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-hot), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat:hover::after {
  opacity: 1;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #b9b9c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.planet-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.97rem;
}

.checklist strong {
  color: var(--text);
}

.check {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--red-hot), var(--red-deep));
  box-shadow: 0 6px 18px -6px rgba(230, 25, 44, 0.8);
  margin-top: 2px;
}

.planet-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.orbit {
  position: relative;
  width: 320px;
  height: 320px;
  display: grid;
  place-items: center;
}

.orbit-core {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, var(--red-hot), var(--red) 45%, var(--red-deep));
  box-shadow: 0 0 70px rgba(230, 25, 44, 0.55), inset 0 0 24px rgba(255, 255, 255, 0.18);
  animation: breathe 7s ease-in-out infinite;
  z-index: 2;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  animation: spin 30s linear infinite;
}

.orbit-ring.r2 {
  inset: 14%;
  border-style: solid;
  border-color: rgba(230, 25, 44, 0.35);
  animation-duration: 20s;
  animation-direction: reverse;
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.9);
  top: -7px;
  left: calc(50% - 7px);
}

.orbit-dot.d2 {
  width: 10px;
  height: 10px;
  top: auto;
  bottom: 12%;
  right: 12%;
  background: var(--red-hot);
  box-shadow: 0 0 14px var(--red-hot);
}

.orbit-dot.d3 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 8%;
  background: #ffd9d0;
  box-shadow: 0 0 10px rgba(255, 217, 208, 0.9);
}

.orbit-caption {
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

.orbit-caption strong {
  color: var(--red-hot);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  border-radius: 28px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(230, 25, 44, 0.35);
  background:
    radial-gradient(600px 300px at 12% 0%, rgba(230, 25, 44, 0.28), transparent 60%),
    radial-gradient(500px 320px at 95% 100%, rgba(120, 20, 45, 0.4), transparent 60%),
    linear-gradient(160deg, #191920, #0c0c0f);
  box-shadow: 0 40px 100px -40px rgba(230, 25, 44, 0.45);
  overflow: hidden;
  position: relative;
}

.cta-panel::before {
  content: "zero";
  position: absolute;
  right: -30px;
  bottom: -58px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 11rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.cta-copy p:not(.kicker) {
  color: var(--muted);
  margin-top: 6px;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cta-form input {
  flex: 1 1 220px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.cta-form input:focus {
  border-color: var(--red-hot);
  box-shadow: 0 0 0 4px rgba(230, 25, 44, 0.18);
}

.form-note {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: #7be3a2;
  min-height: 1.2em;
  margin: 0;
}

.footer {
  border-top: 1px solid var(--line);
  background: #060607;
  padding: 70px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 30ch;
  margin-top: 16px;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-col a:hover {
  color: var(--red-hot);
  transform: translateX(3px);
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@media (max-width: 1020px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .flavors-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .planet-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-panel { grid-template-columns: 1fr; }
  .hero-watermark { font-size: 30vw; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    flex-direction: column;
    gap: 0;
    background: rgba(9, 9, 11, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 10px 6vw 26px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }
  .nav-links a {
    padding: 15px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  body.nav-open .nav-links {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }
  .hero { padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lede { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-facts { justify-content: center; }
  .hero-art { min-height: 420px; order: -1; }
  .hero-can { width: min(230px, 52vw); }
  .hero-ring { width: 300px; height: 300px; }
  .hero-ring-2 { width: 380px; height: 380px; }
  .scroll-cue { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .features-grid, .flavors-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .hero-facts { gap: 20px; }
  .hero-facts strong { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
