:root {
  --ink: #0a0e14;
  --ink-soft: #151b26;
  --ink-muted: #8892a4;
  --snow: #f4f6fa;
  --snow-2: #e8ecf4;
  --lime: #b8f04a;
  --lime-dim: #8bc42e;
  --coral: #ff5c7a;
  --coral-dim: #e04562;
  --violet: #7c6bff;
  --surface: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(10, 14, 20, 0.1);
  --radius-sharp: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1180px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  background: var(--snow);
}

body.page-home {
  background: var(--ink);
  color: var(--snow);
}

body.page-inner {
  background:
    linear-gradient(180deg, var(--snow) 0%, #fff 40%),
    var(--snow);
}

h1,
h2,
h3,
.section-title,
.hero h1,
.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

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

main {
  display: block;
}

.container {
  width: min(94%, var(--max-width));
  margin: 0 auto;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px);
}

body.page-inner .site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(94%, var(--max-width));
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sharp);
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 4px 4px 0 var(--coral);
  transform: rotate(-3deg);
}

body.page-inner .brand-mark {
  box-shadow: 4px 4px 0 var(--violet);
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text span:first-child {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  font-weight: 700;
}

body.page-home .brand-text span:first-child {
  color: rgba(244, 246, 250, 0.55);
}

.brand-text span:last-child {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}

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

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

.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-sharp);
  color: rgba(244, 246, 250, 0.75);
  transition: background 0.15s, color 0.15s;
}

body.page-inner .nav-link {
  color: var(--ink-soft);
}

.nav-link:hover {
  color: var(--lime);
  background: rgba(184, 240, 74, 0.1);
}

body.page-inner .nav-link:hover {
  color: var(--ink);
  background: var(--snow-2);
}

.nav-link.active {
  color: var(--ink);
  background: var(--lime);
}

body.page-inner .nav-link.active {
  background: var(--ink);
  color: var(--lime);
}

.header-cta {
  display: none;
  padding: 10px 18px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: var(--radius-sharp);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 3px 3px 0 var(--lime);
  transition: transform 0.15s;
}

.header-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--lime);
}

.contact-inline {
  display: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lime);
}

body.page-inner .contact-inline {
  color: var(--ink);
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-block;
  }
}

@media (min-width: 900px) {
  .contact-inline {
    display: block;
    margin-left: 8px;
  }
}

/* ========== BUTTONS ========== */
.button,
button {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
}

.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sharp);
  box-shadow: 6px 6px 0 var(--coral);
  transition: transform 0.15s, box-shadow 0.15s;
}

.button.primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--coral);
}

body.page-inner .button.primary {
  box-shadow: 6px 6px 0 var(--ink);
}

body.page-inner .button.primary:hover {
  box-shadow: 9px 9px 0 var(--ink);
}

.pill {
  display: inline-block;
  padding: 5px 12px;
  background: var(--coral);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--radius-sharp);
}

/* ========== HERO STAGE (home) ========== */
.hero-stage {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 0;
  min-height: 92vh;
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 600px at 85% 20%, rgba(124, 107, 255, 0.35), transparent),
    radial-gradient(circle 500px at 10% 80%, rgba(255, 92, 122, 0.2), transparent),
    radial-gradient(circle 400px at 50% 50%, rgba(184, 240, 74, 0.08), transparent);
  pointer-events: none;
}

.hero-stage__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem);
  line-height: 0.95;
  margin: 20px 0 16px;
  text-transform: uppercase;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--lime);
  display: block;
}

.hero-tagline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--coral);
  margin: 0 0 20px;
  font-family: var(--font-display);
}

.hero-copy .lead {
  color: rgba(244, 246, 250, 0.82);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-copy .lead strong {
  color: var(--lime);
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  font-size: 0.94rem;
  color: rgba(244, 246, 250, 0.88);
}

.bullet-list li::before {
  content: "◆";
  color: var(--coral);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-product__ring {
  position: absolute;
  width: min(100%, 380px);
  aspect-ratio: 1;
  border: 2px dashed rgba(184, 240, 74, 0.4);
  border-radius: 50%;
  animation: spin-slow 24s linear infinite;
}

.hero-product__ring::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 92, 122, 0.35);
  border-radius: 50%;
}

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

.hero-product img {
  position: relative;
  z-index: 2;
  width: 72%;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.55));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.hero-stat {
  padding: 24px 20px;
  background: var(--ink-soft);
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  font-weight: 700;
}

.cite-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: rgba(244, 246, 250, 0.55);
}

.cite-note a,
.hero-copy .ref-link {
  color: var(--lime);
  text-decoration: underline;
}

.hero-copy .ref-link:hover {
  color: var(--coral);
}

/* ========== TICKER ========== */
.ticker {
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
  padding: 14px 0;
  border-top: 3px solid var(--coral);
  border-bottom: 3px solid var(--coral);
}

.ticker__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ticker__track span::before {
  content: "✦ ";
  color: var(--coral);
}

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

/* ========== SECTIONS (home light bands) ========== */
.section-band {
  padding: 72px 0;
  background: var(--snow);
  color: var(--ink);
}

.section-band--dark {
  background: var(--ink-soft);
  color: var(--snow);
}

.section-band--lime {
  background: var(--lime);
  color: var(--ink);
}

.section-band--offset {
  margin-top: -40px;
  padding-top: 100px;
  border-radius: 32px 32px 0 0;
  position: relative;
  z-index: 2;
}

.section-head {
  margin-bottom: 40px;
}

.section-head .section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 10px;
}

.section-band--dark .section-head .section-label {
  color: var(--lime);
}

.section-title {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem);
  margin: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 14px 0 0;
  color: var(--ink-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

.section-band--dark .section-subtitle,
.section-band--dark .muted {
  color: rgba(244, 246, 250, 0.65);
}

/* Showcase */
.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.showcase-visual {
  position: relative;
  background: var(--ink);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--violet);
}

.showcase-visual img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.showcase-copy h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-chip {
  padding: 8px 14px;
  background: var(--snow-2);
  border: 2px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sharp);
}

/* Split block */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.quote-panel {
  padding: 36px;
  background: var(--surface);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--coral);
  border-radius: var(--radius-md);
}

.section-band--dark .quote-panel {
  background: var(--ink);
  border-color: var(--lime);
  box-shadow: 8px 8px 0 var(--lime);
  color: var(--snow);
}

.section-band--dark .ref-link {
  color: var(--lime);
}

.quote-panel p {
  margin: 0 0 24px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.product-shot {
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
}

.product-shot img {
  width: 75%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Feature ribbon */
.feature-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-tile {
  padding: 28px 24px;
  background: var(--ink);
  color: var(--snow);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.feature-tile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--lime);
  opacity: 0.15;
  border-radius: 0 0 0 100%;
}

.feature-tile:nth-child(2) {
  background: var(--coral);
  transform: translateY(12px);
}

.feature-tile:nth-child(3) {
  background: var(--violet);
}

.feature-tile h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lime);
  margin: 0 0 12px;
}

.feature-tile:nth-child(2) h3 {
  color: var(--ink);
}

.feature-tile p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Ingredient timeline */
.ingredient-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ingredient-card {
  padding: 20px 16px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sharp);
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--coral);
}

.ingredient-card .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}

.ingredient-card a {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ingredient-card span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* Steps row */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-card {
  counter-increment: step;
  padding: 28px 24px 24px;
  background: var(--surface);
  border: 2px solid var(--ink);
  position: relative;
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 4px 10px;
  border: 2px solid var(--ink);
}

.step-card h3 {
  margin: 12px 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.step-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

/* Order block */
.order-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
  padding: 48px;
  background: var(--ink);
  color: var(--snow);
  border-radius: var(--radius-lg);
  border: 3px solid var(--lime);
  box-shadow: 16px 16px 0 var(--coral);
}

.price-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin: 16px 0;
}

.price-display small {
  display: block;
  font-size: 1rem;
  color: var(--ink-muted);
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-block .form {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.order-block .form label {
  color: rgba(244, 246, 250, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-block .input {
  background: var(--ink-soft);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--snow);
}

.order-block .input::placeholder {
  color: rgba(244, 246, 250, 0.35);
}

.order-block .input:focus {
  border-color: var(--lime);
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 240, 74, 0.25);
}

.order-block .button.primary {
  width: 100%;
}

/* References */
.ref-panel {
  padding: 40px;
  background: var(--snow-2);
  border-left: 6px solid var(--violet);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.ref-list {
  margin: 20px 0 0;
  padding-left: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.ref-list li {
  margin-bottom: 14px;
}

.ref-link {
  color: var(--coral-dim);
  font-weight: 700;
  text-decoration: underline;
}

.section-ref-note {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.muted {
  color: var(--ink-muted);
}

/* Legacy compat for subpages */
.section {
  padding: 48px 0;
}

.panel,
.card,
.content-card,
.hero-card,
.hero-visual,
.grid-2,
.grid-3,
.bento,
.lifestyle-grid,
.order-section,
.order-grid,
.stat-card,
.info-block,
.image-frame,
.steps,
.step {
  /* remapped via page-inner */
}

body.page-inner .content-page {
  padding: calc(var(--header-h) + 40px) 0 48px;
}

body.page-inner .content-card {
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 12px 12px 0 var(--lime);
}

body.page-inner .content-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  margin-top: 0;
}

body.page-inner .content-card h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin: 32px 0 12px;
  color: var(--coral-dim);
}

body.page-inner .content-card p,
body.page-inner .content-card li {
  color: var(--ink-soft);
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

.input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sharp);
  font-family: inherit;
  font-size: 1rem;
  background: var(--surface);
}

.input:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 4px 4px 0 var(--lime);
}

.inci-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.inci-table th,
.inci-table td {
  border: 2px solid var(--ink);
  padding: 12px 14px;
  text-align: left;
}

.inci-table th {
  background: var(--lime);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.inci-table tr:nth-child(even) td {
  background: var(--snow-2);
}

.contact-block {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-item {
  padding: 20px 22px;
  background: var(--snow-2);
  border: 2px solid var(--ink);
  border-left: 5px solid var(--coral);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */
.footer {
  margin-top: 0;
  padding: 48px 0 56px;
  background: var(--ink);
  color: var(--snow);
  border-top: 4px solid var(--lime);
}

body.page-home .footer {
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer a {
  color: var(--lime);
  font-weight: 700;
}

.footer a:hover {
  color: var(--coral);
}

.footer .muted {
  color: rgba(244, 246, 250, 0.7);
}

.footer .legal-line,
.footer small {
  color: rgba(244, 246, 250, 0.45);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-stage__grid,
  .showcase,
  .split-block,
  .feature-ribbon,
  .ingredient-timeline,
  .steps-row,
  .order-block {
    grid-template-columns: 1fr;
  }

  .feature-tile:nth-child(2) {
    transform: none;
  }

  .ingredient-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .order-block {
    box-shadow: 8px 8px 0 var(--coral);
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .ingredient-timeline {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 280px;
  }

  .showcase-visual {
    padding: 24px;
    box-shadow: 6px 6px 0 var(--violet);
  }

  body.page-inner .content-card {
    padding: 24px 20px;
    box-shadow: 6px 6px 0 var(--lime);
  }
}
