/* HofladenRadar landing v2 — matches the app aesthetic.
 *
 * Visual language pulled from the live mobile app:
 *   - forest green as the single confident brand colour
 *   - very soft, sage-cream surfaces with a faint topographic map texture
 *   - rounded everything (cards 24px, pills 999px, tiles 20px)
 *   - generous emoji as iconography (no hand-drawn SVG flourishes)
 *   - friendly typography (Manrope, with semibold/bold for emphasis)
 *   - accent cards: yellow "Saison" / lavender "KI-Überblick"
 *   - bunny mascot tile, just like in the app
 */

:root {
  --paper:    oklch(97% 0.012 130);   /* soft warm-sage white   */
  --paper-2:  oklch(94% 0.018 135);   /* card surface            */
  --paper-3:  oklch(90% 0.022 135);
  --paper-4:  oklch(86% 0.028 135);

  --ink:      oklch(20% 0.020 155);
  --ink-2:    oklch(35% 0.020 155);
  --ink-3:    oklch(52% 0.018 145);

  --forest:   oklch(34% 0.075 155);   /* primary brand          */
  --forest-2: oklch(46% 0.090 152);   /* hover / lighter        */
  --forest-3: oklch(78% 0.055 150);   /* tint                   */

  --sage:     oklch(90% 0.035 145);
  --sand:     oklch(94% 0.060 90);    /* Saison-card surface    */
  --sand-2:   oklch(85% 0.110 87);    /* Saison-pill            */
  --sand-3:   oklch(40% 0.080 75);    /* Saison-pill text       */

  --lavender:    oklch(94% 0.030 295);
  --lavender-2:  oklch(55% 0.180 295);

  --rule:    oklch(86% 0.020 140);
  --rule-2:  oklch(78% 0.025 140);

  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --sans:    "Manrope", ui-sans-serif, system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --shadow-soft: 0 1px 0 rgba(255,255,255,.7) inset, 0 10px 26px -18px rgba(20, 45, 30, .35);
  --shadow-md:   0 1px 0 rgba(255,255,255,.7) inset, 0 20px 50px -28px rgba(20, 45, 30, .45);
}

[data-palette="moss"] {
  --paper:   oklch(95% 0.022 140);
  --paper-2: oklch(92% 0.026 140);
  --paper-3: oklch(88% 0.030 140);
  --forest:  oklch(38% 0.085 150);
}

[data-palette="ink"] {
  --paper:   oklch(96% 0.010 95);
  --paper-2: oklch(93% 0.012 95);
  --paper-3: oklch(89% 0.015 95);
  --forest:  oklch(22% 0.030 230);
  --forest-2: oklch(36% 0.050 230);
  --sand:    oklch(94% 0.060 60);
}

[data-density="compact"]   { --pad-y: 64px;  --gap: 24px; --h1: clamp(38px, 5.4vw, 64px); --h2: clamp(28px, 3.6vw, 44px); }
[data-density="regular"]   { --pad-y: 96px;  --gap: 36px; --h1: clamp(42px, 6.4vw, 78px); --h2: clamp(32px, 4.0vw, 52px); }
[data-density="generous"]  { --pad-y: 132px; --gap: 48px; --h1: clamp(46px, 7.4vw, 92px); --h2: clamp(36px, 4.6vw, 60px); }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Topographic background — very faint contour lines over the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 110% -10%, color-mix(in oklch, var(--forest) 8%, transparent), transparent 60%),
    radial-gradient(900px 500px at -10% 100%, color-mix(in oklch, var(--sand-2) 14%, transparent), transparent 60%),
    repeating-radial-gradient(circle at 30% 40%,
      transparent 0 38px,
      color-mix(in oklch, var(--forest) 5%, transparent) 38px 39px);
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}

a { color: inherit; }
::selection { background: var(--forest); color: var(--paper); }

img, svg { display: block; }

/* ─── Layout ─── */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.section { padding: var(--pad-y) 0; position: relative; }

/* ─── Typography ─── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: color-mix(in oklch, var(--forest) 10%, transparent);
  padding: 8px 12px;
  border-radius: 999px;
}

.kicker .emo { font-family: var(--sans); font-size: 14px; }

#root {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: clip;
}

.h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: var(--h1);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.h1 .accent { color: var(--forest); }
.h1 > .line { display: block; }

.h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: var(--h2);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.h2 .accent { color: var(--forest); }

.h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.lede {
  font: 500 19px/1.45 var(--sans);
  color: var(--ink-2);
  margin: 20px 0 0;
  max-width: 56ch;
  text-wrap: pretty;
}

.body { font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.small { font-size: 13px; color: var(--ink-3); }
.mono  { font-family: var(--mono); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--forest);
  color: white;
  font: 700 14.5px/1 var(--sans);
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 16px -8px color-mix(in oklch, var(--forest) 60%, transparent);
}
.btn:hover { transform: translateY(-1px); background: var(--forest-2); }
.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border-color: var(--rule-2);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 4px 14px -10px rgba(20,45,30,.4);
  backdrop-filter: blur(8px);
}
.btn.ghost:hover { background: rgba(255, 255, 255, 0.85); }
.btn.sand {
  background: var(--sand-2);
  color: var(--sand-3);
  box-shadow: 0 6px 16px -8px color-mix(in oklch, var(--sand-2) 70%, transparent);
}
.btn.sand:hover { background: color-mix(in oklch, var(--sand-2) 80%, black 4%); }
.btn .arrow { display: inline-block; transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn.big { padding: 16px 24px; font-size: 15.5px; }

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--paper) 70%, transparent);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--rule-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s ease, border-color .15s ease;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--forest-3);
}
.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 12px;
  margin: 0 auto;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 100% / 100% 2px no-repeat;
  transition: opacity .15s ease;
}
.nav--open .nav-toggle-bars {
  opacity: 0.85;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 16px/1 var(--sans);
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}
.nav-links a {
  font: 600 14px/1 var(--sans);
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--forest); }

@media (max-width: 1200px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 4px;
    height: auto;
    min-height: 56px;
    padding-top: max(8px, env(safe-area-inset-top));
    padding-bottom: 10px;
  }
  .brand {
    min-width: 0;
  }
  .brand > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav:not(.nav--open) .nav-links {
    display: none !important;
  }
  .nav.nav--open .nav-links {
    display: flex !important;
  }
  .nav-links {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 0 6px;
    border-top: 1px solid var(--rule);
  }
  .nav-links a {
    white-space: normal;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 15px;
  }
  .nav-links a:active {
    background: color-mix(in oklch, var(--forest) 8%, transparent);
  }
  .lang-switch {
    grid-column: 1 / -1;
    justify-self: start;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }
}

@media (min-width: 1201px) {
  .nav-toggle {
    display: none !important;
  }
  .nav-inner {
    display: flex;
    height: 64px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .nav-links {
    display: flex !important;
    grid-column: unset;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  padding: 3px;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.lang-switch button {
  font: 700 11.5px/1 var(--mono);
  letter-spacing: 0.06em;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  padding: 7px 11px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}
.lang-switch button[aria-current="true"] {
  background: var(--forest);
  color: white;
}

/* ─── Hero ─── */
.hero {
  padding: clamp(40px, 6vw, 88px) 0 clamp(48px, 7vw, 96px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero-grid > * {
  min-width: 0;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 12px;
  font: 600 12px/1 var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-2);
  backdrop-filter: blur(8px);
}
.hero-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--forest); display: inline-block;
}
.hero-pill .dot.warm { background: var(--sand-2); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 3vw, 44px);
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px dashed var(--rule);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat .num {
  font: 800 clamp(28px, 3.6vw, 44px)/1 var(--sans);
  letter-spacing: -0.025em;
  color: var(--forest);
}
.hero-stat .lbl {
  font: 600 11px/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-foot {
  margin-top: 24px;
  display: flex; align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--ink-3);
  font: 13px/1.4 var(--sans);
}
.hero-foot .bunny {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 30px; line-height: 1;
  box-shadow: var(--shadow-soft);
}

/* ─── App preview tile (hero right) ─── */
.app-preview {
  position: relative;
  border-radius: 36px;
  padding: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}
.app-preview::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 36px;
  background: radial-gradient(60% 60% at 100% 0%,
              color-mix(in oklch, var(--forest) 12%, transparent), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.app-preview-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.app-preview-title {
  font: 800 14px/1 var(--sans);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.app-preview-title .pin {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.app-preview-radius {
  display: inline-flex;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  font: 700 11px/1 var(--mono);
}
.app-preview-radius span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink-3);
}
.app-preview-radius span.on {
  background: var(--forest);
  color: white;
}

/* Map mock with emoji pins like the app */
.app-map {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper-3);
}
.app-map-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 70% at 50% 50%, color-mix(in oklch, var(--forest-3) 35%, transparent), transparent 70%),
    repeating-linear-gradient(45deg, var(--paper-3) 0 22px, var(--paper-2) 22px 44px);
}
.app-map-circle {
  position: absolute; left: 50%; top: 50%;
  width: 84%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: color-mix(in oklch, var(--forest) 12%, transparent);
  border: 1.5px solid color-mix(in oklch, var(--forest) 35%, transparent);
}
.app-pin {
  position: absolute;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transform: translate(-50%, -50%);
}
.app-map-label {
  position: absolute;
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.06em;
  color: var(--ink-2);
  background: rgba(255,255,255,0.7);
  padding: 4px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transform: translate(-50%, -50%);
}
.app-pin.me {
  background: var(--forest);
  border-color: var(--forest);
}
.app-pin.me::after {
  content: ""; width: 14px; height: 14px;
  background: white; border-radius: 50%;
}

.app-preview-categories {
  display: flex; gap: 8px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.app-preview-categories::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: 0 0 auto;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 13px/1 var(--sans);
  color: var(--ink-2);
}
.cat-chip .emo { font-size: 16px; line-height: 1; }

.bunny-row {
  margin-top: 14px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  display: flex; align-items: center; gap: 12px;
}
.bunny-row .bunny {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
}
.bunny-row .msg {
  font: 500 13px/1.3 var(--sans);
  color: var(--ink-2);
  min-width: 0;
  flex: 1 1 auto;
}
.bunny-row .ping {
  margin-left: auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--sand-2) 70%, white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}

/* ─── Card primitives ─── */
.card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 14px;
}
.card.solid { background: rgba(255,255,255,0.85); }
.card-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font: 700 11.5px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--forest) 10%, transparent);
  color: var(--forest);
}
.card-tag .emo { font-family: var(--sans); font-size: 14px; }
.card h3 { font: 700 22px/1.25 var(--sans); margin: 0; color: var(--ink); letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.card ul {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px dashed var(--rule);
  padding-top: 14px;
}
.card ul li {
  padding-left: 24px;
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
}
.card ul li::before {
  content: "→";
  position: absolute; left: 0;
  font-family: var(--mono);
  color: var(--forest);
  font-weight: 700;
}

/* ─── Section header (improved spacing + center variant + split variant) ─── */
.sect-head {
  max-width: 780px;
  display: flex; flex-direction: column;
  gap: 24px;
  margin-bottom: 8px;
}
.sect-head.center { margin: 0 auto; text-align: center; align-items: center; }
.sect-head .h2 { margin: 0; }
.sect-head .lede { margin: 6px 0 0; }
.sect-head.center .lede { margin-left: auto; margin-right: auto; }

/* ─── Manifest grid ─── */
.manifest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 900px) { .manifest-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .manifest-grid { grid-template-columns: 1fr; } }
.manifest-item {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
}
.manifest-item::before {
  content: "";
  position: absolute; right: -28px; top: -28px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--forest) 10%, transparent);
  opacity: 0.7;
}
.manifest-item .emo {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; line-height: 1;
  background: white;
  border-radius: 50%;
  border: 1px solid var(--rule);
  position: relative; z-index: 1;
}
.manifest-item h3 { font: 700 18px/1.2 var(--sans); margin: 6px 0 0; }
.manifest-item p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.manifest-item .n {
  position: absolute; bottom: 14px; right: 18px;
  font: 700 11px/1 var(--mono);
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

/* ─── For Whom cards ─── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 980px) { .cards-3 { grid-template-columns: 1fr; } }

/* ─── Tourism / How split ─── */
.split-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 900px) { .split-2 { grid-template-columns: 1fr; } }

.kv {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.kv-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--rule);
  align-items: flex-start;
}
.kv-row .emo {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: white;
  border-radius: 50%;
  border: 1px solid var(--rule);
}
.kv-row h4 { font: 700 16px/1.3 var(--sans); margin: 2px 0 4px; letter-spacing: -0.005em; }
.kv-row p  { font-size: 14.5px; color: var(--ink-2); margin: 0; }

/* ─── Steps (how it works) ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.step .emo {
  width: 44px; height: 44px;
  border-radius: 50%; background: var(--forest);
  color: white; display: inline-flex; align-items: center; justify-content: center;
  font: 700 15px/1 var(--mono);
  margin-bottom: 8px;
}
.step h4 { font: 700 17px/1.3 var(--sans); margin: 0; }
.step p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ─── AI section ─── */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 900px) { .ai-grid { grid-template-columns: 1fr; } }

.ai-card {
  border-radius: 24px;
  padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid transparent;
}
.ai-card.does {
  background: var(--lavender);
  border-color: color-mix(in oklch, var(--lavender-2) 20%, transparent);
}
.ai-card.doesnt {
  background: rgba(255,255,255,0.7);
  border-color: var(--rule);
}
.ai-card h4 {
  font: 800 13px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
}
.ai-card.does h4 { color: var(--lavender-2); }
.ai-card.does h4::before { content: "✨"; font-size: 16px; }
.ai-card.doesnt h4::before { content: "🚫"; font-size: 16px; }
.ai-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ai-list li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.ai-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--forest);
}
.ai-card.does .ai-list li::before { background: var(--lavender-2); }

.pull-card {
  margin-top: 36px;
  background: var(--forest);
  color: white;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.pull-card .bunny {
  flex: 0 0 64px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.pull-card .pull {
  flex: 1 1 280px;
  font: 800 clamp(22px, 2.6vw, 32px)/1.18 var(--sans);
  letter-spacing: -0.02em;
  margin: 0;
}

/* ─── Free zone pillars ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.pillar .emo {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--rule);
  margin-bottom: 6px;
}
.pillar h4 { font: 700 17px/1.3 var(--sans); margin: 0; }
.pillar p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ─── Ratings (farm card mock — like the app) ─── */
.ratings-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 56px);
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 980px) { .ratings-grid { grid-template-columns: 1fr; } }

.points-list { display: flex; flex-direction: column; gap: 10px; }
.points-list .point {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
  font: 500 15px/1.45 var(--sans);
  color: var(--ink-2);
}
.points-list .point .emo {
  font-size: 18px; line-height: 1.2;
}

.farm-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.farm-photo {
  aspect-ratio: 16/8;
  background:
    radial-gradient(circle at 20% 30%, var(--forest-3) 0 20%, transparent 40%),
    radial-gradient(circle at 70% 50%, color-mix(in oklch, var(--sand-2) 50%, white) 0 22%, transparent 44%),
    linear-gradient(180deg, color-mix(in oklch, var(--forest) 16%, var(--paper)), var(--paper-2));
  position: relative;
}
.farm-photo image-slot { position: absolute; inset: 0; }
.farm-body { padding: 22px 22px 24px; }
.farm-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 12px;
}
.farm-title { font: 800 24px/1.15 var(--sans); margin: 0; letter-spacing: -0.01em; }
.farm-place {
  margin: 4px 0 0;
  font: 600 12px/1 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.rating-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sand);
  border: 1px solid var(--sand-2);
  border-radius: 999px;
  padding: 8px 14px;
  font: 700 14px/1 var(--sans);
  color: var(--sand-3);
}
.rating-pill .num { font-size: 16px; }

.farm-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
}
.farm-tags span {
  background: var(--sage);
  border-radius: 999px;
  padding: 6px 12px;
  font: 600 12.5px/1 var(--sans);
  color: var(--forest);
}

.saison-card {
  background: var(--sand);
  border: 1px solid color-mix(in oklch, var(--sand-2) 40%, white);
  border-radius: 18px;
  padding: 16px 16px;
  margin: 4px 0 16px;
}
.saison-card .title {
  font: 800 13px/1 var(--mono);
  letter-spacing: 0.06em;
  color: var(--sand-3);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.saison-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.saison-pill {
  background: color-mix(in oklch, var(--sand-2) 70%, white);
  color: var(--sand-3);
  border-radius: 999px;
  padding: 7px 14px;
  font: 700 13px/1 var(--sans);
  display: inline-flex; align-items: center; gap: 6px;
}

.ki-card {
  background: var(--lavender);
  border: 1px solid color-mix(in oklch, var(--lavender-2) 25%, transparent);
  border-radius: 18px;
  padding: 16px;
  margin: 4px 0 18px;
}
.ki-card .title {
  font: 800 13px/1 var(--mono);
  letter-spacing: 0.06em;
  color: var(--lavender-2);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.ki-card .body { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }

.actions-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 18px 0;
}
.actions-row .action {
  background: transparent;
  border: 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font: 600 12px/1.2 var(--sans);
  color: var(--ink-2);
  cursor: pointer;
  padding: 8px 0;
}
.actions-row .action .emo {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: white;
  border: 1px solid var(--rule);
  margin-bottom: 4px;
}

.rate-bar {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.7);
  border: 1px dashed var(--rule-2);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.rate-bar .label { font: 700 13px/1 var(--sans); }
.stars-input { display: inline-flex; gap: 4px; }
.stars-input button {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 50%;
  cursor: pointer;
  width: 38px; height: 38px;
  font-size: 18px;
  color: var(--rule-2);
  padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .12s ease, border-color .12s ease, background .12s ease;
}
.stars-input button.on {
  background: var(--sand);
  border-color: var(--sand-2);
  color: var(--sand-3);
}
.rate-bar .hint {
  flex: 1 1 200px;
  font: 12.5px/1.4 var(--sans);
  color: var(--ink-3);
}
.btn.publish {
  background: var(--ink);
  margin-left: auto;
  font-size: 13px;
  padding: 10px 16px;
}

.review-row {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 14px 16px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
}
.review-who { font: 700 13px/1 var(--sans); color: var(--ink); }
.review-stars { font-size: 13px; color: var(--sand-3); }
.review-text { grid-column: 1 / -1; margin: 4px 0 0; font-size: 14px; color: var(--ink-2); line-height: 1.45; }

/* ─── Languages grid ─── */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 40px;
}
@media (max-width: 980px) { .lang-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .lang-grid { grid-template-columns: repeat(2, 1fr); } }

.lang-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.lang-card .flag {
  font-size: 22px;
  margin-bottom: 4px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
}
.lang-card .code { font: 800 12px/1 var(--mono); letter-spacing: 0.1em; color: var(--forest); }
.lang-card .name { font: 700 18px/1.2 var(--sans); }
.lang-card .note { font: 500 12.5px/1.3 var(--sans); color: var(--ink-3); margin-top: 4px; }

/* ─── Form ─── */
.form-wrap {
  margin-top: 40px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; } }

.form-aside {
  padding: 30px 30px 30px;
  background: var(--forest);
  color: white;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  overflow: hidden;
}
.form-aside::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: color-mix(in oklch, white 14%, transparent);
  pointer-events: none;
}
.form-aside .kicker {
  align-self: flex-start;
  background: rgba(255,255,255,0.15);
  color: white;
}
.form-aside h3 {
  font: 800 clamp(26px, 3vw, 34px)/1.1 var(--sans);
  letter-spacing: -0.02em;
  margin: 0;
}
.form-aside p { margin: 0; color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.5; }
.form-aside .freezone-tag {
  align-self: flex-start;
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex; gap: 6px; align-items: center;
}
.form-progress {
  display: flex; align-items: center; gap: 8px;
  margin-top: auto;
}
.form-progress .seg {
  flex: 1; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px; overflow: hidden;
}
.form-progress .seg.on { background: var(--sand-2); }
.form-progress .label {
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
}

.form-body {
  padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 460px;
}
.form-step-label {
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.form-step-title {
  font: 800 clamp(24px, 2.8vw, 30px)/1.2 var(--sans);
  letter-spacing: -0.015em;
  margin: 0;
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 600px) { .tile-grid { grid-template-columns: 1fr; } }
.tile {
  border: 1px solid var(--rule);
  background: white;
  border-radius: 18px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.tile .emo {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
  flex-shrink: 0;
}
.tile:hover { border-color: var(--forest-3); }
.tile.on {
  border-color: var(--forest);
  background: color-mix(in oklch, var(--forest) 6%, white);
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--forest) 16%, transparent);
}
.tile.on .emo { background: var(--forest); color: white; }
.tile .tt { font: 700 15px/1.2 var(--sans); }
.tile .td { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field textarea {
  font: 500 15px/1.4 var(--sans);
  color: var(--ink);
  background: white;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--forest) 15%, transparent);
}
.field.err input, .field.err textarea { border-color: oklch(60% 0.18 25); }
.field .err-msg { font: 600 12px/1 var(--mono); color: oklch(55% 0.18 25); margin-top: 2px; }
.field textarea { resize: vertical; min-height: 90px; }
.fields-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .fields-2 { grid-template-columns: 1fr; } }

.chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font: 600 13.5px/1 var(--sans);
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: white;
  cursor: pointer;
  color: var(--ink-2);
  transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip:hover { border-color: var(--forest-3); }
.chip.on {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--ink-2);
  background: var(--paper-2);
  padding: 14px 16px; border-radius: 14px;
  margin-top: 4px;
}
.consent input {
  margin-top: 3px; width: 18px; height: 18px;
  accent-color: var(--forest);
}

.form-actions {
  margin-top: auto;
  display: flex; justify-content: space-between; gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.form-sent {
  display: flex; flex-direction: column; gap: 18px;
  justify-content: center;
  min-height: 100%;
  text-align: left;
}
.form-sent h3 { font: 800 clamp(28px, 3.2vw, 36px)/1.1 var(--sans); margin: 0; letter-spacing: -0.02em; }
.form-sent .check {
  width: 64px; height: 64px;
  background: var(--forest);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}

/* ─── Final CTA ─── */
.cta-final {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 0;
  margin-top: var(--pad-y);
}
.cta-card {
  background: var(--forest);
  color: white;
  border-radius: 36px;
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 32px;
  align-items: end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px color-mix(in oklch, var(--forest) 80%, black);
}
@media (max-width: 800px) { .cta-card { grid-template-columns: 1fr; } }
.cta-card::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: color-mix(in oklch, white 12%, transparent);
}
.cta-card h2 {
  font: 800 clamp(34px, 4.6vw, 56px)/1.05 var(--sans);
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
  position: relative;
}
.cta-card p { font: 500 18px/1.45 var(--sans); margin: 18px 0 0; color: rgba(255,255,255,0.8); max-width: 36ch; }
.cta-card .actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
  position: relative;
}
.cta-card .actions .btn { background: white; color: var(--forest); }
.cta-card .actions .btn:hover { background: rgba(255,255,255,0.9); }
.cta-card .actions .btn.ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.cta-card .actions .btn.ghost:hover { background: rgba(255,255,255,0.12); }
.cta-card .bunny {
  width: clamp(120px, 16vw, 200px);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(60px, 8vw, 110px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.3);
  position: relative;
}

/* ─── Footer ─── */
.footer {
  padding: 56px 0 40px;
  font-size: 14px;
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h5 {
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--ink-3);
}
.footer-col a {
  font: 700 18px/1.2 var(--sans);
  text-decoration: none;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.footer-col a:hover { color: var(--forest); border-color: var(--forest); }
.footer-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  font: 600 11px/1.4 var(--mono);
  letter-spacing: 0.06em;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ──────────────────────────────────────────────────────────────────
 * ANIMATION SYSTEM
 * Scroll reveal, micro-interactions, continuous bobs.
 * ────────────────────────────────────────────────────────────────── */

/* Smooth scroll for anchor nav */
html { scroll-behavior: smooth; overflow-x: clip; }

/* Scroll reveal — applied to most blocks (sect-head, cards) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.65,.25,1), transform .9s cubic-bezier(.2,.65,.25,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

/* Continuous animations */
@keyframes float-y {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-4px); }
}
@keyframes drift {
  0%, 100% { transform: translate(-50%, -50%) translate(0, 0); }
  25%      { transform: translate(-50%, -50%) translate(1.5px, -2px); }
  50%      { transform: translate(-50%, -50%) translate(-1px, -1px); }
  75%      { transform: translate(-50%, -50%) translate(-2px, 2px); }
}
@keyframes pulse-ring {
  0%   { transform: translate(-50%, -50%) scale(0.9); opacity: 0.55; }
  70%  { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}
@keyframes bunny-blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95%           { transform: scaleY(0.1); }
}
@keyframes bunny-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-3px) rotate(2deg); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-3deg); }
  75%      { transform: rotate(3deg); }
}
@keyframes star-pop {
  0%   { transform: scale(0.8); }
  60%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes blink-dot {
  0%, 60%, 100% { opacity: 1; }
  30%           { opacity: 0.25; }
}

/* Hero map — make the pins gently float with phased timing */
.app-pin {
  animation: float-y 4s ease-in-out infinite;
  transition: transform .2s ease;
}
.app-pin:nth-child(2n)  { animation-duration: 5s;  animation-delay: -1.2s; }
.app-pin:nth-child(3n)  { animation-duration: 6s;  animation-delay: -0.6s; }
.app-pin:nth-child(5n)  { animation-duration: 4.5s; animation-delay: -2.1s; }
.app-pin:hover { transform: translate(-50%, -50%) scale(1.18); cursor: default; }

/* Center "me" pin: extra radar pulse */
.app-pin.me { animation: drift 7s ease-in-out infinite; }
.app-pin.me::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0;
  animation: pulse-ring 2.4s ease-out infinite;
  z-index: -1;
}

/* Live dot in hero meta */
.hero-pill .dot {
  animation: blink-dot 1.8s ease-in-out infinite;
}

/* Bunny mascots — blink + tiny bob */
.bunny, .hero-foot .bunny, .pull-card .bunny, .cta-card .bunny, .bunny-row .bunny {
  display: inline-flex;
  transform-origin: center bottom;
}
.bunny-row .bunny,
.hero-foot .bunny {
  animation: bunny-bob 4s ease-in-out infinite;
}
.pull-card .bunny {
  animation: bunny-bob 3.5s ease-in-out infinite;
}
.cta-card .bunny {
  animation: bunny-bob 5s ease-in-out infinite;
}

/* Bunny ping/badge */
.bunny-row .ping { animation: wiggle 3s ease-in-out infinite; }

/* Saison pills — subtle individual wiggle on hover (group), shimmer background */
.saison-pill {
  transition: transform .2s ease;
}
.saison-pill:hover { transform: translateY(-2px) rotate(-2deg); }
.saison-card .title {
  background: linear-gradient(90deg,
    var(--sand-3) 0%,
    color-mix(in oklch, var(--sand-3) 60%, var(--forest)) 50%,
    var(--sand-3) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}

/* KI card — sparkle in title */
.ki-card .title::after {
  content: "·";
  display: inline-block;
  margin-left: 6px;
  animation: spin-slow 8s linear infinite;
}

/* Star rating buttons — pop on activation */
.stars-input button.on { animation: star-pop .35s cubic-bezier(.34,1.56,.64,1) both; }

/* Card hover lift across all .card / .manifest-item / .step / .pillar / .kv-row / .lang-card */
.card, .manifest-item, .step, .pillar, .kv-row, .lang-card, .point {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover, .manifest-item:hover, .step:hover, .pillar:hover,
.kv-row:hover, .lang-card:hover, .point:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -22px rgba(20,45,30,.4);
  border-color: var(--forest-3);
}

/* Cat-chip nudge */
.cat-chip { transition: transform .2s ease, background .2s ease; }
.cat-chip:hover { transform: translateY(-2px); background: var(--paper-2); }

/* Sect-head emoji — give the kicker emoji a tiny constant bob */
.kicker .emo { display: inline-block; animation: bunny-bob 4s ease-in-out infinite; }

/* App preview "live" indicator */
.app-preview-title .pin { animation: wiggle 5s ease-in-out infinite; transform-origin: 50% 70%; }

/* Action row emoji bumps on hover */
.actions-row .action .emo { transition: transform .18s ease; }
.actions-row .action:hover .emo { transform: scale(1.12) translateY(-2px); }

/* Languages flag tile — subtle hover rotate */
.lang-card .flag { transition: transform .2s ease; }
.lang-card:hover .flag { transform: rotate(-6deg) scale(1.08); }

/* Step emoji circle — pulse on hover */
.step:hover .emo { animation: star-pop .4s cubic-bezier(.34,1.56,.64,1); }

/* Pillar emoji — wiggle on hover */
.pillar:hover .emo { animation: wiggle .6s ease-in-out; }

/* Hero map labels — fade in with cycle */
.app-map-label { animation: blink-dot 6s ease-in-out infinite; }
.app-map-label:nth-of-type(2) { animation-delay: -2s; }
.app-map-label:nth-of-type(3) { animation-delay: -4s; }

/* Animated count-up — just a strong fade entry */
.counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: color .3s ease;
}

/* Form aside seg progress: shimmer */
.form-progress .seg.on {
  background-image: linear-gradient(90deg,
    var(--sand-2) 0%,
    color-mix(in oklch, var(--sand-2) 60%, white) 50%,
    var(--sand-2) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* Tile selection — animate the radio dot scale */
.tile.on { animation: star-pop .35s cubic-bezier(.34,1.56,.64,1); }
.chip { transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease; }
.chip:hover { transform: translateY(-2px); }
.chip.on { animation: star-pop .3s cubic-bezier(.34,1.56,.64,1); }

/* Background topographic drift — gentle slow pan */
@keyframes bg-drift {
  0%, 100% { background-position: 0% 0%, 0% 0%, 0% 0%; }
  50%      { background-position: 20px -10px, -20px 10px, 0% 0%; }
}
body::before {
  animation: bg-drift 40s ease-in-out infinite;
}

/* Reduced motion respects user prefs */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ──────────────────────────────────────────────────────────────────
 * PRICING SECTION
 * Side-by-side: feature list (left) + price card (right).
 * The price card stays glued to the viewport on long scrolls via sticky.
 * ────────────────────────────────────────────────────────────────── */

.pricing {
  position: relative;
}
.pricing-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 720px) { .price-features { grid-template-columns: 1fr; } }
.price-feature {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.price-feature .emo {
  width: 38px; height: 38px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  margin-bottom: 4px;
}
.price-feature h4 {
  font: 700 15.5px/1.25 var(--sans);
  margin: 0;
  letter-spacing: -0.005em;
}
.price-feature p {
  font: 13.5px/1.5 var(--sans);
  color: var(--ink-2);
  margin: 0;
}

/* Price card (sticky on large screens) */
.price-card-wrap {
  position: sticky;
  top: 84px;
}
.price-card {
  background: var(--forest);
  color: white;
  border-radius: 32px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 30px 80px -40px color-mix(in oklch, var(--forest) 80%, black);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute; right: -140px; top: -140px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: color-mix(in oklch, white 9%, transparent);
}
.price-card::after {
  content: "";
  position: absolute; left: -100px; bottom: -100px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--sand-2) 28%, transparent);
}
.price-card .badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--sand-2);
  color: var(--sand-3);
  padding: 8px 12px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.price-card .price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  position: relative;
  z-index: 1;
  font-variant-numeric: tabular-nums;
}
.price-card .price-row .currency {
  font: 700 22px/1 var(--mono);
  letter-spacing: 0.04em;
  opacity: 0.8;
}
.price-card .price-row .amount {
  font: 800 clamp(36px, 14vw, 140px)/0.9 var(--sans);
  letter-spacing: -0.04em;
  color: white;
  min-width: 0;
  flex: 1 1 auto;
}
.price-card .price-row .per {
  font: 700 16px/1 var(--sans);
  opacity: 0.8;
  margin-left: 4px;
}
.price-card .sub {
  position: relative; z-index: 1;
  font: 800 clamp(22px, 2.4vw, 30px)/1.2 var(--sans);
  letter-spacing: -0.02em;
  margin: 0;
}
.price-card .sub .coffee {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 14px;
  margin-left: 4px;
  font-size: 0.85em;
}
.price-card .price-cta {
  position: relative; z-index: 1;
  background: white;
  color: var(--forest);
  margin-top: 6px;
}
.price-card .price-cta:hover { background: rgba(255,255,255,0.9); }
.price-card .fine {
  position: relative; z-index: 1;
  font: 12px/1.5 var(--mono);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────
 * RATINGS SECTION — EDITORIAL REWORK
 * Featured pull-quote + collage of 3 review cards + clean rate widget.
 * No more phone-screen mock; this is its own designed surface.
 * ────────────────────────────────────────────────────────────────── */

.ratings.editorial { position: relative; }

.featured-quote {
  margin: 56px auto 0;
  max-width: 920px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 32px;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 52px);
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.featured-quote .mark {
  position: absolute;
  top: -8px; left: 28px;
  font: 800 clamp(120px, 16vw, 200px)/1 var(--sans);
  color: var(--forest);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}
.featured-quote .text {
  font: 700 clamp(22px, 2.8vw, 36px)/1.28 var(--sans);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.featured-quote .meta {
  margin-top: 24px;
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 16px;
  align-items: center;
}
.featured-quote .stars {
  display: inline-flex; gap: 2px;
  font-size: 18px;
  color: var(--sand-3);
}
.featured-quote .who {
  font: 600 13px/1.2 var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.featured-quote .who .dot { margin: 0 6px; opacity: 0.5; }

.reviews-collage {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .reviews-collage { grid-template-columns: 1fr; } }

.review-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 10px 26px -22px rgba(20,45,30,.35);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.review-card::before {
  content: "❝";
  position: absolute;
  top: 12px; right: 18px;
  font: 800 36px/1 var(--sans);
  color: var(--forest);
  opacity: 0.12;
}
.review-card:hover {
  transform: translateY(-4px) rotate(0);
  box-shadow: 0 22px 50px -28px rgba(20,45,30,.45);
  border-color: var(--forest-3);
}
.review-card.tilt-l { transform: rotate(-1.2deg); }
.review-card.tilt-r { transform: rotate(1.2deg); }

.review-card .stars {
  font-size: 15px;
  color: var(--sand-3);
  letter-spacing: 0.04em;
}
.review-card .text {
  font: 500 15.5px/1.5 var(--sans);
  color: var(--ink);
  margin: 0;
}
.review-card .who-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
}
.review-card .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper-3);
  display: inline-flex; align-items: center; justify-content: center;
  font: 800 13px/1 var(--sans);
  color: var(--forest);
  flex-shrink: 0;
}
.review-card .who {
  font: 600 12.5px/1.3 var(--mono);
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.review-card .place {
  font: 12px/1.3 var(--sans);
  color: var(--ink-3);
}

/* Bottom strip: bullet points + the rate widget side by side */
.ratings-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 900px) { .ratings-bottom { grid-template-columns: 1fr; } }

.ratings-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) { .ratings-points { grid-template-columns: 1fr; } }
.ratings-points .point {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex; gap: 10px; align-items: flex-start;
}
.ratings-points .point .emo {
  width: 32px; height: 32px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ratings-points .point span:last-child {
  font: 500 14px/1.45 var(--sans);
  color: var(--ink-2);
}

.rate-widget {
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 20px 50px -30px rgba(0,0,0,0.45);
}
.rate-widget .head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.rate-widget .label {
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.rate-widget .farm-pick {
  font: 600 13px/1 var(--mono);
  color: white;
  background: rgba(255,255,255,0.12);
  padding: 7px 11px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.rate-widget .stars-input { display: inline-flex; gap: 6px; }
.rate-widget .stars-input button {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.rate-widget .stars-input button.on {
  background: var(--sand-2);
  border-color: var(--sand-2);
  color: var(--sand-3);
}
.rate-widget textarea {
  font: 500 14.5px/1.4 var(--sans);
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
  resize: vertical;
  min-height: 80px;
  width: 100%;
  box-sizing: border-box;
}
.rate-widget textarea::placeholder { color: rgba(255,255,255,0.4); }
.rate-widget textarea:focus { border-color: var(--sand-2); }
.rate-widget .submit-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px;
}
.rate-widget .submit-row .hint {
  font: 12px/1.3 var(--mono);
  color: rgba(255,255,255,0.6);
}
.rate-widget button.publish {
  background: var(--forest);
  color: white;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font: 700 13px/1 var(--sans);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.rate-widget button.publish:hover { background: var(--forest-2); }
.rate-widget button.publish:disabled { opacity: 0.4; cursor: not-allowed; }
.rate-widget .sent-line {
  display: flex; align-items: center; gap: 8px;
  font: 700 13px/1 var(--mono);
  color: var(--sand-2);
}

/* For the editorial framing, slot the kicker pill above the centered h2 */
.section.ratings.editorial .sect-head { align-items: center; text-align: center; max-width: 720px; }

/* ─── Mobile refinements (touch targets, no horizontal scroll, safe areas) ─── */
@media (max-width: 900px) {
  .price-card-wrap {
    position: relative;
    top: auto;
  }
  .review-card.tilt-l,
  .review-card.tilt-r {
    transform: none;
  }
  .rate-widget .head {
    flex-wrap: wrap;
  }
  .rate-widget .farm-pick {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .shell {
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
  }
  .section {
    padding-top: clamp(44px, 11vw, var(--pad-y));
    padding-bottom: clamp(44px, 11vw, var(--pad-y));
  }
  .lede {
    font-size: clamp(16px, 4.2vw, 19px);
  }
  .hero-pill {
    font-size: 11px;
    padding: 6px 10px;
    letter-spacing: 0.03em;
  }
  .hero-ctas .btn.big {
    width: 100%;
    justify-content: center;
  }
  .form-body {
    min-height: 0;
    padding: 20px 16px;
  }
  .form-aside {
    padding: 24px 20px;
  }
  .cta-card .actions {
    flex-direction: column;
  }
  .cta-card .actions .btn {
    width: 100%;
    justify-content: center;
  }
  .rate-widget .submit-row {
    flex-wrap: wrap;
  }
  .rate-widget button.publish {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }
  .app-preview {
    padding: 16px 14px;
    border-radius: 24px;
  }
  .app-map {
    border-radius: 18px;
  }
  .app-pin {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }
  .app-preview-head {
    flex-wrap: wrap;
    gap: 8px;
  }
  .app-preview-radius span {
    padding: 5px 8px;
    font-size: 10px;
  }
  .pull-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-final {
    padding-bottom: max(64px, calc(64px + env(safe-area-inset-bottom)));
  }
}

@media (max-width: 480px) {
  .footer {
    padding-bottom: max(40px, calc(24px + env(safe-area-inset-bottom)));
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-actions {
    flex-wrap: wrap;
  }
  .form-actions .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    justify-content: center;
  }
}

/* Tweaks panel lives in injected styles; keep it inside narrow viewports */
@media (max-width: 520px) {
  .twk-panel {
    width: calc(100vw - 20px) !important;
    max-width: none !important;
    right: 10px !important;
  }
}
