/* ---------- Fonts (lokal, kein Google-Server-Kontakt) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --sand-50: #faf6f0;
  --sand-100: #f1e8d8;
  --sand-200: #e4d4b8;
  --sand-300: #c9b08a;
  --ink-900: #0f1d2e;
  --ink-700: #243a55;
  --ink-500: #4a5f7a;
  --ink-300: #8094ad;
  --accent: #d96b3c;
  --accent-soft: #f0a47a;
  --line: rgba(15, 29, 46, 0.12);
  --shadow-sm: 0 1px 2px rgba(15, 29, 46, 0.06);
  --shadow-md: 0 8px 28px rgba(15, 29, 46, 0.08);
  --radius: 14px;
  --radius-sm: 8px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--sand-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.container.narrow {
  max-width: 720px;
}

/* ---------- Background ---------- */
:root {
  --p: 0; /* scroll progress 0..1, set by script.js */
}

.horizon-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #faf6f0;
  pointer-events: none;
}

/* Country zones — fade in/out via scroll progress */
.zone {
  position: absolute;
  inset: 0;
  transition: opacity 600ms ease;
}
.zone-base {
  background:
    linear-gradient(180deg,
      #f8ead6 0%,
      #f1e8d8 38%,
      #faf6f0 70%,
      #faf6f0 100%);
  opacity: 1;
}
.zone-aus {
  background:
    linear-gradient(180deg,
      rgba(244, 188, 130, 0.14) 0%,
      rgba(212, 132, 90, 0.20) 45%,
      rgba(193, 98, 47, 0.20) 80%,
      rgba(27, 58, 92, 0.12) 100%);
  /* AU: Hero + Pitch — peak ~12% */
  opacity: clamp(0, calc(1 - abs(var(--p) * 100 - 12) / 24), 1);
}
.zone-nz {
  background:
    linear-gradient(180deg,
      rgba(74, 124, 89, 0.08) 0%,
      rgba(45, 90, 61, 0.20) 40%,
      rgba(45, 90, 61, 0.22) 80%,
      rgba(26, 46, 26, 0.14) 100%);
  /* NZ: Stats + Features — peak ~42% */
  opacity: clamp(0, calc(1 - abs(var(--p) * 100 - 42) / 22), 0.95);
}
.zone-jp {
  background:
    linear-gradient(180deg,
      rgba(184, 69, 106, 0.04) 0%,
      rgba(184, 69, 106, 0.14) 50%,
      rgba(74, 18, 48, 0.10) 100%);
  /* JP: peak ~30% */
  opacity: clamp(0, calc(1 - abs(var(--p) * 100 - 30) / 18), 0.9);
}
.zone-th {
  background:
    linear-gradient(180deg,
      rgba(184, 117, 20, 0.04) 0%,
      rgba(184, 117, 20, 0.14) 50%,
      rgba(61, 34, 9, 0.12) 100%);
  /* TH: Countries-Grid — peak ~55% */
  opacity: clamp(0, calc(1 - abs(var(--p) * 100 - 55) / 18), 0.90);
}
.zone-ar {
  background:
    linear-gradient(180deg,
      rgba(26, 117, 168, 0.04) 0%,
      rgba(26, 117, 168, 0.14) 50%,
      rgba(10, 45, 68, 0.12) 100%);
  /* AR: peak ~72% */
  opacity: clamp(0, calc(1 - abs(var(--p) * 100 - 72) / 18), 0.90);
}
.zone-can {
  background:
    linear-gradient(180deg,
      rgba(196, 30, 58, 0.04) 0%,
      rgba(196, 30, 58, 0.10) 60%,
      rgba(196, 30, 58, 0.20) 100%);
  /* CA: Countries (Übergang) + Guide + Closer — peak ~85% */
  opacity: clamp(0, calc(1 - abs(var(--p) * 100 - 85) / 28), 1);
}

.horizon-bg .sun {
  position: absolute;
  top: 8%;
  right: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(244, 188, 130, 0.55) 0%,
    rgba(244, 188, 130, 0.18) 45%,
    transparent 70%);
  filter: blur(2px);
  /* fades out as we scroll into deeper zones */
  opacity: clamp(0.2, calc(1 - var(--p) * 1.2), 1);
  transition: opacity 400ms ease;
}
.horizon-bg .haze {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(217, 107, 60, 0.04) 50%,
    rgba(15, 29, 46, 0.04) 100%);
}

/* ---------- Decorative SVGs ---------- */
.deco {
  position: absolute;
  pointer-events: none;
}

/* Kompass — oben rechts */
.deco.compass {
  top: 110px;
  right: clamp(20px, 5vw, 80px);
  width: 88px;
  height: 88px;
  color: var(--ink-700);
  opacity: clamp(0, calc(0.28 - var(--p) * 0.5), 0.28);
}
.compass-needle {
  transform-origin: 50% 50%;
  animation: compass-spin 24s ease-in-out infinite;
}
@keyframes compass-spin {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(8deg); }
  100% { transform: rotate(0deg); }
}

/* Australien — Wellen am unteren Drittel */
.deco.waves {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 32vh;
  bottom: 14vh;
  color: #1b3a5c;
  opacity: clamp(0, calc(0.55 - abs(var(--p) - 0.10) * 2.4), 0.55);
  animation: waves-drift 18s ease-in-out infinite;
}
@keyframes waves-drift {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-24px); }
}

/* Sydney Harbour — über den Wellen, unter dem Hero-Inhalt */
.deco.sydney {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 26vh;
  bottom: 30vh;
  color: #1b3a5c;
  opacity: clamp(0, calc(0.42 - abs(var(--p) - 0.10) * 2.2), 0.42);
  filter: drop-shadow(0 3px 8px rgba(27, 58, 92, 0.18));
}

/* Outback-Silhouette für Australien */
.deco.outback {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 22vh;
  color: #c1622f;
  opacity: clamp(0, calc(0.32 - abs(var(--p) - 0.12) * 1.6), 0.32);
}

/* Neuseeland — Tannenwald-Silhouette unten */
.deco.firs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 38vh;
  color: #2d5a3d;
  opacity: clamp(0, calc(0.62 - abs(var(--p) - 0.42) * 2.2), 0.62);
}

/* Japan — Fuji-Silhouette */
.deco.fuji {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 32vh;
  color: #b8456a;
  opacity: clamp(0, calc(0.30 - abs(var(--p) - 0.30) * 1.6), 0.30);
}

/* Argentinien — Anden-Silhouette */
.deco.andes {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 28vh;
  color: #1a75a8;
  opacity: clamp(0, calc(0.28 - abs(var(--p) - 0.72) * 1.5), 0.28);
}

/* Thailand — Palmen-Silhouette */
.deco.palms {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 36vh;
  color: #b87514;
  opacity: clamp(0, calc(0.38 - abs(var(--p) - 0.65) * 1.8), 0.38);
}

/* Ahornblätter — Container steuert Sichtbarkeit per Scroll, Blätter selbst animieren nur Bewegung */
.maple-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* nur am Ende sichtbar — peak ~90% */
  opacity: clamp(0, calc(0.7 - abs(var(--p) - 0.90) * 2.5), 0.7);
  transition: opacity 500ms ease;
}
.deco.maple {
  width: 36px;
  height: 36px;
  color: #c41e3a;
  top: -60px;
  animation: leaf-fall 14s linear infinite;
}
.deco.maple-1 { left: 12%; animation-delay: -2s;  animation-duration: 13s; width: 30px; height: 30px; }
.deco.maple-2 { left: 48%; animation-delay: -7s;  animation-duration: 17s; width: 42px; height: 42px; }
.deco.maple-3 { left: 78%; animation-delay: -11s; animation-duration: 15s; width: 34px; height: 34px; }

@keyframes leaf-fall {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(108vh) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .compass-needle, .deco.tree, .deco.maple { animation: none; }
}

/* ---------- Header ---------- */
.site-header {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding 200ms ease, border-color 200ms ease, background 200ms ease;
}
.site-header.is-scrolled {
  padding: 14px 0;
  border-bottom-color: var(--line);
  background: rgba(250, 246, 240, 0.92);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-500);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 150ms ease, background 150ms ease;
}
.site-nav a:hover {
  color: var(--ink-900);
  background: rgba(15, 29, 46, 0.05);
}
.site-nav .nav-cta {
  color: var(--accent);
  font-weight: 600;
}
.site-nav .nav-cta:hover {
  color: #c45a2e;
  background: rgba(217, 107, 60, 0.10);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  box-shadow: var(--shadow-sm);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.header-tag {
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}
.header-store-btn {
  display: none;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent);
  border: 1px solid rgba(217, 107, 60, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  transition: opacity 150ms;
}
.header-store-btn:hover {
  background: rgba(217, 107, 60, 0.1);
  border-color: var(--accent);
  text-decoration: none;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 18px;
}
.hero .eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-700);
}
h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink-900);
}
h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
}
p {
  margin: 0 0 16px;
  color: var(--ink-700);
}
.lede {
  font-size: 19px;
  max-width: 620px;
  color: var(--ink-700);
}

/* ---------- Buttons ---------- */
.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cta-row.centered {
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.btn-primary {
  background: var(--ink-900);
  color: var(--sand-50);
  box-shadow: var(--shadow-sm);
}
.btn-primary:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero .cta-row .btn-primary {
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 30px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(217, 107, 60, 0.35), 0 2px 4px rgba(217, 107, 60, 0.2);
  position: relative;
}
.hero .cta-row .btn-primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-sm) + 4px);
  background: radial-gradient(circle, rgba(217, 107, 60, 0.25) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 200ms ease;
}
.hero .cta-row .btn-primary:hover {
  background: #e07946;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(217, 107, 60, 0.45), 0 3px 6px rgba(217, 107, 60, 0.25);
}
.hero .cta-row .btn-primary:hover::after {
  opacity: 1;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(217, 107, 60, 0.35), 0 2px 4px rgba(217, 107, 60, 0.2); }
  50% { box-shadow: 0 10px 28px rgba(217, 107, 60, 0.5), 0 2px 6px rgba(217, 107, 60, 0.3); }
}
.hero .cta-row .btn-primary {
  animation: heroPulse 2.8s ease-in-out infinite;
}
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.6);
}
.btn-ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Sections ---------- */
section {
  padding: 88px 0;
}
.hero {
  padding-top: 64px;
  padding-bottom: 120px;
}
.pitch {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.pitch h2 {
  margin-bottom: 20px;
}
.pitch p {
  font-size: 18px;
}

/* ---------- Stats ---------- */
.stats {
  padding: 96px 0;
}
.eyebrow.centered {
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.stat {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 500;
}
.stat-label {
  display: block;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.45;
}
.stat-label em {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-700);
}

/* ---------- Countries ---------- */
.countries {
  padding: 100px 0;
}
.countries-heading {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 18px;
}
.countries-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 17px;
  color: var(--ink-500);
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.country {
  position: relative;
  display: block;
  padding: 38px 30px 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.country:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 29, 46, 0.12);
}
.country-au:hover { border-color: rgba(193, 98, 47, 0.45); }
.country-nz:hover { border-color: rgba(45, 90, 61, 0.45); }
.country-ca:hover { border-color: rgba(196, 30, 58, 0.45); }
.country-th:hover { border-color: rgba(184, 117, 20, 0.45); }
.country-jp:hover { border-color: rgba(184, 69, 106, 0.45); }
.country-ar:hover { border-color: rgba(26, 117, 168, 0.45); }
.country:hover::before { opacity: 0.18; }
.country:hover .country-cta { transform: translateX(3px); }
.country-cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 240ms ease;
}
.country-au .country-cta { color: #c1622f; }
.country-nz .country-cta { color: #2d5a3d; }
.country-ca .country-cta { color: #c41e3a; }
.country-th .country-cta { color: #b87514; }
.country-jp .country-cta { color: #b8456a; }
.country-ar .country-cta { color: #1a75a8; }
.country::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
}
.country-au::before { background: linear-gradient(180deg, transparent 30%, #c1622f 100%); }
.country-nz::before { background: linear-gradient(180deg, transparent 30%, #2d5a3d 100%); }
.country-ca::before { background: linear-gradient(180deg, transparent 30%, #c41e3a 100%); }
.country-th::before { background: linear-gradient(180deg, transparent 30%, #b87514 100%); }
.country-jp::before { background: linear-gradient(180deg, transparent 30%, #b8456a 100%); }
.country-ar::before { background: linear-gradient(180deg, transparent 30%, #1a75a8 100%); }
.country-us::before { background: linear-gradient(180deg, transparent 30%, #2e5fa3 100%); }

.country-coming-soon {
  cursor: default;
  opacity: 0.52;
  filter: saturate(0.3);
}
.country-coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}
.country-coming-soon:hover::before { opacity: 0.10; }
.country-badge-soon {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-300);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}
.country-flag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid currentColor;
}
.country-au .country-flag { color: #c1622f; }
.country-nz .country-flag { color: #2d5a3d; }
.country-ca .country-flag { color: #c41e3a; }
.country-th .country-flag { color: #b87514; }
.country-jp .country-flag { color: #b8456a; }
.country-ar .country-flag { color: #1a75a8; }
.country h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.country-mood {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-700);
  margin: 0 0 14px;
}
.country p {
  font-size: 15px;
  color: var(--ink-500);
  margin: 0;
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.85);
}
.feature-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.feature p {
  font-size: 15px;
  color: var(--ink-500);
  margin: 0;
}

/* ---------- Guide / Anna ---------- */
.guide {
  background: linear-gradient(180deg, transparent 0%, rgba(244, 188, 130, 0.08) 100%);
}
.guide-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.guide-text h2 {
  margin-bottom: 20px;
}
.guide-text p {
  font-size: 17px;
  max-width: 520px;
}
.guide-visual {
  display: flex;
  justify-content: center;
}
.anna-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(15, 29, 46, 0.12);
}

/* ---------- Closer ---------- */
.closer {
  text-align: center;
  padding: 96px 0 72px;
}
.closer-sub {
  font-size: 17px;
  color: var(--ink-500);
  margin-bottom: 32px;
}

/* ---------- Waitlist ---------- */
.waitlist-form {
  margin: 0 auto 16px;
  max-width: 480px;
}
.waitlist-row {
  display: flex;
  gap: 10px;
}
.waitlist-input {
  flex: 1;
  padding: 14px 18px;
  font: inherit;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-900);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.waitlist-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 107, 60, 0.15);
}
.waitlist-input::placeholder {
  color: var(--ink-300);
}
.waitlist-btn {
  white-space: nowrap;
  background: var(--accent);
}
.waitlist-btn:hover {
  background: #c45a2e;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.waitlist-note {
  font-size: 13px;
  color: var(--ink-300);
  margin: 10px 0 0;
  text-align: center;
}
.waitlist-success {
  margin: 0 auto 32px;
  padding: 32px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.success-icon {
  font-size: 28px;
  color: var(--accent);
  margin: 0 0 8px;
  font-weight: 600;
}
.success-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 6px;
}
.success-sub {
  font-size: 15px;
  color: var(--ink-500);
  margin: 0;
}
.store-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 520px) {
  .waitlist-row { flex-direction: column; }
  .waitlist-btn { width: 100%; }
  .store-links { flex-direction: column; align-items: center; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: rgba(255, 255, 255, 0.35);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.testimonial {
  padding: 28px 24px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0 0 20px;
}
.testimonial-quote::before { content: '\201E'; }
.testimonial-quote::after  { content: '\201C'; }
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
}
.testimonial-country {
  font-size: 13px;
  color: var(--ink-500);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 88px 0;
}
.faq-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink-900);
  cursor: pointer;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-500);
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 4px 22px;
  font-size: 16px;
  color: var(--ink-500);
  max-width: 680px;
  line-height: 1.6;
}

/* ---------- Legal Modal ---------- */
.legal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,29,46,0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.legal-overlay.is-open {
  display: flex;
}
.legal-modal {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #0f1d2e;
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 360px;
  width: 100%;
  position: relative;
  font-size: 13px;
  line-height: 1.6;
}
.legal-modal h2 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 2px;
  color: #0f1d2e;
}
.legal-meta {
  font-size: 11px;
  color: rgba(15,29,46,0.5);
  margin: 0 0 20px;
}
.legal-modal p {
  margin: 0 0 12px;
}
.legal-modal a {
  color: #c1622f;
}
.legal-placeholder {
  background: rgba(255,255,255,0.2);
  border-left: 2px solid rgba(193,98,47,0.6);
  padding: 8px 12px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 12px;
}
.legal-note {
  font-size: 11px;
  color: rgba(15,29,46,0.55);
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 12px;
  margin-top: 4px;
}
.legal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: rgba(15,29,46,0.4);
  line-height: 1;
  padding: 4px 8px;
}
.legal-close:hover {
  color: #0f1d2e;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  font-size: 14px;
  color: var(--ink-500);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-meta {
  font-family: var(--font-display);
  font-style: italic;
}
.footer-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Preview Tiles als Links ---------- */
a.preview-tile {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
a.preview-tile:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(15, 29, 46, 0.14);
  z-index: 1;
}
.preview-tile-soon {
  opacity: 0.45;
  filter: saturate(0.2);
  cursor: default;
}
.preview-tile-soon .preview-mood {
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* ---------- Features Big ---------- */
.features-big {
  padding: 96px 0 80px;
}
.features-big-heading {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 80px;
}
.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.feature-big:last-of-type {
  border-bottom: none;
}
.feature-big-reverse .feature-big-text { order: 2; }
.feature-big-reverse .feature-big-visual { order: 1; }
.feature-big h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.2;
  margin-bottom: 20px;
}
.feature-big p {
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.75;
}
.feature-big-visual {
  display: flex;
  justify-content: center;
}

/* ---------- Feature Mockup Cards ---------- */
.feature-mockup {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(15, 29, 46, 0.1);
  padding: 28px;
  width: 100%;
  max-width: 360px;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.mockup-flag-sm {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 3px 9px;
}
.mockup-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
}
.mockup-amount-sm {
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
}
.mockup-countdown {
  text-align: center;
  padding: 18px 0 22px;
}
.mockup-countdown-val {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.mockup-countdown-unit {
  display: block;
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 6px;
}
.mockup-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-check {
  font-size: 13px;
  color: var(--ink-300);
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--sand-50);
  position: relative;
  padding-left: 28px;
}
.mockup-check::before {
  content: '○';
  position: absolute;
  left: 10px;
  font-size: 11px;
}
.mockup-check.done {
  color: var(--ink-500);
  text-decoration: line-through;
  opacity: 0.55;
}
.mockup-check.done::before { content: '●'; color: var(--accent); opacity: 1; }
.mockup-check.active {
  color: var(--ink-900);
  font-weight: 500;
  background: rgba(217, 107, 60, 0.07);
  border: 1px solid rgba(217, 107, 60, 0.2);
}
.mockup-check.active::before { content: '▶'; color: var(--accent); font-size: 9px; }
.mockup-progress {
  height: 6px;
  background: var(--sand-100);
  border-radius: 999px;
  margin-bottom: 20px;
  overflow: hidden;
}
.mockup-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}
.mockup-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-700);
  padding: 7px 0;
  border-bottom: 1px solid var(--sand-100);
}
.mockup-row .neg { color: #b84040; font-weight: 500; }
.mockup-row .pos { color: #3a7a4a; font-weight: 500; }
.feature-mockup-slang {
  text-align: center;
}
.slang-word {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin: 18px 0 8px;
}
.slang-meaning {
  font-size: 15px;
  color: var(--ink-500);
  margin-bottom: 12px;
}
.slang-example {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  padding: 12px 16px;
  background: rgba(217, 107, 60, 0.06);
  border-radius: 10px;
  margin-bottom: 18px;
}
.slang-divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}
.slang-more {
  font-size: 12px;
  color: var(--ink-300);
  letter-spacing: 0.05em;
}
.slang-translator {
  text-align: left;
  background: var(--sand-50);
  border-radius: 10px;
  padding: 12px 14px;
}
.translator-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.translator-mic {
  width: 14px;
  height: 14px;
}
.translator-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.translator-from {
  color: var(--ink-500);
  flex: 1;
}
.translator-arrow {
  color: var(--accent);
  font-weight: 600;
}
.translator-to {
  color: var(--ink-900);
  font-weight: 500;
  flex: 1;
  text-align: right;
}

/* ---------- Feature Extras ---------- */
.feature-extras {
  padding: 80px 0 20px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.extra-item {
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.extra-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.extra-icon-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(217, 107, 60, 0.1);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.extra-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 10px;
}
.extra-item p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ---------- Team Commitment ---------- */
.team-commitment {
  background: linear-gradient(180deg, transparent 0%, rgba(217, 107, 60, 0.05) 100%);
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.team-heading {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 20px;
}
.team-lead {
  text-align: center;
  font-size: 17px;
  color: var(--ink-500);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.commit-point {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.commit-point h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.commit-point p {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
}

.team-feedback {
  margin: 40px auto 0;
  max-width: 640px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.team-feedback-head {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feedback-accent {
  color: var(--accent);
  font-weight: 700;
}
.feedback-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.feedback-message {
  flex: 1;
  font: inherit;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-900);
  outline: none;
  resize: vertical;
  min-height: 44px;
  line-height: 1.5;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.feedback-message:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 107, 60, 0.15);
}
.feedback-message::placeholder {
  color: var(--ink-300);
}
.feedback-btn {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  align-self: flex-start;
}
.feedback-btn:hover {
  background: #c45a2e !important;
  transform: translateY(-1px);
}
.feedback-note {
  font-size: 11px;
  color: var(--ink-300);
  margin: 8px 0 0;
  letter-spacing: 0.02em;
}
.feedback-success {
  margin-top: 12px;
}
@media (max-width: 560px) {
  .feedback-form { flex-direction: column; }
  .feedback-btn { width: 100%; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  section { padding: 64px 0; }
  .hero { padding-top: 40px; padding-bottom: 80px; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .horizon-bg .sun { width: 200px; height: 200px; right: -20px; top: 4%; }
  .feature-big {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 0;
  }
  .feature-big-reverse .feature-big-text { order: 0; }
  .feature-big-reverse .feature-big-visual { order: 0; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .country-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .header-tag { display: none; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* ---------- Hero Split (Desktop) ---------- */
.hero-row { display: block; }
.hero-visual { display: none; }

/* Preview-Card als Hero-Visual auf Desktop */
.preview-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 30px 60px rgba(15, 29, 46, 0.10), 0 6px 16px rgba(15, 29, 46, 0.05);
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 460px;
  transform: rotate(0.6deg);
  transition: transform 400ms ease;
}
.preview-card:hover {
  transform: rotate(0deg) translateY(-3px);
}
.preview-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.preview-card-title {
  margin-left: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  text-transform: uppercase;
}
.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.preview-tile {
  padding: 18px 16px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 200ms ease, border-color 200ms ease;
}
.preview-tile:hover { transform: translateY(-2px); }
.preview-flag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid currentColor;
  align-self: flex-start;
}
.preview-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.preview-mood {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.35;
}
.preview-au .preview-flag, .preview-au .preview-name { color: #c1622f; }
.preview-nz .preview-flag, .preview-nz .preview-name { color: #2d5a3d; }
.preview-ca .preview-flag, .preview-ca .preview-name { color: #c41e3a; }
.preview-th .preview-flag, .preview-th .preview-name { color: #b87514; }
.preview-au .preview-name, .preview-nz .preview-name, .preview-ca .preview-name, .preview-th .preview-name {
  color: var(--ink-900);
}
.preview-au { background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(244, 188, 130, 0.15) 100%); }
.preview-nz { background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(74, 124, 89, 0.13) 100%); }
.preview-ca { background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(196, 30, 58, 0.10) 100%); }
.preview-th { background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(184, 117, 20, 0.13) 100%); }
.preview-jp { background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(184, 69, 106, 0.12) 100%); }
.preview-ar { background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(26, 117, 168, 0.12) 100%); }
.preview-jp .preview-flag { color: #b8456a; }
.preview-ar .preview-flag { color: #1a75a8; }
.preview-card-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.preview-step {
  font-size: 12.5px;
  color: var(--ink-500);
  font-style: italic;
}

/* ---------- Desktop Layout (≥ 960px) ---------- */
@media (min-width: 960px) {
  .container { max-width: 1180px; padding: 0 36px; }
  .site-nav { display: flex; }
  .header-store-btn { display: inline-block; }
  .header-tag { display: none; }
  .country-grid { grid-template-columns: repeat(3, 1fr); }

  .hero { padding-top: 56px; padding-bottom: 120px; }
  .hero-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
  }
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* ---------- Wide Desktop (≥ 1200px) ---------- */
@media (min-width: 1200px) {
  .container { max-width: 1240px; }
  .country-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .country { padding: 34px 26px 30px; }
  .country h3 { font-size: 26px; }
  .country-mood { font-size: 16px; }
  .country p { font-size: 15px; }

  .hero-row { gap: 80px; }
  .preview-card { max-width: 480px; }
}
