/* ═══════════════════════════════════════════════════════════════════════════
   Chikori Landing Page — landing.css
   Stone & Pomegranate. Self-contained — no Pico CSS dependency.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Brand tokens ──────────────────────────────────────────────────────── */
:root {
  --slate:        #2E4F5C;
  --slate-deep:   #1F3D48;
  --pomegranate:  #A82B3F;
  --pomegranate-d:#8C2233;
  --tufa-pink:    #C8A498;
  --verdigris:    #6FA89A;
  --obsidian:     #1A2025;
  --slate-soft:   #3A4550;
  --slate-muted:  #6E7782;
  --mist:         #EBEEF0;
  --snow:         #F8FAFA;
  --cool-border:  #D5DADC;

  --font-display: 'Fraunces', 'Noto Serif Armenian', Georgia, 'Times New Roman', serif;
  --font-ui:      'Inter', 'Noto Sans Armenian', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

[x-cloak] { display: none !important; }

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--snow);
  color: var(--obsidian);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}

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

ul, ol { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4, h5, h6, p { margin: 0; }

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--obsidian);
  background: var(--snow);
  border: 1px solid var(--cool-border);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  width: 100%;
  outline: none;
  transition: border-color 150ms ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(46, 79, 92, 0.12);
}
input[type="checkbox"] { width: auto; padding: 0; }
input[type="range"] { padding: 0; }

:focus-visible {
  outline: 2px solid var(--pomegranate);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container-lp {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

/* ─── Eyebrow ───────────────────────────────────────────────────────────── */
.lp-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.1rem;
}
.lp-eyebrow--pomegranate { color: var(--pomegranate); }
.lp-eyebrow--verdigris   { color: var(--verdigris); }
.lp-eyebrow--tufa        { color: var(--tufa-pink); }
.lp-eyebrow--slate       { color: var(--slate); }

/* ─── Section headings ──────────────────────────────────────────────────── */
.lp-section-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--obsidian);
  letter-spacing: -0.01em;
  max-width: 28ch;
  margin-bottom: 1rem;
}
.lp-section-h2--center { margin-inline: auto; text-align: center; }
.lp-section-h2--light { color: var(--snow); }

.lp-section-sub {
  font-size: 1.1rem;
  color: var(--slate-muted);
  max-width: 60ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.lp-section-sub--light { color: var(--mist); }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 100ms ease, border-color 150ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn:active { transform: translateY(0); }

.lp-btn--sm    { padding: 0.5rem 1rem; font-size: 0.875rem; }
.lp-btn--lg    { padding: 0.95rem 1.8rem; font-size: 1rem; }
.lp-btn--full  { width: 100%; }

.lp-btn--primary {
  background: var(--slate);
  color: var(--snow);
}
.lp-btn--primary:hover { background: var(--slate-deep); color: var(--snow); }

.lp-btn--pomegranate {
  background: var(--pomegranate);
  color: var(--snow);
}
.lp-btn--pomegranate:hover { background: var(--pomegranate-d); color: var(--snow); }

.lp-btn--outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}
.lp-btn--outline:hover { background: var(--slate); color: var(--snow); }

.lp-btn--outline-light {
  background: transparent;
  color: var(--slate);
  border-color: var(--cool-border);
}
.lp-btn--outline-light:hover { background: var(--mist); color: var(--slate); }

.lp-btn--ghost {
  background: transparent;
  color: var(--slate);
}
.lp-btn--ghost:hover { background: var(--mist); color: var(--slate); }


/* ═══════════════════════════════════════════════════════════════════════════
   1. HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(248, 250, 250, 0);
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
  border-bottom: 1px solid transparent;
}
.lp-header.scrolled {
  background: rgba(248, 250, 250, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--cool-border);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.lp-logo img { height: 46px; width: auto; }

.lp-center-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex: 1;
  justify-content: center;
}
.lp-center-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-soft);
  transition: color 150ms ease;
}
.lp-center-nav a:hover { color: var(--slate); }

.lp-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lp-lang-switcher {
  display: inline-flex;
  align-items: center;
  background: var(--mist);
  border-radius: 999px;
  padding: 3px;
  margin-right: 0.4rem;
}
.lp-lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--slate-muted);
  transition: all 150ms ease;
}
.lp-lang-switcher a.lp-lang--active {
  background: var(--snow);
  color: var(--slate);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.lp-lang-switcher a:hover:not(.lp-lang--active) { color: var(--slate); }

/* Hamburger (hidden by default — shown on mobile) */
.lp-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  background: transparent;
}
.lp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
}

/* ─── Mobile nav overlay ───────────────────────────────────────────────── */
.lp-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--snow);
  display: none;
  flex-direction: column;
  padding: 1.5rem;
}
.lp-mobile-nav[aria-hidden="false"] { display: flex; }
.lp-mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.lp-mobile-nav-top button {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: var(--slate);
}
.lp-mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lp-mobile-nav nav a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: var(--slate);
}
.lp-mobile-nav nav a:hover { background: var(--mist); }
.lp-mobile-lang {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1rem;
  background: var(--mist);
  padding: 4px;
  border-radius: 999px;
  gap: 0;
}
.lp-mobile-lang a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-muted);
}
.lp-mobile-lang a.lp-lang--active {
  background: var(--snow);
  color: var(--slate);
}


/* ═══════════════════════════════════════════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  background: var(--snow);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lp-hero-text { max-width: 640px; }

.lp-hero-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--obsidian);
  margin-bottom: 1.25rem;
}
.lp-hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--slate-soft);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 52ch;
}
.lp-etymology-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--slate-muted);
  padding: 0.7rem 1rem;
  background: var(--mist);
  border-radius: 8px;
  margin-bottom: 2.25rem;
  max-width: max-content;
}
.lp-etymology-armenian {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--slate);
  font-size: 1.05rem;
}

.lp-hero-stats {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.lp-hero-stat { display: flex; flex-direction: column; }
.lp-stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--slate);
  line-height: 1;
}
.lp-stat-label {
  font-size: 0.85rem;
  color: var(--slate-muted);
  margin-top: 0.35rem;
  max-width: 18ch;
  line-height: 1.4;
}

.lp-hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.lp-hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
}
.lp-hero-symbol {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(46, 79, 92, 0.15));
}

@keyframes float-seed {
  0%   { transform: translateY(0)    scale(1);    opacity: 0.5; }
  50%  { transform: translateY(-22px) scale(1.08); opacity: 0.75; }
  100% { transform: translateY(0)    scale(1);    opacity: 0.5; }
}
.lp-seed {
  position: absolute;
  border-radius: 50%;
  background: var(--tufa-pink);
  animation: float-seed 6s ease-in-out infinite;
  pointer-events: none;
}
.lp-seed--1 { width: 28px; height: 28px; top: 18%; right: 16%; animation-delay: 0s;   }
.lp-seed--2 { width: 18px; height: 18px; top: 65%; right: 8%;  animation-delay: 1.4s; background: var(--verdigris); }
.lp-seed--3 { width: 14px; height: 14px; top: 80%; left: 10%;  animation-delay: 2.8s; background: var(--pomegranate); opacity: 0.6; }


/* ═══════════════════════════════════════════════════════════════════════════
   3. COUNTER STRIP
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-counter-strip {
  background: var(--slate);
  color: var(--snow);
  padding: 1.4rem 0;
}
.lp-counter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  font-size: 0.95rem;
}
.lp-counter-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}
.lp-counter-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tufa-pink);
}
.lp-counter-item span { color: var(--mist); }
.lp-counter-dot { color: var(--slate-muted); font-size: 1.2rem; }


/* ═══════════════════════════════════════════════════════════════════════════
   4. PROBLEM
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-problem {
  background: var(--snow);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.lp-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.lp-stat-card {
  display: flex;
  flex-direction: column;
  background: var(--mist);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--cool-border);
}
.lp-stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--pomegranate);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.lp-stat-card-label {
  font-size: 1rem;
  color: var(--obsidian);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.85rem;
}
.lp-stat-source {
  font-size: 0.78rem;
  color: var(--slate-muted);
  letter-spacing: 0.04em;
  margin-top: auto;
}

.lp-infographic-bar {
  display: flex;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 90px;
  border: 1px solid var(--cool-border);
}
.lp-bar-segment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  text-align: center;
  color: var(--snow);
  position: relative;
}
.lp-bar-segment span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.lp-bar-segment label {
  font-size: 0.78rem;
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}
.lp-bar--waste    { background: var(--pomegranate); }
.lp-bar--animals  { background: var(--verdigris); }
.lp-bar--chikori  { background: var(--slate); }

.lp-bar-caption {
  font-size: 0.92rem;
  color: var(--slate-muted);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════════════════
   5. HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-how {
  background: var(--mist);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.lp-how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.lp-step-flow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem 0;
}
.lp-step-circle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--slate);
  color: var(--snow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}
.lp-step-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 0.25rem;
}
.lp-step-text p { color: var(--slate-soft); line-height: 1.5; }
.lp-step-arrow {
  width: 2px;
  height: 24px;
  background: var(--cool-border);
  margin-left: 21px;
}

/* CSS Phone mockups */
.lp-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}
.lp-phone {
  width: 175px;
  height: 360px;
  background: var(--obsidian);
  border-radius: 28px;
  padding: 8px;
  flex-shrink: 0;
}
.lp-phone--center {
  transform: scale(1.08);
  z-index: 2;
}
.lp-phone--solo { width: 240px; height: 480px; transform: rotate(-2deg); }
.lp-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--snow);
  border-radius: 22px;
  padding: 12px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lp-phone-status-bar {
  height: 6px;
  width: 50%;
  background: var(--cool-border);
  border-radius: 3px;
  margin-bottom: 8px;
}
.lp-phone-row {
  height: 9px;
  background: var(--mist);
  border-radius: 3px;
  width: 80%;
}
.lp-phone-row--header { background: var(--slate); width: 50%; height: 14px; }
.lp-phone-row--sm { width: 40%; height: 7px; }
.lp-phone-card {
  background: var(--mist);
  border: 1px solid var(--cool-border);
  border-radius: 8px;
  height: 38px;
  flex-shrink: 0;
}
.lp-phone-card--tall { height: 60px; }
.lp-phone-card--sm { height: 24px; }
.lp-phone-card--pomegranate {
  background: var(--pomegranate);
  border-color: transparent;
}
.lp-phone-hero-img {
  height: 70px;
  background: linear-gradient(135deg, var(--verdigris) 0%, var(--slate) 100%);
  border-radius: 8px;
  flex-shrink: 0;
}
.lp-phone-price-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.lp-phone-price-old {
  width: 30px;
  height: 8px;
  background: var(--cool-border);
  border-radius: 2px;
}
.lp-phone-price-new {
  width: 50px;
  height: 12px;
  background: var(--pomegranate);
  border-radius: 2px;
}
.lp-phone-btn {
  height: 28px;
  background: var(--slate);
  border-radius: 8px;
  margin-top: auto;
}
.lp-phone-qr {
  width: 90px;
  height: 90px;
  background:
    repeating-linear-gradient(0deg, var(--obsidian) 0 4px, transparent 4px 8px),
    repeating-linear-gradient(90deg, var(--obsidian) 0 4px, transparent 4px 8px);
  border-radius: 6px;
  margin: 0.5rem auto;
}
.lp-phone-label {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-muted);
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════════════════════
   6. FOR SHOPPERS
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-shoppers {
  background: var(--snow);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.lp-shoppers-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lp-shoppers-text { max-width: 600px; }

.lp-story-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.lp-story-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--mist);
  border: 1px solid var(--cool-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.lp-story-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--verdigris);
  color: var(--snow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.lp-story-card > div:last-child { flex: 1; }
.lp-story-card strong {
  display: block;
  font-size: 1rem;
  color: var(--obsidian);
  margin-bottom: 0.15rem;
}
.lp-story-card p { color: var(--slate-muted); font-size: 0.9rem; }
.lp-savings {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pomegranate);
  font-size: 1rem;
}

.lp-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lp-check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--slate-soft);
  line-height: 1.5;
}
.lp-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--verdigris);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' stroke='%23F8FAFA' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.lp-check-list--light li { color: var(--mist); }

.lp-shoppers-visual {
  display: flex;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════════════════
   7. FOR BRANDS (dark)
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-brands-dark {
  background: var(--slate);
  color: var(--mist);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.lp-brands-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.lp-calc {
  background: var(--snow);
  color: var(--obsidian);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--cool-border);
}
.lp-calc h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--obsidian);
  line-height: 1.3;
}
.lp-calc-slider {
  margin-bottom: 1.5rem;
}
.lp-calc-slider label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--slate-soft);
}
.lp-calc-slider label strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--slate);
}
.lp-calc-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--cool-border);
  border-radius: 3px;
  border: none;
  padding: 0;
}
.lp-calc-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pomegranate);
  cursor: pointer;
  border: 3px solid var(--snow);
  box-shadow: 0 0 0 1px var(--cool-border);
}
.lp-calc-slider input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pomegranate);
  cursor: pointer;
  border: 3px solid var(--snow);
  box-shadow: 0 0 0 1px var(--cool-border);
}
.lp-calc-results {
  background: var(--mist);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.lp-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}
.lp-calc-row span { color: var(--slate-soft); }
.lp-calc-row strong { font-family: var(--font-display); color: var(--obsidian); }
.lp-calc-row--highlight {
  border-top: 1px solid var(--cool-border);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.lp-calc-net { color: var(--pomegranate) !important; font-size: 1.4rem; }
.lp-calc-note {
  font-size: 0.78rem;
  color: var(--slate-muted);
  margin-bottom: 1.25rem;
}

.lp-brands-features {
  padding-top: 1rem;
  color: var(--mist);
}
.lp-brands-pilot-label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tufa-pink);
  margin: 2rem 0 1rem;
}
.lp-partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lp-partner-tag {
  display: inline-block;
  background: var(--slate-soft);
  color: var(--mist);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid var(--slate-deep);
}


/* ═══════════════════════════════════════════════════════════════════════════
   8. WHY CHIKORI
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-why {
  background: var(--mist);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.lp-why-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.lp-why-inner .lp-section-h2 {
  margin-inline: auto;
  margin-bottom: 3rem;
}
.lp-etymology-block {
  margin: 2rem 0;
}
.lp-etymology-big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.5rem, 9vw, 6rem);
  color: var(--slate);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.lp-etymology-latin {
  font-family: var(--font-display);
  color: var(--slate-muted);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.lp-etymology-meaning {
  color: var(--pomegranate);
  font-size: 1.1rem;
  font-weight: 500;
}
.lp-why-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  margin: 2.5rem 0;
  color: var(--slate-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}
.lp-quote-block {
  background: var(--snow);
  border-left: 3px solid var(--pomegranate);
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  text-align: left;
  margin: 0;
}
.lp-quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--obsidian);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.lp-quote-block footer {
  font-size: 0.9rem;
  color: var(--slate-muted);
}


/* ═══════════════════════════════════════════════════════════════════════════
   9. FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-faq {
  background: var(--snow);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.lp-faq .lp-section-h2 { margin-bottom: 2.5rem; }

.lp-faq-group {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--slate);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cool-border);
}
.lp-faq-group:first-of-type { margin-top: 1rem; }

.lp-faq-item {
  border-bottom: 1px solid var(--cool-border);
}
.lp-faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0.25rem;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--obsidian);
  transition: color 150ms ease;
}
.lp-faq-btn:hover { color: var(--slate); }
.lp-faq-chevron {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--slate-muted);
  border-bottom: 2px solid var(--slate-muted);
  transform: rotate(45deg);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.lp-faq-btn[aria-expanded="true"] .lp-faq-chevron {
  transform: rotate(-135deg);
  border-color: var(--pomegranate);
}
.lp-faq-answer {
  padding: 0 0.25rem 1.25rem;
  color: var(--slate-soft);
  line-height: 1.6;
  max-width: 70ch;
}


/* ═══════════════════════════════════════════════════════════════════════════
   10. WAITLIST CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-waitlist {
  background: var(--slate);
  color: var(--mist);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.lp-waitlist .lp-section-h2 {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.lp-waitlist .lp-eyebrow {
  display: block;
  text-align: center;
}

.lp-waitlist-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.lp-form-card {
  background: var(--snow);
  color: var(--obsidian);
  border-radius: 16px;
  padding: 2rem;
}
.lp-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.lp-form-card > p {
  color: var(--slate-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.lp-flash {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.lp-flash--success { background: rgba(111, 168, 154, 0.18); color: var(--slate-deep); border: 1px solid var(--verdigris); }
.lp-flash--error   { background: rgba(168, 43, 63, 0.10);  color: var(--pomegranate-d); border: 1px solid var(--pomegranate); }

.lp-form { display: flex; flex-direction: column; gap: 0.85rem; }
.lp-form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.lp-form-field label {
  font-size: 0.82rem;
  color: var(--slate-soft);
  font-weight: 500;
}
.lp-form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.lp-form-field--checkbox label {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--slate-soft);
}
.lp-form-field--checkbox input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lp-form button[type="submit"] { margin-top: 0.5rem; }

.lp-form-trust {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--slate-muted);
}


/* ═══════════════════════════════════════════════════════════════════════════
   11. PRESS / PARTNERS
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-press {
  background: var(--mist);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.lp-press-h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 0.5rem;
}
.lp-press-caption {
  color: var(--slate-muted);
  max-width: 50ch;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.lp-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.lp-logo-placeholder {
  height: 60px;
  background: var(--snow);
  border: 1px dashed var(--cool-border);
  border-radius: 8px;
  opacity: 0.5;
}


/* ═══════════════════════════════════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.lp-footer {
  background: var(--obsidian);
  color: var(--mist);
  padding: clamp(3rem, 5vw, 4rem) 0 0;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.lp-footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}
.lp-footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--tufa-pink);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.lp-footer-desc {
  color: var(--slate-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 32ch;
}

.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lp-footer-col strong {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--snow);
  margin-bottom: 0.4rem;
}
.lp-footer-col a {
  color: var(--slate-muted);
  font-size: 0.92rem;
  transition: color 150ms ease;
}
.lp-footer-col a:hover { color: var(--mist); }
.lp-footer-col a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.6;
}

.lp-footer-bottom {
  border-top: 1px solid var(--slate-soft);
  padding: 1.4rem 0;
}
.lp-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-muted);
}
.lp-footer-bottom-inner a { color: var(--slate-muted); }
.lp-footer-bottom-inner a:hover { color: var(--mist); }
.lp-footer-dot { color: var(--slate-soft); }


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-center-nav { display: none; }
  .lp-header-right .lp-btn:not(.lp-hamburger) { display: none; }
  .lp-lang-switcher { display: none; }
  .lp-hamburger { display: flex; }

  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-visual { order: -1; max-width: 280px; }
  .lp-hero-text { padding-right: 0; }

  .lp-how-layout { grid-template-columns: 1fr; gap: 2rem; }
  .lp-shoppers-inner { grid-template-columns: 1fr; }
  .lp-shoppers-visual { order: -1; }
  .lp-shoppers-visual .lp-phone--solo { transform: rotate(0); width: 200px; height: 400px; }

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

  .lp-waitlist-cards { grid-template-columns: 1fr; }

  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

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

@media (max-width: 768px) {
  .lp-stat-cards { grid-template-columns: 1fr; }
  .lp-hero-stats { gap: 1.25rem; }
  .lp-hero-symbol { max-width: 220px; margin: 0 auto; }

  .lp-phones { transform: scale(0.85); }
  .lp-infographic-bar { height: 70px; }
  .lp-bar-segment span { font-size: 1.2rem; }
  .lp-bar-segment label { font-size: 0.7rem; }
}

@media (max-width: 640px) {
  .lp-header { height: 64px; }
  .lp-logo img { height: 38px; }
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-logo-wall { grid-template-columns: repeat(2, 1fr); }
  .lp-form-card { padding: 1.5rem 1.25rem; }
  .lp-counter-inner { font-size: 0.85rem; gap: 0.5rem 1.2rem; }
  .lp-counter-item strong { font-size: 1.15rem; }
}
