:root {
  --canvas: #FAF9F5;
  --canvas-alt: #F3F5EE;
  --canvas-subtle: #EEF2E8;
  --card: #FFFFFF;
  --forest-900: #09241A;
  --forest-800: #0E382B;
  --forest-700: #144C3A;
  --forest-600: #1B634D;
  --forest-500: #257D61;
  --ink: #10291F;
  --muted: #566E62;
  --muted-light: #7E9589;
  --line: rgba(14, 56, 43, 0.08);
  --line-strong: rgba(14, 56, 43, 0.16);
  --line-hover: rgba(14, 56, 43, 0.28);
  --leaf: #16A34A;
  --leaf-light: #DCFCE7;
  --leaf-dark: #15803D;
  --lime: #84CC16;
  --lime-strong: #65A30D;
  --lime-soft: #ECFCCB;
  --blue: #2563EB;
  --blue-soft: #EFF6FF;
  --blue-border: #BFDBFE;
  --amber: #D97706;
  --amber-soft: #FEF3C7;
  --amber-border: #FDE68A;
  --coral: #DC2626;
  --coral-soft: #FEE2E2;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow-sm: 0 1px 3px rgba(12, 38, 28, 0.03), 0 1px 2px rgba(12, 38, 28, 0.02);
  --shadow-md: 0 4px 16px -2px rgba(12, 38, 28, 0.05), 0 2px 6px -1px rgba(12, 38, 28, 0.03);
  --shadow-lg: 0 12px 32px -4px rgba(12, 38, 28, 0.07), 0 4px 12px -2px rgba(12, 38, 28, 0.03);
  --shadow-xl: 0 24px 56px -8px rgba(12, 38, 28, 0.10), 0 8px 24px -4px rgba(12, 38, 28, 0.04);
  --shadow-phone: 0 32px 72px -12px rgba(9, 36, 26, 0.20), 0 12px 28px -6px rgba(9, 36, 26, 0.10);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background-color: var(--canvas);
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

button, a {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
}

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

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

em {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  color: var(--leaf-dark);
}

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

h1, h2, h3 {
  line-height: 1.1;
  color: var(--forest-900);
}

::selection {
  background: var(--lime-soft);
  color: var(--forest-900);
}

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

.container {
  width: min(100% - 48px, 1260px);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(72px, 8vw, 112px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  padding: 10px 18px;
  z-index: 1000;
  background: var(--forest-800);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 16px;
}

/* ==========================================================================
   Scroll Progress Bar
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--leaf) 0%, var(--lime) 100%);
  z-index: 110;
  transition: width 0.1s linear;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement {
  background: var(--forest-900);
  color: #E2ECE5;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(220, 252, 231, 0.14);
  color: var(--lime-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  white-space: nowrap;
}

.language-switcher a {
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
}

.language-switcher a[aria-current="page"] {
  background: var(--forest-800);
  color: #fff;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-900);
  font-size: 1.35rem;
  letter-spacing: -0.05em;
  font-weight: 700;
  transition: opacity 0.2s;
}

.wordmark:hover {
  opacity: 0.9;
}

.wordmark-symbol {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(14, 56, 43, 0.12);
  flex: none;
}

.wordmark-symbol img,
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wordmark-dot {
  color: var(--leaf);
}

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

.main-nav a {
  position: relative;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.2s var(--ease-out);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--forest-800);
  border-radius: 2px;
  transition: width 0.25s var(--ease-out);
}

.main-nav a:hover {
  color: var(--forest-900);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--forest-800);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 6px rgba(14, 56, 43, 0.12);
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.header-cta span {
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease-out);
}

.header-cta:hover {
  background: var(--forest-900);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(14, 56, 43, 0.18);
}

.header-cta:hover span {
  transform: translate(2px, -2px);
}

.header-cta:active {
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest-900);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease-out), background 0.2s var(--ease-out), box-shadow 0.25s var(--ease-out);
  cursor: pointer;
}

.button-dark {
  background: var(--forest-800);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(14, 56, 43, 0.15);
}

.button-dark:hover {
  background: var(--forest-900);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14, 56, 43, 0.22);
}

.button-dark:active {
  transform: translateY(-1px);
}

.button-dark span {
  font-size: 1.1rem;
  transition: transform 0.2s var(--ease-out);
}

.button-dark:hover span {
  transform: translate(2px, -2px);
}

.button-lime {
  background: var(--leaf);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.25);
}

.button-lime:hover {
  background: var(--leaf-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.32);
}

.button-lime:active {
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest-800);
  padding-bottom: 2px;
  border-bottom: 1.5px solid rgba(14, 56, 43, 0.25);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.text-link span {
  font-size: 1rem;
  transition: transform 0.2s var(--ease-out);
}

.text-link:hover {
  color: var(--leaf-dark);
  border-color: var(--leaf);
  transform: translateX(2px);
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

/* ==========================================================================
   Section Headers & Eyebrows
   ========================================================================== */
.eyebrow, .section-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-600);
}

.eyebrow {
  margin-bottom: 24px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 14px;
  border-radius: 999px;
  background: var(--leaf-light);
  color: var(--forest-800);
  border: 1px solid rgba(22, 163, 74, 0.25);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.eyebrow-pill .live-dot {
  width: 8px;
  height: 8px;
}

.eyebrow-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--leaf);
  border-radius: 2px;
}

.section-number {
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--canvas-subtle);
  width: fit-content;
}

.section-number.light {
  background: rgba(220, 252, 231, 0.15);
  color: var(--lime-soft);
}

.section-intro h2,
.section-heading h2,
.understand-copy h2,
.ask-copy h2,
.press-grid h2,
.faq-grid h2,
.final-inner h2 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.section-intro p,
.section-heading > p,
.ask-copy > p,
.press-grid p {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(36px, 5vw, 70px);
  padding-bottom: clamp(52px, 7vw, 90px);
  background: radial-gradient(circle at 80% 20%, rgba(220, 252, 231, 0.45) 0%, transparent 55%),
              radial-gradient(circle at 20% 80%, rgba(239, 246, 255, 0.5) 0%, transparent 60%),
              var(--canvas);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
  min-height: 680px;
}

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

.hero h1 {
  font-size: clamp(3.8rem, 6.4vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin-bottom: 26px;
}

.hero h1 em {
  display: block;
  color: var(--forest-700);
}

.hero-lead {
  font-size: clamp(1.24rem, 1.75vw, 1.48rem);
  line-height: 1.62;
  color: var(--forest-900);
  opacity: 0.92;
  max-width: 630px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-stores-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-600);
}

.hero-stores-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge-link {
  display: inline-block;
  border-radius: 10px;
  transition: transform 0.24s var(--ease-out);
}

.store-badge-link img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(14, 56, 43, 0.15);
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
}

.store-badge-link:hover img {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(14, 56, 43, 0.24);
}

.store-badge-link:active img {
  transform: translateY(-1px) scale(1.0);
}

.hero-learn-link {
  font-size: 1.05rem;
  font-weight: 700;
  width: fit-content;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  margin-top: 14px;
}

.note-mark {
  flex: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--muted-light);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  display: grid;
  place-items: center;
  margin-left: -8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--canvas);
  background: var(--card);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.proof-avatars span:first-child {
  margin-left: 0;
}

.hero-proof p {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--forest-800);
  margin: 0;
  line-height: 1.45;
}

/* Hero Visual / Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 20px 0 20px 10%;
  border-radius: 200px 32px 32px 200px;
  overflow: hidden;
  background: var(--canvas-alt);
  box-shadow: var(--shadow-lg);
  opacity: 0.85;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(1.05);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 249, 245, 0.4) 0%, transparent 60%);
}

/* Floating Cards */
.hero-float {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 12px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--forest-900);
}

.hero-float strong {
  font-size: 0.92rem;
  display: block;
}

.hero-float-left {
  left: 0;
  bottom: 80px;
  animation: floatSlow1 7s ease-in-out infinite alternate;
}

.hero-float-right {
  right: -10px;
  top: 60px;
  animation: floatSlow2 8s ease-in-out infinite alternate;
}

@keyframes floatSlow1 {
  0% { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes floatSlow2 {
  0% { transform: translateY(0) rotate(3deg); }
  100% { transform: translateY(-12px) rotate(4deg); }
}

.float-icon {
  display: grid;
  place-items: center;
  background: var(--leaf-light);
  color: var(--forest-800);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 1.4rem;
  line-height: 1;
  flex: none;
}

.float-icon.orange {
  background: var(--amber-soft);
  color: var(--amber);
}

.float-icon .brand-logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.hero-doodle {
  position: absolute;
  left: 8%;
  top: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--forest-700);
  transform: rotate(-6deg);
  z-index: 8;
  pointer-events: none;
}

.hero-doodle span {
  display: inline-block;
  font-size: 1.6rem;
  transform: rotate(-10deg);
  margin-left: 6px;
}

/* Smartphone Mockup */
.phone {
  position: relative;
  z-index: 6;
  width: 300px;
  min-height: 590px;
  border: 9px solid #142820;
  border-radius: 46px;
  background: #FFFFFF;
  box-shadow: var(--shadow-phone);
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.phone:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 40px 80px -10px rgba(9, 36, 26, 0.28);
}

.phone-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 20px;
  border-radius: 12px;
  background: #142820;
  z-index: 10;
}

.phone-top {
  height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: #142820;
}

.phone-status {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.phone-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 18px;
  font-size: 0.78rem;
  color: var(--forest-900);
  border-bottom: 1px solid var(--line);
}

.phone-back {
  font-size: 1.4rem;
  line-height: 1;
}

.phone-more {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.phone-scan-photo {
  height: 215px;
  position: relative;
  overflow: hidden;
  background: #1A382C;
}

.phone-scan-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 55%;
  filter: saturate(1.08) contrast(1.02);
}

.phone-scan-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, rgba(14, 56, 43, 0.4) 100%);
  pointer-events: none;
}

/* Scanner Reticle Brackets */
.scan-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: #84CC16;
  border-style: solid;
  z-index: 4;
  transition: border-color 0.3s;
}

.top-left {
  left: 28px;
  top: 24px;
  border-width: 3px 0 0 3px;
  border-radius: 6px 0 0 0;
}

.top-right {
  right: 28px;
  top: 24px;
  border-width: 3px 3px 0 0;
  border-radius: 0 6px 0 0;
}

.bottom-left {
  left: 28px;
  bottom: 24px;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 6px;
}

.bottom-right {
  right: 28px;
  bottom: 24px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 6px 0;
}

/* Laser Scan Line */
.scan-line {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #A3E635 20%, #4ADE80 50%, #A3E635 80%, transparent);
  box-shadow: 0 0 16px 2px rgba(132, 204, 22, 0.8), 0 0 6px 1px #84CC16;
  z-index: 5;
  opacity: 0.9;
  animation: scanLaser 3.2s ease-in-out infinite alternate;
}

@keyframes scanLaser {
  0% { top: 18%; opacity: 0.3; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 82%; opacity: 0.3; }
}

.scanning .scan-line {
  animation: scanLaserFast 1.2s ease-in-out infinite alternate;
}

@keyframes scanLaserFast {
  0% { top: 18%; }
  100% { top: 82%; }
}

.scan-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(20, 56, 40, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(132, 204, 22, 0.4);
  padding: 4px 12px;
  color: #DCFCE7;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.phone-product {
  padding: 16px 18px 10px;
}

.mini-kicker {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  font-weight: 700;
  text-transform: uppercase;
}

.phone-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.phone-product h2 {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.15;
  margin: 0;
  max-width: 170px;
  color: var(--forest-900);
}

.phone-score {
  display: flex;
  align-items: baseline;
  gap: 2px;
  background: var(--leaf-light);
  border-radius: 12px;
  padding: 4px 8px;
  color: var(--leaf-dark);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.phone-score strong {
  font-size: 1.45rem;
  line-height: 1;
}

.phone-score small {
  font-size: 0.65rem;
  font-weight: 700;
}

.phone-product p {
  font-size: 0.68rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 8px 0 0;
}

.phone-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 18px 12px;
}

.phone-insights span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--canvas-subtle);
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--forest-900);
  white-space: nowrap;
}

.insight-plus {
  color: var(--leaf);
  font-size: 0.85rem;
}

.insight-minus {
  color: var(--amber);
  font-size: 0.85rem;
}

.phone-action {
  border: 0;
  margin: 0 18px 16px;
  width: calc(100% - 36px);
  height: 38px;
  border-radius: 10px;
  background: var(--forest-800);
  color: #FFFFFF;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
}

.phone-action:hover {
  background: var(--forest-900);
  transform: translateY(-1px);
}

.phone-action:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-light);
  border-top: 1px solid var(--line);
  padding-block: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 24px;
}

.hero-bottom span:last-child {
  font-size: 1.1rem;
  animation: bounceDown 2s infinite ease-in-out;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ==========================================================================
   Section 01 : Journey (Comment ça marche)
   ========================================================================== */
.journey {
  background: var(--canvas-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.journey-steps {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
}

.journey-steps li {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  background: var(--card);
  padding: 24px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.journey-steps li:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--canvas-subtle);
  color: var(--forest-800);
  font-size: 1.4rem;
  margin-bottom: auto;
}

.step-icon .brand-logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.step-index {
  font-size: 0.7rem;
  color: var(--leaf-dark);
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-top: 24px;
}

.journey-steps h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 6px 0;
}

.journey-steps p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   Section 02 : Demo (L'expérience)
   ========================================================================== */
.demo-section {
  background: var(--canvas);
}

.demo-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
}

.demo-selector {
  border-radius: 24px;
  background: var(--card);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.demo-side-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--forest-600);
  margin-bottom: 18px;
}

.product-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  margin-bottom: 8px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--ink);
  transition: background 0.2s var(--ease-out), border-color 0.2s, transform 0.2s var(--ease-out);
}

.product-choice:hover {
  background: var(--canvas-subtle);
  transform: translateX(4px);
}

.product-choice.active {
  background: var(--canvas-alt);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.choice-emoji {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--card);
  border-radius: 12px;
  font-size: 1.45rem;
  flex: none;
  border: 1px solid var(--line);
}

.product-choice strong {
  display: block;
  font-size: 0.88rem;
  color: var(--forest-900);
  line-height: 1.25;
}

.product-choice small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 3px;
}

.choice-arrow {
  margin-left: auto;
  font-size: 1rem;
  color: var(--muted-light);
  transition: transform 0.2s var(--ease-out), color 0.2s;
}

.product-choice.active .choice-arrow {
  color: var(--forest-800);
  transform: translate(2px, -2px);
}

.demo-side-note {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding: 24px 8px 4px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.demo-side-note .brand-logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  flex: none;
}

.demo-side-note p {
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

/* Analysis Board Card */
.analysis-board {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.board-header {
  padding: 28px 36px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.board-overline, .score-caption {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--forest-600);
}

.board-header h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  margin: 6px 0 0;
}

.board-tag {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(22, 163, 74, 0.2);
  background: var(--leaf-light);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--leaf-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.board-tag span {
  color: var(--leaf);
}

.board-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  flex: 1;
}

.board-score {
  background: var(--canvas-subtle);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.score-ring {
  --score: 78;
  --ring-color: var(--leaf);
  position: relative;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background: conic-gradient(var(--ring-color) calc(var(--score) * 1%), #E2EAE1 0deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 18px 0 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: background 0.6s var(--ease-out);
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  background: var(--canvas-subtle);
  border-radius: 50%;
}

.score-ring strong,
.score-ring small {
  position: relative;
  z-index: 1;
}

.score-ring strong {
  font-size: 4.2rem;
  letter-spacing: -0.08em;
  line-height: 0.95;
  color: var(--forest-900);
}

.score-ring small {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.verdict {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest-800);
  max-width: 190px;
  line-height: 1.4;
  margin: 0;
}

.board-summary {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 12px;
}

.board-summary > p:nth-child(2) {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--forest-900);
  margin-bottom: 24px;
}

.factor-list {
  display: grid;
  gap: 0;
}

.factor-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 11px 0;
  font-size: 0.84rem;
  transition: transform 0.2s;
}

.factor-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-900);
}

.factor-list strong {
  font-size: 0.76rem;
  color: var(--forest-600);
  font-weight: 700;
}

.factor-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.factor-icon.positive {
  background: var(--leaf-light);
  color: var(--leaf);
}

.factor-icon.negative {
  background: var(--amber-soft);
  color: var(--amber);
}

.board-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--canvas-alt);
  border-top: 1px solid var(--line);
  padding: 16px 36px;
  font-size: 0.72rem;
  color: var(--muted);
}

.board-footer > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-800);
  font-weight: 700;
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.35); }
}

.demo-disclaimer, .compare-caption, .everyday-disclaimer {
  font-size: 0.76rem;
  color: var(--muted-light);
  line-height: 1.6;
  margin-top: 20px;
}

/* ==========================================================================
   Section 03 : Understand (Au-delà d'une note)
   ========================================================================== */
.understand-section {
  background: var(--forest-900);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.understand-section::before {
  content: "";
  position: absolute;
  right: -5%;
  top: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.understand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 80px);
}

.understand-copy h2 {
  color: #FFFFFF;
}

.understand-copy h2 em {
  color: var(--lime);
}

.understand-copy > p:not(.understand-emphasis) {
  color: #D1E0D7;
  font-size: 1.05rem;
  line-height: 1.75;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #F1F7F3;
  font-size: 0.92rem;
  font-weight: 500;
}

.check-list span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: rgba(220, 252, 231, 0.15);
  border-radius: 50%;
  color: var(--lime);
  font-size: 0.85rem;
  flex: none;
}

.understand-emphasis {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--lime);
  line-height: 1.3;
  margin: 0;
}

/* Score Explainer Card */
.score-explainer {
  background: var(--card);
  color: var(--forest-900);
  border-radius: 28px;
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.explain-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--forest-600);
}

.explain-flower {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;
}

.explain-value {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 16px 0 12px;
}

.explain-value strong {
  font-size: clamp(5.5rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.1em;
  line-height: 0.88;
  color: var(--forest-900);
}

.explain-value span {
  font-size: 0.74rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 14px;
}

.breakdown {
  display: grid;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.breakdown > div {
  display: grid;
  grid-template-columns: 160px 1fr 34px;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-900);
}

.breakdown b {
  text-align: right;
  font-size: 0.82rem;
  color: var(--forest-700);
}

.meter {
  height: 8px;
  border-radius: 999px;
  background: var(--canvas-subtle);
  overflow: hidden;
}

.meter i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf) 0%, var(--lime) 100%);
  width: 0%;
  transition: width 1.2s var(--ease-out);
}

.explain-note {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  margin: 16px 0 0;
}

/* Quiz Band */
.quiz-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 6%;
  margin-top: clamp(64px, 8vw, 96px);
  padding: 44px 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.quiz-band-copy h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.quiz-band-copy h3 em {
  color: var(--lime);
}

.quiz-band-copy p {
  color: #CFE0D6;
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

.quiz-band-visual {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  gap: 12px;
}

.quiz-question, .quiz-profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.quiz-question {
  background: var(--card);
  color: var(--forest-900);
}

.quiz-profile {
  background: #E8F5ED;
  color: var(--forest-900);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.quiz-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--forest-600);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.quiz-question strong, .quiz-profile strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.quiz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.quiz-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas-subtle);
  color: var(--forest-800);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.quiz-chips span.active, .quiz-chips span:hover {
  background: var(--leaf-light);
  border-color: var(--leaf);
  color: var(--leaf-dark);
  transform: translateY(-1px);
}

.quiz-flow-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--leaf);
  color: #FFFFFF;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
  transition: transform 0.2s;
}

.quiz-profile p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

/* ==========================================================================
   Section 04 : Compare (Comparer avec l'assistant)
   ========================================================================== */
.compare-section {
  background: var(--canvas);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.compare-card {
  position: relative;
  padding: 36px 36px 34px;
  border-radius: 28px;
  min-height: 350px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.compare-card.current {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.compare-card.current:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.compare-card.alternative {
  background: #F1F9F3;
  border: 1.5px solid rgba(22, 163, 74, 0.3);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.08);
}

.compare-card.alternative:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.14);
}

.compare-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--forest-600);
}

.alternative .compare-card-top {
  color: var(--leaf-dark);
}

.compare-score {
  font-size: 2.1rem;
  letter-spacing: -0.06em;
  font-weight: 700;
  line-height: 1;
  color: var(--forest-900);
}

.alternative .compare-score {
  color: var(--leaf-dark);
}

.compare-score small {
  font-size: 0.75rem;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--muted);
}

.compare-food {
  font-size: 3.8rem;
  line-height: 1;
  margin: 24px 0 18px;
}

.compare-card h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.compare-card p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.compare-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-tags span {
  border: 1px solid var(--line);
  background: var(--canvas-subtle);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--forest-800);
}

.alternative .compare-tags span {
  background: var(--leaf-light);
  border-color: rgba(22, 163, 74, 0.25);
  color: var(--leaf-dark);
}

.compare-middle {
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--forest-800);
  color: #FFFFFF;
  font-size: 1.4rem;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--canvas);
  transition: transform 0.3s var(--ease-spring);
}

.compare-grid:hover .compare-middle {
  transform: scale(1.1) rotate(180deg);
}

/* ==========================================================================
   Section 05 : Ask (Assistant Alimentaire)
   ========================================================================== */
.ask-section {
  background: var(--canvas-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ask-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

.question-list {
  display: grid;
  gap: 12px;
  max-width: 480px;
  margin-top: 32px;
}

.question-list button {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 15px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: var(--forest-900);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s var(--ease-out);
}

.question-list button:hover,
.question-list button.active {
  background: #F1F9F3;
  border-color: rgba(22, 163, 74, 0.3);
  transform: translateX(6px);
  color: var(--leaf-dark);
}

.question-list button span {
  font-size: 1.1rem;
  color: var(--muted-light);
  transition: transform 0.2s;
}

.question-list button:hover span,
.question-list button.active span {
  color: var(--leaf);
  transform: translate(2px, -2px);
}

/* Chat Card */
.chat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 540px;
  width: 100%;
  margin-inline: auto;
}

.chat-top {
  height: 72px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  background: var(--canvas-subtle);
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chat-top strong {
  display: block;
  font-size: 0.92rem;
  color: var(--forest-900);
}

.chat-top small {
  display: block;
  font-size: 0.68rem;
  color: var(--leaf-dark);
  font-weight: 700;
}

.chat-menu {
  margin-left: auto;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted-light);
}

.chat-body {
  padding: 24px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.chat-context {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--canvas-subtle);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
  width: fit-content;
}

.chat-context span:first-child {
  font-size: 1.3rem;
}

.chat-context strong {
  color: var(--forest-900);
  font-size: 0.76rem;
}

.chat-user {
  background: var(--forest-800);
  color: #FFFFFF;
  border-radius: 18px 18px 4px 18px;
  max-width: 80%;
  padding: 13px 18px;
  margin: 24px 0 20px auto;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 4px 12px rgba(14, 56, 43, 0.12);
  transition: opacity 0.3s, transform 0.3s;
}

.chat-answer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: opacity 0.3s, transform 0.3s;
}

.answer-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  flex: none;
  margin-top: 4px;
}

.chat-answer p {
  background: var(--canvas-subtle);
  border: 1px solid var(--line);
  border-radius: 4px 18px 18px 18px;
  padding: 16px 18px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--forest-900);
  max-width: 420px;
  margin: 0;
}

/* Typing Indicator Animation */
.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 4px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--leaf);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.chat-input {
  display: flex;
  gap: 10px;
  margin: 0 24px 12px;
  padding: 8px 10px 8px 16px;
  background: var(--canvas-subtle);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.chat-input:focus-within {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.chat-input input {
  border: 0;
  background: transparent;
  outline: 0;
  min-width: 0;
  flex: 1;
  color: var(--forest-900);
  font: inherit;
  font-size: 0.82rem;
}

.chat-input input::placeholder {
  color: var(--muted-light);
}

.chat-input button {
  border: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  background: var(--forest-800);
  color: #FFFFFF;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}

.chat-input button:hover {
  background: var(--forest-900);
  transform: scale(1.05);
}

.chat-disclaimer {
  display: block;
  color: var(--muted-light);
  font-size: 0.65rem;
  margin: 0 24px 18px;
}

/* ==========================================================================
   Section 06 : Everyday (Au quotidien)
   ========================================================================== */
.everyday-section {
  background: var(--canvas);
}

.everyday-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.feature-tile {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.feature-copy {
  padding: 34px 32px 24px;
}

.feature-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--forest-600);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  color: var(--forest-900);
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.feature-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin: auto 20px 20px;
  padding: 22px;
  border-radius: 20px;
  background: var(--canvas-subtle);
  border: 1px solid var(--line);
  min-height: 230px;
}

.mini-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--forest-900);
  padding: 0 2px 6px;
}

.mini-panel-title span {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--muted);
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}

.mini-row:hover {
  transform: translateX(3px);
  border-color: var(--line-strong);
}

.mini-row.checked {
  opacity: 0.6;
}

.mini-row.checked strong {
  text-decoration: line-through;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--canvas-subtle);
  font-size: 1.3rem;
  flex: none;
}

.mini-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mini-meta strong {
  font-size: 0.78rem;
  color: var(--forest-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-meta small {
  font-size: 0.66rem;
  color: var(--muted);
}

.mini-score {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 26px;
  padding-inline: 6px;
  margin-left: auto;
  border-radius: 8px;
  background: var(--leaf-light);
  color: var(--leaf-dark);
  font-size: 0.76rem;
  font-weight: 800;
  flex: none;
}

.mini-score.warm {
  background: var(--amber-soft);
  color: var(--amber);
}

.list-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--card);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: 2px;
}

.list-pill > span:first-child {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--leaf-light);
  color: var(--leaf);
  border-radius: 6px;
  font-size: 0.75rem;
}

.list-pill b {
  margin-left: auto;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.68rem;
}

.mini-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--canvas-subtle);
  border: 1.5px solid var(--line-strong);
  color: transparent;
  font-size: 0.7rem;
  font-weight: 800;
  margin-left: auto;
  flex: none;
  transition: all 0.2s;
}

.mini-row.checked .mini-check {
  background: var(--leaf);
  border-color: var(--leaf);
  color: #FFFFFF;
}

/* Stats visual */
.stats-big {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--forest-900);
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  margin: 6px 0 16px;
}

.stats-big span {
  font-size: 0.75rem;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.4;
}

.stats-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 85px;
  width: 100%;
  padding: 0 4px;
}

.stats-bars > * {
  flex: 1;
  background: var(--leaf);
  border-radius: 6px 6px 2px 2px;
  height: var(--h, 50%);
  transition: height 1s var(--ease-out), background 0.2s, transform 0.2s;
  cursor: pointer;
  position: relative;
}

.stats-bars > *:hover {
  transform: scaleY(1.05);
  background: var(--forest-800);
}

.stats-bars > *:nth-child(even) {
  background: var(--lime-strong);
}

.stats-bars > *:last-child {
  background: var(--blue);
}

.stats-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.stats-caption span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

/* ==========================================================================
   Section 07 : Press (Dans la presse)
   ========================================================================== */
.press-section {
  background: var(--canvas-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 8vw, 80px);
  align-items: flex-start;
}

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

.press-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s var(--ease-out), color 0.2s, border-color 0.2s;
}

.press-links a:hover {
  padding-left: 12px;
  color: var(--leaf-dark);
  border-bottom-color: var(--line-strong);
}

.press-links strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--forest-900);
}

.press-links small {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 4px;
}

.press-links a > span:last-child {
  font-size: 1.3rem;
  color: var(--muted-light);
  transition: transform 0.2s var(--ease-out), color 0.2s;
}

.press-links a:hover > span:last-child {
  transform: translate(3px, -3px);
  color: var(--leaf);
}

/* ==========================================================================
   Section 08 : FAQ (En bref)
   ========================================================================== */
.faq-section {
  background: var(--canvas);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(36px, 8vw, 80px);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-900);
  transition: color 0.2s;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  color: var(--leaf-dark);
}

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  flex: none;
  transition: transform 0.3s var(--ease-out), background 0.2s, border-color 0.2s;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: var(--leaf-light);
  border-color: var(--leaf);
  color: var(--leaf-dark);
}

.faq-list p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 24px;
}

/* ==========================================================================
   Section 09 : Final CTA & Availability
   ========================================================================== */
.final-cta {
  background: var(--forest-900);
  color: #FFFFFF;
  padding-block: clamp(64px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.final-inner h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  color: #FFFFFF;
  margin-bottom: 16px;
  max-width: 720px;
}

.final-inner h2 em {
  color: var(--lime);
}

.final-inner p {
  color: #CFE0D6;
  max-width: 540px;
  line-height: 1.65;
  margin: 0;
  font-size: 1.05rem;
}

.final-actions {
  flex: none;
  display: grid;
  justify-items: flex-start;
  gap: 16px;
  width: min(100%, 380px);
  z-index: 2;
}

.availability-note {
  width: fit-content;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #E2ECE5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
}

.store-badges {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 8px;
}

.store-item {
  display: grid;
  gap: 6px;
  opacity: 1;
}

.store-badge img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.store-badge:hover img {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.store-item small {
  color: #C3D5CA;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--canvas-alt);
  color: var(--forest-900);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 36px;
  align-items: flex-start;
  padding-block: 54px;
}

.footer-main p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 240px;
  margin-top: 12px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.footer-nav a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--forest-900);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-block: 22px;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-bottom a {
  font-weight: 700;
  color: var(--forest-800);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--leaf-dark);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.35s; }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-actions {
    align-items: center;
  }
  .hero-stores {
    align-items: center;
  }
  .hero-stores-badges {
    justify-content: center;
  }
  .hero-learn-link {
    margin-inline: auto;
  }
  .hero-note {
    justify-content: center;
  }
  .hero-proof {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 12px;
  }
  .journey-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .demo-layout {
    grid-template-columns: 1fr;
  }
  .understand-grid, .ask-grid, .press-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .everyday-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }
  .quiz-band {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .quiz-band-copy {
    text-align: center;
  }
  .quiz-band-copy h3, .quiz-band-copy p {
    margin-inline: auto;
  }
  .quiz-band-visual {
    max-width: 580px;
    margin-inline: auto;
  }
  .final-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .board-main {
    grid-template-columns: 1fr;
  }
  .board-score {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compare-middle {
    margin: -12px auto;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1260px);
  }
  .header-inner {
    gap: 12px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-cta {
    display: none;
  }
  .hero-float-right, .hero-doodle {
    display: none;
  }
  .hero-float-left {
    bottom: 20px;
    left: -10px;
    padding: 8px 12px;
  }
  .phone {
    width: 260px;
    min-height: 520px;
  }
  .phone-scan-photo {
    height: 180px;
  }
  .journey-steps {
    grid-template-columns: 1fr;
  }
  .quiz-band-visual {
    grid-template-columns: 1fr;
  }
  .quiz-flow-arrow {
    margin: -4px auto;
    transform: rotate(90deg);
  }
  .breakdown > div {
    grid-template-columns: 120px 1fr 28px;
    font-size: 0.74rem;
  }
  .board-header {
    flex-direction: column;
    padding: 22px;
  }
  .board-summary {
    padding: 22px;
  }
  .board-footer {
    padding: 14px 22px;
    flex-direction: column;
    gap: 6px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .site-header .wordmark > span:last-child {
    display: none;
  }
}

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

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