:root {
  --ink: #080a08;
  --panel: #101410;
  --panel-soft: #151a15;
  --ivory: #f3f0e8;
  --muted: #a6aaa1;
  --line: rgba(243, 240, 232, 0.15);
  --acid: #c7f20a;
  --orange: #ff5a2b;
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: min(calc(100% - 72px), var(--max));
  height: 94px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand span,
.footer-brand span {
  color: var(--muted);
  font-weight: 400;
}

.site-header nav {
  display: flex;
  gap: 38px;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header nav a,
footer a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
footer a:hover {
  color: var(--acid);
}

.header-cta {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta span {
  color: var(--acid);
  margin-left: 7px;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 53%, rgba(199, 242, 10, 0.08), transparent 24%),
    radial-gradient(circle at 38% 55%, rgba(255, 90, 43, 0.07), transparent 24%),
    linear-gradient(118deg, #060706 0%, #090b09 55%, #030403 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 55%, black);
}

.hero-glow {
  position: absolute;
  right: -80px;
  bottom: -360px;
  width: 900px;
  height: 700px;
  border-radius: 50%;
  background: rgba(199, 242, 10, 0.045);
  filter: blur(70px);
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: 190px;
  left: max(36px, calc((100vw - var(--max)) / 2));
  width: min(46vw, 670px);
}

.eyebrow,
.mini-label {
  margin: 0 0 28px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(78px, 7.4vw, 126px);
  font-weight: 800;
  letter-spacing: -0.072em;
  line-height: 0.84;
}

.hero h1 span {
  color: var(--acid);
}

.hero-lead {
  max-width: 590px;
  margin: 36px 0 0;
  color: #d1d2cc;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-acid {
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(199, 242, 10, 0);
}

.button-acid:hover {
  box-shadow: 0 10px 36px rgba(199, 242, 10, 0.16);
}

.button-outline {
  border-color: currentColor;
  color: var(--accent);
}

.button-outline:hover {
  background: var(--accent);
  color: var(--ink);
}

.text-link {
  position: relative;
  padding: 17px 0;
  font-size: 14px;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link span {
  margin-left: 22px;
  color: var(--acid);
}

.ai-signal {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  color: #aeb2aa;
  font-size: 13px;
}

.signal-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
}

.signal-dot::after {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(199, 242, 10, 0.36);
  border-radius: 50%;
  content: "";
  animation: pulse 2.4s ease-out infinite;
}

.hero-stage {
  position: absolute;
  z-index: 2;
  top: 118px;
  right: max(20px, calc((100vw - var(--max)) / 2 - 10px));
  width: min(47vw, 680px);
  height: 710px;
}

.hero-stage::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: 2%;
  width: 76%;
  height: 14%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.82);
  filter: blur(24px);
  content: "";
}

.hero-pack {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 8%;
  width: auto;
  height: 690px;
  object-fit: contain;
  filter: drop-shadow(0 42px 32px rgba(0, 0, 0, 0.72));
  animation: pack-in 850ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(199, 242, 10, 0.24);
  border-radius: 50%;
  animation: rotate 16s linear infinite;
}

.orbit::after {
  position: absolute;
  top: 18%;
  right: 3%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
  content: "";
}

.orbit-one {
  top: 85px;
  right: 0;
  width: 510px;
  height: 510px;
}

.orbit-two {
  top: 175px;
  right: 70px;
  width: 350px;
  height: 350px;
  animation-direction: reverse;
  animation-duration: 11s;
}

.ingredient-node {
  position: absolute;
  z-index: 5;
  right: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ingredient-node span {
  width: 9px;
  height: 9px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(199, 242, 10, 0.55);
}

.node-basil { top: 120px; right: 7px; }
.node-chilli { top: 275px; right: -8px; }
.node-konjac { top: 435px; right: 15px; }

.hero-specs {
  position: absolute;
  z-index: 4;
  bottom: 42px;
  left: max(36px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
}

.hero-specs div {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-specs div:first-child { padding-left: 0; }
.hero-specs div:last-child { border-right: 0; }
.spec-icon { color: var(--acid); font-size: 24px; font-weight: 400; }

.number-strip {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.number-item {
  display: flex;
  min-height: 174px;
  flex-direction: column;
  justify-content: center;
  padding: 32px 42px;
  border-right: 1px solid var(--line);
}

.number-item:last-child { border-right: 0; }
.number-item strong { font-size: 44px; letter-spacing: -0.05em; }
.number-item span { margin-top: 9px; color: var(--muted); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 42px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 74px;
}

.section-heading .eyebrow { margin-bottom: 24px; }

.section h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.section-heading > p,
.intelligence-intro > p,
.moments-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.range {
  border-top: 1px solid var(--line);
}

.flavour-lab {
  display: grid;
  min-height: 760px;
  grid-template-columns: 0.72fr 1.2fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0f0c;
}

.flavour-selector {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.flavour-selector button {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 18px;
  padding: 0 25px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #aeb2aa;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.flavour-selector button:last-child { border-bottom: 0; }
.flavour-selector button span { color: #626760; font-size: 10px; letter-spacing: 0.12em; }
.flavour-selector button:hover { background: rgba(255, 255, 255, 0.035); color: var(--ivory); }
.flavour-selector button.active { padding-left: 35px; background: var(--accent); color: var(--ink); font-weight: 700; }
.flavour-selector button.active span { color: var(--ink); }

.selected-pack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 62%);
}

.selected-pack::before {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, var(--accent), transparent);
  content: "";
  opacity: 0.32;
}

.selected-aura {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 80px color-mix(in srgb, var(--accent) 11%, transparent);
}

.selected-pack img {
  position: relative;
  z-index: 2;
  width: auto;
  height: 660px;
  object-fit: contain;
  filter: drop-shadow(0 32px 20px rgba(0, 0, 0, 0.6));
  animation: product-swap 420ms ease both;
}

.flavour-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 44px;
}

.flavour-story .mini-label { margin-bottom: 20px; color: var(--accent); }
.flavour-story h3 { margin: 0; font-size: clamp(40px, 4vw, 65px); letter-spacing: -0.055em; line-height: 0.92; }
.flavour-note { margin: 22px 0 28px; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.flavour-story > p:last-of-type { margin: 0 0 32px; color: var(--muted); line-height: 1.65; }
.flavour-story .button { align-self: flex-start; }
.flavour-story small { margin-top: 18px; color: #71766e; font-size: 11px; line-height: 1.5; }
.technical-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.download-link { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.download-link span { margin-left: 10px; }

.packaging {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 110px;
  align-items: center;
}

.packaging-visual {
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #0f120f;
  background-size: 54px 54px;
}

.packaging-visual img {
  width: auto;
  height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.65));
}

.pack-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9bdb5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pack-callout::after {
  width: 72px;
  height: 1px;
  background: var(--acid);
  content: "";
}

.pack-callout span { color: var(--acid); }
.callout-seal { top: 14%; left: 3%; }
.callout-body { top: 46%; right: 2%; flex-direction: row-reverse; }
.callout-base { bottom: 12%; left: 4%; }
.callout-body::after { order: -1; }

.packaging-copy .eyebrow { margin-bottom: 24px; }
.large-copy { max-width: 680px; margin: 34px 0 48px; color: #c5c8c0; font-size: 20px; line-height: 1.58; }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.feature-list article > span { color: var(--acid); font-size: 11px; letter-spacing: 0.14em; }
.feature-list h3 { margin: 0 0 8px; font-size: 17px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.intelligence {
  position: relative;
  max-width: none;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
}

.intelligence::before {
  position: absolute;
  top: -300px;
  right: -80px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(8, 10, 8, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(8, 10, 8, 0.035), 0 0 0 180px rgba(8, 10, 8, 0.025);
  content: "";
}

.intelligence-intro,
.ai-grid {
  position: relative;
  max-width: calc(var(--max) - 84px);
  margin: 0 auto;
}

.intelligence-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.intelligence .eyebrow { grid-column: 1 / -1; margin-bottom: -40px; color: var(--ink); opacity: 0.6; }
.intelligence-intro > p { color: rgba(8, 10, 8, 0.72); }
.ai-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid rgba(8, 10, 8, 0.3); }
.ai-grid article { padding: 28px 28px 0 0; border-right: 1px solid rgba(8, 10, 8, 0.25); }
.ai-grid article + article { padding-left: 28px; }
.ai-grid article:last-child { border-right: 0; }
.ai-number { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; }
.ai-line { position: relative; height: 36px; margin: 18px 0 25px; }
.ai-line::before { position: absolute; top: 50%; right: 0; left: 0; height: 1px; background: rgba(8, 10, 8, 0.32); content: ""; }
.ai-line i { position: absolute; z-index: 1; top: calc(50% - 4px); left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.ai-grid h3 { margin: 0 0 12px; font-size: 27px; letter-spacing: -0.04em; }
.ai-grid p { margin: 0; color: rgba(8, 10, 8, 0.72); font-size: 14px; line-height: 1.58; }

.formats { border-bottom: 1px solid var(--line); }
.format-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.format-specs { min-height: 470px; padding: 38px; border: 1px solid var(--line); background: var(--panel); }
.format-topline { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.format-topline span { color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.format-topline strong { font-size: 32px; letter-spacing: -0.05em; }
.format-specs > p { margin: 8px 0 55px; color: var(--acid); font-size: 13px; }
.format-specs small { display: block; margin-top: 32px; color: var(--muted); }
.case-diagram { display: grid; align-content: center; gap: 8px; min-height: 205px; padding: 26px; border: 1px solid rgba(199, 242, 10, 0.28); background: rgba(199, 242, 10, 0.025); }
.case-six { grid-template-columns: repeat(6, 1fr); }
.case-twelve { grid-template-columns: repeat(6, 1fr); }
.case-diagram i { display: block; aspect-ratio: 0.65; border: 1px solid var(--acid); border-radius: 4px 4px 8px 8px; background: linear-gradient(150deg, rgba(199, 242, 10, 0.18), transparent); }
.format-image { position: relative; min-height: 430px; overflow: hidden; background: #151515; }
.format-image::after { position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.84)); content: ""; }
.format-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.format-image:hover img { transform: scale(1.035); }
.format-image > div { position: absolute; z-index: 2; right: 32px; bottom: 28px; left: 32px; }
.format-image span { color: var(--acid); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.format-image p { margin: 9px 0 0; font-size: 23px; font-weight: 700; letter-spacing: -0.035em; }

.downloads { max-width: none; background: #0c0f0c; border-bottom: 1px solid var(--line); }
.download-panel { display: grid; max-width: calc(var(--max) - 84px); margin: 0 auto; grid-template-columns: 1.1fr 0.9fr; gap: 110px; align-items: center; }
.download-copy .eyebrow { margin-bottom: 25px; }
.download-copy > p:last-child { max-width: 660px; margin: 36px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.download-card { position: relative; padding: 46px; overflow: hidden; border: 1px solid rgba(199, 242, 10, 0.35); background: linear-gradient(145deg, rgba(199, 242, 10, 0.07), transparent 45%), var(--panel); }
.download-card::after { position: absolute; top: -130px; right: -110px; width: 280px; height: 280px; border: 1px solid rgba(199, 242, 10, 0.22); border-radius: 50%; content: ""; }
.download-number { color: var(--acid); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.download-card h3 { max-width: 470px; margin: 24px 0 8px; font-size: 40px; letter-spacing: -0.055em; line-height: 0.98; }
.download-card > p { margin: 0; color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.download-card ul { margin: 31px 0 34px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.download-card li { position: relative; padding: 6px 0 6px 19px; color: #c8cbc4; font-size: 13px; line-height: 1.45; }
.download-card li::before { position: absolute; top: 11px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--acid); content: ""; }
.download-card .button { width: 100%; }
.download-card small { display: block; margin-top: 15px; color: #6f746d; font-size: 10px; line-height: 1.5; }

.moments { padding-bottom: 160px; }
.moments-copy { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: 90px; margin-bottom: 75px; }
.moments-copy .eyebrow { grid-column: 1 / -1; margin-bottom: -45px; }
.moment-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 92px; gap: 14px; }
.moment { position: relative; overflow: hidden; margin: 0; background: #151515; }
.moment::after { position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.88)); content: ""; }
.moment img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.moment:hover img { transform: scale(1.035); }
.moment figcaption { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; display: flex; flex-direction: column; }
.moment figcaption span { color: var(--acid); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.moment figcaption strong { margin-top: 7px; font-size: 16px; }
.moment-1 { grid-column: 1 / 8; grid-row: 1 / 5; }
.moment-2 { grid-column: 8 / 13; grid-row: 1 / 4; }
.moment-3 { grid-column: 1 / 5; grid-row: 5 / 8; }
.moment-4 { grid-column: 5 / 9; grid-row: 5 / 8; }
.moment-5 { grid-column: 9 / 13; grid-row: 4 / 8; }

.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 110px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.contact-copy .eyebrow { margin-bottom: 26px; }
.contact-copy > p { max-width: 650px; margin-top: 34px; }
.contact-details { display: flex; flex-direction: column; gap: 9px; margin-top: 58px; }
.contact-details span { color: var(--muted); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-details a { color: var(--acid); font-size: 23px; font-weight: 700; }
.contact form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; padding: 38px; border: 1px solid var(--line); background: var(--panel); }
.contact label { display: flex; flex-direction: column; gap: 10px; color: #b9bdb5; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.contact input:not([type="checkbox"]),
.contact select { width: 100%; height: 54px; padding: 0 15px; border: 1px solid var(--line); border-radius: 0; background: #0b0e0b; color: var(--ivory); font-size: 14px; letter-spacing: normal; text-transform: none; }
.contact input::placeholder { color: #5f655d; }
.contact .button { grid-column: 1 / -1; width: 100%; margin-top: 8px; }
.contact form small { grid-column: 1 / -1; color: #6f746d; font-size: 10px; }
.contact .consent { grid-column: 1 / -1; display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: #8c9189; font-size: 10px; font-weight: 400; letter-spacing: normal; line-height: 1.45; text-transform: none; }
.contact .consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--acid); }
.contact .consent a { color: var(--acid); text-decoration: underline; text-underline-offset: 2px; }

.hub-return {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 42px 72px;
}

.hub-return a {
  display: inline-flex;
  min-height: 82px;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
  border: 2px solid #d7d9d7;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  color: #181a18;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hub-return a:hover {
  border-color: var(--acid);
  box-shadow: 0 18px 42px rgba(199, 242, 10, 0.14);
  transform: translateY(-2px);
}

.hub-return a span {
  font-size: 25px;
  font-weight: 400;
}

footer {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 50px;
  align-items: center;
  padding: 38px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
footer p { margin: 0; }
footer > div:last-of-type { display: flex; gap: 24px; }
footer > small { grid-column: 1 / -1; color: #5e635c; }

.legal-page { min-height: 100vh; background: var(--ink); }
.legal-header { display: flex; width: min(calc(100% - 72px), var(--max)); height: 94px; margin: 0 auto; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.legal-hero { max-width: var(--max); margin: 0 auto; padding: 130px 42px 105px; }
.legal-hero .eyebrow { margin-bottom: 30px; }
.legal-hero h1 { max-width: 1080px; margin: 0; font-size: clamp(66px, 7vw, 112px); letter-spacing: -0.07em; line-height: 0.88; }
.legal-hero > p { max-width: 690px; margin: 38px 0 22px; color: #c5c8c0; font-size: 20px; line-height: 1.6; }
.legal-hero small { color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.legal-content { max-width: calc(var(--max) - 84px); margin: 0 auto 130px; border-top: 1px solid var(--line); }
.legal-content section { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 48px 0; border-bottom: 1px solid var(--line); }
.legal-content section > span { color: var(--acid); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; }
.legal-content h2 { margin: -7px 0 22px; font-size: 36px; letter-spacing: -0.045em; }
.legal-content p { max-width: 940px; margin: 0 0 17px; color: #b6bab2; font-size: 15px; line-height: 1.72; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a { color: var(--acid); text-decoration: underline; text-underline-offset: 3px; }
.legal-content .legal-highlight { margin: 28px 0; padding: 48px 36px; border: 1px solid rgba(199, 242, 10, 0.38); background: rgba(199, 242, 10, 0.035); }

@keyframes pack-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes product-swap {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes pulse {
  0% { opacity: 0.9; transform: scale(0.65); }
  80%, 100% { opacity: 0; transform: scale(1.2); }
}

@media (max-width: 1120px) {
  .site-header { width: calc(100% - 48px); grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: 860px; }
  .hero-copy { left: 28px; width: 50vw; }
  .hero-stage { right: -70px; width: 55vw; }
  .ingredient-node { display: none; }
  .section { padding-right: 28px; padding-left: 28px; }
  .flavour-lab { grid-template-columns: 0.72fr 1fr; }
  .flavour-story { grid-column: 1 / -1; min-height: 390px; border-top: 1px solid var(--line); }
  .packaging { gap: 55px; }
  .intelligence-intro, .ai-grid { max-width: calc(100% - 56px); }
  .download-panel { max-width: calc(100% - 56px); gap: 55px; }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 32px); height: 76px; }
  .header-cta { font-size: 0; }
  .header-cta span { font-size: 20px; }
  .hero { min-height: 940px; }
  .hero::before { display: none; }
  .hero-copy { top: 118px; left: 20px; width: calc(100% - 40px); }
  .hero h1 { font-size: clamp(62px, 20vw, 84px); }
  .hero-lead { margin-top: 26px; font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 8px; margin-top: 26px; }
  .text-link { align-self: flex-start; }
  .ai-signal { margin-top: 20px; }
  .hero-stage { top: 575px; right: 0; width: 100%; height: 330px; }
  .hero-pack { top: 0; left: 50%; height: 330px; transform: translateX(-50%); animation: none; }
  .orbit-one { top: 10px; right: calc(50% - 160px); width: 320px; height: 320px; }
  .orbit-two { top: 60px; right: calc(50% - 110px); width: 220px; height: 220px; }
  .hero-specs { right: 20px; bottom: 18px; left: 20px; justify-content: space-between; }
  .hero-specs div { min-height: 34px; padding: 0 10px; gap: 5px; font-size: 8px; }
  .spec-icon { font-size: 15px; }
  .number-strip { grid-template-columns: repeat(2, 1fr); border: 0; }
  .number-item { min-height: 124px; padding: 24px 20px; border-bottom: 1px solid var(--line); }
  .number-item:nth-child(2) { border-right: 0; }
  .number-item strong { font-size: 36px; }
  .section { padding: 90px 20px; }
  .section-heading, .intelligence-intro, .moments-copy, .contact { grid-template-columns: 1fr; gap: 30px; }
  .section-heading { margin-bottom: 45px; }
  .section h2 { font-size: 50px; }
  .flavour-lab { display: flex; min-height: 0; flex-direction: column; }
  .flavour-selector { display: grid; overflow-x: auto; grid-template-columns: repeat(9, minmax(145px, 1fr)); border-right: 0; border-bottom: 1px solid var(--line); scrollbar-width: thin; }
  .flavour-selector button { min-height: 68px; padding: 0 16px; border-right: 1px solid var(--line); border-bottom: 0; }
  .flavour-selector button.active { padding-left: 16px; }
  .selected-pack { min-height: 520px; border-right: 0; }
  .selected-pack img { height: 480px; }
  .flavour-story { min-height: 0; padding: 38px 24px; }
  .flavour-story h3 { font-size: 48px; }
  .packaging { grid-template-columns: 1fr; gap: 60px; }
  .packaging-visual { min-height: 620px; }
  .packaging-visual img { height: 520px; }
  .pack-callout { font-size: 8px; }
  .pack-callout::after { width: 35px; }
  .intelligence { padding-top: 90px; padding-bottom: 90px; }
  .intelligence .eyebrow, .moments-copy .eyebrow { grid-column: auto; margin-bottom: -7px; }
  .intelligence-intro, .ai-grid { max-width: none; }
  .ai-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .ai-grid article, .ai-grid article + article { padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(8, 10, 8, 0.25); }
  .ai-grid article:last-child { border-bottom: 0; }
  .ai-line { display: none; }
  .format-grid { grid-template-columns: 1fr; }
  .format-specs { min-height: 390px; padding: 26px; }
  .case-diagram { min-height: 170px; padding: 18px; }
  .format-image { min-height: 300px; }
  .download-panel { max-width: none; grid-template-columns: 1fr; gap: 46px; }
  .download-card { padding: 28px 24px; }
  .download-card h3 { font-size: 36px; }
  .moments-copy { margin-bottom: 48px; }
  .moment-grid { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; }
  .moment { min-width: 82vw; height: 420px; scroll-snap-align: start; }
  .contact { gap: 55px; }
  .contact form { grid-template-columns: 1fr; padding: 24px; }
  .contact .button, .contact form small { grid-column: 1; }
  .hub-return { padding: 4px 20px 52px; }
  .hub-return a { min-height: 64px; padding: 0 22px; font-size: 16px; }
  .hub-return a span { font-size: 20px; }
  footer { grid-template-columns: 1fr; gap: 18px; padding: 32px 20px; }
  footer > small { grid-column: 1; }
  .legal-header { width: calc(100% - 40px); height: 76px; }
  .legal-hero { padding: 90px 20px 70px; }
  .legal-hero h1 { font-size: clamp(54px, 16vw, 78px); }
  .legal-hero > p { font-size: 17px; }
  .legal-content { max-width: none; margin: 0 20px 90px; }
  .legal-content section { grid-template-columns: 1fr; gap: 15px; padding: 38px 0; }
  .legal-content h2 { font-size: 30px; }
  .legal-content .legal-highlight { padding: 32px 22px; }
}

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