/* ---------------------------------------------------------------------------
 * oida.ae — public landing
 * Tokens carried over from the iOS design system (OidaColor / OidaFont /
 * OidaSpacing) so the web and the app feel like one product.
 * ------------------------------------------------------------------------- */

:root {
  --paper: #FAF6EE;
  --paper-2: #F1E9D8;
  --cream: #F3EADB;
  --sand: #F5D6B8;
  --terracotta: #BE5236;
  --terracotta-deep: #9D3C25;
  --moss: #4E6A50;
  --moss-deep: #2E4232;
  --sun: #E9B344;
  --ink: #221814;
  --ink-2: #4A3B33;
  --ink-3: #8A7766;
  --line: #E6DCC9;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 1px 2px rgba(34, 24, 20, 0.04),
                  0 8px 24px rgba(34, 24, 20, 0.06);

  --wrap: 1240px;
  --gutter: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--terracotta); color: #fff; }

.serif   { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }
.mono    { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------------------------------------------------------------------------
 * Buttons / pills
 * ------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--terracotta); color: #fff; }
.btn-primary:hover   { background: var(--terracotta-deep); }
.btn-ghost     { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover     { background: var(--ink); color: var(--paper); }
.btn-quiet     { color: var(--ink-2); padding: 10px 14px; }
.btn-quiet:hover     { color: var(--ink); background: var(--paper-2); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pill.terra { background: var(--terracotta); color: #fff; }
.pill.moss  { background: var(--moss);       color: #fff; }
.pill.sun   { background: var(--sun);        color: var(--ink); }

/* ---------------------------------------------------------------------------
 * Nav
 * ------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
}
.brand .dot { color: var(--terracotta); }

.nav-links { display: flex; gap: 8px; }
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: var(--radius-pill);
}
.nav-links a:hover { background: var(--paper-2); color: var(--ink); }

.nav-cta { display: flex; gap: 8px; align-items: center; }
.lang-toggle {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  gap: 6px;
}
.lang-toggle button[aria-pressed='true'] { color: var(--ink); font-weight: 600; }

.nav-burger { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger {
    display: inline-flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 12px;
    color: var(--ink);
  }
  .nav-burger:hover { background: var(--paper-2); }
}

.mobile-menu {
  display: none;
  padding: 8px var(--gutter) 24px;
  border-top: 1px solid var(--line);
  background: rgba(250, 246, 238, 0.96);
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: block; }

/* ---------------------------------------------------------------------------
 * Section scaffold
 * ------------------------------------------------------------------------- */

section { padding: clamp(80px, 8vw, 140px) 0; }
section.tight { padding: clamp(48px, 5vw, 80px) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.section-head h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.section-head .lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
}

/* ---------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------- */

.hero {
  padding: clamp(60px, 6vw, 100px) 0 clamp(80px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phone-wrap { order: -1; margin: 0 auto; max-width: 340px; }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.hero h1 .i {
  font-style: italic;
  color: var(--terracotta);
}
.hero-lede {
  margin-top: 28px;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-2);
  max-width: 48ch;
  line-height: 1.45;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 14px;
  background: var(--paper-2);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero-status .dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

.hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}
.flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-3);
}

/* Phone mockup */
.hero-phone-wrap {
  position: relative;
  aspect-ratio: 9 / 19;
  max-width: 400px;
  justify-self: end;
}
.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--ink);
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(34, 24, 20, 0.25),
    0 8px 16px rgba(34, 24, 20, 0.08),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: var(--paper);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 32px;
  background: var(--ink);
  border-radius: 22px;
  z-index: 2;
}

/* ---------------------------------------------------------------------------
 * Drei Dinge — 3-column overview
 * ------------------------------------------------------------------------- */

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
@media (max-width: 880px) { .three-grid { grid-template-columns: 1fr; } }

.three-card {
  background: var(--paper-2);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
/* Klub-Leben feature spot illustrations — watercolour, blended into the card, gently floating */
.kl-icon {
  width: clamp(78px, 7vw, 104px);
  aspect-ratio: 1 / 1;
  margin: -6px 0 -6px -8px;
  mix-blend-mode: multiply;
}
.kl-icon img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: transform 0.45s cubic-bezier(.16, 1, .3, 1);
  -webkit-mask-image: radial-gradient(72% 72% at 50% 50%, #000 58%, transparent 90%);
          mask-image: radial-gradient(72% 72% at 50% 50%, #000 58%, transparent 90%);
}
.three-card:hover .kl-icon img { transform: scale(1.1) rotate(2deg); }
@media (prefers-reduced-motion: no-preference) {
  #klub-leben .three-card .kl-icon { animation: klFloat 5.6s ease-in-out infinite; }
  #klub-leben .three-card:nth-child(2) .kl-icon { animation-duration: 6.2s; animation-delay: -0.9s; }
  #klub-leben .three-card:nth-child(3) .kl-icon { animation-duration: 5.1s; animation-delay: -1.8s; }
  #klub-leben .three-card:nth-child(4) .kl-icon { animation-duration: 6.5s; animation-delay: -2.6s; }
  #klub-leben .three-card:nth-child(5) .kl-icon { animation-duration: 5.3s; animation-delay: -3.4s; }
  #klub-leben .three-card:nth-child(6) .kl-icon { animation-duration: 5.9s; animation-delay: -4.3s; }
}
@keyframes klFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-1.4deg); }
}

/* Lebenshelfer — "ask anything" life-admin showcase */
.leb-ask { margin-top: clamp(40px, 5vw, 76px); display: grid; gap: 22px; }
.leb-ask-bar {
  display: flex; align-items: center; gap: 14px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 12px 12px 22px; max-width: 660px;
  box-shadow: 0 10px 30px rgba(34, 24, 20, 0.07);
}
.leb-ask-ico {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--moss-deep); color: var(--sun);
  font-family: var(--serif); font-size: 17px; font-style: italic;
}
.leb-ask-text { font-size: 15.5px; color: var(--ink-3); font-style: italic; }
.leb-ask-btn {
  margin-left: auto; flex: none; border: 0; cursor: default;
  background: var(--terracotta); color: var(--paper);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 999px;
}
.leb-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.leb-chip {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--ink-2); background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 15px; transition: all 0.3s ease;
}
.leb-chip:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }
.leb-answer {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(22px, 2.6vw, 32px); max-width: 820px;
  box-shadow: 0 16px 40px rgba(34, 24, 20, 0.08);
}
.leb-q { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 1.7vw, 26px); color: var(--ink); margin-bottom: 22px; }
.leb-a-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.leb-a-grid > div span {
  display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--moss); margin-bottom: 7px;
}
.leb-a-grid > div p { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); margin: 0; }
.leb-a-meta {
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--ink-3);
}
.leb-stats { display: flex; flex-wrap: wrap; gap: clamp(22px, 3vw, 44px); margin-top: 6px; }
.leb-stats > div { font-size: 14px; color: var(--ink-2); }
.leb-stats strong { font-family: var(--serif); font-size: 22px; color: var(--terracotta); display: block; line-height: 1.1; }
/* Lebensbereiche — the full breadth of life areas */
.leb-areas { margin-top: 10px; }
.leb-areas-head { max-width: 64ch; margin-bottom: 22px; }
.leb-areas-head p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 8px 0 0; }
.leb-area-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 11px 22px;
}
.leb-area { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink); }
.leb-area::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }
@media (max-width: 680px) { .leb-a-grid { grid-template-columns: 1fr; gap: 16px; } }
/* Lebenshelfer — agentic concierge capability cards */
.leb-caps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 6px;
}
.leb-cap {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 20px; display: flex; flex-direction: column; gap: 8px;
}
.leb-cap-art { width: 54px; height: 54px; object-fit: contain; margin-bottom: 2px; }
.leb-cap-eye {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--moss);
}
.leb-cap h4 {
  font-family: var(--serif); font-style: italic; font-size: 23px; line-height: 1.1;
  color: var(--ink); margin: 0;
}
.leb-cap p { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); margin: 0; }
/* Lebenshelfer — grounded DACH directory */
.leb-dir {
  margin-top: 4px; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(22px, 2.6vw, 32px);
}
.leb-dir-head { max-width: 64ch; margin-bottom: 20px; }
.leb-dir-head p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 8px 0 0; }
.leb-dir-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 11px 22px;
}
@media (max-width: 880px) { .leb-caps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .leb-caps { grid-template-columns: 1fr; } }
.three-card .num {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--terracotta);
  line-height: 1;
  opacity: 0.85;
}
.three-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.three-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.three-card .tag {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------------------------------------------------------------------------
 * Stempelpass — partner wall + story
 * ------------------------------------------------------------------------- */

.stempel-section { background: var(--cream); }

.partner-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 5vw, 72px);
}
@media (max-width: 880px) { .partner-wall { grid-template-columns: repeat(2, 1fr); } }

.partner-card {
  background: var(--paper);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  text-align: center;
  border: 1px solid var(--line);
}
.partner-card img {
  max-height: 56px;
  max-width: 70%;
  object-fit: contain;
}
.partner-card .name {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stamp-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.stamp {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(190, 82, 54, 0.25);
}
.stamp.empty {
  background: transparent;
  border: 2px dashed var(--line);
  color: var(--ink-3);
}

/* ---------------------------------------------------------------------------
 * Phone-mini — full screenshot, centered in card, no crop.
 * Used by the scan-flow 3-up and any "show the whole phone" tile.
 * ------------------------------------------------------------------------- */

.phone-mini {
  display: inline-flex;
  justify-content: center;
  padding: 0;
  background: transparent;
}
.phone-mini img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(34, 24, 20, 0.18), 0 3px 8px rgba(34, 24, 20, 0.08);
  border: 1px solid rgba(34, 24, 20, 0.06);
}

/* Scan-flow — editorial three-step watercolour flow */
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(36px, 4vw, 60px);
}
.flow-step { position: relative; transition: transform 0.4s cubic-bezier(.16, 1, .3, 1); }
.flow-step:hover { transform: translateY(-6px); }
.flow-art {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(34, 24, 20, 0.13), 0 2px 6px rgba(34, 24, 20, 0.06);
}
.flow-art img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; }
.flow-num {
  position: absolute; left: 22px; bottom: -22px; z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--terracotta); color: var(--paper);
  font-family: var(--mono); font-size: 15px; letter-spacing: 0.02em;
  border: 3px solid var(--paper-2);
  box-shadow: 0 10px 22px rgba(180, 80, 50, 0.32);
}
.flow-text { padding: 40px 6px 0; }
.flow-text h3 {
  font-family: var(--serif); font-size: clamp(22px, 1.4vw, 26px);
  line-height: 1.14; letter-spacing: -0.005em; margin: 0 0 8px;
}
.flow-text p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
/* flowing connector between steps (desktop only) */
@media (min-width: 780px) {
  .flow-step:not(:last-child) .flow-art::after {
    content: "\2192"; position: absolute; top: 50%; left: 100%;
    margin-left: calc(clamp(28px, 4vw, 64px) / 2);
    transform: translate(-50%, -50%);
    color: var(--terracotta); font-size: 26px; line-height: 1;
    opacity: 0.65; z-index: 4; pointer-events: none;
  }
}
@media (max-width: 779px) {
  .flow { grid-template-columns: 1fr; gap: 40px; max-width: 420px; margin-inline: auto; }
}

/* ---------------------------------------------------------------------------
 * Sackerl-Board in-app mockup
 * ------------------------------------------------------------------------- */

.sackerl-mock {
  width: 100%;
  max-width: 380px;
  background: var(--paper);
  border-radius: 28px;
  padding: 22px 18px 18px;
  box-shadow:
    0 24px 60px rgba(34, 24, 20, 0.16),
    0 4px 10px rgba(34, 24, 20, 0.06);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sackerl-header { display: flex; justify-content: space-between; align-items: baseline; padding: 0 4px; }
.sackerl-title  { font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em; }
.sackerl-sub    { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; }

.sackerl-chips {
  display: flex; gap: 6px; overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.sackerl-chips::-webkit-scrollbar { display: none; }
.sackerl-chip {
  flex-shrink: 0;
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--ink-2);
  white-space: nowrap;
}
.sackerl-chip.active { background: var(--ink); color: var(--paper); }
.sackerl-chip.terra  { background: rgba(190, 82, 54, 0.12); color: var(--terracotta-deep); }
.sackerl-chip.moss   { background: rgba(78, 106, 80, 0.14); color: var(--moss-deep); }

.sackerl-post {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--paper-2);
  border-radius: 14px;
  align-items: flex-start;
}
.sackerl-avatar {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px;
  color: var(--paper);
}
.sackerl-avatar.terra { background: var(--terracotta); }
.sackerl-avatar.moss  { background: var(--moss); }
.sackerl-avatar.sun   { background: var(--sun); color: var(--ink); }

.sackerl-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.sackerl-body header {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  gap: 8px;
}
.sackerl-body header strong { font-weight: 600; }
.sackerl-body header .trust {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  padding: 2px 6px;
  background: var(--paper);
  border-radius: 6px;
}
.sackerl-kind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.sackerl-item { font-size: 13px; line-height: 1.4; color: var(--ink); }
.sackerl-body footer { font-size: 11px; color: var(--ink-3); }

.sackerl-cta {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

/* ---------------------------------------------------------------------------
 * Flaggen SVG-map mockup (replaces broken screenshot)
 * ------------------------------------------------------------------------- */

.flaggen-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, var(--moss-night) 0%, var(--moss-ink) 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(250, 246, 238, 0.08);
}
.flaggen-map .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(250,246,238,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,246,238,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.flaggen-map .label {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
}
.flaggen-map .legend {
  position: absolute; top: 16px; right: 18px;
  display: flex; gap: 8px; align-items: center;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.1em; color: rgba(250, 246, 238, 0.7);
}
.flaggen-map .legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.flaggen-map .pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(250, 246, 238, 0.06);
}
.flaggen-map .pin::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.18;
  filter: blur(6px);
}
.flaggen-map .pin.at  { background: #BE5236; }
.flaggen-map .pin.de  { background: #E9B344; }
.flaggen-map .pin.ch  { background: var(--flag-red); }
.flaggen-map .pin.open { background: rgba(250, 246, 238, 0.35); box-shadow: 0 0 0 4px rgba(250, 246, 238, 0.04); }

.flaggen-map .pin.you {
  width: 18px; height: 18px;
  background: var(--paper);
  border: 3px solid var(--sun);
  z-index: 2;
}
.flaggen-map .pin .tag {
  position: absolute;
  top: -34px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.06em;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}
.flaggen-map .pin .tag::after {
  content: ''; position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--paper);
}

/* ---------------------------------------------------------------------------
 * Story sections (Schmäh-Filter, Heimflug, Flaggen)
 * ------------------------------------------------------------------------- */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-grid.reverse { direction: ltr; }
}

.story-art {
  background: var(--paper-2);
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.story-art.moss { background: var(--moss); color: #fff; }
.story-art.sun  { background: var(--sun);  color: var(--ink); }

.story-art img { width: 86%; height: auto; }

.story-copy h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.story-copy h3 em { font-style: italic; color: var(--terracotta); }
.story-copy p {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.story-copy .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}

/* ---------------------------------------------------------------------------
 * Preise / Pricing
 * ------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tier.highlight {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tier.highlight .price small,
.tier.highlight .tier-feat li { color: rgba(250, 246, 238, 0.7); }
.tier h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tier.highlight h4 { color: var(--sun); }
.tier .price {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.tier .price small {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-3);
}
.tier-feat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.tier-feat li::before {
  content: '·';
  margin-right: 10px;
  color: var(--terracotta);
  font-weight: 700;
}

/* ---------------------------------------------------------------------------
 * Partner CTA band
 * ------------------------------------------------------------------------- */

.partner-cta {
  background: var(--moss-deep);
  color: var(--paper);
  border-radius: var(--radius-card);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  margin: clamp(48px, 5vw, 72px) 0;
}
@media (max-width: 880px) { .partner-cta { grid-template-columns: 1fr; } }
.partner-cta h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.partner-cta h3 em { font-style: italic; color: var(--sun); }
.partner-cta p {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(250, 246, 238, 0.78);
  max-width: 48ch;
}
.partner-cta .actions { display: flex; flex-direction: column; gap: 12px; }
.partner-cta .btn-primary { background: var(--sun); color: var(--ink); }
.partner-cta .btn-primary:hover { background: var(--sun-light); }
.partner-cta .btn-ghost { border-color: rgba(250, 246, 238, 0.4); color: var(--paper); }
.partner-cta .btn-ghost:hover { background: rgba(250, 246, 238, 0.12); color: var(--paper); }

/* ---------------------------------------------------------------------------
 * FAQ
 * ------------------------------------------------------------------------- */

.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 26px;
  color: var(--terracotta);
  margin-left: 18px;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 64ch;
}

/* ---------------------------------------------------------------------------
 * Waitlist
 * ------------------------------------------------------------------------- */

.waitlist {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-card);
  padding: clamp(36px, 4.5vw, 72px);
  position: relative;
  overflow: hidden;
}
/* Subtle paper-grain texture so the dark slab doesn't feel flat. */
.waitlist::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(250, 246, 238, 0.04) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.6;
}
.waitlist > * { position: relative; z-index: 1; }

.waitlist .eyebrow--terra {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  padding: 4px 10px;
  border: 1px solid rgba(207, 91, 60, 0.45);
  border-radius: 999px;
  margin-bottom: 22px;
}

.waitlist h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.waitlist h2 em { font-style: italic; color: var(--sun); }

.waitlist .lede {
  margin: 18px 0 24px;
  color: rgba(250, 246, 238, 0.78);
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
}

/* "What you get when invited" — three subtle lines before the form. */
.waitlist .perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 6px;
  max-width: 56ch;
}
.waitlist .perks li {
  font-size: 14.5px;
  color: rgba(250, 246, 238, 0.7);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.waitlist .perks li .dot {
  color: var(--terracotta);
  font-size: 18px;
  line-height: 1;
}

/* The form: labeled fields stacked in a paper-card, not a strip. */
.waitlist form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
  align-items: stretch;
  background: rgba(250, 246, 238, 0.045);
  border: 1px solid rgba(250, 246, 238, 0.10);
  border-radius: 18px;
  padding: 22px;
}
.waitlist form .field { display: flex; flex-direction: column; gap: 6px; }
.waitlist form .field:nth-child(1) { grid-column: 1 / -1; }
.waitlist form .field label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.55);
}
.waitlist form .field input,
.waitlist form .field select {
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid rgba(250, 246, 238, 0.10);
  padding: 14px 16px;
  color: var(--paper);
  font: inherit;
  font-size: 16px;
  border-radius: 12px;
  transition: border-color 160ms, background 160ms;
}
.waitlist form .field input::placeholder { color: rgba(250, 246, 238, 0.35); }
.waitlist form .field input:focus,
.waitlist form .field select:focus {
  outline: none;
  border-color: var(--sun);
  background: rgba(250, 246, 238, 0.07);
}
.waitlist form .field select option { background: var(--ink); color: var(--paper); }

.waitlist .waitlist-submit {
  grid-column: 1 / -1;
  margin-top: 4px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 160ms, transform 160ms;
}
.waitlist .waitlist-submit .btn-arrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.waitlist .waitlist-submit:hover { background: var(--sun-light); }
.waitlist .waitlist-submit:hover .btn-arrow { transform: translateX(4px); }
.waitlist .waitlist-submit[disabled] { opacity: 0.6; cursor: progress; }
@media (max-width: 720px) {
  .waitlist form { grid-template-columns: 1fr; padding: 18px; }
  .waitlist form .field:nth-child(1) { grid-column: auto; }
}

.waitlist .status {
  margin-top: 18px;
  font-size: 14px;
  color: var(--sun);
  min-height: 1.4em;
}
.waitlist .status.err { color: var(--terracotta-light); }

.waitlist .privacy {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(250, 246, 238, 0.5);
  max-width: 60ch;
  line-height: 1.55;
}
.waitlist .privacy a { text-decoration: underline; }

/* ----------------------------- Confirmation state ----------------------- */

.waitlist-confirmation { display: none; }
.waitlist-confirmation[data-shown="1"] {
  display: block;
  animation: confirmIn 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.waitlist-confirmation .card {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 56px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 64px -24px rgba(0, 0, 0, 0.4);
}
.waitlist-confirmation .eyebrow--terra {
  color: var(--terra);
  border-color: rgba(207, 91, 60, 0.45);
}
.waitlist-confirmation h2 { color: var(--ink); }
.waitlist-confirmation h2 em { color: var(--terra); }
.waitlist-confirmation .lede { color: rgba(42, 40, 35, 0.78); }
.waitlist-confirmation .lede strong { color: var(--terra); font-weight: 600; }

.waitlist-confirmation .card-corner {
  position: absolute;
  top: 26px;
  right: 26px;
  pointer-events: none;
}
.waitlist-confirmation .stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  padding: 14px 16px 12px;
  border: 2px solid var(--terra);
  border-radius: 6px;
  transform: rotate(-4deg);
  background:
    radial-gradient(rgba(207, 91, 60, 0.08) 1px, transparent 1.5px),
    rgba(207, 91, 60, 0.04);
  background-size: 5px 5px, 100% 100%;
  animation: stampDrop 600ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 320ms;
}
.waitlist-confirmation .stamp-l1 { font-size: 12px; }
.waitlist-confirmation .stamp-l2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--terra);
  margin-top: -2px;
}
.waitlist-confirmation .stamp-no {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(207, 91, 60, 0.8);
  margin-top: 4px;
}

.waitlist-confirmation .next-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 24px;
  display: grid;
  gap: 14px;
}
.waitlist-confirmation .next-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.waitlist-confirmation .next-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1;
  color: var(--terra);
  min-width: 32px;
}
.waitlist-confirmation .next-list strong {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}
.waitlist-confirmation .next-list p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(42, 40, 35, 0.6);
  line-height: 1.5;
}

.waitlist-confirmation .confirm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(42, 40, 35, 0.08);
}
.waitlist-confirmation .confirm-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(42, 40, 35, 0.5);
}
.waitlist-confirmation .btn-ghost {
  background: transparent;
  border: 1px solid rgba(42, 40, 35, 0.18);
  color: var(--ink);
  padding: 9px 16px;
  font-size: 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms, border-color 160ms;
}
.waitlist-confirmation .btn-ghost:hover {
  background: rgba(42, 40, 35, 0.04);
  border-color: rgba(42, 40, 35, 0.32);
}

@keyframes confirmIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stampDrop {
  0%   { opacity: 0; transform: rotate(-12deg) scale(2.4); }
  60%  { opacity: 1; transform: rotate(-4deg) scale(0.94); }
  100% { opacity: 1; transform: rotate(-4deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .waitlist-confirmation[data-shown="1"],
  .waitlist-confirmation .stamp { animation: none; }
}

/* ---------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------- */

footer {
  padding: 80px 0 48px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-2);
}
.foot-col a:hover { color: var(--terracotta); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ---------------------------------------------------------------------------
 * Scroll reveal — opt-in via [data-reveal]
 * ------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   "THE FLIGHT HOME" HERO — bright, on-brand, animated
   Two homes (Alps -> Dubai) on warm paper + an animated flight route.
   ============================================================ */
/* Full-bleed illustration hero — the first impression. */
.hero-image { position: relative; background: var(--paper); overflow: hidden; padding: 0; }
.hero-hero {
  display: block; width: 100%;
  height: calc(100vh - 114px); object-fit: cover; object-position: center 40%;
  will-change: transform;
}
.hero-headline {
  position: absolute; left: clamp(20px, 7vw, 132px); top: clamp(24px, 6vh, 76px);
  z-index: 3;
}
.hero-tagline .dot { color: var(--terracotta); }
.hero-tagline {
  font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2.6vw, 42px);
  line-height: 1.12; letter-spacing: -0.012em; color: var(--ink); white-space: nowrap;
}
.hero-greet {
  font-family: var(--serif); color: var(--ink);
  font-size: clamp(18px, 2.1vw, 32px); line-height: 1.2; margin-top: 0.5em; white-space: nowrap;
}
.hero-greet .dot { color: var(--terracotta); }
.hero-greet .tw-caret { background: var(--terracotta); height: 0.85em; }
@media (max-width: 760px) { .hero-tagline { font-size: 24px; } .hero-greet { font-size: 20px; } }
.hero-scroll {
  position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%);
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(250, 246, 239, 0.82); color: var(--ink-3); text-decoration: none;
  font-size: 18px; box-shadow: 0 3px 14px rgba(34, 24, 20, 0.16);
  animation: heroBob 2.4s ease-in-out infinite; z-index: 3; transition: opacity 0.6s ease;
}
/* intro reveal: image develops in, tagline typewrites */
.hero-anim .hero-hero { animation: heroImgIn 3s cubic-bezier(.16, 1, .3, 1) both; transform-origin: 52% 64%; }
@keyframes heroImgIn {
  from { opacity: 0; filter: blur(12px); transform: scale(1.045); }
  to   { opacity: 1; filter: blur(0);  transform: scale(1); }
}
.hero-anim .hero-headline { animation: heroHeadIn 0.9s ease 1.5s both; }
@keyframes heroHeadIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.hero-anim .hero-scroll { animation: heroScrollIn 0.6s ease 2s both; }
@keyframes heroScrollIn { from { opacity: 0; } to { opacity: 1; } }
.tw-caret {
  display: inline-block; width: 2px; height: 0.92em; margin-left: 5px;
  background: var(--terracotta); vertical-align: -0.06em;
  animation: twBlink 0.9s step-end infinite; transition: opacity 0.4s ease;
}
@keyframes twBlink { 50% { opacity: 0; } }
@keyframes heroBob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
.hero-copy { padding-top: clamp(40px, 6vw, 84px); }
@media (max-width: 760px) { .hero-hero { height: auto; object-fit: contain; min-height: 0; } }
.hero-scene { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-pano {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(1640px, 116%); height: auto; opacity: 0.5;
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 30%, transparent 84%);
  mask-image: linear-gradient(to top, #000 0%, #000 30%, transparent 84%);
}
.hero-flight { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-flight .route { fill: none; stroke: var(--terracotta); stroke-width: 2.2; stroke-dasharray: 2 10; stroke-linecap: round; opacity: 0.5; }
.hero-flight .home-dot { fill: var(--terracotta); }
.hero-flight .home-ring { fill: none; stroke: var(--terracotta); stroke-width: 1.6; opacity: 0.45; transform-origin: center; }
.hero-flight .home-label { font-family: var(--mono); font-size: 14px; letter-spacing: 0.14em; fill: var(--ink-2); text-transform: uppercase; }
.hero-flight #plane { fill: var(--ink); }
.hero-mote { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--sun); opacity: 0; will-change: transform, opacity; }
/* nuanced weather over the illustration — snow on the Alps, sand on the desert */
.hero-snow, .hero-sand { position: absolute; border-radius: 50%; pointer-events: none; opacity: 0; will-change: transform, opacity; }
.hero-snow { background: #ffffff; box-shadow: 0 1px 3px rgba(86, 108, 130, 0.5), 0 0 0 0.6px rgba(150, 170, 190, 0.55); }
.hero-sand { background: rgba(190, 138, 80, 0.85); box-shadow: 0 0 4px rgba(190, 138, 80, 0.5); }
.hero-smoke {
  position: absolute; border-radius: 50%; pointer-events: none; opacity: 0;
  will-change: transform, opacity; filter: blur(2px);
  background: radial-gradient(circle at 50% 50%, rgba(170, 162, 152, 0.62), rgba(170, 162, 152, 0));
}
/* Sun shimmer — a breathing radial glow centred on the watercolour sun */
.hero-sunglow {
  position: absolute; border-radius: 50%; pointer-events: none; opacity: 0;
  will-change: transform, opacity; mix-blend-mode: soft-light;
  background: radial-gradient(circle at 50% 50%, rgba(255, 214, 130, 0.55), rgba(255, 214, 130, 0.12) 55%, rgba(255, 214, 130, 0));
}
/* Heat haze rising off the desert dunes (right) */
.hero-haze {
  position: absolute; border-radius: 50%; pointer-events: none; opacity: 0;
  will-change: transform, opacity; filter: blur(3px);
  background: radial-gradient(circle at 50% 50%, rgba(228, 196, 150, 0.4), rgba(228, 196, 150, 0));
}
@media (max-width: 900px) { .hero-pano { opacity: 0.28; } .hero-flight .home-label { font-size: 11px; } }
@media (prefers-reduced-motion: reduce) { .hero-mote { display: none; } }

/* ============================================================
   Scene / explainer imagery in story-art slots
   ============================================================ */
.scene-frame {
  border-radius: 22px; overflow: hidden; position: relative;
  box-shadow: 0 18px 44px rgba(34, 24, 20, 0.16);
  background: var(--paper-2); aspect-ratio: 4 / 3;
}
.scene-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}
.scene-frame img { animation: sceneKen 18s ease-in-out infinite alternate; }
@keyframes sceneKen { from { transform: scale(1.02) translate(0,0); } to { transform: scale(1.08) translate(-1.2%, -1.4%); } }
.scene-cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: #fff; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55); text-transform: uppercase;
}
.scene-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) { .scene-frame.is-in img { animation: none; } }

/* ============================================================
   App showcase — real screens in premium device mockups
   ============================================================ */
.app-showcase { background: linear-gradient(180deg, var(--cream), var(--paper-2)); overflow: hidden; }
.device-stage {
  display: flex; justify-content: center; align-items: center;
  margin-top: clamp(36px, 5vw, 64px); perspective: 1800px; min-height: 580px;
}
.device {
  position: relative; width: clamp(210px, 22vw, 280px); flex: none;
  border-radius: 32px; overflow: hidden; background: #fff;
  box-shadow: 0 38px 80px rgba(34, 24, 20, 0.26), 0 6px 16px rgba(0, 0, 0, 0.14);
}
.device .screen { border-radius: 32px; overflow: hidden; line-height: 0; }
.device .screen img { width: 100%; display: block; }
.device--l { transform: rotate(-8deg) translate(54px, 6px); z-index: 1; animation: floatL 6.4s ease-in-out infinite; }
.device--c { z-index: 2; transform: translateY(-14px) scale(1.07); animation: floatC 7.2s ease-in-out infinite; }
.device--r { transform: rotate(8deg) translate(-54px, 6px); z-index: 1; animation: floatR 6.8s ease-in-out infinite; }
@keyframes floatL { 0%,100% { transform: rotate(-8deg) translate(54px, 6px); } 50% { transform: rotate(-8deg) translate(54px, -10px); } }
@keyframes floatC { 0%,100% { transform: translateY(-14px) scale(1.07); } 50% { transform: translateY(-28px) scale(1.07); } }
@keyframes floatR { 0%,100% { transform: rotate(8deg) translate(-54px, 6px); } 50% { transform: rotate(8deg) translate(-54px, -10px); } }
@media (max-width: 760px) {
  .device-stage { min-height: 0; gap: 0; }
  .device--l, .device--r { display: none; }
  .device--c { transform: none; animation: none; width: 260px; }
}
@media (prefers-reduced-motion: reduce) { .device--l, .device--c, .device--r { animation: none; } }

/* Feature videos in clean phone frames */
.phone-video {
  position: relative; max-width: 300px; margin: 0 auto;
  border-radius: 34px; overflow: hidden; background: var(--paper-ink);
  box-shadow: 0 30px 70px rgba(34, 24, 20, 0.24), 0 5px 14px rgba(0, 0, 0, 0.14);
}
.phone-video video { width: 100%; display: block; }
.phone-video::after {
  content: "● LIVE"; position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; color: #fff;
  background: rgba(190, 82, 54, 0.9); padding: 3px 8px; border-radius: 999px;
}

.scan-card .phone-video { max-width: 240px; }
