﻿:root {
  --white: #F9FBFF;
  --black: #080809;
  --neutral100: #D3DAE5;
  --neutral200: #A9AEB7;
  --neutral300: #888C93;
  --neutral400: #6D7178;
  --neutral500: #5A5E66;
  --neutral600: #383A40;
  --neutral700: #242529;
  --neutral800: #0E0F11;
  --kiwi100: #C8E5C9;
  --kiwi200: #ADD9AF;
  --kiwi300: #92CC94;
  --kiwi400: #77C07A;
  --kiwi500: #5CB35F;
  --kiwi600: #41A745;
  --kiwi700: #308F34;
  --kiwi800: #2E7731;
  --tangerine100: #F5DCC6;
  --tangerine200: #F4CBA6;
  --tangerine300: #ECB380;
  --tangerine400: #EBA15F;
  --tangerine500: #E78E3F;
  --tangerine600: #D77927;
  --tangerine700: #BE6617;
  --tangerine800: #A25816;
  --tomato100: #FFD8D9;
  --tomato200: #FFBBBC;
  --tomato300: #FF9697;
  --tomato400: #F86C6E;
  --tomato500: #F74F51;
  --tomato600: #E22D30;
  --tomato700: #C32E30;
  --tomato800: #C32E30;
  --plum100: #EAD5FF;
  --plum200: #DAB8FC;
  --plum300: #BB82E7;
  --plum400: #A769D7;
  --plum500: #964BCF;
  --plum600: #8034BA;
  --plum700: #6A249F;
  --plum800: #4F027E;
  --candy400: #5CC4D4;
  --ink: var(--neutral800);
  --paper: var(--white);
  --muted: var(--neutral400);
  --green: var(--kiwi600);
  --green-2: var(--kiwi400);
  --tangerine: var(--tangerine500);
  --tomato: var(--tomato500);
  --blue: var(--candy400);
  --radius-brand: 24px;
  --radius-soft: 18px;
  --radius-pill: 999px;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 22px 70px rgba(8, 8, 9, 0.12);
  --section-pad: clamp(82px, 9vw, 132px) clamp(20px, 6vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 9, 0.7);
  box-shadow: 0 18px 60px rgba(8, 8, 9, 0.18);
  backdrop-filter: blur(24px) saturate(1.2);
}

.brand {
  display: inline-flex;
  width: max-content;
}

.brand img {
  width: clamp(142px, 12vw, 184px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.nav {
  position: relative;
  isolation: isolate;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 850;
}

.nav a {
  --nav-delay: 0s;
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  overflow: hidden;
  border: 1px solid rgba(114, 208, 120, 0.2);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.14);
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nav a:nth-child(2) {
  --nav-delay: 0.4s;
}

.nav a:nth-child(3) {
  --nav-delay: 0.8s;
}

.nav a:nth-child(4) {
  --nav-delay: 1.2s;
}

.nav a:nth-child(5) {
  --nav-delay: 1.6s;
}

.nav a:nth-child(6) {
  --nav-delay: 2s;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 66%),
    radial-gradient(circle at 50% 50%, rgba(114, 208, 120, 0.32), transparent 56%);
  opacity: 0;
  transform: translateX(-115%);
}

.is-enhanced .nav a::before {
  animation: flowShine 7.2s ease-in-out infinite;
  animation-delay: var(--nav-delay);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
  border-color: rgba(114, 208, 120, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 34px rgba(0, 0, 0, 0.2);
}

.nav a,
.header-link,
.header-cta,
.link-row a,
.stage-copy a {
  text-decoration: none;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid rgba(114, 208, 120, 0.24);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.14);
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.header-link:hover,
.header-link:focus-visible,
.header-link[aria-current="page"] {
  color: var(--white);
  transform: translateY(-2px);
  border-color: rgba(114, 208, 120, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 34px rgba(0, 0, 0, 0.2);
}

.header-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(65, 167, 69, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--kiwi700);
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(65, 167, 69, 0.38);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 108px 20px 132px;
  text-align: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -8% 0 0;
  z-index: -3;
  width: 100%;
  height: 112%;
  max-width: none;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 32%, rgba(8, 8, 9, 0.04), rgba(8, 8, 9, 0.62) 62%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.18), rgba(8, 8, 9, 0.9));
}

.hero-content {
  width: min(100%, 1060px);
  padding-top: 2vh;
}

.hero-logo {
  width: min(280px, 68vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.55));
}

.kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.95rem, 1.7vw, 1.28rem);
  font-weight: 850;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1180px;
  margin: 0 auto 20px;
  font-size: clamp(3.25rem, 7.7vw, 6.8rem);
  font-weight: 950;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  letter-spacing: -0.004em;
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.62rem, 5.75vw, 5.85rem);
  font-weight: 950;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  letter-spacing: -0.003em;
  line-height: 1.015;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.15rem, 2vw, 1.62rem);
  font-weight: 720;
  line-height: 1.2;
}

.hero-one-liner {
  max-width: 780px;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 860;
  line-height: 1.12;
  text-wrap: balance;
}

.link-row,
.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.link-row {
  gap: 12px;
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  font-weight: 850;
}

.link-row a::after,
.stage-copy a::after {
  content: " >";
}

.link-row a,
.stage-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(65, 167, 69, 0.28);
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(65, 167, 69, 0.24);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.link-row a:hover,
.link-row a:focus-visible,
.stage-copy a:hover,
.stage-copy a:focus-visible {
  background: var(--kiwi700);
  box-shadow: 0 22px 54px rgba(65, 167, 69, 0.32);
  transform: translateY(-2px);
}

.store-row {
  gap: 13px;
  margin-top: 22px;
}

.store-row a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
}

.store-row img {
  width: auto;
  height: 48px;
}

.manifesto,
.voices-section,
.ai-layer,
.pricing-section {
  position: relative;
  padding: var(--section-pad);
  text-align: center;
}

.manifesto {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(65, 167, 69, 0.08), transparent 30%),
    linear-gradient(180deg, var(--white), #F3F7F3);
  color: var(--ink);
}

.manifesto .kicker,
.pricing-section .kicker,
.trial-section .kicker {
  color: var(--green);
}

.manifesto h2,
.ai-layer h2,
.pricing-intro h2 {
  max-width: 1080px;
  margin-inline: auto;
  letter-spacing: -0.002em;
  line-height: 1.02;
}

.manifesto p:not(.kicker),
.voices-intro p,
.ai-layer p,
.pricing-intro p {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(14, 15, 17, 0.78);
  font-size: clamp(1.06rem, 1.55vw, 1.35rem);
  font-weight: 650;
  line-height: 1.34;
}

.voices-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 6vw, 96px);
  padding-bottom: clamp(132px, 11vw, 178px);
  background:
    radial-gradient(circle at 16% 12%, rgba(65, 167, 69, 0.11), transparent 24%),
    radial-gradient(circle at 84% 28%, rgba(231, 142, 63, 0.08), transparent 26%),
    linear-gradient(180deg, #F8FAF7, #EEF7EE));
  color: var(--ink);
}

.voices-section > .scroll-cue {
  bottom: clamp(24px, 3vw, 40px);
}

.voices-section::before {
  content: "";
  position: absolute;
  inset: 12% -8% auto;
  height: 420px;
  background:
    linear-gradient(90deg, transparent, rgba(65, 167, 69, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(17, 18, 20, 0.035) 0 1px, transparent 1px 84px);
  opacity: 0.34;
  pointer-events: none;
  transform: rotate(-4deg);
}

.voices-intro {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto 28px;
  text-align: center;
}

.voices-intro .kicker {
  color: var(--green);
}

.voices-intro h2 {
  max-width: 980px;
  margin-inline: auto;
  color: var(--white);
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  font-size: clamp(2.75rem, 5.4vw, 5.7rem);
}

.voices-intro p {
  color: rgba(249, 251, 255, 0.78);
}

.quote-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  perspective: 1400px;
}

.quote-card {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: start;
  padding: 22px 24px 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 20, 0.07);
  border-radius: var(--radius-brand);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 247, 0.82)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateZ(0);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.quote-card::before {
  content: "“";
  position: absolute;
  right: 20px;
  bottom: -44px;
  color: rgba(65, 167, 69, 0.09);
  font-size: 12rem;
  font-weight: 950;
  line-height: 1;
  transform: rotate(-4deg);
  transition:
    color 260ms ease,
    transform 260ms ease;
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.76) 42%, transparent 66%);
  opacity: 0;
  transform: translateX(-58%);
  transition:
    opacity 260ms ease,
    transform 520ms ease;
  pointer-events: none;
}

.quote-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  border-color: rgba(65, 167, 69, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(241, 249, 242, 0.9)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 34px 92px rgba(17, 18, 20, 0.14),
    0 0 0 1px rgba(65, 167, 69, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.quote-card:hover::before {
  color: rgba(65, 167, 69, 0.17);
  transform: translateY(-8px) rotate(-8deg) scale(1.08);
}

.quote-card:hover::after {
  opacity: 1;
  transform: translateX(58%);
}

.quote-card p {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: rgba(17, 18, 20, 0.9);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 850;
  line-height: 1.16;
  text-wrap: balance;
  transition:
    color 260ms ease,
    transform 260ms ease;
}

.quote-card:hover p {
  color: rgba(17, 18, 20, 0.98);
  transform: translateY(-4px);
}

.quote-avatar {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 14px 28px rgba(17, 18, 20, 0.14),
    0 0 0 1px rgba(65, 167, 69, 0.18);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.quote-card:hover .quote-avatar {
  transform: scale(1.08) rotate(-2deg);
  box-shadow:
    0 18px 38px rgba(17, 18, 20, 0.2),
    0 0 0 5px rgba(65, 167, 69, 0.1);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vw, 58px);
  z-index: 5;
  display: grid;
  width: 52px;
  height: 64px;
  place-items: center;
  border-radius: 999px;
  color: var(--green);
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(65, 167, 69, 0.22);
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(65, 167, 69, 0.18), transparent 54%),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    0 20px 54px rgba(65, 167, 69, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.scroll-cue.on-dark::before {
  border-color: rgba(114, 208, 120, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.24), transparent 54%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 60px rgba(65, 167, 69, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-scroll {
  bottom: 22px;
}

.scroll-cue span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  opacity: 0;
  transform: rotate(45deg);
  animation: scrollChevron 1.9s ease-in-out infinite;
}

.scroll-cue span:nth-child(1) {
  top: 15px;
  animation-delay: 0s;
}

.scroll-cue span:nth-child(2) {
  top: 26px;
  animation-delay: 0.18s;
}

.scroll-cue span:nth-child(3) {
  top: 37px;
  animation-delay: 0.36s;
}

.scroll-cue:hover::before,
.scroll-cue:focus-visible::before {
  border-color: rgba(65, 167, 69, 0.44);
  box-shadow:
    0 24px 70px rgba(65, 167, 69, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.86);
  transform: translateY(-3px);
}

.scroll-cue:focus-visible {
  outline: 3px solid rgba(65, 167, 69, 0.28);
  outline-offset: 6px;
}

.journey {
  position: relative;
  padding: clamp(86px, 8vw, 118px) clamp(20px, 5vw, 86px);
  overflow: hidden;
  scroll-margin-top: 92px;
  background:
    radial-gradient(circle at 50% 0%, rgba(65, 167, 69, 0.13), transparent 34%),
    linear-gradient(180deg, #0B0D0C, var(--neutral800));
}

.journey,
.feature-stage,
.ai-layer,
.pricing-section {
  padding-bottom: max(clamp(74px, 8vw, 124px), 116px);
}

.journey-intro {
  max-width: 940px;
  margin: 0 auto 38px;
  text-align: center;
}

.journey-intro h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  letter-spacing: -0.002em;
  line-height: 1.02;
}

.loop-word {
  position: relative;
  display: inline-block;
  color: var(--white);
  text-shadow: 0 0 34px rgba(114, 208, 120, 0.16);
}

.loop-word::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.04em;
  bottom: 0.04em;
  height: 0.1em;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(114, 208, 120, 0.36), rgba(255, 255, 255, 0.86), rgba(114, 208, 120, 0.36));
  box-shadow: 0 0 28px rgba(114, 208, 120, 0.3);
  opacity: 0.72;
  transform-origin: left center;
}

.is-enhanced .loop-word::after {
  animation: loopUnderline 5.8s ease-in-out infinite;
}

.is-enhanced .loop-word:nth-of-type(2)::after {
  animation-delay: 1.2s;
}

.journey-summary {
  max-width: 860px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.45vw, 1.28rem);
  font-weight: 650;
  line-height: 1.38;
}

.system-flow {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto clamp(36px, 5vw, 68px);
}

.system-flow::before {
  content: "";
  position: absolute;
  inset: 20px 2%;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(114, 208, 120, 0.38), transparent),
    rgba(114, 208, 120, 0.08);
  filter: blur(18px);
  opacity: 0.58;
  transform: translateX(-42%) scaleX(0.28);
  animation: flowRail 7.2s ease-in-out infinite;
}

.system-flow span {
  --step-delay: 0s;
  position: relative;
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 14px 12px;
  overflow: hidden;
  border: 1px solid rgba(114, 208, 120, 0.2);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 880;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.16);
  animation: flowStep 7.2s ease-in-out infinite;
  animation-delay: var(--step-delay);
}

.system-flow span:nth-child(2) {
  --step-delay: 0.55s;
}

.system-flow span:nth-child(3) {
  --step-delay: 1.1s;
}

.system-flow span:nth-child(4) {
  --step-delay: 1.65s;
}

.system-flow span:nth-child(5) {
  --step-delay: 2.2s;
}

.system-flow span:nth-child(6) {
  --step-delay: 2.75s;
}

.system-flow span::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 66%),
    radial-gradient(circle at 50% 50%, rgba(114, 208, 120, 0.32), transparent 56%);
  opacity: 0;
  transform: translateX(-115%);
  animation: flowShine 7.2s ease-in-out infinite;
  animation-delay: var(--step-delay);
}

.system-flow span:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -11px;
  z-index: 2;
  color: var(--green-2);
  font-weight: 950;
  text-shadow: 0 0 18px rgba(114, 208, 120, 0.62);
  animation: flowArrow 7.2s ease-in-out infinite;
  animation-delay: calc(var(--step-delay) + 0.34s);
}

.journey-steps {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  max-width: 1180px;
  margin: 0 auto;
}

.setup-showcase {
  position: relative;
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: clamp(520px, 58vw, 690px);
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 80% 20%, rgba(114, 208, 120, 0.14), transparent 30%),
    radial-gradient(circle at 10% 82%, rgba(231, 142, 63, 0.09), transparent 28%),
    linear-gradient(180deg, #F8FAF7, #EFF6EF);
  color: var(--ink);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
}

.setup-showcase::before {
  content: "";
  position: absolute;
  inset: -18% -8% auto auto;
  width: min(680px, 54vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 208, 120, 0.18), transparent 64%);
  filter: blur(22px);
  pointer-events: none;
}

.setup-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.setup-flow-pill {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  min-width: 124px;
  min-height: 48px;
  place-items: center;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(65, 167, 69, 0.24);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 50% 0%, rgba(65, 167, 69, 0.18), transparent 48%),
    rgba(14, 15, 17, 0.06);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 16px 34px rgba(65, 167, 69, 0.14);
}

.setup-flow-pill::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.58) 42%, transparent 66%),
    radial-gradient(circle at 50% 50%, rgba(114, 208, 120, 0.32), transparent 56%);
  opacity: 0;
  transform: translateX(-115%);
}

.is-enhanced .setup-flow-pill::before {
  animation: flowShine 7.2s ease-in-out infinite;
}

.setup-copy .kicker {
  color: var(--green);
}

.setup-copy h3 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5.35rem);
  font-weight: 950;
  letter-spacing: -0.01em;
  line-height: 1;
}

.setup-copy p:not(.kicker) {
  max-width: 620px;
  color: rgba(14, 15, 17, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 720;
  line-height: 1.38;
}

.setup-card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.setup-card {
  position: relative;
  display: grid;
  min-height: 230px;
  align-items: end;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-brand);
  background: var(--neutral800);
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 2.25rem);
  font-weight: 950;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease;
}

.setup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.92;
  background:
    radial-gradient(circle at var(--setup-x, 50%) var(--setup-y, 22%), rgba(114, 208, 120, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.12), rgba(8, 8, 9, 0.72)),
    url("assets/Stage 1.png") center / 74% no-repeat,
    var(--neutral800);
  filter: saturate(1.06);
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.setup-card::after {
  content: "";
  position: absolute;
  inset: 16% 20% 26%;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    repeating-linear-gradient(180deg, rgba(114, 208, 120, 0.22) 0 8px, transparent 8px 22px);
  opacity: 0.16;
  transform: rotate(-5deg);
  filter: blur(0.2px);
}

.setup-card:hover {
  transform: none;
  border-color: rgba(114, 208, 120, 0.28);
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.32);
}

.setup-card:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.setup-card:focus-visible {
  outline: 3px solid rgba(65, 167, 69, 0.3);
  outline-offset: 6px;
}

.setup-card span {
  position: relative;
  z-index: 2;
  max-width: 90%;
  line-height: 0.96;
  transition:
    inset 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
}

.setup-card ul {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  margin: 0;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-soft);
  background:
    radial-gradient(circle at 8% 0%, rgba(114, 208, 120, 0.18), transparent 36%),
    rgba(8, 8, 9, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
  list-style: none;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.34s ease 0.08s,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
}

.setup-card li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.64rem, 0.7vw, 0.76rem);
  font-weight: 760;
  line-height: 1.18;
}

.setup-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(114, 208, 120, 0.55);
}

.setup-card:hover span {
  position: absolute;
  inset: 18px 20px auto;
  opacity: 0.82;
}

.setup-card:hover ul {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dietary-card {
  --setup-x: 30%;
  --setup-y: 18%;
}

.meal-card {
  --setup-x: 78%;
  --setup-y: 22%;
}

.skill-card {
  --setup-x: 34%;
  --setup-y: 74%;
}

.shopping-card {
  --setup-x: 76%;
  --setup-y: 68%;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.98fr) minmax(0, 0.72fr);
  min-height: clamp(360px, 42vw, 480px);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(22px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 50% 18%, rgba(114, 208, 120, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    var(--neutral800);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.journey-step:hover {
  transform: translateY(-6px);
  border-color: rgba(114, 208, 120, 0.28);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.journey-step::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(114, 208, 120, 0.42), transparent);
}

.journey-media {
  position: relative;
  display: grid;
  min-height: clamp(280px, 34vw, 400px);
  margin-bottom: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 50% 18%, rgba(65, 167, 69, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.journey-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(8, 8, 9, 0.56));
}

.journey-media img {
  position: relative;
  z-index: 1;
  width: min(94%, 540px);
  max-height: clamp(250px, 31vw, 380px);
  object-fit: contain;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.55));
  transition: transform 280ms ease;
}

.journey-step:hover .journey-media img {
  transform: translateY(-5px) scale(1.035);
}

.journey-copy {
  position: relative;
  z-index: 2;
  max-width: 440px;
}

.journey-step span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin: 0 0 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(65, 167, 69, 0.15);
  color: var(--green-2);
  font-weight: 950;
}

.journey-step h3 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 3.4vw, 3.55rem);
  letter-spacing: -0.008em;
  line-height: 1;
}

.journey-step p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  font-weight: 650;
  line-height: 1.42;
}

.journey-step:nth-child(even) {
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.98fr);
}

.journey-step:nth-child(even) .journey-media {
  order: 2;
}

.journey-step:nth-child(even) .journey-copy {
  justify-self: end;
}

.feature-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  min-height: 92svh;
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  overflow: hidden;
  padding: clamp(84px, 8vw, 116px) clamp(20px, 6vw, 96px) max(clamp(78px, 8vw, 124px), 116px);
}

#vault {
  min-height: min(84svh, 900px);
  padding-top: clamp(72px, 6vw, 96px);
  padding-bottom: max(clamp(68px, 6vw, 92px), 102px);
}

.manifesto > .scroll-cue {
  bottom: 18px;
}

.ai-layer > .scroll-cue {
  bottom: 24px;
}

.pricing-section > .scroll-cue {
  bottom: 20px;
}

.dark-stage {
  background:
    radial-gradient(circle at 80% 22%, rgba(65, 167, 69, 0.16), transparent 28%),
    linear-gradient(180deg, #0B0D0C, var(--neutral800));
}

.light-stage {
  background:
    radial-gradient(circle at 18% 18%, rgba(92, 196, 212, 0.14), transparent 24%),
    linear-gradient(180deg, #F7EFE6, var(--white));
  color: var(--ink);
}

.journey > .setup-stage,
.journey > .equipment-stage,
.journey > #vault {
  width: 100vw;
  margin: clamp(42px, 5vw, 70px) 0 clamp(28px, 4vw, 48px);
  margin-left: calc(50% - 50vw);
  scroll-margin-top: 88px;
}

.journey > .equipment-stage {
  margin-top: 0;
  margin-bottom: clamp(42px, 5vw, 70px);
}

.journey > .setup-stage {
  margin-bottom: 0;
}

.journey > #vault {
  margin-top: 0;
  margin-bottom: 0;
}

.setup-stage {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
}

.setup-stage h2 {
  max-width: 720px;
  font-size: clamp(2.9rem, 4.95vw, 5.25rem);
  letter-spacing: -0.002em;
  line-height: 1.02;
}

.setup-grid {
  align-self: center;
}

.cook-system-stage {
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1.26fr);
  gap: clamp(28px, 4.2vw, 70px);
  padding-top: clamp(92px, 8vw, 118px);
  padding-bottom: max(clamp(80px, 8vw, 118px), 112px);
  background:
    radial-gradient(circle at 78% 24%, rgba(92, 196, 212, 0.15), transparent 28%),
    radial-gradient(circle at 14% 74%, rgba(114, 208, 120, 0.14), transparent 24%),
    linear-gradient(180deg, #0B0D0C 0%, #101311 48%, #0B0D0C 100%);
}

.cook-system-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.12), transparent 22%, transparent 78%, rgba(8, 8, 9, 0.18)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 42%);
  pointer-events: none;
}

.cook-system-stage .stage-copy {
  max-width: 560px;
}

.cook-system-stage h2 {
  max-width: 560px;
  font-size: clamp(2.65rem, 4.05vw, 4.35rem);
  letter-spacing: -0.001em;
  line-height: 1.02;
}

.cook-system-stage .stage-copy p:not(.kicker) {
  max-width: 520px;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.36;
}

.cook-flowline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 600px;
  margin-top: 24px;
}

.cook-flowline span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(114, 208, 120, 0.22);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 820;
}

.cook-system-stage .hand-scene {
  display: grid;
  min-height: min(590px, 58vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 72% 20%, rgba(65, 167, 69, 0.2), transparent 24%),
    radial-gradient(circle at 24% 76%, rgba(231, 142, 63, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.cook-system-stage .hand-scene::before {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: 0;
  border-radius: calc(var(--radius-brand) - 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.cook-system-stage .hand-scene::after {
  content: "";
  position: absolute;
  inset: auto 9% 9%;
  z-index: 0;
  height: 34%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(8, 8, 9, 0.15), transparent 68%);
  filter: blur(16px);
}

.cook-orbit {
  position: relative;
}

.cook-orbit-note {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 5px;
  width: min(220px, 34vw);
  padding: 14px 15px;
  border: 1px solid rgba(114, 208, 120, 0.22);
  border-radius: var(--radius-soft);
  background:
    radial-gradient(circle at 10% 0%, rgba(114, 208, 120, 0.16), transparent 42%),
    rgba(8, 8, 9, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.cook-orbit-note strong {
  color: var(--green-2);
  font-size: 0.92rem;
  font-weight: 900;
}

.cook-orbit-note span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.3;
}

.note-one {
  top: 12%;
  left: 6%;
}

.note-two {
  top: 24%;
  right: 7%;
}

.note-three {
  right: 10%;
  bottom: 10%;
}

.ingredient-stage {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 4.5vw, 72px);
  padding-top: clamp(104px, 9vw, 132px);
  background:
    radial-gradient(circle at 78% 40%, rgba(231, 142, 63, 0.16), transparent 34%),
    linear-gradient(180deg, #0A0B0B, #0B0D0C);
}

.ingredient-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("assets/d38eb57e-1af9-4851-ad8e-4942b7c14ca3.png") center right / cover no-repeat;
  opacity: 0.72;
  filter: saturate(1.08);
  pointer-events: none;
}

.ingredient-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 9, 0.96) 0%, rgba(8, 8, 9, 0.72) 34%, rgba(8, 8, 9, 0.34) 68%, rgba(8, 8, 9, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.28) 0%, rgba(8, 8, 9, 0.04) 48%, rgba(8, 8, 9, 0.42) 100%),
    radial-gradient(circle at 76% 50%, rgba(231, 142, 63, 0.16), transparent 34%);
  pointer-events: none;
}

.stage-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.ingredient-stage .stage-copy {
  max-width: 660px;
}

.ingredient-stage h2 {
  max-width: 600px;
  font-size: clamp(2.9rem, 4.4vw, 4.85rem);
  letter-spacing: -0.002em;
  line-height: 1.025;
}

.ingredient-stage .stage-copy p:not(.kicker) {
  max-width: 600px;
  font-size: clamp(0.98rem, 1.22vw, 1.14rem);
  line-height: 1.34;
}

.ingredient-prompts {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 10px;
  max-width: 660px;
  margin-top: 22px;
}

.ingredient-prompts span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(114, 208, 120, 0.22);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.15), transparent 48%),
    rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.16);
}

.stage-copy .kicker {
  color: var(--green-2);
}

.stage-copy p:not(.kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 1.45vw, 1.28rem);
  font-weight: 650;
  line-height: 1.32;
}

.light-stage .stage-copy p:not(.kicker) {
  color: rgba(14, 15, 17, 0.76);
}

.ingredient-bot-note {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 590px;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(114, 208, 120, 0.24);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 12% 0%, rgba(114, 208, 120, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.ingredient-bot-note img {
  width: 58px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-brand);
}

.ingredient-bot-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.94rem, 1.25vw, 1.06rem);
  font-weight: 760;
  line-height: 1.28;
}

.stage-copy a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 850;
}

.light-stage .stage-copy a {
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 10px;
  max-width: 570px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 780;
}

.feature-list.bright li {
  border-color: rgba(114, 208, 120, 0.3);
}

.vault-inputs {
  max-width: 570px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(114, 208, 120, 0.22);
  border-radius: var(--radius-soft);
  background:
    radial-gradient(circle at 16% 0%, rgba(114, 208, 120, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.vault-inputs p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 820;
  line-height: 1.25;
}

.vault-inputs div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vault-inputs span {
  --method-icon: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid rgba(114, 208, 120, 0.26);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(8, 8, 9, 0.34);
  color: var(--green-2);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.14);
  animation: vaultMethodFloat 5.6s ease-in-out infinite;
}

.vault-inputs span:nth-child(2) {
  animation-delay: 0.45s;
}

.vault-inputs span:nth-child(3) {
  animation-delay: 0.9s;
}

.vault-inputs span::before {
  content: "";
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--method-icon) center / contain no-repeat;
  mask: var(--method-icon) center / contain no-repeat;
  filter: drop-shadow(0 0 12px rgba(114, 208, 120, 0.36));
}

.vault-inputs span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, 0.16) 45%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
  animation: vaultMethodSheen 5.6s ease-in-out infinite;
  animation-delay: inherit;
}

.method-voice {
  --method-icon: url("assets/voice-command.svg");
}

.method-text {
  --method-icon: url("assets/font.svg");
}

.method-image {
  --method-icon: url("assets/photo-camera-interface-symbol-for-button.svg");
}

.vault-capture {
  max-width: 640px;
  margin-top: 24px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(114, 208, 120, 0.24);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 14% 0%, rgba(114, 208, 120, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.2);
}

.vault-capture-title {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.22rem, 1.7vw, 1.52rem);
  font-weight: 900;
  line-height: 1.08;
}

.vault-capture-copy {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  font-weight: 650;
  line-height: 1.38;
}

.vault-capture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vault-capture-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 184px;
  padding: 16px;
  border: 1px solid rgba(114, 208, 120, 0.2);
  border-radius: var(--radius-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(8, 8, 9, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 34px rgba(0, 0, 0, 0.18);
}

.vault-capture-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 12px rgba(114, 208, 120, 0.34));
}

.vault-capture-card strong {
  color: var(--green-2);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.12;
}

.vault-capture-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.34;
}

.vault-capture-note {
  margin: 14px 2px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.stage-art,
.hand-scene {
  position: relative;
  min-height: min(650px, 66vw);
}

.stage-art img,
.hand-scene img {
  position: absolute;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.vault-art {
  display: grid;
  place-items: center;
}

.vault-device {
  position: absolute;
  right: -5%;
  top: 50%;
  width: min(860px, 68vw);
  transform: translate3d(0, calc(-50% + var(--parallax-y, 0)), 0) rotate(-4deg);
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.42));
  animation: vaultDrift 8s ease-in-out infinite;
  will-change: transform;
}

.vault-device::before {
  content: "";
  position: absolute;
  inset: 10% 8% 12% 4%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(65, 167, 69, 0.28), transparent 68%);
  filter: blur(26px);
}

.vault-device img {
  position: relative;
  width: 100%;
  height: auto;
  transform: none;
}

.phone-lift {
  right: 2%;
  bottom: -6%;
  z-index: 3;
  width: min(560px, 54vw);
  filter: drop-shadow(var(--shadow));
  animation: floatSoft 7s ease-in-out infinite;
}

.phone-shadow {
  left: 0;
  top: 0;
  width: min(470px, 44vw);
  opacity: 0.78;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.34));
}

.hand-phone {
  right: 2%;
  bottom: -3%;
  z-index: 3;
  width: min(560px, 52vw);
  filter: drop-shadow(0 36px 66px rgba(0, 0, 0, 0.2));
  animation: floatSoft 8s ease-in-out infinite;
}

.floating-phone {
  left: 4%;
  top: 8%;
  z-index: 2;
  width: min(440px, 40vw);
  opacity: 0.98;
  filter: drop-shadow(0 30px 62px rgba(0, 0, 0, 0.22));
}

.cook-system-stage .hand-phone {
  right: -4%;
  bottom: -5%;
  width: min(610px, 56vw);
}

.cook-system-stage .floating-phone {
  left: 7%;
  top: 14%;
  width: min(430px, 38vw);
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(-8deg);
}

.ingredient-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ingredient-orbit span {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 850;
}

.object-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.object-grid article {
  position: relative;
  min-height: 220px;
  display: grid;
  align-items: end;
  padding: 20px;
  border-radius: var(--radius-brand);
  background: var(--neutral800);
  overflow: hidden;
  color: var(--white);
  font-size: clamp(1.45rem, 2.7vw, 2.6rem);
  font-weight: 950;
  box-shadow: var(--shadow-soft);
}

.equipment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.9;
  background-position: center;
  background-size: cover;
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.equipment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.02), rgba(8, 8, 9, 0.64));
}

.equipment-card:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.equipment-card:focus-visible {
  outline: 3px solid rgba(65, 167, 69, 0.3);
  outline-offset: 6px;
}

.equipment-card span {
  position: relative;
  z-index: 2;
  max-width: 90%;
  line-height: 0.96;
  transition:
    inset 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
}

.equipment-stage h2,
.press-copy h1,
.press-band h2,
.press-contact h2 {
  letter-spacing: -0.002em;
  line-height: 1.02;
}

.equipment-card ul {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 3;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-soft);
  background:
    radial-gradient(circle at 8% 0%, rgba(114, 208, 120, 0.18), transparent 36%),
    rgba(8, 8, 9, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
  list-style: none;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.34s ease 0.08s,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
}

.equipment-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  font-weight: 760;
  line-height: 1.18;
}

.equipment-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(114, 208, 120, 0.55);
}

.equipment-card:hover span,
.equipment-card:focus-visible span {
  position: absolute;
  inset: 18px 20px auto;
  opacity: 0.82;
  transform: none;
}

.air-fryer ul,
.microwave ul {
  gap: 6px;
  padding: 14px 16px;
}

.air-fryer li,
.microwave li {
  font-size: clamp(0.7rem, 0.78vw, 0.8rem);
  line-height: 1.12;
}

.equipment-card:hover ul,
.equipment-card:focus-visible ul {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.air-fryer::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(231, 142, 63, 0.18), rgba(0, 0, 0, 0)),
    url("assets/Air fryer.png") center / cover;
}

.microwave::before {
  background:
    linear-gradient(90deg, rgba(92, 196, 212, 0.2), transparent 52%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 26%),
    url("assets/equipment-microwave.png") center / cover;
}

.hob::before {
  background:
    radial-gradient(circle at 50% 48%, rgba(92, 196, 212, 0.26), transparent 10%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.13), transparent 28%),
    url("assets/Stove.png") center / cover;
}

.pan::before {
  background:
    radial-gradient(circle at 42% 42%, rgba(231, 142, 63, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    url("assets/Frying pan.png") center / cover;
}

.setup-card::before {
  background:
    radial-gradient(circle at var(--setup-light-x, 50%) var(--setup-light-y, 26%), rgba(114, 208, 120, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(8, 8, 9, 0.74)),
    url("assets/Stage 1.png") var(--setup-image-x, center) var(--setup-image-y, center) / var(--setup-image-size, 72%) no-repeat,
    linear-gradient(135deg, #171B18, #080909);
  transition:
    opacity 0.16s ease,
    transform 0.2s ease;
}

.setup-card::after {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.04), rgba(8, 8, 9, 0.68));
}

.setup-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 0%, rgba(114, 208, 120, 0.18), transparent 36%),
    rgba(8, 8, 9, 0.9);
  backdrop-filter: none;
  transform: translateY(6px);
  transition:
    opacity 0.06s linear,
    transform 0.08s ease;
}

.setup-card li {
  font-size: clamp(0.66rem, 0.74vw, 0.78rem);
  line-height: 1.12;
}

.setup-card span {
  transition:
    inset 0.08s ease,
    transform 0.08s ease,
    opacity 0.06s linear;
}

.setup-stage .setup-card {
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.setup-stage .setup-card:focus,
.setup-stage .setup-card:focus-visible,
.setup-card:focus:not(:focus-visible):not(:hover) {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.setup-stage .setup-card:focus::before,
.setup-stage .setup-card:focus-visible::before,
.setup-card:focus:not(:focus-visible):not(:hover)::before {
  transform: none;
}

.setup-stage .setup-card:focus span,
.setup-stage .setup-card:focus-visible span,
.setup-card:focus:not(:focus-visible):not(:hover) span {
  position: relative;
  inset: auto;
  opacity: 1;
}

.setup-stage .setup-card:focus ul,
.setup-stage .setup-card:focus-visible ul,
.setup-card:focus:not(:focus-visible):not(:hover) ul {
  opacity: 0;
  transform: translateY(6px);
}

.setup-stage .setup-card:hover,
.setup-stage .setup-card:hover::before {
  transition-duration: 0.16s;
}

.setup-stage .setup-card:hover span {
  position: absolute;
  inset: 18px 20px auto;
  opacity: 0.82;
}

.setup-stage .setup-card:hover ul {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.setup-dietary {
  --setup-light-x: 20%;
  --setup-light-y: 18%;
  --setup-image-x: 52%;
  --setup-image-y: 50%;
}

.setup-dietary::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.1), rgba(8, 8, 9, 0.72)),
    url("assets/dietary requirements.jfif") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.setup-meals::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/Family.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.setup-meals {
  --setup-light-x: 78%;
  --setup-light-y: 20%;
  --setup-image-x: 58%;
  --setup-image-y: 46%;
  --setup-image-size: 78%;
}

.setup-skill {
  --setup-light-x: 26%;
  --setup-light-y: 80%;
  --setup-image-x: 44%;
  --setup-image-y: 56%;
  --setup-image-size: 76%;
}

.setup-skill::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/Skill.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.setup-shopping {
  --setup-light-x: 82%;
  --setup-light-y: 72%;
  --setup-image-x: 56%;
  --setup-image-y: 54%;
  --setup-image-size: 74%;
}

.setup-shopping::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/shopping.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.setup-draft-stage .setup-dietary::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/Diary.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.setup-draft-stage .setup-meals::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/Daily Hub.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.setup-draft-stage .setup-skill::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/shopping.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.setup-draft-stage .setup-shopping::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/Budget.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.shopping-flow-stage .shopping-list::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/The List.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.shopping-flow-stage .shopping-budget::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/Budget.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.shopping-flow-stage .shopping-adapt::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/Adapt.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.shopping-flow-stage .shopping-update::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 208, 120, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.72)),
    url("assets/Update.png") center / cover,
    linear-gradient(135deg, #171B18, #080909);
}

.carrot-lab,
.ingredient-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  justify-items: center;
}

.ingredient-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ingredient-card {
  position: relative;
  display: grid;
  min-height: 224px;
  width: 100%;
  align-items: end;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius-brand);
  background: var(--neutral800);
  color: var(--white);
  font-size: clamp(1.35rem, 2.45vw, 2.4rem);
  font-weight: 950;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.ingredient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.92;
  background-position: center;
  background-size: cover;
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ingredient-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 18%, rgba(114, 208, 120, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.04), rgba(8, 8, 9, 0.72));
}

.ingredient-card:hover::before,
.ingredient-card:focus-visible::before {
  opacity: 1;
  transform: scale(1.04);
}

.ingredient-card:focus-visible {
  outline: 3px solid rgba(65, 167, 69, 0.3);
  outline-offset: 6px;
}

.ingredient-card span {
  position: relative;
  z-index: 2;
  max-width: 90%;
  line-height: 0.96;
  transition:
    inset 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
}

.ingredient-card ul {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 3;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-soft);
  background:
    radial-gradient(circle at 8% 0%, rgba(114, 208, 120, 0.18), transparent 36%),
    rgba(8, 8, 9, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
  list-style: none;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.34s ease 0.08s,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
}

.ingredient-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  font-weight: 760;
  line-height: 1.18;
}

.ingredient-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(114, 208, 120, 0.55);
}

.ingredient-card:hover span,
.ingredient-card:focus-visible span {
  position: absolute;
  inset: 18px 20px auto;
  opacity: 0.82;
}

.ingredient-card:hover ul,
.ingredient-card:focus-visible ul {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.carrot-hummus::before {
  background:
    radial-gradient(circle at 52% 44%, rgba(231, 142, 63, 0.26), transparent 30%),
    url("assets/Hummus.png") center / cover;
}

.carrot-fritters::before {
  background:
    radial-gradient(circle at 48% 52%, rgba(231, 142, 63, 0.22), transparent 28%),
    url("assets/Fritters.png") center / cover;
}

.carrot-smoothie::before {
  background:
    radial-gradient(circle at 42% 38%, rgba(231, 142, 63, 0.24), transparent 28%),
    url("assets/Ginger smoothie.png") center / cover;
}

.carrot-crisps::before {
  background:
    radial-gradient(circle at 52% 42%, rgba(231, 142, 63, 0.22), transparent 30%),
    url("assets/Carrot crisps_chips.png") center / cover;
}

.carrot-ideas {
  display: grid;
  width: min(860px, 100%);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.recipe-chip {
  position: relative;
  appearance: none;
  min-height: 148px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-brand);
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.82)),
    var(--recipe-image) center / cover,
    radial-gradient(circle at 45% 28%, rgba(231, 142, 63, 0.7), rgba(72, 30, 12, 0.85));
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  transition:
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.recipe-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.02), rgba(8, 8, 9, 0.72)),
    radial-gradient(circle at 18% 0%, rgba(255, 188, 118, 0.18), transparent 36%);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.recipe-chip.no-photo::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 188, 118, 0.45), transparent 36%),
    linear-gradient(160deg, rgba(231, 142, 63, 0.78), rgba(83, 30, 12, 0.94));
}

.recipe-chip span {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 94%;
  margin-top: auto;
  padding-top: 48px;
  color: var(--white);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  line-height: 1.02;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.58);
}

.recipe-chip:hover,
.recipe-chip:focus-visible {
  z-index: 8;
  border-color: rgba(255, 188, 118, 0.44);
  color: var(--white);
  outline: none;
  transform: translateY(-4px);
}

.recipe-chip:hover::before,
.recipe-chip:focus-visible::before {
  opacity: 0.78;
  transform: scale(1.06);
}

.recipe-chip small {
  position: absolute;
  inset: 8px;
  z-index: 9;
  display: grid;
  align-content: start;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 16% 0%, rgba(231, 142, 63, 0.24), transparent 34%),
    rgba(14, 12, 12, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.58rem, 0.66vw, 0.68rem);
  font-weight: 720;
  line-height: 1.18;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 0.28s ease,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.recipe-chip:hover small,
.recipe-chip:focus-visible small {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ai-layer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 196, 212, 0.12), transparent 30%),
    linear-gradient(180deg, var(--neutral800), #0B0D0C);
}

.ai-sparkfield {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ai-spark {
  position: absolute;
  width: clamp(28px, 2.6vw, 46px);
  opacity: 0.58;
  pointer-events: auto;
  cursor: pointer;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 18px rgba(114, 208, 120, 0.38))
    drop-shadow(0 0 42px rgba(92, 196, 212, 0.24));
  transition:
    opacity 0.28s ease,
    filter 0.28s ease;
}

.ai-spark::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(114, 208, 120, 0.24), rgba(92, 196, 212, 0.08) 38%, transparent 72%);
  opacity: 0;
  transform: scale(0.68);
  transition:
    opacity 0.32s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-spark:hover,
.ai-spark:focus-visible {
  opacity: 1;
  filter:
    brightness(0) saturate(100%) invert(86%) sepia(13%) saturate(829%) hue-rotate(66deg) brightness(95%) contrast(94%)
    drop-shadow(0 0 20px rgba(114, 208, 120, 0.78))
    drop-shadow(0 0 54px rgba(92, 196, 212, 0.42));
  animation: aiSparkHover 0.92s ease-in-out infinite alternate !important;
}

.ai-spark:hover::before,
.ai-spark:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.ai-spark img,
.ai-mark img {
  width: 100%;
  height: auto;
}

.spark-one {
  top: 15%;
  left: 22%;
}

.spark-two {
  top: 24%;
  right: 22%;
}

.spark-three {
  bottom: 22%;
  left: 20%;
}

.spark-four {
  bottom: 18%;
  right: 22%;
}

.spark-five {
  top: 46%;
  right: 10%;
  width: clamp(22px, 2vw, 36px);
}

.spark-six {
  top: 38%;
  left: 9%;
  width: clamp(24px, 2.2vw, 38px);
}

.spark-seven {
  bottom: 24%;
  right: 8%;
  width: clamp(24px, 2.2vw, 38px);
}

.ai-mark {
  position: relative;
  z-index: 1;
  width: clamp(78px, 6vw, 104px);
  margin: 0 auto 18px;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 18px rgba(114, 208, 120, 0.48))
    drop-shadow(0 0 50px rgba(92, 196, 212, 0.26));
}

.ai-layer > .kicker,
.ai-layer > h2,
.ai-layer > p {
  position: relative;
  z-index: 1;
}

.ai-layer > .scroll-cue {
  position: absolute;
  z-index: 1;
}

.is-enhanced .ai-mark {
  animation: aiMarkFloat 6s ease-in-out infinite;
}

.is-enhanced .spark-one {
  animation: aiSparkDrift 6.4s ease-in-out infinite;
}

.is-enhanced .spark-two {
  animation: aiSparkDrift 7.2s ease-in-out infinite reverse;
}

.is-enhanced .spark-three {
  animation: aiSparkPulse 5.8s ease-in-out infinite;
}

.is-enhanced .spark-four {
  animation: aiSparkPulse 6.8s ease-in-out infinite reverse;
}

.is-enhanced .spark-five {
  animation: aiSparkDrift 7.8s ease-in-out infinite;
}

.is-enhanced .spark-six {
  animation: aiSparkTwinkle 6.2s ease-in-out infinite;
}

.is-enhanced .spark-seven {
  animation: aiSparkTwinkle 7.1s ease-in-out infinite reverse;
}

.ai-layer p {
  color: rgba(255, 255, 255, 0.8);
}

.evolution-line {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
  margin: 28px auto 0;
}

.evolution-line span {
  --step-delay: 0s;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 11px 15px;
  overflow: hidden;
  border: 1px solid rgba(114, 208, 120, 0.22);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 820;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.14);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.evolution-line span:nth-child(2) {
  --step-delay: 0.4s;
}

.evolution-line span:nth-child(3) {
  --step-delay: 0.8s;
}

.evolution-line span:nth-child(4) {
  --step-delay: 1.2s;
}

.evolution-line span::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.54) 42%, transparent 66%),
    radial-gradient(circle at 50% 50%, rgba(114, 208, 120, 0.34), transparent 56%);
  opacity: 0;
  transform: translateX(-115%);
}

.is-enhanced .evolution-line span::before {
  animation: flowShine 7.2s ease-in-out infinite;
  animation-delay: var(--step-delay);
}

.evolution-line span:hover,
.evolution-line span:focus-visible {
  border-color: rgba(114, 208, 120, 0.42);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(65, 167, 69, 0.14);
}

@keyframes aiMarkFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.03);
  }
}

@keyframes aiSparkDrift {
  0%,
  100% {
    opacity: 0.32;
    transform: translateY(0) scale(0.96);
  }

  50% {
    opacity: 0.78;
    transform: translateY(-10px) scale(1.08);
  }
}

@keyframes aiSparkPulse {
  0%,
  100% {
    opacity: 0.26;
    transform: scale(0.94) rotate(0deg);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.08) rotate(4deg);
  }
}

@keyframes aiSparkTwinkle {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.92) rotate(-3deg);
    filter:
      brightness(0) invert(1)
      drop-shadow(0 0 12px rgba(114, 208, 120, 0.18))
      drop-shadow(0 0 24px rgba(92, 196, 212, 0.12));
  }

  45% {
    opacity: 0.86;
    transform: scale(1.12) rotate(4deg);
    filter:
      brightness(0) invert(1)
      drop-shadow(0 0 18px rgba(114, 208, 120, 0.56))
      drop-shadow(0 0 42px rgba(92, 196, 212, 0.28));
  }

  60% {
    opacity: 0.58;
    transform: scale(1.02) rotate(0deg);
  }
}

@keyframes aiSparkHover {
  0% {
    transform: translateY(0) scale(1.04) rotate(-3deg);
  }

  100% {
    transform: translateY(-8px) scale(1.24) rotate(5deg);
  }
}

.is-enhanced .note-one {
  animation: orbitNoteFloat 6.4s ease-in-out infinite;
}

.is-enhanced .note-two {
  animation: orbitNoteFloat 7.2s ease-in-out infinite reverse;
}

.is-enhanced .note-three {
  animation: orbitNoteFloat 6.8s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes orbitNoteFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes loopUnderline {
  0%,
  100% {
    opacity: 0.46;
    transform: scaleX(0.68);
  }

  45%,
  62% {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

.pricing-section {
  background: var(--white);
  color: var(--ink);
  padding-top: clamp(86px, 8vw, 118px);
  padding-bottom: clamp(78px, 8vw, 116px);
}

.pricing-intro {
  max-width: 980px;
  margin: 0 auto;
}

.pricing-intro h2 {
  font-size: clamp(2.85rem, 5vw, 5.15rem);
  line-height: 1;
}

.pricing-intro p:not(.kicker) {
  max-width: 780px;
  margin-inline: auto;
  color: rgba(8, 8, 9, 0.66);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 700;
  line-height: 1.34;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 34px auto 0;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.06), transparent 34%),
    var(--neutral800);
  color: var(--white);
  text-align: left;
  box-shadow: 0 26px 76px rgba(8, 8, 9, 0.16);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.plus {
  border: 1px solid rgba(231, 142, 63, 0.22);
  box-shadow:
    0 30px 82px rgba(8, 8, 9, 0.2),
    0 0 0 1px rgba(231, 142, 63, 0.12);
}

.essentials h3,
.essentials .plan-mark {
  color: var(--tomato400);
}

.plus h3,
.plus .plan-mark {
  color: var(--tangerine);
}

.plan-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin: 0 0 18px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius-brand);
  font-weight: 950;
}

.plan-badge {
  position: absolute;
  top: 26px;
  right: 26px;
  display: inline-flex;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(231, 142, 63, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(231, 142, 63, 0.12);
  color: var(--tangerine200);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card h3 {
  margin: 0 0 4px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1;
}

.plan-subtitle {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  font-weight: 800;
}

.price {
  margin-bottom: 12px;
  font-size: clamp(2.7rem, 4.5vw, 4.35rem);
  font-weight: 950;
  line-height: 1;
}

.price span {
  font-size: 0.48em;
}

.price small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.26em;
  font-weight: 750;
}

.annual-option {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  align-items: center;
  margin: 0 0 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
}

.annual-option strong {
  color: var(--white);
  font-weight: 950;
}

.annual-option span {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.essentials .annual-option span {
  background: rgba(248, 108, 110, 0.24);
  color: var(--tomato200);
}

.plus .annual-option span {
  background: rgba(231, 142, 63, 0.24);
  color: var(--tangerine200);
}

.save-pill {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--tangerine);
  color: var(--white);
  font-weight: 950;
}

.plan-summary {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 650;
  line-height: 1.38;
}

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

.price-card li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  font-weight: 720;
  line-height: 1.28;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 11vw, 150px) 20px;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.42), rgba(8, 8, 9, 0.88)),
    url("assets/hero-kitchen-phone.jpg") center / cover fixed;
  text-align: center;
}

.download-inner {
  max-width: 980px;
  margin: 0 auto;
}

.download-inner > img {
  width: min(320px, 72vw);
  height: auto;
  object-fit: contain;
  margin: 0 auto 26px;
}

.download-inner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 700;
}

.seo-faq-section {
  padding: clamp(76px, 8vw, 112px) clamp(20px, 6vw, 96px);
  background:
    radial-gradient(circle at 20% 16%, rgba(114, 208, 120, 0.12), transparent 28%),
    linear-gradient(180deg, #0B0D0C, #080809);
}

.seo-faq-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.seo-faq-inner .kicker {
  color: var(--green-2);
}

.seo-faq-inner h2 {
  max-width: 920px;
  font-size: clamp(2.55rem, 5.2vw, 5.2rem);
  line-height: 1.02;
}

.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.seo-faq-grid article {
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(114, 208, 120, 0.18);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 18% 0%, rgba(114, 208, 120, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.055);
}

.seo-faq-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.seo-faq-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.96rem, 1.25vw, 1.04rem);
  font-weight: 580;
  line-height: 1.5;
}

.seo-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.seo-topic-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(114, 208, 120, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.share-rail {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  top: 50%;
  z-index: 38;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 10px 8px;
  border: 1px solid rgba(114, 208, 120, 0.18);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.16), transparent 48%),
    rgba(8, 8, 9, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px) saturate(1.2);
  transform: translateY(-50%);
}

.share-rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.share-rail-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(114, 208, 120, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.share-rail-button:hover,
.share-rail-button:focus-visible {
  border-color: rgba(114, 208, 120, 0.44);
  background: rgba(65, 167, 69, 0.22);
  color: var(--kiwi100);
  transform: translateY(-2px);
}

.share-rail-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-rail-status {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  min-width: 62px;
  padding: 6px 9px;
  border-radius: var(--radius-pill);
  background: rgba(8, 8, 9, 0.76);
  color: var(--kiwi100);
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
  transform: translateY(-50%);
}

.share-rail-status:empty {
  display: none;
}

footer {
  display: grid;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px) 42px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.footer-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

footer p {
  margin: 0;
}

footer a {
  color: inherit;
}

.footer-link-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.footer-link-button:hover,
.footer-link-button:focus-visible,
footer a:hover,
footer a:focus-visible {
  color: var(--white);
}

.footer-caveat {
  max-width: 1180px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: clamp(14px, 2.5vw, 34px);
  bottom: clamp(14px, 2.5vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 2.6vw, 32px);
  width: min(860px, calc(100vw - 28px));
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(114, 208, 120, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 8%, rgba(114, 208, 120, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(28, 31, 29, 0.98), rgba(9, 10, 10, 0.98));
  color: var(--white);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.18);
}

.cookie-consent-copy {
  display: grid;
  gap: 8px;
}

.cookie-consent .kicker,
.cookie-modal .kicker {
  margin: 0;
  color: var(--green-2);
  font-size: 0.78rem;
}

.cookie-consent h2,
.cookie-modal h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.04;
  letter-spacing: -0.005em;
}

.cookie-consent p,
.cookie-modal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.42;
}

.cookie-consent-links,
.cookie-modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.cookie-consent-links a,
.cookie-modal-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-consent > .cookie-actions {
  flex-direction: column;
  align-items: stretch;
  min-width: 164px;
}

.cookie-button {
  appearance: none;
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid rgba(114, 208, 120, 0.22);
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(114, 208, 120, 0.5);
}

.cookie-button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(65, 167, 69, 0.28);
}

.cookie-button.secondary {
  background: rgba(114, 208, 120, 0.12);
  color: var(--white);
}

.cookie-button.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
}

.cookie-modal {
  position: fixed;
  z-index: 1001;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 4, 4, 0.68);
  backdrop-filter: blur(10px);
}

.cookie-modal-panel {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(114, 208, 120, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(114, 208, 120, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(31, 34, 32, 0.98), rgba(9, 10, 10, 0.98));
  color: var(--white);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.54);
}

.cookie-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-form {
  display: grid;
  gap: 14px;
}

.cookie-toggle {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.cookie-toggle strong,
.cookie-toggle small {
  display: block;
}

.cookie-toggle strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
}

.cookie-toggle small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch {
  position: relative;
  width: 54px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.cookie-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-switch {
  border-color: rgba(114, 208, 120, 0.52);
  background: rgba(65, 167, 69, 0.62);
}

.cookie-toggle input:checked + .cookie-switch::after {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-switch {
  opacity: 0.72;
}

@media (max-width: 760px) {
  .research-main {
    align-items: start;
    padding: 18px;
  }

  .research-card {
    border-radius: 22px;
  }

  .research-form {
    grid-template-columns: 1fr;
  }

  .research-button {
    width: 100%;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: auto;
    max-height: calc(100vh - 24px);
    overflow: auto;
  }

  .cookie-consent > .cookie-actions,
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }
}

.footer-caveat summary {
  width: fit-content;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
  list-style: none;
}

.footer-caveat summary::-webkit-details-marker {
  display: none;
}

.footer-caveat summary::after {
  content: "+";
  display: inline-block;
  margin-left: 8px;
  color: var(--green-2);
  font-weight: 950;
}

.footer-caveat[open] summary::after {
  content: "-";
}

.footer-caveat-copy {
  display: grid;
  gap: 10px;
  max-width: 1040px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  line-height: 1.45;
}

.press-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 18%, rgba(92, 196, 212, 0.16), transparent 26%),
    radial-gradient(circle at 16% 24%, rgba(114, 208, 120, 0.14), transparent 24%),
    linear-gradient(180deg, #0B0D0C 0%, #080809 100%);
}

.privacy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 10%, rgba(92, 196, 212, 0.12), transparent 26%),
    radial-gradient(circle at 14% 18%, rgba(114, 208, 120, 0.16), transparent 26%),
    linear-gradient(180deg, #0B0D0C 0%, #080809 100%);
}

.press-main {
  display: grid;
  gap: clamp(44px, 6vw, 84px);
  padding: clamp(118px, 12vw, 154px) clamp(20px, 6vw, 96px) clamp(72px, 9vw, 110px);
}

.privacy-main {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  padding: clamp(118px, 12vw, 154px) clamp(18px, 6vw, 96px) clamp(72px, 9vw, 110px);
}

.privacy-hero,
.privacy-card {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.privacy-hero {
  display: grid;
  gap: 12px;
  text-align: center;
}

.privacy-hero .kicker {
  color: var(--green-2);
}

.privacy-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 7vw, 6.7rem);
  line-height: 1;
}

.privacy-hero p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 750;
}

.privacy-card {
  display: grid;
  gap: 30px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 0%, rgba(114, 208, 120, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.24);
}

.privacy-card section {
  display: grid;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.privacy-card h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.08;
}

.privacy-card h3 {
  margin: 10px 0 0;
  color: var(--green-2);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.18;
}

.privacy-card p,
.privacy-card li,
.privacy-card address {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  font-style: normal;
  font-weight: 560;
  line-height: 1.58;
}

.privacy-card p,
.privacy-card ul,
.privacy-card address {
  margin: 0;
}

.privacy-card ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2rem;
}

.privacy-card li::marker {
  color: var(--green-2);
}

.privacy-card a {
  color: var(--green-2);
  font-weight: 850;
}

.research-page {
  --care-blue: #3744D9;
  --care-cyan: #37D1FE;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(55, 209, 254, 0.18), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(55, 68, 217, 0.26), transparent 30%),
    linear-gradient(180deg, #071026 0%, #050712 100%);
  color: var(--white);
}

.research-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
}

.research-card {
  display: grid;
  gap: 18px;
  width: min(920px, 100%);
  padding: clamp(22px, 5vw, 52px);
  border: 1px solid rgba(55, 209, 254, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(55, 209, 254, 0.15), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(55, 68, 217, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 92px rgba(0, 0, 0, 0.28);
}

.research-card[hidden],
[data-questionnaire][hidden],
[data-access-card][hidden],
.research-card[data-success-card][hidden],
.access-error[hidden] {
  display: none !important;
}

.access-card {
  max-width: 620px;
}

.research-logo {
  width: min(188px, 56vw);
  height: auto;
  object-fit: contain;
}

.research-logo.care-logo {
  width: min(260px, 70vw);
}

.research-card h1,
.research-card h2 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.02;
}

.research-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 650;
  line-height: 1.45;
}

.research-note {
  padding: 14px 16px;
  border: 1px solid rgba(55, 209, 254, 0.28);
  border-radius: 16px;
  background: rgba(55, 209, 254, 0.08);
}

.access-form,
.research-form {
  display: grid;
  gap: 18px;
}

.research-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.research-field,
.access-form {
  display: grid;
  gap: 8px;
}

.research-field {
  grid-column: 1 / -1;
}

.research-field.two-up {
  grid-column: auto;
}

.research-field label,
.access-form label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.3;
}

.research-field input,
.research-field textarea,
.access-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
}

.research-field input,
.access-form input {
  min-height: 48px;
  padding: 12px 14px;
}

.research-field textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
}

.research-field input:focus,
.research-field textarea:focus,
.access-form input:focus {
  outline: 3px solid rgba(55, 209, 254, 0.22);
  border-color: rgba(55, 209, 254, 0.58);
}

.access-error {
  color: var(--tomato100) !important;
  font-size: 0.92rem !important;
}

.hidden-field {
  display: none;
}

.research-button {
  justify-self: start;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--care-blue), var(--care-cyan));
  color: var(--white);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(55, 68, 217, 0.28);
}

.research-button:hover,
.research-button:focus-visible {
  filter: brightness(1.08);
}

.research-button:disabled {
  cursor: wait;
  filter: saturate(0.72);
  opacity: 0.68;
}

.research-card:focus {
  outline: none;
}

.care-mvp-card {
  width: min(1280px, 100%);
}

.care-mvp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

.care-mvp-form select,
.research-field select {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-weight: 650;
  padding: 12px 14px;
}

.care-mvp-form option,
.research-field option {
  color: #111;
}

.care-mvp-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(55, 209, 254, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.care-mvp-checks legend {
  grid-column: 1 / -1;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.care-mvp-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.care-mvp-checks input {
  accent-color: var(--care-cyan);
}

.care-plan-output {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(55, 209, 254, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 0%, rgba(55, 209, 254, 0.18), transparent 32%),
    radial-gradient(circle at 10% 20%, rgba(55, 68, 217, 0.24), transparent 36%),
    rgba(7, 9, 13, 0.7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.care-plan-output h3,
.care-plan-section h4 {
  margin: 0;
  color: #fff;
}

.care-plan-output h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.02;
}

.care-plan-output p {
  margin: 0;
}

.care-plan-section {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.care-plan-section ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

@media (max-width: 960px) {
  .care-mvp-layout {
    grid-template-columns: 1fr;
  }

  .care-plan-output {
    position: static;
  }
}

@media (max-width: 620px) {
  .care-mvp-checks {
    grid-template-columns: 1fr;
  }
}

.fridge-raid-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(76, 175, 80, 0.18), transparent 34rem),
    #000;
  color: #fff;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fridge-raid-shell {
  display: grid;
  align-items: center;
  min-height: 100vh;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 7vw, 72px) clamp(18px, 5vw, 48px);
}

.fridge-raid-hero,
.fridge-raid-results {
  display: grid;
  gap: clamp(18px, 4vw, 28px);
}

.fridge-raid-logo {
  width: clamp(118px, 35vw, 190px);
  height: auto;
  object-fit: contain;
}

.fridge-raid-kicker {
  margin: 0;
  color: #4CAF50;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fridge-raid-page h1,
.fridge-raid-page h2 {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 13vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.fridge-raid-page h2 {
  font-size: clamp(2.45rem, 10vw, 5.6rem);
}

.fridge-raid-subhead,
.fridge-raid-cta p,
.fridge-raid-results > p:not(.fridge-raid-kicker) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 3.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}

.fridge-raid-form {
  display: grid;
  gap: 14px;
  width: min(680px, 100%);
}

.fridge-raid-form label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 800;
}

.fridge-raid-form textarea {
  width: 100%;
  min-height: 128px;
  resize: vertical;
  border: 1px solid rgba(76, 175, 80, 0.45);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.45;
  padding: 18px 20px;
}

.fridge-raid-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.fridge-raid-form textarea:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.18);
  outline: none;
}

.fridge-raid-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: #4CAF50;
  color: #fff;
  box-shadow: 0 18px 44px rgba(76, 175, 80, 0.28);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.fridge-raid-button:hover,
.fridge-raid-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(76, 175, 80, 0.34);
}

.fridge-raid-button:disabled {
  cursor: wait;
  filter: saturate(0.75);
  opacity: 0.7;
  transform: none;
}

.fridge-raid-cards {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.fridge-raid-card,
.fridge-raid-cta {
  border: 1px solid rgba(76, 175, 80, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(76, 175, 80, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.06);
  padding: clamp(18px, 5vw, 28px);
}

.fridge-raid-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.35rem, 5vw, 2rem);
  line-height: 1.04;
}

.fridge-raid-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 3.6vw, 1.1rem);
  font-weight: 650;
  line-height: 1.48;
}

.fridge-raid-cta {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.fridge-raid-reset {
  justify-self: start;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fridge-raid-error {
  margin: 0;
  color: var(--tomato200);
  font-weight: 750;
}

.fridge-raid-results[hidden],
.fridge-raid-hero[hidden],
.fridge-raid-error[hidden] {
  display: none !important;
}

.desktop-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(76, 175, 80, 0.2), transparent 34rem),
    radial-gradient(circle at 10% 18%, rgba(76, 175, 80, 0.1), transparent 30rem),
    #080809;
  color: #fff;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.desktop-shell {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 7vw, 72px) clamp(18px, 5vw, 48px);
}

.desktop-hero {
  display: grid;
  gap: 16px;
}

.desktop-content {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.desktop-content[hidden],
.desktop-access-card[hidden],
.desktop-error[hidden] {
  display: none !important;
}

.desktop-access-card {
  display: grid;
  gap: 18px;
  width: min(720px, 100%);
  margin: min(8vh, 72px) auto 0;
  padding: clamp(24px, 6vw, 52px);
  border: 1px solid rgba(76, 175, 80, 0.32);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(76, 175, 80, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.desktop-access-card p:not(.desktop-kicker),
.desktop-error {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.desktop-access-form {
  display: grid;
  gap: 12px;
}

.desktop-access-form label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 850;
}

.desktop-access-form input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(76, 175, 80, 0.35);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 12px 15px;
}

.desktop-access-form input:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.18);
  outline: none;
}

.desktop-access-button {
  justify-self: start;
  min-height: 50px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: #4CAF50;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.desktop-error {
  color: var(--tomato200);
}

.desktop-logo {
  width: clamp(122px, 26vw, 190px);
  height: auto;
  object-fit: contain;
}

.desktop-kicker {
  margin: 0;
  color: #4CAF50;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-page h1,
.desktop-page h2 {
  margin: 0;
  color: #fff;
  letter-spacing: -0.025em;
}

.desktop-page h1 {
  max-width: 760px;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 0.92;
}

.desktop-page h2 {
  font-size: clamp(1.7rem, 5vw, 3rem);
  line-height: 0.98;
}

.desktop-hero p:not(.desktop-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
}

.desktop-section {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(76, 175, 80, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(76, 175, 80, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

.desktop-section.compact {
  border-radius: 24px;
}

.desktop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.desktop-tile {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  color: #fff;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.desktop-tile:hover,
.desktop-tile:focus-visible {
  border-color: rgba(76, 175, 80, 0.74);
  background:
    radial-gradient(circle at 70% 20%, rgba(76, 175, 80, 0.2), transparent 36%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 54px rgba(76, 175, 80, 0.13);
  transform: translateY(-2px);
  outline: none;
}

.desktop-tile span {
  font-size: clamp(1.2rem, 3.4vw, 1.8rem);
  font-weight: 900;
  line-height: 1.02;
}

.desktop-tile small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.desktop-tile.primary {
  border-color: rgba(76, 175, 80, 0.5);
}

.desktop-tile.care {
  border-color: rgba(55, 209, 254, 0.26);
}

.desktop-tile.prototype {
  border-color: rgba(76, 175, 80, 0.32);
}

.desktop-tile.pending {
  cursor: default;
  opacity: 0.62;
}

.desktop-tile.pending:hover,
.desktop-tile.pending:focus-visible {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: none;
  transform: none;
}

.desktop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.desktop-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(76, 175, 80, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 880px) {
  .desktop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .desktop-grid {
    grid-template-columns: 1fr;
  }

  .desktop-tile {
    min-height: 120px;
  }
}

.marketing-brain-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 76% -12%, rgba(65, 167, 69, 0.2), transparent 32rem),
    radial-gradient(circle at 16% 12%, rgba(92, 196, 212, 0.08), transparent 34rem),
    linear-gradient(180deg, #080809 0%, #0e0f11 100%);
  color: #fff;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.marketing-brain-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 7vw, 72px) clamp(18px, 5vw, 48px);
}

.marketing-brain-content {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}

.marketing-brain-content[hidden],
.brain-empty[hidden],
.brain-section[hidden] {
  display: none !important;
}

.marketing-brain-hero {
  display: grid;
  gap: 16px;
  padding-bottom: clamp(12px, 3vw, 28px);
}

.brain-back-link {
  width: max-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.marketing-brain-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 11vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.marketing-brain-hero p:not(.desktop-kicker) {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.03rem, 2.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.brain-actions,
.brain-nav,
.brain-copy-bank {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brain-actions a,
.brain-nav a,
.brain-copy-bank button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid rgba(65, 167, 69, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.brain-copy-bank button {
  cursor: pointer;
}

.brain-copy-bank button[data-copied="true"] {
  border-color: rgba(92, 196, 212, 0.64);
  background: rgba(92, 196, 212, 0.16);
}

.brain-command-centre {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brain-command-centre article,
.brain-card,
.brain-tools,
.brain-section,
.brain-quote-card,
.brain-empty {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 88% 0%, rgba(65, 167, 69, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.brain-command-centre article {
  min-height: 170px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(18px, 3vw, 24px);
  border-radius: 28px;
}

.brain-command-centre article.warning,
.brain-card.caution {
  border-color: rgba(247, 79, 81, 0.28);
  background:
    radial-gradient(circle at 92% 0%, rgba(247, 79, 81, 0.11), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.brain-command-centre span {
  color: var(--kiwi400);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brain-command-centre strong {
  color: #fff;
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  line-height: 1.03;
}

.brain-command-centre p,
.brain-card p,
.brain-card li,
.brain-quote-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  line-height: 1.5;
}

.brain-tools {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 26px);
  border-radius: 28px;
}

.brain-tools label {
  color: #fff;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 900;
}

.brain-tools input {
  min-height: 58px;
  width: 100%;
  border: 1px solid rgba(65, 167, 69, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font: inherit;
  font-weight: 750;
  padding: 12px 20px;
}

.brain-tools input:focus {
  border-color: var(--kiwi500);
  box-shadow: 0 0 0 4px rgba(65, 167, 69, 0.17);
  outline: none;
}

.brain-section-list {
  display: grid;
  gap: clamp(20px, 4vw, 34px);
}

.brain-section {
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  padding: clamp(20px, 5vw, 34px);
  border-radius: 34px;
}

.brain-section-head {
  display: grid;
  gap: 8px;
}

.brain-section h2,
.brain-card h3 {
  margin: 0;
  color: #fff;
}

.brain-section h2 {
  font-size: clamp(1.85rem, 5vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.brain-card {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 24px);
  border-radius: 26px;
}

.brain-card.confirmed {
  border-color: rgba(65, 167, 69, 0.34);
}

.brain-card.internal {
  border-color: rgba(92, 196, 212, 0.24);
}

.brain-card h3 {
  font-size: clamp(1rem, 2.4vw, 1.28rem);
  line-height: 1.1;
}

.brain-card ul,
.brain-card ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.15rem;
}

.brain-grid-two,
.brain-grid-three,
.brain-metric-grid {
  display: grid;
  gap: 14px;
}

.brain-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brain-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brain-problem-strip,
.brain-metric-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brain-problem-strip {
  display: grid;
  gap: 10px;
}

.brain-problem-strip span,
.brain-metric-grid span {
  display: flex;
  min-height: 96px;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(65, 167, 69, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
}

.brain-quote-card {
  padding: clamp(22px, 5vw, 46px);
  border-radius: 32px;
}

.brain-quote-card p {
  max-width: 920px;
  color: #fff;
  font-size: clamp(2rem, 7vw, 5.1rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.brain-quote-card.quiet p {
  color: var(--kiwi300);
}

.brain-empty {
  padding: 24px;
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

@media (max-width: 980px) {
  .brain-command-centre,
  .brain-grid-three,
  .brain-problem-strip,
  .brain-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .brain-command-centre,
  .brain-grid-two,
  .brain-grid-three,
  .brain-problem-strip,
  .brain-metric-grid {
    grid-template-columns: 1fr;
  }

  .marketing-brain-hero h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }
}

.command-centre-page {
  background:
    radial-gradient(circle at 78% -8%, rgba(65, 167, 69, 0.2), transparent 30rem),
    linear-gradient(180deg, #080809 0 520px, #f4f7f1 520px 100%);
  color: var(--black);
}

.command-centre-shell {
  width: min(1320px, 100%);
}

.command-centre-content {
  gap: clamp(20px, 3.8vw, 42px);
}

.command-centre-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 12%, rgba(65, 167, 69, 0.22), transparent 28rem),
    linear-gradient(145deg, rgba(36, 37, 41, 0.92), rgba(8, 8, 9, 0.96));
  box-shadow: 0 34px 90px rgba(8, 8, 9, 0.22);
}

.command-centre-hero::after {
  content: "";
  position: absolute;
  inset: auto 34px 34px auto;
  width: min(280px, 34vw);
  aspect-ratio: 1;
  border: 1px solid rgba(65, 167, 69, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(65, 167, 69, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.command-centre-hero > * {
  position: relative;
  z-index: 1;
}

.command-centre-hero h1 {
  max-width: 1080px;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 7.2rem);
}

.command-centre-hero p:not(.desktop-kicker) {
  max-width: 880px;
  color: rgba(249, 251, 255, 0.74);
}

.command-centre-page .brain-back-link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(249, 251, 255, 0.84);
}

.command-centre-page .brain-actions a {
  border-color: rgba(65, 167, 69, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.command-principle,
.command-tools,
.command-centre-page .brain-section,
.command-panel,
.command-focus-card,
.command-centre-page .brain-card,
.opportunity-card,
.generator-prototype,
.command-centre-page .brain-empty {
  border: 1px solid rgba(14, 15, 17, 0.08);
  background: rgba(249, 251, 255, 0.9);
  box-shadow: 0 24px 70px rgba(8, 8, 9, 0.08);
}

.command-principle {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: end;
  padding: clamp(24px, 5vw, 42px);
  border-radius: 34px;
}

.command-principle h2,
.command-centre-page .brain-section h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.command-principle p,
.command-centre-page .brain-section-head > p:not(.desktop-kicker) {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--neutral500);
  font-weight: 650;
  line-height: 1.55;
}

.command-principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.command-principle-grid article {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 24px;
  background: #fff;
}

.command-principle-grid span,
.command-label,
.command-panel-head span,
.radar-card span,
.creative-module span,
.retrospective-grid span,
.analytics-source-grid span,
.ai-layer-stack span,
.campaign-feed small,
.status-pill {
  color: var(--kiwi700);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.command-principle-grid strong {
  color: var(--black);
  font-size: 1.1rem;
  line-height: 1.12;
}

.command-tools {
  position: sticky;
  top: 18px;
  z-index: 4;
  border-radius: 28px;
  backdrop-filter: blur(18px);
}

.command-centre-page .brain-tools label {
  color: var(--black);
}

.command-centre-page .brain-tools input {
  border-color: rgba(65, 167, 69, 0.24);
  background: #fff;
  color: var(--black);
}

.command-centre-page .brain-nav a,
.command-centre-page .brain-copy-bank button {
  border-color: rgba(14, 15, 17, 0.08);
  background: #fff;
  color: var(--neutral700);
}

.command-section-list {
  gap: clamp(20px, 4vw, 38px);
}

.command-centre-page .brain-section {
  gap: clamp(18px, 4vw, 30px);
  padding: clamp(22px, 5vw, 42px);
  border-radius: 36px;
}

.command-centre-page .brain-card {
  background: #fff;
  color: var(--black);
}

.command-centre-page .brain-card h3 {
  color: var(--black);
}

.command-centre-page .brain-card p,
.command-centre-page .brain-card li,
.command-centre-page .brain-section p,
.command-centre-page .brain-section li {
  color: var(--neutral500);
}

.command-centre-page .brain-card.confirmed {
  border-color: rgba(65, 167, 69, 0.22);
}

.command-centre-page .brain-card.caution,
.command-focus-card.warning {
  border-color: rgba(247, 79, 81, 0.2);
  background: #fff9f9;
}

.command-dashboard-grid,
.command-home-layout,
.ai-layer-stack,
.campaign-feed,
.radar-grid,
.creative-suite,
.analytics-source-grid,
.retrospective-grid,
.memory-layout,
.module-map-grid {
  display: grid;
  gap: 14px;
}

.command-dashboard-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.command-focus-card {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(20px, 4vw, 28px);
  border-radius: 30px;
}

.command-focus-card strong {
  color: var(--black);
  font-size: clamp(1.45rem, 3.5vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.command-focus-card p,
.command-panel p,
.opportunity-card p,
.radar-card p,
.creative-module p,
.generator-prototype p,
.approval-table span,
.database-table span,
.competitor-watch p,
.weekly-check-grid span,
.approval-flow span,
.module-map-grid span {
  margin: 0;
  color: var(--neutral500);
  font-weight: 650;
  line-height: 1.45;
}

.command-home-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
}

.command-panel {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 28px);
  border-radius: 30px;
}

.command-panel-head {
  display: grid;
  gap: 6px;
}

.command-panel-head strong {
  color: var(--black);
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  line-height: 1.05;
}

.command-action-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 1.15rem;
}

.command-action-list li {
  color: var(--neutral500);
  font-weight: 650;
}

.command-action-list strong {
  color: var(--black);
}

.approval-mini-list,
.opportunity-recommendations,
.weekly-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.approval-mini-list span,
.opportunity-recommendations span,
.weekly-check-grid span,
.module-map-grid span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 999px;
  background: #fff;
  color: var(--neutral700);
  font-size: 0.86rem;
  font-weight: 800;
}

.ai-layer-stack {
  grid-template-columns: repeat(7, minmax(150px, 1fr));
}

.ai-layer-stack article,
.campaign-feed article,
.radar-card,
.creative-module,
.analytics-source-grid article,
.retrospective-grid article,
.competitor-watch article {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 24px;
  background: #fff;
}

.ai-layer-stack strong,
.campaign-feed strong,
.radar-card strong,
.creative-module strong,
.analytics-source-grid strong,
.competitor-watch strong {
  color: var(--black);
  font-size: 1.08rem;
  line-height: 1.1;
}

.ai-layer-stack p,
.campaign-feed p,
.radar-card p,
.creative-module p,
.analytics-source-grid p,
.retrospective-grid p,
.competitor-watch p {
  font-size: 0.9rem;
}

.campaign-feed,
.analytics-source-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-pill {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(65, 167, 69, 0.12);
}

.status-pill.data {
  color: #1c7684;
  background: rgba(92, 196, 212, 0.15);
}

.status-pill.approval {
  color: var(--tangerine700);
  background: rgba(231, 142, 63, 0.15);
}

.radar-grid,
.retrospective-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.opportunity-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: end;
  padding: clamp(22px, 5vw, 38px);
  border-radius: 32px;
}

.opportunity-card h3 {
  margin: 8px 0 10px;
  color: var(--black);
  font-size: clamp(1.6rem, 4.5vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.creative-suite,
.memory-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.creative-module button {
  justify-self: start;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--kiwi600);
  color: #fff;
  cursor: default;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 900;
}

.generator-prototype {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 20px;
  padding: clamp(20px, 4vw, 28px);
  border-radius: 30px;
}

.generator-prototype h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.generator-fields {
  display: grid;
  gap: 12px;
}

.generator-fields label {
  display: grid;
  gap: 8px;
  color: var(--neutral500);
  font-size: 0.86rem;
  font-weight: 900;
}

.generator-fields input,
.generator-fields textarea {
  width: 100%;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 18px;
  background: #fff;
  color: var(--black);
  font: inherit;
  font-weight: 650;
  padding: 13px 15px;
}

.generator-fields textarea {
  resize: vertical;
}

.approval-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.approval-flow span {
  min-height: 110px;
  display: flex;
  align-items: end;
  padding: 15px;
  border: 1px solid rgba(65, 167, 69, 0.2);
  border-radius: 22px;
  background: #fff;
  color: var(--black);
  font-weight: 900;
}

.approval-table,
.database-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 24px;
  background: #fff;
}

.approval-table [role="row"],
.database-table [role="row"] {
  display: grid;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(14, 15, 17, 0.07);
}

.approval-table [role="row"] {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
}

.database-table [role="row"] {
  grid-template-columns: 0.75fr 0.9fr 1.35fr;
}

.approval-table [role="row"]:last-child,
.database-table [role="row"]:last-child {
  border-bottom: 0;
}

.approval-table strong,
.database-table strong {
  color: var(--black);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.competitor-watch {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.competitor-watch h3 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--black);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
}

.module-map-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.command-centre-page .brain-copy-bank button[data-copied="true"] {
  border-color: rgba(65, 167, 69, 0.32);
  background: rgba(65, 167, 69, 0.12);
  color: var(--kiwi800);
}

@media (max-width: 1180px) {
  .ai-layer-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .approval-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .command-principle,
  .command-home-layout,
  .opportunity-card,
  .generator-prototype {
    grid-template-columns: 1fr;
  }

  .command-dashboard-grid,
  .campaign-feed,
  .creative-suite,
  .analytics-source-grid,
  .memory-layout,
  .radar-grid,
  .retrospective-grid,
  .competitor-watch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approval-table [role="row"],
  .database-table [role="row"] {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .command-centre-page {
    background:
      linear-gradient(180deg, #080809 0 460px, #f4f7f1 460px 100%);
  }

  .command-centre-hero {
    border-radius: 28px;
  }

  .command-principle-grid,
  .command-dashboard-grid,
  .campaign-feed,
  .creative-suite,
  .analytics-source-grid,
  .memory-layout,
  .radar-grid,
  .retrospective-grid,
  .competitor-watch,
  .ai-layer-stack,
  .approval-flow {
    grid-template-columns: 1fr;
  }

  .command-tools {
    position: static;
  }
}

.command-centre-page {
  background:
    radial-gradient(circle at 74% 0, rgba(65, 167, 69, 0.2), transparent 32rem),
    linear-gradient(180deg, #080809 0 520px, #f4f7f1 520px 100%);
  color: var(--black);
}

.command-centre-page,
.command-centre-page * {
  letter-spacing: 0;
}

.command-centre-shell {
  width: min(1340px, 100%);
}

.command-centre-content {
  gap: 32px;
}

.command-centre-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 44px;
  border: 1px solid rgba(249, 251, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 16%, rgba(65, 167, 69, 0.22), transparent 24rem),
    linear-gradient(145deg, rgba(36, 37, 41, 0.94), rgba(8, 8, 9, 0.98));
  box-shadow: 0 34px 90px rgba(8, 8, 9, 0.24);
}

.command-centre-hero::after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(65, 167, 69, 0.25);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(65, 167, 69, 0.18), transparent 62%);
  pointer-events: none;
}

.command-centre-hero > * {
  position: relative;
  z-index: 1;
}

.command-centre-hero h1,
.command-centre-page .brain-section h2,
.mission-command strong,
.reasoning-card h3 {
  letter-spacing: 0;
}

.command-centre-hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: 5.8rem;
  line-height: 0.95;
}

.command-centre-hero p:not(.desktop-kicker) {
  max-width: 820px;
  color: rgba(249, 251, 255, 0.74);
}

.hero-status-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.hero-status-rail span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(249, 251, 255, 0.12);
  border-radius: 999px;
  background: rgba(249, 251, 255, 0.07);
  color: rgba(249, 251, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.command-centre-page .brain-back-link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(249, 251, 255, 0.84);
}

.command-centre-page .brain-actions a {
  border-color: rgba(65, 167, 69, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.command-tools,
.command-centre-page .brain-section,
.mission-command,
.signal-card,
.sync-panel,
.reasoning-score,
.channel-card,
.pipeline-board article,
.campaign-table,
.reasoning-card,
.studio-preview,
.studio-tools article,
.calendar-panel,
.approval-console,
.brain-card,
.memory-operating-grid article,
.retro-console article,
.database-table,
.command-centre-page .brain-empty {
  border: 1px solid rgba(14, 15, 17, 0.08);
  background: rgba(249, 251, 255, 0.92);
  box-shadow: 0 24px 70px rgba(8, 8, 9, 0.08);
}

.command-tools {
  position: sticky;
  top: 18px;
  z-index: 6;
  border-radius: 28px;
  backdrop-filter: blur(18px);
}

.command-centre-page .brain-tools label {
  color: var(--black);
}

.command-centre-page .brain-tools input {
  border-color: rgba(65, 167, 69, 0.24);
  background: #fff;
  color: var(--black);
}

.command-centre-page .brain-nav a,
.command-centre-page .brain-copy-bank button {
  border-color: rgba(14, 15, 17, 0.08);
  background: #fff;
  color: var(--neutral700);
}

.command-section-list {
  gap: 34px;
}

.command-centre-page .brain-section {
  gap: 26px;
  padding: 42px;
  border-radius: 34px;
}

.command-centre-page .brain-section h2 {
  max-width: 900px;
  margin: 0;
  color: var(--black);
  font-size: 3.7rem;
  line-height: 0.98;
}

.command-centre-page .brain-section-head > p:not(.desktop-kicker),
.split-head p,
.mission-command p,
.signal-card p,
.channel-card p,
.pipeline-board p,
.campaign-table span,
.reasoning-card p,
.studio-preview p,
.studio-tools p,
.calendar-panel p,
.approval-console p,
.memory-operating-grid p,
.retro-console p,
.database-table span,
.brain-card p,
.brain-card li {
  color: var(--neutral500);
  font-weight: 650;
  line-height: 1.48;
}

.split-head,
.mission-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: end;
}

.mission-date,
.sync-panel,
.reasoning-score {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
}

.mission-date span,
.sync-panel span,
.reasoning-score span,
.command-label,
.signal-card span,
.channel-card span,
.pipeline-board span,
.campaign-table strong,
.reasoning-chain span,
.studio-tools span,
.studio-preview .command-label,
.calendar-head span,
.approval-list span,
.memory-operating-grid span,
.retro-console span {
  color: var(--kiwi700);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-date strong,
.sync-panel strong,
.reasoning-score strong {
  color: var(--black);
  font-size: 1.2rem;
  line-height: 1.1;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mission-command,
.signal-card {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 214px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
}

.mission-command.primary {
  grid-row: span 2;
  min-height: 442px;
  background:
    radial-gradient(circle at 92% 0, rgba(65, 167, 69, 0.16), transparent 18rem),
    #fff;
}

.mission-command strong {
  color: var(--black);
  font-size: 3.2rem;
  line-height: 0.98;
}

.signal-card strong {
  color: var(--black);
  font-size: 1.4rem;
  line-height: 1.08;
}

.signal-card.urgent {
  border-color: rgba(65, 167, 69, 0.28);
  background: #f8fff8;
}

.signal-card.warning {
  border-color: rgba(231, 142, 63, 0.28);
  background: #fffaf4;
}

.command-actions,
.approval-list button,
.studio-tools button {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.command-actions button,
.studio-tools button,
.approval-list button {
  min-height: 42px;
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  background: var(--kiwi600);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: default;
}

.command-actions .secondary-action {
  border: 1px solid rgba(14, 15, 17, 0.1);
  background: #fff;
  color: var(--black);
}

.workflow-feedback {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(65, 167, 69, 0.1);
  color: var(--kiwi800);
  font-size: 0.88rem;
  font-weight: 800;
}

.command-actions button:disabled,
.studio-tools button:disabled,
.approval-list button:disabled {
  opacity: 0.72;
  cursor: default;
}

.mission-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mission-strip article {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 24px;
  background: #fff;
}

.mission-strip span {
  color: var(--kiwi700);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 0.95;
}

.mission-strip strong {
  color: var(--black);
}

.mission-strip p {
  margin: 0;
  color: var(--neutral500);
  font-size: 0.88rem;
  font-weight: 700;
}

.channel-grid,
.pipeline-board,
.intelligence-grid,
.memory-operating-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.channel-card,
.pipeline-board article,
.memory-operating-grid article {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 178px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
}

.channel-card strong,
.pipeline-board strong,
.memory-operating-grid strong,
.retro-console strong,
.studio-tools strong,
.calendar-head strong,
.approval-console strong {
  color: var(--black);
  font-size: 1.1rem;
  line-height: 1.12;
}

.channel-card small {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(14, 15, 17, 0.06);
  color: var(--neutral600);
  font-weight: 850;
}

.channel-card.active {
  border-color: rgba(65, 167, 69, 0.24);
}

.channel-card.pending {
  border-color: rgba(92, 196, 212, 0.28);
}

.channel-card.paid {
  border-color: rgba(231, 142, 63, 0.28);
}

.channel-card.store {
  border-color: rgba(150, 75, 207, 0.22);
}

.pipeline-board {
  grid-template-columns: repeat(9, minmax(130px, 1fr));
  overflow-x: auto;
  padding-bottom: 8px;
}

.pipeline-board article {
  min-height: 188px;
  position: relative;
}

.pipeline-board article.complete {
  border-color: rgba(65, 167, 69, 0.28);
  background: #f8fff8;
}

.pipeline-board article.current {
  border-color: rgba(231, 142, 63, 0.34);
  background: #fffaf4;
}

.pipeline-board article::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -8px;
  width: 16px;
  height: 2px;
  background: rgba(65, 167, 69, 0.32);
}

.pipeline-board article:last-child::after {
  display: none;
}

.campaign-table,
.database-table {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.campaign-table [role="row"],
.database-table [role="row"] {
  display: grid;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(14, 15, 17, 0.07);
}

.campaign-table [role="row"] {
  grid-template-columns: 1fr 0.8fr 1.1fr 0.6fr;
}

.database-table [role="row"] {
  grid-template-columns: 0.75fr 1fr 1.35fr;
}

.campaign-table [role="row"]:last-child,
.database-table [role="row"]:last-child {
  border-bottom: 0;
}

.reasoning-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
}

.reasoning-card h3 {
  margin: 8px 0 12px;
  color: var(--black);
  font-size: 2.6rem;
  line-height: 1;
}

.reasoning-chain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reasoning-chain article {
  min-height: 145px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 20px;
  background: #f9fbff;
}

.studio-layout,
.publishing-layout,
.retro-console {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.studio-preview,
.calendar-panel,
.approval-console,
.retro-console article {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
}

.studio-preview strong {
  color: var(--black);
  font-size: 2rem;
  line-height: 1.04;
}

.studio-frame {
  min-height: 320px;
  display: grid;
  align-items: end;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.62)),
    radial-gradient(circle at 80% 20%, rgba(65, 167, 69, 0.24), transparent 16rem),
    #1e211d;
  color: #fff;
}

.studio-frame span {
  display: block;
  max-width: 460px;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.02;
}

.studio-frame p {
  margin: 10px 0 0;
  color: rgba(249, 251, 255, 0.78);
}

.studio-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.studio-tools article {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 190px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
}

.studio-tools button {
  justify-self: start;
}

.calendar-head {
  display: grid;
  gap: 4px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.calendar-grid > span {
  color: var(--neutral500);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid article {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 20px;
  background: #f9fbff;
}

.calendar-grid strong {
  color: var(--black);
  line-height: 1.1;
}

.approval-list {
  display: grid;
  gap: 12px;
}

.approval-list div {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 20px;
  background: #f9fbff;
}

.approval-list button {
  justify-self: end;
}

.approval-list div.reviewing {
  border-color: rgba(231, 142, 63, 0.3);
  background: #fffaf4;
}

.decision-log {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(65, 167, 69, 0.18);
  border-radius: 18px;
  background: #f8fff8;
}

.decision-log span {
  color: var(--kiwi700);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-log p {
  margin: 0;
}

.intelligence-grid,
.memory-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.command-centre-page .brain-card {
  background: #fff;
  color: var(--black);
}

.command-centre-page .brain-card h3 {
  color: var(--black);
}

.command-centre-page .brain-card.confirmed {
  border-color: rgba(65, 167, 69, 0.22);
}

.command-centre-page .brain-card.caution {
  border-color: rgba(247, 79, 81, 0.2);
  background: #fff9f9;
}

.memory-operating-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.retro-console {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-map-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-map-grid span,
.command-centre-page .brain-copy-bank button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 999px;
  background: #fff;
  color: var(--neutral700);
  font-size: 0.86rem;
  font-weight: 800;
}

.command-centre-page .brain-copy-bank button[data-copied="true"] {
  border-color: rgba(65, 167, 69, 0.32);
  background: rgba(65, 167, 69, 0.12);
  color: var(--kiwi800);
}

@media (max-width: 1180px) {
  .mission-grid,
  .channel-grid,
  .intelligence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-command.primary {
    grid-row: auto;
  }

  .mission-strip,
  .memory-operating-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .command-centre-hero h1 {
    font-size: 4.1rem;
  }

  .command-centre-page .brain-section h2 {
    font-size: 3rem;
  }

  .split-head,
  .mission-head,
  .reasoning-card,
  .studio-layout,
  .publishing-layout,
  .retro-console {
    grid-template-columns: 1fr;
  }

  .memory-layout {
    grid-template-columns: 1fr;
  }

  .campaign-table [role="row"],
  .database-table [role="row"],
  .approval-list div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .command-centre-page {
    background: linear-gradient(180deg, #080809 0 460px, #f4f7f1 460px 100%);
  }

  .command-centre-hero,
  .command-centre-page .brain-section {
    padding: 24px;
    border-radius: 26px;
  }

  .command-centre-hero {
    min-height: 460px;
  }

  .command-centre-hero h1 {
    font-size: 3rem;
  }

  .command-centre-page .brain-section h2 {
    font-size: 2.35rem;
  }

  .mission-grid,
  .mission-strip,
  .channel-grid,
  .reasoning-chain,
  .studio-tools,
  .calendar-grid,
  .intelligence-grid,
  .memory-operating-grid {
    grid-template-columns: 1fr;
  }

  .command-tools {
    position: static;
  }
}

.operational-brain-page {
  background: linear-gradient(180deg, #080809 0 520px, #f4f7f1 520px 100%);
}

.operational-hero {
  background: #0e0f11;
}

.operational-hero::after {
  display: none;
}

.operational-brain-page .primary-button,
.operational-brain-page .secondary-button,
.operational-brain-page .inline-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.operational-brain-page .primary-button {
  border: 1px solid var(--kiwi600);
  background: var(--kiwi600);
  color: #fff;
}

.operational-brain-page .secondary-button,
.operational-brain-page .inline-action {
  border: 1px solid rgba(14, 15, 17, 0.12);
  background: #fff;
  color: var(--neutral700);
}

.operational-brain-page .primary-button:disabled,
.operational-brain-page .secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.operating-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.operating-metrics article {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 19px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 20px;
  background: #fff;
}

.operating-metrics span {
  color: var(--kiwi700);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
}

.operating-metrics strong {
  color: var(--black);
  font-size: 0.92rem;
}

.operating-metrics p {
  margin: 0;
  color: var(--neutral400);
  font-size: 0.78rem;
  font-weight: 600;
}

.mission-workbench {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(300px, 0.92fr);
  gap: 16px;
}

.daily-brief,
.action-inbox,
.honesty-panel,
.connection-detail,
.campaign-form,
.active-campaign,
.approval-queue,
.schedule-form,
.publish-console,
.performance-form,
.learning-output,
.campaign-memory {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 26px;
  background: #fff;
}

.daily-brief h3 {
  margin: 0;
  color: var(--black);
  font-size: 2.55rem;
  line-height: 1.02;
}

.daily-brief > p {
  margin: 0;
  color: var(--neutral500);
  font-weight: 600;
  line-height: 1.5;
}

.panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.panel-heading span,
.command-label {
  color: var(--kiwi700);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-heading strong {
  color: var(--black);
  font-size: 0.86rem;
}

.evidence-rows {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.evidence-rows div {
  min-height: 100px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 13px;
  border-radius: 16px;
  background: #f3f6f2;
}

.evidence-rows strong {
  color: var(--black);
  font-size: 0.81rem;
}

.evidence-rows p {
  margin: 0;
  color: var(--neutral500);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.42;
}

.analysis-console {
  display: grid;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(65, 167, 69, 0.15);
  border-radius: 20px;
  background: #f8fff8;
}

.analysis-steps,
.generation-track {
  display: grid;
  gap: 8px;
}

.analysis-steps span,
.generation-track span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--neutral400);
  font-size: 0.81rem;
  font-weight: 700;
}

.analysis-steps i,
.generation-track i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--neutral100);
}

.analysis-steps .active,
.generation-track .active {
  color: var(--neutral700);
}

.analysis-steps .active i,
.generation-track .active i {
  background: var(--tangerine500);
  box-shadow: 0 0 0 5px rgba(231, 142, 63, 0.13);
}

.analysis-steps .complete,
.generation-track .complete {
  color: var(--kiwi700);
}

.analysis-steps .complete i,
.generation-track .complete i {
  background: var(--kiwi600);
}

.source-note,
.form-note {
  margin: 0;
  color: var(--neutral400);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
}

.validation-note {
  margin: 0;
  padding: 10px 13px;
  border-radius: 13px;
  background: rgba(231, 142, 63, 0.1);
  color: var(--tangerine800);
  font-size: 0.75rem;
  font-weight: 700;
}

.analysis-actions,
.connection-actions,
.campaign-actions,
.asset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.activity-feed {
  display: grid;
  gap: 10px;
}

.activity-row {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(14, 15, 17, 0.07);
  border-radius: 17px;
  background: #f9fbff;
}

.activity-row > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.activity-row strong {
  color: var(--black);
  font-size: 0.9rem;
}

.activity-row p,
.activity-row small {
  margin: 0;
  color: var(--neutral400);
  font-size: 0.75rem;
  font-weight: 600;
}

.state-pill {
  width: max-content;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(14, 15, 17, 0.06);
  color: var(--neutral500);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.state-pill.required,
.state-pill.approval {
  background: rgba(231, 142, 63, 0.14);
  color: var(--tangerine800);
}

.state-pill.connected {
  background: rgba(65, 167, 69, 0.14);
  color: var(--kiwi800);
}

.state-pill.syncing,
.state-pill.updating {
  background: rgba(92, 196, 212, 0.17);
  color: #216e7a;
}

.state-pill.scheduled {
  background: rgba(150, 75, 207, 0.12);
  color: var(--plum700);
}

.state-pill.published,
.state-pill.review {
  background: rgba(65, 167, 69, 0.12);
  color: var(--kiwi800);
}

.honesty-panel span {
  color: var(--kiwi700);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.honesty-panel strong {
  color: var(--black);
  font-size: 1.35rem;
}

.honesty-panel p,
.connection-detail p,
.active-campaign p,
.approval-queue p,
.publish-console p {
  margin: 0;
  color: var(--neutral500);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.48;
}

.state-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.connections-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(390px, 1.14fr);
  gap: 16px;
}

.primary-channel-list {
  display: grid;
  gap: 10px;
}

.primary-channel-card,
.secondary-channel-card {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 19px;
  background: #fff;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.primary-channel-card.selected,
.secondary-channel-card.selected {
  border-color: rgba(65, 167, 69, 0.34);
  background: #f8fff8;
}

.channel-title,
.connection-title,
.asset-header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.channel-title span:not(.platform-mark) {
  color: var(--black);
  font-size: 0.96rem;
  font-weight: 700;
}

.primary-channel-card p {
  margin: 0;
  color: var(--neutral500);
  font-size: 0.79rem;
  font-weight: 600;
}

.channel-meta {
  color: var(--neutral400);
  font-size: 0.72rem;
  font-weight: 600;
}

.platform-mark {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--neutral700);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.platform-facebook {
  background: #1877f2;
  font-size: 1.15rem;
}

.platform-instagram {
  background: #d74272;
}

.platform-linkedin {
  background: #0a66c2;
}

.platform-mailchimp {
  background: #241c15;
  color: #ffe01b;
}

.platform-tiktok {
  background: #0e0f11;
}

.platform-ga4,
.platform-googleads,
.platform-searchconsole {
  background: #4285f4;
}

.platform-metaads {
  background: #1877f2;
}

.platform-appstore {
  background: #080809;
}

.platform-playconsole {
  background: #2e7731;
}

.connection-title h3 {
  margin: 3px 0 0;
  color: var(--black);
  font-size: 1.45rem;
}

.connection-health {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.connection-health div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 15px;
  background: #f4f7f2;
}

.connection-health span {
  color: var(--neutral400);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.connection-health strong {
  color: var(--black);
  font-size: 0.77rem;
  line-height: 1.35;
}

.permission-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.permission-list span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f4f7f2;
  color: var(--neutral600);
  font-size: 0.72rem;
  font-weight: 700;
}

.integration-note {
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(231, 142, 63, 0.08);
}

.later-connections {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 22px;
  background: #f9fbff;
}

.secondary-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.secondary-channel-card strong {
  color: var(--black);
  font-size: 0.83rem;
}

.secondary-channel-card > span:not(.platform-mark) {
  color: var(--neutral500);
  font-size: 0.72rem;
  font-weight: 600;
}

.connection-workspace .connections-layout {
  grid-template-columns: minmax(210px, 0.34fr) minmax(520px, 1fr);
}

.integration-error {
  padding: 12px 14px;
  border: 1px solid rgba(226, 45, 48, 0.18);
  border-radius: 14px;
  background: rgba(247, 79, 81, 0.08);
  color: var(--tomato700) !important;
}

.mailchimp-live-grid,
.mailchimp-builder,
.mailchimp-results > div,
.mailchimp-audit {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(14, 15, 17, 0.07);
  border-radius: 18px;
  background: #f9fbff;
}

.mailchimp-audience-choice,
.mailchimp-builder label {
  display: grid;
  gap: 7px;
  color: var(--neutral600);
  font-size: 0.76rem;
  font-weight: 700;
}

.mailchimp-audience-choice select,
.mailchimp-builder select {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(14, 15, 17, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--black);
  font: inherit;
}

.mailchimp-stat-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.mailchimp-stat-row span {
  display: grid;
  gap: 4px;
  padding: 11px;
  border-radius: 14px;
  background: #fff;
  color: var(--neutral500);
  font-size: 0.7rem;
  font-weight: 600;
}

.mailchimp-stat-row strong {
  color: var(--black);
  font-size: 1.08rem;
}

.mailchimp-builder form {
  display: flex;
  align-items: end;
  gap: 10px;
}

.mailchimp-builder form label {
  flex: 1;
}

.mailchimp-access-form {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 16px;
}

.mailchimp-access-form label {
  display: grid;
  flex: 1;
  gap: 7px;
  color: var(--neutral600);
  font-size: 0.76rem;
  font-weight: 700;
}

.mailchimp-access-form input {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(14, 15, 17, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--black);
  font: inherit;
}

.mailchimp-empty {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  color: var(--neutral500);
  font-size: 0.82rem;
  line-height: 1.6;
}

.mailchimp-email-preview {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 18px;
  background: #fff;
}

.mailchimp-email-preview h4,
.mailchimp-success h4 {
  margin: 2px 0 0;
  color: var(--black);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  line-height: 1.25;
}

.mailchimp-subject,
.mailchimp-preview-text {
  display: grid;
  gap: 4px;
  padding: 11px 13px;
  border-radius: 13px;
  background: #f4f7f2;
  color: var(--black) !important;
}

.mailchimp-subject small,
.mailchimp-preview-text small {
  color: var(--kiwi700);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mailchimp-email-preview ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mailchimp-email-preview li {
  display: grid;
  gap: 4px;
  padding: 12px 13px;
  border-left: 3px solid var(--kiwi600);
  border-radius: 0 12px 12px 0;
  background: #f4f7f2;
  color: var(--neutral500);
  font-size: 0.78rem;
}

.mailchimp-email-preview li strong {
  color: var(--black);
}

.mailchimp-email-preview li span {
  line-height: 1.55;
}

.mailchimp-cta-preview {
  width: max-content;
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--kiwi600);
  color: #fff !important;
  font-weight: 700 !important;
}

.approval-check {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 9px !important;
  padding: 12px;
  border-radius: 14px;
  background: rgba(231, 142, 63, 0.1);
  color: var(--neutral700) !important;
}

.approval-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--kiwi600);
}

.mailchimp-success {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 17px;
  background: rgba(65, 167, 69, 0.09);
}

.mailchimp-success strong {
  color: var(--kiwi800);
  font-size: 0.82rem;
}

.mailchimp-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mailchimp-results article {
  display: grid;
  gap: 5px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(14, 15, 17, 0.07);
}

.mailchimp-results article:last-child {
  border-bottom: 0;
}

.mailchimp-results article strong {
  color: var(--black);
  font-size: 0.82rem;
}

.mailchimp-results article span {
  color: var(--neutral500);
  font-size: 0.73rem;
  font-weight: 600;
}

.mailchimp-audit p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(14, 15, 17, 0.07);
}

.mailchimp-audit p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mailchimp-audit p strong {
  color: var(--black);
  font-size: 0.78rem;
}

.mailchimp-audit p span {
  color: var(--neutral400);
  font-size: 0.72rem;
}

.campaign-creator {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(390px, 1.08fr);
  gap: 16px;
}

.campaign-form label,
.schedule-form label,
.performance-form label {
  display: grid;
  gap: 7px;
  color: var(--neutral600);
  font-size: 0.78rem;
  font-weight: 700;
}

.campaign-form input,
.campaign-form textarea,
.campaign-form select,
.schedule-form select,
.schedule-form input,
.performance-form input,
.performance-form textarea,
.asset-editor {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid rgba(14, 15, 17, 0.1);
  border-radius: 18px;
  background: #f9fbff;
  color: var(--black);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 500;
}

.campaign-form textarea,
.performance-form textarea,
.asset-editor {
  border-radius: 18px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.campaign-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.campaign-form legend {
  width: 100%;
  margin-bottom: 4px;
  color: var(--neutral600);
  font-size: 0.78rem;
  font-weight: 700;
}

.campaign-form fieldset label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(14, 15, 17, 0.09);
  border-radius: 999px;
  background: #f9fbff;
}

.campaign-form fieldset input {
  width: 15px;
  min-height: auto;
}

.campaign-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.campaign-title-row small {
  color: var(--neutral400);
  font-size: 0.72rem;
  font-weight: 700;
}

.active-campaign h3 {
  margin: 0;
  color: var(--black);
  font-size: 2.1rem;
  line-height: 1.05;
}

.active-campaign dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
}

.active-campaign dl div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 15px;
  background: #f4f7f2;
}

.active-campaign dt {
  color: var(--neutral400);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.active-campaign dd {
  margin: 0;
  color: var(--neutral700);
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.43;
}

.pipeline-workflow {
  display: grid;
  grid-template-columns: repeat(9, minmax(122px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px;
}

.pipeline-workflow article {
  min-height: 92px;
  display: grid;
  align-content: space-between;
  gap: 13px;
  padding: 13px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 15px;
  background: #f9fbff;
}

.pipeline-workflow small {
  color: var(--neutral300);
  font-size: 0.67rem;
  font-weight: 800;
}

.pipeline-workflow span {
  color: var(--neutral600);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.32;
}

.pipeline-workflow article.complete {
  border-color: rgba(65, 167, 69, 0.21);
  background: #f4fcf4;
}

.pipeline-workflow article.complete span {
  color: var(--kiwi800);
}

.pipeline-workflow article.current {
  border-color: rgba(231, 142, 63, 0.31);
  background: #fffaf4;
}

.pipeline-workflow article.current span {
  color: var(--black);
}

.creative-controls {
  display: flex;
  gap: 18px;
  align-items: start;
}

.generation-track {
  flex: 1;
  padding: 13px 16px;
  border-radius: 18px;
  background: #f8fff8;
}

.generation-track p {
  margin: 0;
  color: var(--neutral500);
  font-size: 0.83rem;
  font-weight: 600;
}

.generated-assets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.empty-workspace {
  grid-column: 1 / -1;
  min-height: 126px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px dashed rgba(14, 15, 17, 0.14);
  border-radius: 22px;
  color: var(--neutral400);
  font-size: 0.88rem;
  font-weight: 600;
}

.asset-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 22px;
  background: #fff;
}

.asset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.asset-header span:not(.platform-mark) {
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 700;
}

.asset-card pre {
  min-height: 145px;
  margin: 0;
  padding: 14px;
  overflow: auto;
  border-radius: 16px;
  background: #f4f7f2;
  color: var(--neutral700);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.55;
  white-space: pre-wrap;
}

.asset-visual {
  grid-column: 1 / -1;
}

.visual-concept {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 19px;
  background: #0e0f11;
}

.visual-concept img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center top;
}

.visual-concept div {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
}

.visual-concept small {
  color: var(--kiwi400);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-concept strong {
  color: var(--white);
  font-size: 2rem;
  line-height: 1.06;
}

.visual-concept p {
  margin: 0;
  color: rgba(249, 251, 255, 0.7);
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.5;
}

.push-preview {
  display: grid;
  gap: 6px;
  padding: 15px;
  border-radius: 18px;
  background: #0e0f11;
  color: #fff;
}

.push-preview small {
  color: var(--kiwi400);
  font-size: 0.7rem;
  font-weight: 700;
}

.push-preview strong {
  font-size: 0.95rem;
}

.push-preview p {
  margin: 0;
  color: rgba(249, 251, 255, 0.72);
  font-size: 0.76rem;
}

.carousel-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.carousel-preview span {
  min-height: 88px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  background: #0e0f11;
  color: rgba(249, 251, 255, 0.74);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.carousel-preview strong {
  color: var(--kiwi400);
  font-size: 0.8rem;
}

.reel-preview {
  min-height: 138px;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 14px;
  border-radius: 16px;
  background: #0e0f11;
}

.reel-preview small {
  color: var(--kiwi400);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reel-preview strong {
  color: var(--white);
  font-size: 1.04rem;
}

.reel-preview span {
  color: rgba(249, 251, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
}

.gate-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gate-strip article {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 17px;
  background: #f9fbff;
}

.gate-strip span {
  color: var(--neutral400);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gate-strip strong {
  color: var(--black);
  font-size: 0.88rem;
}

.scheduling-layout,
.publishing-review-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.review-record {
  display: grid;
  gap: 12px;
  padding: 15px;
  border-radius: 17px;
  background: #fffaf4;
}

.review-record strong {
  color: var(--black);
  font-size: 1.1rem;
}

.scheduled-queue {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.scheduled-record {
  display: grid;
  gap: 9px;
  padding: 15px;
  border: 1px solid rgba(150, 75, 207, 0.17);
  border-radius: 17px;
  background: #fcfaff;
}

.scheduled-record strong {
  color: var(--black);
}

.scheduled-record p,
.scheduled-record small {
  margin: 0;
  color: var(--neutral500);
  font-size: 0.76rem;
  font-weight: 600;
}

.performance-form .primary-button {
  justify-self: start;
}

.learning-output h3,
.campaign-memory h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.5rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.result-grid span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 14px;
  background: #f4f7f2;
  color: var(--neutral500);
  font-size: 0.7rem;
  font-weight: 700;
}

.result-grid strong {
  color: var(--kiwi800);
  font-size: 1.3rem;
}

.learning-output small,
.campaign-memory small {
  color: var(--neutral400);
  font-size: 0.75rem;
  font-weight: 600;
}

.campaign-memory {
  border-color: rgba(65, 167, 69, 0.2);
  background: #f8fff8;
}

@media (max-width: 1180px) {
  .secondary-channel-grid,
  .scheduled-queue {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .operating-metrics,
  .mission-workbench,
  .connections-layout,
  .campaign-creator,
  .scheduling-layout,
  .publishing-review-layout {
    grid-template-columns: 1fr;
  }

  .mailchimp-stat-row,
  .mailchimp-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .generated-assets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .operational-brain-page {
    background: linear-gradient(180deg, #080809 0 460px, #f4f7f1 460px 100%);
  }

  .operating-metrics,
  .evidence-rows,
  .connection-health,
  .secondary-channel-grid,
  .form-grid,
  .gate-strip,
  .scheduled-queue,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .mailchimp-stat-row,
  .mailchimp-results {
    grid-template-columns: 1fr;
  }

  .mailchimp-builder form {
    display: grid;
  }

  .mailchimp-access-form {
    display: grid;
  }

  .daily-brief h3 {
    font-size: 2rem;
  }

  .creative-controls {
    display: grid;
  }

  .visual-concept {
    grid-template-columns: 1fr;
  }

  .visual-concept img {
    max-height: 340px;
  }
}

.nj-page {
  --nj-black: #050505;
  --nj-panel: #10100f;
  --nj-gold: #d6b15f;
  --nj-gold-soft: #f0d99a;
  --nj-muted: rgba(255, 255, 255, 0.68);
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 177, 95, 0.18), transparent 34rem),
    radial-gradient(circle at 10% 22%, rgba(214, 177, 95, 0.08), transparent 28rem),
    linear-gradient(180deg, #080807, #030303);
  color: #fff;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nj-page * {
  box-sizing: border-box;
}

.nj-hero,
.nj-section,
.nj-band,
.nj-split,
.nj-packaging-section,
.nj-creator-section,
.nj-video-section,
.nj-footer {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.nj-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: 100vh;
  padding: clamp(48px, 8vw, 112px) 0;
}

.nj-hero-copy,
.nj-section-heading,
.nj-packaging-copy,
.nj-creator-copy,
.nj-video-section > div:first-child {
  display: grid;
  gap: 18px;
}

.nj-kicker {
  margin: 0;
  color: var(--nj-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nj-page h1,
.nj-page h2,
.nj-page h3 {
  margin: 0;
  color: #fff;
}

.nj-page h1 {
  max-width: 880px;
  font-size: clamp(3.35rem, 8.6vw, 8.8rem);
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.nj-page h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 6.4vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.nj-page h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.nj-subtitle {
  margin: 0;
  color: var(--nj-gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.08;
}

.nj-hero-text,
.nj-copy-panel p,
.nj-packaging-copy p,
.nj-creator-copy p,
.nj-video-section p {
  margin: 0;
  color: var(--nj-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 500;
  line-height: 1.68;
}

.nj-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.nj-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid rgba(214, 177, 95, 0.45);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.nj-button.primary {
  background: linear-gradient(135deg, #8f6b23, var(--nj-gold), #fff0b8);
  color: #0a0908;
}

.nj-button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.nj-button:hover,
.nj-button:focus-visible {
  border-color: var(--nj-gold-soft);
  box-shadow: 0 18px 60px rgba(214, 177, 95, 0.22);
  transform: translateY(-2px);
  outline: none;
}

.nj-hero-visual {
  position: relative;
  min-height: 620px;
}

.nj-portrait-card,
.nj-product-render,
.nj-product-card,
.nj-copy-panel,
.nj-packaging-visual,
.nj-video-placeholder {
  border: 1px solid rgba(214, 177, 95, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    var(--nj-panel);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.nj-portrait-card {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: end center;
  width: min(360px, 74vw);
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 34px;
  isolation: isolate;
  padding: 28px;
}

.nj-portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 28%, rgba(238, 205, 138, 0.24), transparent 22%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(50, 40, 22, 0.2), #080808 82%);
  z-index: -2;
}

.nj-portrait-light {
  position: absolute;
  inset: 18% 24% auto;
  aspect-ratio: 0.74;
  border-radius: 48% 48% 42% 42%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 220, 155, 0.5), transparent 20%),
    linear-gradient(180deg, #2a2520, #111);
  opacity: 0.92;
  filter: blur(0.2px);
}

.nj-portrait-initials {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(214, 177, 95, 0.42);
  border-radius: 999px;
  color: var(--nj-gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  transform: translateY(-84px);
}

.nj-portrait-card span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.nj-product-render {
  position: absolute;
  right: min(190px, 18vw);
  bottom: 0;
  width: min(520px, 88vw);
  aspect-ratio: 1.24;
  overflow: hidden;
  border-radius: 38px;
  transform: rotate(-4deg);
}

.nj-product-render::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 32px;
  background: linear-gradient(145deg, #050505, #1b1710);
  border: 1px solid rgba(214, 177, 95, 0.28);
  box-shadow: inset 0 0 38px rgba(214, 177, 95, 0.08);
}

.nj-gold-ring,
.nj-render-body,
.nj-render-line {
  position: absolute;
  border-color: var(--nj-gold);
}

.nj-gold-ring {
  inset: 26% 30%;
  border: 2px solid rgba(214, 177, 95, 0.62);
  border-radius: 999px;
}

.nj-render-body {
  left: 18%;
  right: 18%;
  bottom: 24%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--nj-gold), transparent);
}

.nj-render-line {
  top: 20%;
  bottom: 18%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(214, 177, 95, 0.65), transparent);
}

.reveal-on-load {
  animation: njFadeUp 700ms ease both;
}

.reveal-on-load:nth-child(2) {
  animation-delay: 120ms;
}

@keyframes njFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nj-section,
.nj-band,
.nj-split,
.nj-packaging-section,
.nj-creator-section,
.nj-video-section {
  padding: clamp(64px, 9vw, 128px) 0;
}

.nj-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.nj-product-card {
  display: grid;
  gap: 16px;
  min-height: 320px;
  align-content: end;
  border-radius: 30px;
  padding: 26px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.nj-product-card:hover {
  border-color: rgba(214, 177, 95, 0.66);
  box-shadow: 0 28px 80px rgba(214, 177, 95, 0.12);
  transform: translateY(-4px);
}

.nj-icon {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(214, 177, 95, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle, rgba(214, 177, 95, 0.38), transparent 48%),
    rgba(255, 255, 255, 0.03);
}

.nj-icon.ball {
  border-radius: 999px;
}

.nj-icon.fin {
  clip-path: polygon(18% 84%, 50% 10%, 82% 84%);
  border-radius: 0;
}

.nj-product-card p {
  margin: 0;
  color: var(--nj-muted);
  font-weight: 600;
  line-height: 1.55;
}

.nj-band {
  display: grid;
  gap: 26px;
  border-block: 1px solid rgba(214, 177, 95, 0.18);
}

.nj-sports-list,
.nj-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nj-sports-list span,
.nj-pill-row span {
  padding: 11px 16px;
  border: 1px solid rgba(214, 177, 95, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 700;
}

.nj-split,
.nj-packaging-section,
.nj-creator-section,
.nj-video-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.nj-copy-panel {
  display: grid;
  gap: 18px;
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
}

.nj-packaging-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 38px;
  perspective: 900px;
}

.nj-box-lid,
.nj-box-base {
  position: absolute;
  left: 10%;
  right: 10%;
  border: 1px solid rgba(214, 177, 95, 0.26);
  border-radius: 28px;
  background: linear-gradient(145deg, #060606, #1a1711);
}

.nj-box-lid {
  top: 14%;
  height: 34%;
  transform: rotateX(58deg) rotateZ(-4deg);
}

.nj-box-base {
  bottom: 14%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 38%;
  padding: 28px;
}

.nj-box-base span {
  width: 24%;
  height: 54%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 177, 95, 0.08), rgba(214, 177, 95, 0.44), rgba(214, 177, 95, 0.08));
}

.nj-creator-image {
  min-height: 460px;
  position: relative;
}

.nj-portrait-card.creator {
  position: relative;
  width: min(380px, 100%);
  margin: 0 auto;
}

.nj-video-placeholder {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 380px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 45%, rgba(214, 177, 95, 0.2), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0c0c0b;
}

.nj-play-button {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(214, 177, 95, 0.48);
  border-radius: 999px;
  background:
    linear-gradient(135deg, #8f6b23, var(--nj-gold), #fff0b8);
  clip-path: circle(50%);
  position: relative;
}

.nj-play-button::after {
  content: "";
  position: absolute;
  left: 38px;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #070706;
}

.nj-video-placeholder span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.nj-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 52px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(214, 177, 95, 0.18);
}

.nj-footer a {
  color: var(--nj-gold-soft);
  font-weight: 800;
  text-decoration: none;
}

.nj-socials {
  display: flex;
  gap: 8px;
}

.nj-socials span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214, 177, 95, 0.28);
  border-radius: 999px;
  color: var(--nj-gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nj-hero,
  .nj-split,
  .nj-packaging-section,
  .nj-creator-section,
  .nj-video-section {
    grid-template-columns: 1fr;
  }

  .nj-hero {
    min-height: auto;
  }

  .nj-hero-visual {
    min-height: 540px;
  }

  .nj-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nj-hero,
  .nj-section,
  .nj-band,
  .nj-split,
  .nj-packaging-section,
  .nj-creator-section,
  .nj-video-section,
  .nj-footer {
    width: min(100% - 28px, 1240px);
  }

  .nj-hero-visual {
    min-height: 460px;
  }

  .nj-product-render {
    right: 0;
    width: 100%;
  }

  .nj-portrait-card {
    right: 6%;
    width: 72%;
  }
}

/* NJ Cue Sports leaflet-inspired refinement */
.nj-page {
  --nj-black: #020202;
  --nj-panel: #090807;
  --nj-gold: #f5b31c;
  --nj-gold-strong: #ffca47;
  --nj-gold-soft: #ffe29a;
  --nj-muted: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 72% 15%, rgba(245, 179, 28, 0.2), transparent 28rem),
    radial-gradient(circle at 35% 4%, rgba(255, 202, 71, 0.1), transparent 22rem),
    linear-gradient(135deg, #030303 0%, #090704 44%, #000 100%);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nj-page main {
  border: 1px solid rgba(245, 179, 28, 0.18);
  margin: clamp(10px, 1.4vw, 22px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 154, 0.08),
    0 0 80px rgba(245, 179, 28, 0.08);
}

.nj-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.95fr);
  min-height: 100svh;
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(38px, 5vw, 78px);
}

.nj-hero::before,
.nj-band::before,
.nj-footer::before {
  content: "";
  display: block;
  width: min(520px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nj-gold), transparent);
}

.nj-brand-mark {
  display: block;
  width: clamp(128px, 16vw, 214px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(245, 179, 28, 0.42);
  border-radius: 999px;
  background: #050505;
  box-shadow:
    0 0 0 6px rgba(245, 179, 28, 0.045),
    0 24px 80px rgba(245, 179, 28, 0.2);
  filter: contrast(1.1) saturate(1.08);
}

.nj-kicker {
  color: var(--nj-gold-strong);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.42em;
}

.nj-page h1,
.nj-page h2,
.nj-page h3 {
  font-family: "Cinzel", Georgia, serif;
  text-transform: uppercase;
  color: #fff7df;
  text-shadow: 0 0 24px rgba(245, 179, 28, 0.16);
}

.nj-page h1 {
  max-width: 980px;
  color: var(--nj-gold);
  font-size: clamp(2.8rem, 7.2vw, 7.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.12em;
}

.nj-page h2 {
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.nj-page h3 {
  color: var(--nj-gold-strong);
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.nj-subtitle {
  color: var(--nj-gold-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.95rem, 1.55vw, 1.28rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nj-hero-text,
.nj-copy-panel p,
.nj-packaging-copy p,
.nj-creator-copy p,
.nj-video-section p,
.nj-product-card p {
  color: var(--nj-muted);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.72;
}

.nj-button {
  border-color: rgba(245, 179, 28, 0.5);
  border-radius: 4px;
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nj-button.primary {
  background: linear-gradient(135deg, #9c6308 0%, #f5b31c 48%, #fff1b4 100%);
}

.nj-hero-visual {
  display: grid;
  align-items: center;
  min-height: auto;
}

.nj-hero-product {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 179, 28, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(245, 179, 28, 0.16), transparent 42%),
    #050505;
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.58),
    0 0 72px rgba(245, 179, 28, 0.14);
}

.nj-hero-product::after,
.nj-packaging-visual::after,
.nj-creator-image::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245, 179, 28, 0.34);
  pointer-events: none;
}

.nj-hero-product img,
.nj-packaging-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.07) saturate(1.05);
}

.nj-hero-product figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 179, 28, 0.36);
  background: rgba(0, 0, 0, 0.72);
  color: var(--nj-gold-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nj-product-grid {
  gap: 1px;
  border: 1px solid rgba(245, 179, 28, 0.22);
  background: rgba(245, 179, 28, 0.22);
}

.nj-product-card {
  min-height: 340px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(245, 179, 28, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #050505;
  box-shadow: none;
}

.nj-product-card:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 226, 154, 0.42), 0 24px 70px rgba(245, 179, 28, 0.12);
}

.nj-icon {
  border-radius: 0;
  border-color: rgba(245, 179, 28, 0.48);
  background:
    radial-gradient(circle, rgba(255, 226, 154, 0.28), transparent 48%),
    rgba(245, 179, 28, 0.05);
}

.nj-band {
  position: relative;
  border-block-color: rgba(245, 179, 28, 0.28);
}

.nj-sports-list span,
.nj-pill-row span {
  border-color: rgba(245, 179, 28, 0.34);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nj-copy-panel,
.nj-video-placeholder {
  border-color: rgba(245, 179, 28, 0.26);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(245, 179, 28, 0.08), rgba(255, 255, 255, 0.02)),
    #050505;
}

.nj-packaging-visual {
  min-height: 560px;
  border-color: rgba(245, 179, 28, 0.3);
  border-radius: 0;
  padding: 0;
}

.nj-packaging-visual img {
  min-height: 560px;
}

.nj-creator-image {
  display: grid;
  place-items: center;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(245, 179, 28, 0.28);
  background:
    radial-gradient(circle at 50% 45%, rgba(245, 179, 28, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #050505;
  position: relative;
}

.nj-creator-logo {
  width: min(360px, 72%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(245, 179, 28, 0.45);
  border-radius: 999px;
  box-shadow: 0 30px 90px rgba(245, 179, 28, 0.18);
}

.nj-video-placeholder {
  min-height: 420px;
}

.nj-qr-placeholder {
  width: 148px;
  height: 148px;
  border: 2px solid var(--nj-gold);
  background:
    linear-gradient(90deg, #fff 10px, transparent 10px) 0 0 / 24px 24px,
    linear-gradient(#fff 10px, transparent 10px) 0 0 / 24px 24px,
    #050505;
  box-shadow: 0 0 42px rgba(245, 179, 28, 0.16);
}

.nj-footer {
  border-top-color: rgba(245, 179, 28, 0.28);
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nj-page main {
    margin: 0;
    border-inline: 0;
  }

  .nj-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nj-brand-mark {
    width: 132px;
  }

  .nj-product-grid {
    grid-template-columns: 1fr;
  }

  .nj-packaging-visual,
  .nj-packaging-visual img,
  .nj-hero-product img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .nj-page h1 {
    font-size: clamp(2.15rem, 14vw, 4rem);
    letter-spacing: 0.06em;
  }

  .nj-subtitle,
  .nj-kicker {
    letter-spacing: 0.18em;
  }

  .nj-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* NJ Cue Sports rebuild: one coherent product-page system */
.nj-polished {
  --nj-black: #020202;
  --nj-ink: #080604;
  --nj-panel: rgba(8, 7, 5, 0.84);
  --nj-gold: #d99a18;
  --nj-bright-gold: #ffd35f;
  --nj-soft-gold: #ffe7a6;
  --nj-line: rgba(217, 154, 24, 0.36);
  --nj-copy: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 78% 10%, rgba(217, 154, 24, 0.22), transparent 30rem),
    radial-gradient(circle at 50% 50%, rgba(217, 154, 24, 0.08), transparent 38rem),
    linear-gradient(135deg, #000 0%, #080604 55%, #000 100%);
  color: #f8f2e5;
}

.nj-polished main {
  width: min(1560px, calc(100% - clamp(18px, 3vw, 42px)));
  margin: clamp(12px, 2vw, 28px) auto;
  border: 1px solid var(--nj-line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 211, 95, 0.16),
    0 0 110px rgba(217, 154, 24, 0.1);
}

.nj-polished .nj-hero,
.nj-polished .nj-section,
.nj-polished .nj-band,
.nj-polished .nj-split,
.nj-polished .nj-packaging-section,
.nj-polished .nj-creator-section,
.nj-polished .nj-video-section {
  width: min(1360px, calc(100% - clamp(28px, 6vw, 96px)));
}

.nj-polished .nj-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 96px);
  min-height: calc(100svh - 56px);
  padding: clamp(42px, 6vw, 84px) 0;
  align-items: center;
}

.nj-polished .nj-hero::before,
.nj-polished .nj-band::before,
.nj-polished .nj-footer::before {
  display: none;
}

.nj-polished .nj-hero-copy,
.nj-polished .nj-section-heading,
.nj-polished .nj-packaging-copy,
.nj-polished .nj-creator-copy,
.nj-polished .nj-video-section > div:first-child {
  gap: clamp(14px, 1.8vw, 22px);
}

.nj-polished .nj-brand-mark {
  width: clamp(116px, 13vw, 176px);
  height: clamp(116px, 13vw, 176px);
  object-fit: cover;
  border: 1px solid rgba(255, 211, 95, 0.62);
  border-radius: 999px;
  background: #050403;
  box-shadow:
    0 0 0 8px rgba(217, 154, 24, 0.08),
    0 0 58px rgba(217, 154, 24, 0.34);
}

.nj-polished .nj-kicker {
  color: var(--nj-bright-gold);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.nj-polished h1,
.nj-polished h2,
.nj-polished h3 {
  font-family: "Cinzel", Georgia, serif;
  text-transform: uppercase;
}

.nj-polished h1 {
  max-width: 760px;
  color: var(--nj-gold);
  font-size: clamp(3rem, 6.6vw, 7.5rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.11em;
  text-wrap: balance;
}

.nj-polished h2 {
  max-width: 900px;
  color: #fff7e6;
  font-size: clamp(2.2rem, 4.4vw, 5.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.nj-polished h3 {
  color: var(--nj-bright-gold);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.26;
  letter-spacing: 0.16em;
}

.nj-polished .nj-subtitle {
  position: relative;
  margin-top: 4px;
  padding-top: 22px;
  color: var(--nj-soft-gold);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nj-polished .nj-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(520px, 100%);
  height: 1px;
  background: linear-gradient(90deg, var(--nj-gold), transparent);
}

.nj-polished .nj-hero-text,
.nj-polished .nj-copy-panel p,
.nj-polished .nj-packaging-copy p,
.nj-polished .nj-creator-copy p,
.nj-polished .nj-video-section p,
.nj-polished .nj-product-card p {
  max-width: 700px;
  color: var(--nj-copy);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  font-weight: 500;
  line-height: 1.72;
}

.nj-polished .nj-actions {
  gap: 14px;
  margin-top: 14px;
}

.nj-polished .nj-button {
  min-height: 48px;
  border-radius: 0;
  border-color: rgba(255, 211, 95, 0.46);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nj-polished .nj-button.primary {
  background: linear-gradient(135deg, #8b5708, #d99a18 48%, #ffe7a6);
  color: #070503;
}

.nj-polished .nj-button.secondary {
  background: rgba(255, 255, 255, 0.035);
}

.nj-polished .nj-hero-visual {
  min-height: auto;
}

.nj-polished .nj-hero-product {
  border-radius: 0;
  transform: none;
}

.nj-polished .nj-hero-product img {
  min-height: clamp(430px, 46vw, 680px);
  object-fit: cover;
  object-position: center;
}

.nj-polished .nj-hero-product figcaption {
  right: 18px;
  left: auto;
  bottom: 18px;
  border-color: rgba(255, 211, 95, 0.44);
  border-radius: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.nj-polished .nj-section,
.nj-polished .nj-band,
.nj-polished .nj-split,
.nj-polished .nj-packaging-section,
.nj-polished .nj-creator-section,
.nj-polished .nj-video-section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.nj-polished .nj-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(26px, 4vw, 48px);
  border: 1px solid var(--nj-line);
  background: transparent;
}

.nj-polished .nj-product-card {
  position: relative;
  display: grid;
  min-height: clamp(300px, 28vw, 390px);
  padding: clamp(24px, 3vw, 38px);
  align-content: end;
  border: 0;
  border-right: 1px solid var(--nj-line);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 14%, rgba(217, 154, 24, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #050403;
  box-shadow: none;
}

.nj-polished .nj-product-card:last-child {
  border-right: 0;
}

.nj-polished .nj-product-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 211, 95, 0.45),
    0 24px 70px rgba(217, 154, 24, 0.12);
}

.nj-polished .nj-card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255, 211, 95, 0.38);
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.nj-polished .nj-icon {
  width: 70px;
  height: 70px;
  margin-bottom: auto;
  border-color: rgba(255, 211, 95, 0.58);
  border-radius: 0;
}

.nj-polished .nj-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  border-block: 1px solid var(--nj-line);
}

.nj-polished .nj-sports-list {
  justify-content: flex-start;
}

.nj-polished .nj-sports-list span,
.nj-polished .nj-pill-row span {
  border-color: rgba(255, 211, 95, 0.32);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.nj-polished .nj-split,
.nj-polished .nj-packaging-section,
.nj-polished .nj-creator-section,
.nj-polished .nj-video-section {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.nj-polished .nj-copy-panel,
.nj-polished .nj-video-placeholder,
.nj-polished .nj-creator-image,
.nj-polished .nj-packaging-visual {
  border: 1px solid var(--nj-line);
  border-radius: 0;
  background:
    radial-gradient(circle at 74% 12%, rgba(217, 154, 24, 0.12), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    #050403;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.nj-polished .nj-copy-panel {
  padding: clamp(24px, 4vw, 48px);
}

.nj-polished .nj-packaging-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.7fr);
}

.nj-polished .nj-packaging-visual,
.nj-polished .nj-packaging-visual img {
  min-height: clamp(430px, 44vw, 640px);
}

.nj-polished .nj-creator-image {
  min-height: 400px;
}

.nj-polished .nj-signature-card {
  width: min(460px, calc(100% - 44px));
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 211, 95, 0.58);
  color: var(--nj-soft-gold);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(217, 154, 24, 0.12);
}

.nj-polished .nj-signature {
  display: block;
  margin-bottom: 18px;
  color: var(--nj-bright-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-style: italic;
  line-height: 0.88;
}

.nj-polished .nj-signature-card span:not(.nj-signature),
.nj-polished .nj-signature-card strong {
  display: block;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nj-polished .nj-signature-card strong {
  margin-top: 8px;
}

.nj-polished .nj-video-section {
  grid-template-columns: 1fr minmax(280px, 0.42fr);
}

.nj-polished .nj-video-placeholder {
  min-height: 340px;
}

.nj-polished .nj-qr-placeholder {
  width: 138px;
  height: 138px;
  border-color: var(--nj-bright-gold);
}

.nj-polished .nj-footer {
  width: min(1360px, calc(100% - clamp(28px, 6vw, 96px)));
  border-top: 1px solid var(--nj-line);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
}

.nj-polished .nj-footer a {
  color: var(--nj-soft-gold);
}

@media (max-width: 980px) {
  .nj-polished .nj-hero,
  .nj-polished .nj-band,
  .nj-polished .nj-split,
  .nj-polished .nj-packaging-section,
  .nj-polished .nj-creator-section,
  .nj-polished .nj-video-section {
    grid-template-columns: 1fr;
  }

  .nj-polished .nj-product-grid {
    grid-template-columns: 1fr;
  }

  .nj-polished .nj-product-card {
    border-right: 0;
    border-bottom: 1px solid var(--nj-line);
  }

  .nj-polished .nj-product-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .nj-polished main {
    width: 100%;
    margin: 0;
    border-inline: 0;
  }

  .nj-polished .nj-hero,
  .nj-polished .nj-section,
  .nj-polished .nj-band,
  .nj-polished .nj-split,
  .nj-polished .nj-packaging-section,
  .nj-polished .nj-creator-section,
  .nj-polished .nj-video-section,
  .nj-polished .nj-footer {
    width: min(100% - 28px, 1360px);
  }

  .nj-polished h1 {
    font-size: clamp(2.3rem, 13.5vw, 4.1rem);
    letter-spacing: 0.055em;
  }

  .nj-polished h2 {
    font-size: clamp(2rem, 11vw, 3.6rem);
    letter-spacing: 0.025em;
  }

  .nj-polished .nj-subtitle,
  .nj-polished .nj-kicker {
    letter-spacing: 0.16em;
  }

  .nj-polished .nj-hero-product img,
  .nj-polished .nj-packaging-visual,
  .nj-polished .nj-packaging-visual img {
    min-height: 320px;
  }

  .nj-polished .nj-actions {
    flex-direction: column;
  }
}

/* NJ Cue Sports final draft - leaflet-led layout */
.nj-final {
  --nj-bg: #020100;
  --nj-card: rgba(8, 7, 5, 0.88);
  --nj-gold: #d89616;
  --nj-gold-2: #ffcf54;
  --nj-cream: #fff1c5;
  --nj-line: rgba(216, 150, 22, 0.44);
  --nj-copy: rgba(255, 255, 255, 0.76);
  margin: 0;
  background:
    radial-gradient(circle at 72% 14%, rgba(216, 150, 22, 0.24), transparent 30rem),
    radial-gradient(circle at 35% 55%, rgba(216, 150, 22, 0.08), transparent 34rem),
    linear-gradient(135deg, #000 0%, #070503 56%, #000 100%);
  color: #fff;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nj-final * {
  box-sizing: border-box;
}

.nj-final .nj-shell {
  width: min(1560px, calc(100% - clamp(20px, 3vw, 42px)));
  margin: clamp(12px, 1.8vw, 26px) auto;
  border: 1px solid var(--nj-line);
  box-shadow:
    inset 0 0 0 1px rgba(255, 207, 84, 0.18),
    0 0 120px rgba(216, 150, 22, 0.1);
}

.nj-final .nj-shell {
  overflow: hidden;
}

.nj-final-hero,
.nj-final-products,
.nj-final-packaging,
.nj-final-sports,
.nj-final-mechanics,
.nj-final-creator,
.nj-final-video {
  width: min(1380px, calc(100% - clamp(28px, 5vw, 84px)));
  margin: 0 auto;
}

.nj-final-hero {
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: calc(92svh - 52px);
  padding: clamp(58px, 7vw, 104px) 0 clamp(72px, 8vw, 118px);
}

.nj-final-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  min-width: 0;
  width: 100%;
  max-width: 860px;
  isolation: isolate;
  z-index: 2;
}

.nj-final-logo {
  width: clamp(120px, 13vw, 190px);
  height: clamp(120px, 13vw, 190px);
  margin-bottom: clamp(18px, 2.6vw, 36px);
  border: 0;
  border-radius: 999px;
  object-fit: contain;
  box-shadow: 0 0 58px rgba(216, 150, 22, 0.28);
}

.nj-final-overline {
  margin: 0;
  color: var(--nj-gold-2);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.nj-final h1,
.nj-final h2,
.nj-final h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  text-wrap: balance;
}

.nj-final h1 {
  width: 100%;
  max-width: 720px;
  margin-top: 10px;
  color: var(--nj-gold);
  font-size: clamp(3rem, 4.7vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: 0.105em;
  text-shadow: 0 0 28px rgba(216, 150, 22, 0.26);
  overflow-wrap: normal;
}

.nj-final h2 {
  max-width: 980px;
  color: #fff7df;
  font-size: clamp(2rem, 4.1vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: 0.08em;
}

.nj-final h3 {
  color: var(--nj-gold-2);
  font-size: clamp(1.05rem, 1.35vw, 1.34rem);
  line-height: 1.26;
  letter-spacing: 0.16em;
}

.nj-final-subtitle {
  max-width: 760px;
  margin: clamp(12px, 2vw, 22px) 0 0;
  color: var(--nj-cream);
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nj-final-rule {
  width: min(650px, 100%);
  height: 1px;
  margin: clamp(18px, 2.6vw, 30px) auto;
  background: linear-gradient(90deg, transparent, var(--nj-gold), var(--nj-cream), var(--nj-gold), transparent);
}

.nj-final-intro,
.nj-final-section-head p,
.nj-final-copy-panel p,
.nj-final-product-card p,
.nj-final-video p {
  margin: 0;
  color: var(--nj-copy);
  font-size: clamp(0.98rem, 1.12vw, 1.1rem);
  font-weight: 500;
  line-height: 1.72;
}

.nj-final-intro {
  max-width: 640px;
}

.nj-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
}

.nj-final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 207, 84, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nj-final-button.primary {
  color: #090603;
  background: linear-gradient(135deg, #9b6208, var(--nj-gold), var(--nj-cream));
}

.nj-final-button:hover,
.nj-final-button:focus-visible {
  border-color: var(--nj-cream);
  box-shadow: 0 18px 60px rgba(216, 150, 22, 0.2);
  transform: translateY(-2px);
  outline: none;
}

.nj-final-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--nj-line);
  background: #060503;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  z-index: 1;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(216, 150, 22, 0.16);
}

.nj-final-portrait::after,
.nj-final-image-stack::after,
.nj-final-creator-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 207, 84, 0.32);
  pointer-events: none;
}

.nj-final-portrait img {
  display: block;
  width: 100%;
  height: min(72svh, 680px);
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
}

.nj-final-products,
.nj-final-packaging,
.nj-final-sports,
.nj-final-mechanics,
.nj-final-creator,
.nj-final-video {
  padding: clamp(62px, 8vw, 112px) 0;
  border-top: 1px solid rgba(216, 150, 22, 0.22);
}

.nj-final-section-head {
  display: grid;
  gap: 18px;
}

.nj-final-section-head.centered {
  justify-items: center;
  text-align: center;
}

.nj-final-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(34px, 4.8vw, 62px);
}

.nj-final-product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
  justify-items: center;
  gap: clamp(14px, 1.7vw, 22px);
  min-height: clamp(430px, 31vw, 500px);
  padding: clamp(24px, 3vw, 42px);
  text-align: center;
  border: 1px solid rgba(216, 150, 22, 0.34);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 207, 84, 0.16), transparent 35%),
    linear-gradient(135deg, rgba(255, 207, 84, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    #050403;
  box-shadow:
    inset 0 0 0 1px rgba(255, 232, 166, 0.05),
    0 30px 70px rgba(0, 0, 0, 0.36);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.nj-final-product-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 207, 84, 0.18);
  pointer-events: none;
}

.nj-final-product-card::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 1px;
  left: 14%;
  top: clamp(248px, 18vw, 306px);
  background: linear-gradient(90deg, transparent, rgba(255, 207, 84, 0.46), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.nj-final-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 207, 84, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 232, 166, 0.09),
    0 36px 86px rgba(0, 0, 0, 0.46),
    0 0 38px rgba(216, 150, 22, 0.12);
}

.nj-final-icon {
  width: 78px;
  height: 78px;
  margin-bottom: auto;
  border: 1px solid rgba(255, 207, 84, 0.46);
  background:
    radial-gradient(circle, rgba(255, 207, 84, 0.28), transparent 46%),
    rgba(216, 150, 22, 0.06);
}

.nj-final-icon.ball {
  border-radius: 999px;
}

.nj-final-icon.fin {
  clip-path: polygon(18% 84%, 52% 10%, 84% 84%);
  border-radius: 0;
}

.nj-final-product-image {
  display: block;
  width: min(260px, 82%);
  height: clamp(210px, 17vw, 270px);
  margin: 0 auto clamp(8px, 1vw, 14px);
  object-fit: contain;
  filter:
    drop-shadow(0 22px 38px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 18px rgba(216, 150, 22, 0.22));
}

.nj-final-product-card h3 {
  max-width: 300px;
  min-height: 2.55em;
  display: grid;
  align-items: center;
  justify-items: center;
}

.nj-final-product-card p {
  max-width: 300px;
  margin: 0 auto;
  align-self: start;
}

.nj-final-packaging,
.nj-final-mechanics,
.nj-final-creator,
.nj-final-video {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.nj-final-image-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--nj-line);
  background: #050403;
  padding: 12px;
}

.nj-final-image-stack img,
.nj-final-creator-image img {
  display: block;
  width: 100%;
  height: clamp(380px, 42vw, 620px);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(1.04);
}

.nj-final-image-stack img:nth-child(2) {
  object-position: 48% center;
}

.nj-final-sports {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.nj-final-sports-list,
.nj-final-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nj-final-sports-list span,
.nj-final-pill-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 207, 84, 0.32);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nj-final-mechanics {
  grid-template-columns: minmax(320px, 0.65fr) minmax(0, 1fr);
}

.nj-final-copy-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--nj-line);
  background:
    radial-gradient(circle at 75% 0%, rgba(216, 150, 22, 0.12), transparent 26rem),
    var(--nj-card);
}

.nj-final-creator-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--nj-line);
}

.nj-final-creator {
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.92fr);
  align-items: center;
}

.nj-final-video {
  grid-template-columns: 1fr minmax(240px, 0.32fr);
}

.nj-final-qr {
  display: grid;
  place-items: center;
  min-height: 300px;
  border: 1px solid var(--nj-line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 10px, transparent 10px) 0 0 / 28px 28px,
    linear-gradient(rgba(255, 255, 255, 0.9) 10px, transparent 10px) 0 0 / 28px 28px,
    #050403;
}

.nj-final-qr span {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border: 1px solid var(--nj-gold);
  color: var(--nj-cream);
  background: #050403;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.2rem;
}

.nj-final-footer {
  width: min(1560px, calc(100% - clamp(20px, 3vw, 42px)));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 44px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nj-final-footer a {
  color: var(--nj-cream);
  text-decoration: none;
}

.nj-final-socials {
  display: flex;
  gap: 8px;
}

.nj-final-socials span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 207, 84, 0.32);
  color: var(--nj-cream);
  border-radius: 999px;
  font-size: 0.72rem;
}

@media (max-width: 1040px) {
  .nj-final-hero,
  .nj-final-packaging,
  .nj-final-mechanics,
  .nj-final-creator,
  .nj-final-video {
    grid-template-columns: 1fr;
  }

  .nj-final-copy {
    order: 1;
  }

  .nj-final-portrait {
    order: 2;
    max-width: 620px;
    margin-inline: auto;
    justify-self: center;
  }

  .nj-final-product-grid {
    grid-template-columns: 1fr;
  }

  .nj-final-product-card {
    min-height: auto;
    padding: clamp(24px, 4vw, 34px);
  }

  .nj-final-product-card::after {
    top: clamp(236px, 33vw, 292px);
  }

  .nj-final-product-image {
    width: min(230px, 70%);
    height: clamp(190px, 28vw, 250px);
  }
}

@media (min-width: 1041px) and (max-width: 1320px) {
  .nj-final-hero {
    grid-template-columns: 1fr;
  }

  .nj-final-copy {
    max-width: 780px;
  }

  .nj-final h1 {
    max-width: 760px;
    font-size: clamp(3.35rem, 5.6vw, 5rem);
    letter-spacing: 0.085em;
  }

  .nj-final-subtitle {
    max-width: 560px;
    letter-spacing: 0.22em;
  }

  .nj-final-portrait {
    max-width: 390px;
  }

  .nj-final-portrait img {
    height: min(68svh, 620px);
    min-height: 470px;
  }
}

@media (max-width: 680px) {
  .nj-final .nj-shell {
    width: 100%;
    margin: 0;
    border-inline: 0;
  }

  .nj-final-hero,
  .nj-final-products,
  .nj-final-packaging,
  .nj-final-sports,
  .nj-final-mechanics,
  .nj-final-creator,
  .nj-final-video,
  .nj-final-footer {
    width: min(100% - 28px, 1380px);
  }

  .nj-final h1 {
    font-size: clamp(2.2rem, 12.6vw, 4.2rem);
    letter-spacing: 0.06em;
  }

  .nj-final h2 {
    font-size: clamp(1.9rem, 10vw, 3.4rem);
    letter-spacing: 0.04em;
  }

  .nj-final-subtitle,
  .nj-final-overline {
    letter-spacing: 0.16em;
  }

  .nj-final-actions {
    flex-direction: column;
    width: 100%;
  }

  .nj-final-portrait img,
  .nj-final-image-stack img,
  .nj-final-creator-image img {
    min-height: auto;
    height: auto;
  }

  .nj-final-image-stack {
    grid-template-columns: 1fr;
  }

  .nj-final-product-card {
    min-height: 0;
    gap: 14px;
    padding: 24px 22px 28px;
  }

  .nj-final-product-card::before {
    inset: 10px;
  }

  .nj-final-product-card::after {
    top: 224px;
  }

  .nj-final-product-image {
    width: min(210px, 78%);
    height: 176px;
  }

  .nj-final-product-card h3 {
    min-height: 0;
    font-size: clamp(0.98rem, 4.2vw, 1.18rem);
    letter-spacing: 0.11em;
  }

  .nj-final-product-card p {
    font-size: 0.96rem;
    line-height: 1.58;
  }
}

.landing-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(92, 196, 212, 0.13), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(114, 208, 120, 0.15), transparent 26%),
    linear-gradient(180deg, #0B0D0C 0%, #080809 100%);
}

.social-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 14%, rgba(92, 196, 212, 0.14), transparent 28%),
    radial-gradient(circle at 16% 20%, rgba(114, 208, 120, 0.16), transparent 26%),
    linear-gradient(180deg, #0B0D0C 0%, #080809 100%);
}

.landing-main {
  display: grid;
  gap: clamp(34px, 6vw, 70px);
  padding: clamp(118px, 12vw, 154px) clamp(18px, 6vw, 96px) clamp(72px, 9vw, 110px);
}

.social-main {
  display: grid;
  gap: clamp(34px, 6vw, 70px);
  padding: clamp(118px, 12vw, 154px) clamp(18px, 6vw, 96px) clamp(72px, 9vw, 110px);
}

.landing-hero,
.landing-section,
.landing-faq,
.social-hero,
.social-grid {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.landing-hero,
.social-hero {
  display: grid;
  gap: 18px;
  text-align: center;
}

.landing-hero .kicker,
.landing-section .kicker,
.social-hero .kicker {
  color: var(--green-2);
}

.landing-hero h1,
.social-hero h1 {
  max-width: 1050px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6.4vw, 6.4rem);
  line-height: 1;
}

.landing-hero p,
.social-hero p {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  font-weight: 640;
  line-height: 1.44;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.social-card {
  position: relative;
  display: grid;
  min-height: 260px;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(114, 208, 120, 0.18);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 18% 0%, rgba(114, 208, 120, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.055);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.social-card::before {
  content: attr(data-icon);
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 950;
  line-height: 1;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(114, 208, 120, 0.42);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.social-card strong {
  position: relative;
  z-index: 1;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 950;
}

.social-card span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.landing-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid rgba(114, 208, 120, 0.26);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.landing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.landing-section h2,
.landing-faq h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 1.04;
}

.landing-section p,
.landing-faq p {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 580;
  line-height: 1.52;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-card,
.landing-faq details {
  border: 1px solid rgba(114, 208, 120, 0.17);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 18% 0%, rgba(114, 208, 120, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.landing-card {
  padding: clamp(18px, 2.4vw, 26px);
}

.landing-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
}

.landing-card p {
  margin: 0;
  font-size: 0.98rem;
}

.landing-faq {
  display: grid;
  gap: 12px;
}

.landing-faq details {
  padding: 18px 20px;
}

.landing-faq summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
  list-style: none;
}

.landing-faq summary::-webkit-details-marker {
  display: none;
}

.landing-faq details p {
  margin: 12px 0 0;
}

.press-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
}

.press-copy {
  max-width: 760px;
}

.press-copy .kicker,
.press-band .kicker {
  margin-bottom: 14px;
  color: var(--green-2);
}

.press-copy h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 5.9vw, 6rem);
  line-height: 1;
}

.press-copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.5vw, 1.3rem);
  font-weight: 650;
  line-height: 1.4;
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.press-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid rgba(114, 208, 120, 0.28);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 208, 120, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.press-actions a:hover,
.press-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(114, 208, 120, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.28);
}

.press-visual {
  position: relative;
  min-height: min(680px, 58vw);
}

.press-visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% 4% 10%;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.78)),
    url("assets/hero-kitchen-phone.jpg") center / cover;
  opacity: 0.82;
  transform: rotate(-6deg);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}

.press-feature-card {
  position: absolute;
  inset: 8% 0 auto auto;
  display: grid;
  width: min(640px, 92%);
  gap: 18px;
  padding: clamp(18px, 2.5vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.66)),
    #0B0D0C;
  box-shadow:
    inset 0 -120px 120px rgba(8, 8, 9, 0.46),
    0 34px 80px rgba(0, 0, 0, 0.34);
}

.press-feature-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.press-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.04), rgba(8, 8, 9, 0.72)),
    radial-gradient(circle at 50% 100%, rgba(65, 167, 69, 0.2), transparent 42%);
  pointer-events: none;
}

.press-feature-card strong {
  position: relative;
  z-index: 1;
  align-self: end;
  width: fit-content;
  margin-top: min(220px, 24vw);
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: rgba(8, 8, 9, 0.66);
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 900;
}

.press-feature-card .press-chip-row {
  position: relative;
  z-index: 1;
}

.press-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.press-chip-row span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(8, 8, 9, 0.58);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.press-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(114, 208, 120, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 0%, rgba(114, 208, 120, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.press-band h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.2vw, 4.3rem);
}

.press-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  font-weight: 650;
  line-height: 1.42;
}

.press-points {
  display: grid;
  gap: 14px;
}

.press-points article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(8, 8, 9, 0.42);
}

.press-points h3 {
  margin: 0 0 7px;
  color: var(--green-2);
  font-size: 1.02rem;
}

.press-points p {
  margin: 0;
  font-size: 0.98rem;
}

.press-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.press-proof article {
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-brand);
  background:
    radial-gradient(circle at 18% 0%, rgba(92, 196, 212, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.press-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.18rem, 1.9vw, 1.6rem);
  line-height: 1.08;
}

.press-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  line-height: 1.38;
}

.press-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(114, 208, 120, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 0%, rgba(114, 208, 120, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.06);
}

.press-contact h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

.press-contact p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-weight: 650;
  line-height: 1.4;
}

.press-contact a {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSoft {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes vaultDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}

@keyframes flowRail {
  0%,
  8% {
    opacity: 0.2;
    transform: translateX(-42%) scaleX(0.24);
  }
  50% {
    opacity: 0.72;
    transform: translateX(0) scaleX(1);
  }
  92%,
  100% {
    opacity: 0.2;
    transform: translateX(42%) scaleX(0.24);
  }
}

@keyframes flowStep {
  0%,
  16%,
  100% {
    border-color: rgba(114, 208, 120, 0.2);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 16px 34px rgba(0, 0, 0, 0.16);
    color: rgba(255, 255, 255, 0.88);
    transform: translateY(0) scale(1);
  }
  7% {
    border-color: rgba(114, 208, 120, 0.58);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 0 0 1px rgba(114, 208, 120, 0.12),
      0 20px 46px rgba(65, 167, 69, 0.22),
      0 0 34px rgba(114, 208, 120, 0.18);
    color: var(--white);
    transform: translateY(-3px) scale(1.025);
  }
}

@keyframes flowShine {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translateX(-115%);
  }
  6% {
    opacity: 0.86;
    transform: translateX(0);
  }
  12% {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes flowArrow {
  0%,
  17%,
  100% {
    opacity: 0.64;
    transform: translateX(0) scale(1);
  }
  8% {
    opacity: 1;
    transform: translateX(4px) scale(1.28);
  }
}

@keyframes vaultMethodFloat {
  0%,
  100% {
    border-color: rgba(114, 208, 120, 0.26);
    color: var(--green-2);
    transform: translateY(0);
  }
  42% {
    border-color: rgba(114, 208, 120, 0.48);
    color: var(--kiwi100);
    transform: translateY(-3px);
  }
}

@keyframes vaultMethodSheen {
  0%,
  40%,
  100% {
    opacity: 0;
    transform: translateX(-120%);
  }
  52% {
    opacity: 1;
    transform: translateX(120%);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0) scale(0.98);
  }
  45% {
    opacity: 1;
    transform: translateY(-8px) scale(1);
  }
}

@keyframes scrollChevron {
  0% {
    opacity: 0;
    transform: translateY(-8px) rotate(45deg);
  }
  35% {
    opacity: 1;
  }
  70%,
  100% {
    opacity: 0;
    transform: translateY(9px) rotate(45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-flow::before,
  .system-flow span,
  .system-flow span::before,
  .system-flow span:not(:last-child)::after,
  .vault-inputs span,
  .vault-inputs span::after {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .quote-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .system-flow span:nth-child(3)::after {
    display: none;
  }

  h1 {
    font-size: clamp(3.1rem, 9vw, 6.2rem);
    letter-spacing: -0.002em;
    line-height: 1.025;
  }

  h2 {
    font-size: clamp(2.55rem, 6.6vw, 5.1rem);
    letter-spacing: -0.001em;
    line-height: 1.025;
  }
}

@media (max-width: 980px) {
  .ingredient-prompts {
    justify-content: center;
  }

  .vault-capture-grid {
    grid-template-columns: 1fr;
  }

  .vault-capture-card {
    min-height: auto;
  }

  .press-hero,
  .press-band,
  .press-contact,
  .landing-section {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-visual {
    min-height: min(620px, 92vw);
  }

  .press-feature-card {
    inset: 6% 0 auto 0;
    margin-inline: auto;
  }

  .press-proof {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    min-height: 64px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .feature-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  #cook {
    grid-template-columns: 1fr;
  }

  .journey-step,
  .journey-step:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .setup-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .setup-copy {
    margin-inline: auto;
  }

  .setup-copy p:not(.kicker) {
    margin-inline: auto;
  }

  .journey-step:nth-child(even) .journey-media {
    order: 0;
  }

  .journey-copy,
  .journey-step:nth-child(even) .journey-copy {
    justify-self: center;
    margin-inline: auto;
  }

  .journey-step h3 {
    max-width: none;
  }

  .journey-media {
    min-height: min(500px, 66vw);
  }

  .journey-step {
    max-width: 760px;
    margin-inline: auto;
  }

  .setup-showcase {
    max-width: 760px;
    margin-inline: auto;
  }

  .stage-copy {
    margin: 0 auto;
  }

  .stage-copy p:not(.kicker),
  .feature-list,
  .ingredient-bot-note {
    margin-inline: auto;
  }

  .carrot-ideas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stage-art,
  .hand-scene {
    min-height: 500px;
  }

  #cook .hand-scene {
    min-height: min(540px, 76vw);
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .ingredient-stage::before {
    inset: 0;
    width: auto;
    opacity: 0.46;
    background-position: 58% center;
    transform: none;
  }

  .ingredient-stage::after {
    background:
      linear-gradient(180deg, rgba(8, 8, 9, 0.92) 0%, rgba(8, 8, 9, 0.66) 54%, rgba(8, 8, 9, 0.82) 100%),
      radial-gradient(circle at 50% 62%, rgba(231, 142, 63, 0.16), transparent 34%);
  }

  .phone-lift,
  .hand-phone {
    right: 50%;
    width: min(520px, 78vw);
    transform: translate3d(50%, var(--parallax-y, 0), 0);
  }

  #cook .hand-phone {
    right: -4%;
    width: min(500px, 72vw);
  }

  .vault-device {
    right: 50%;
    top: 48%;
    width: min(760px, 104vw);
    transform: translate3d(50%, calc(-50% + var(--parallax-y, 0)), 0) rotate(-3deg);
  }

  .vault-signal {
    font-size: 0.82rem;
  }

  .signal-one {
    right: 12%;
    top: 13%;
  }

  .signal-two {
    right: 4%;
    top: 48%;
  }

  .signal-three {
    right: 24%;
    bottom: 12%;
  }

  .phone-shadow,
  .floating-phone {
    left: 50%;
    width: min(330px, 52vw);
    transform: translate3d(-82%, var(--parallax-y, 0), 0);
  }

  #cook .floating-phone {
    left: 8%;
    width: min(340px, 48vw);
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 58px;
    padding-inline: 16px;
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    padding: 9px 15px;
    font-size: 0.82rem;
  }

  .header-link {
    padding: 9px 15px;
    font-size: 0.82rem;
  }

  .press-main {
    padding-top: 96px;
  }

  .press-visual {
    min-height: 520px;
  }

  .press-feature-card {
    width: 100%;
  }

  .press-feature-card strong {
    margin-top: 180px;
  }

  .press-actions a {
    width: 100%;
  }

  .hero {
    padding: 88px 18px 118px;
  }

  .ingredient-prompts {
    grid-template-columns: repeat(2, max-content);
  }

  .hero-bg {
    object-position: 58% center;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.6rem);
    letter-spacing: 0;
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.85rem);
    letter-spacing: 0;
    line-height: 1.03;
  }

  .hero-logo {
    width: min(220px, 66vw);
    max-height: 56px;
  }

  .hero-copy {
    font-size: clamp(1rem, 4.8vw, 1.26rem);
    line-height: 1.28;
  }

  #cook h2 {
    font-size: clamp(2.2rem, 9.5vw, 3.35rem);
  }

  #cook .stage-copy p:not(.kicker) {
    font-size: 1rem;
  }

  .quote-grid,
  .pricing-grid,
  .object-grid,
  .seo-faq-grid,
  .landing-card-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .share-rail {
    top: auto;
    right: 50%;
    bottom: 14px;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    padding: 8px 10px;
    transform: translateX(50%);
  }

  .share-rail-label {
    display: none;
  }

  .share-rail-button {
    width: 36px;
    height: 36px;
  }

  .share-rail-status {
    right: 50%;
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateX(50%);
  }

  .setup-card-grid {
    grid-template-columns: 1fr;
  }

  .setup-showcase {
    padding: 22px;
  }

  .setup-copy h3 {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .setup-card {
    min-height: 240px;
  }

  .manifesto,
  .voices-section,
  .ai-layer,
  .pricing-section {
    padding: 72px 18px 116px;
  }

  .voices-section {
    padding-bottom: 148px;
  }

  .voices-intro h2,
  .pricing-intro h2,
  .journey-intro h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .manifesto p:not(.kicker),
  .voices-intro p,
  .ai-layer p,
  .pricing-intro p,
  .stage-copy p:not(.kicker) {
    font-size: 1rem;
    line-height: 1.42;
  }

  .pricing-section {
    padding-top: 82px;
  }

  .pricing-grid {
    gap: 14px;
    margin-top: 22px;
  }

  .price-card {
    padding: 22px;
  }

  .system-flow {
    grid-template-columns: 1fr;
  }

  .system-flow span:not(:last-child)::after,
  .system-flow span:nth-child(3)::after {
    right: 50%;
    bottom: -17px;
    display: block;
    transform: translateX(50%) rotate(90deg);
  }

  .system-flow span:last-child::after {
    display: none;
  }

  .carrot-ideas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-card {
    min-height: auto;
  }

  .object-grid article {
    min-height: 230px;
  }

  .equipment-card {
    align-items: end;
    justify-items: start;
    text-align: left;
  }

  .equipment-card span {
    max-width: calc(100% - 10px);
    text-align: left;
  }

  .equipment-card:hover span,
  .equipment-card:focus-visible span {
    inset: auto 20px 20px;
    max-width: calc(100% - 40px);
    text-align: left;
    transform: none;
  }

  .recipe-chip {
    min-height: 126px;
  }

  .journey-step span {
    margin-bottom: 18px;
  }

  .journey-step {
    padding: 18px;
  }

  .journey-media {
    min-height: 320px;
  }

  .journey-media img {
    width: min(98%, 520px);
    max-height: 290px;
  }

  .store-row img {
    height: 43px;
  }

  .feature-stage {
    min-height: auto;
    padding-block: 72px 116px;
  }

  .equipment-stage,
  .ingredient-stage {
    padding-bottom: 116px;
  }

  .stage-art,
  .hand-scene {
    min-height: 380px;
  }

  #cook .hand-scene {
    min-height: 360px;
  }

  #cook .hand-phone {
    right: -16%;
    bottom: -9%;
    width: min(390px, 82vw);
  }

  #cook .floating-phone {
    left: -7%;
    top: 11%;
    width: min(280px, 58vw);
  }

  .vault-device {
    width: min(760px, 138vw);
  }

  .vault-signal {
    display: none;
  }

  .phone-shadow,
  .floating-phone {
    width: 48vw;
  }

  .download-section {
    background-attachment: scroll;
  }

  footer {
    gap: 16px;
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
  }

  .footer-topline {
    flex-direction: column;
  }
}

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

  .parallax {
    --parallax-y: 0 !important;
  }
}

