/* ============================================================
   QVEERS — Main Stylesheet
   Font: Seatren (display/headlines) + Poppins (body)
   ============================================================ */

@font-face {
  font-family: 'Seatren';
  src: url('Seatren.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --pink:   #FF508E;
  --pink2:  #e8437e;
  --yellow: #F9EB50;
  --dark:   #262422;
  --dark2:  #1c1a18;
  --dark3:  #111010;
  --white:  #FFFFFF;
  --off:    #F7F4EF;
  --muted:  #888480;
  --faint:  #b8b4b0;
  --border: rgba(38,36,34,0.1);

  --font-display: 'Seatren', 'Impact', 'Arial Black', sans-serif;
  --font-body:    'Poppins', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--dark3); /* dark default kills the white-bar bleed under nav */
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY HELPERS ── */
.seatren { font-family: var(--font-display); letter-spacing: 1.5px; text-transform: uppercase; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: .9;
}

/* ── BANNER ── */
.banner {
  background: var(--pink);
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  z-index: 100;
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
}
.banner > * { position: relative; z-index: 1; }
.bp {
  background: var(--dark);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.banner strong { color: var(--yellow); }
.banner a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000; /* above Leaflet's max z-index of ~600 */
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  pointer-events: none;
}
.ni {
  background: rgba(15,13,11,.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 740px;
  gap: 4px;
  transition: background .35s, border-color .35s, padding .3s;
  pointer-events: all;
  position: relative;
  z-index: 1000;
}
/* Light theme: frosted glass on white sections */
nav.light .ni {
  background: rgba(245,242,238,.7);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-color: rgba(38,36,34,.08);
}
/* Scrolled: compact padding */
nav.scrolled .ni {
  padding: 8px 8px 8px 22px;
}
.nl {
  text-decoration: none;
  margin-right: auto;
  line-height: 1;
  display: flex;
  align-items: center;
}
.nl svg path { transition: fill .35s; }
.ni .nl svg path { fill: #fff; }
nav.light .ni .nl svg path { fill: var(--dark); }

.nlinks { display: flex; list-style: none; gap: 2px; }
.nlinks a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 7px 14px;
  border-radius: 100px;
  transition: color .2s, background .2s;
}
nav.light .nlinks a { color: rgba(38,36,34,.7); }
.nlinks a:hover { color: #fff; background: rgba(255,255,255,.12); }
nav.light .nlinks a:hover { color: var(--dark); background: rgba(38,36,34,.06); }

.ncta {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  margin-left: 4px;
}
.ncta:hover { background: var(--pink2); }

/* Hamburger → X morph animation */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px 12px;
  border: none;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  pointer-events: all;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: background .2s;
}
.hamburger:active { background: rgba(255,255,255,.15); }
.hamburger.is-open { background: rgba(255,80,142,.15); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .4s cubic-bezier(.23,1,.32,1), opacity .3s;
  transform-origin: center;
}
nav.light .hamburger span { background: #fff; }
/* X morph on open */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — full screen with animation */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark3);
  z-index: 1100; /* above nav (1000) and Leaflet */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity .35s cubic-bezier(.23,1,.32,1),
              visibility .35s,
              transform .35s cubic-bezier(.23,1,.32,1);
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,80,142,.07) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}
/* Open state */
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
/* Staggered link animations — close btn is first-child, links start at nth-child(2) */
.mobile-menu a,
.mobile-menu .mcta,
.mobile-menu .m-note {
  opacity: 0;
  transform: translateY(16px);
  transition: color .15s, opacity .4s cubic-bezier(.23,1,.32,1), transform .4s cubic-bezier(.23,1,.32,1);
}
.mobile-menu.open a:nth-child(2)  { opacity: 1; transform: none; transition-delay: .08s; }
.mobile-menu.open a:nth-child(3)  { opacity: 1; transform: none; transition-delay: .13s; }
.mobile-menu.open a:nth-child(4)  { opacity: 1; transform: none; transition-delay: .18s; }
.mobile-menu.open a:nth-child(5)  { opacity: 1; transform: none; transition-delay: .23s; }
.mobile-menu.open a:nth-child(6)  { opacity: 1; transform: none; transition-delay: .28s; }
.mobile-menu.open .mcta           { opacity: 1; transform: none; transition-delay: .34s; }
.mobile-menu.open .m-note         { opacity: 1; transform: none; transition-delay: .40s; }

/* Close button — always visible in top-right of overlay */
.mm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: 100px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background .2s, color .2s;
  opacity: 0;
  z-index: 10;
}
.mobile-menu.open .mm-close {
  opacity: 1;
  transition: opacity .2s .1s, background .2s, color .2s;
}
.mm-close:hover, .mm-close:active { background: rgba(255,255,255,.15); color: #fff; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(40px, 12vw, 56px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  line-height: 1.15;
  padding: 4px 0;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu .mcta {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  font-family: var(--font-body);
  transition: background .15s, opacity .4s cubic-bezier(.23,1,.32,1), transform .4s cubic-bezier(.23,1,.32,1);
}
.mobile-menu .mcta:hover { background: var(--pink2); }
.mobile-menu .m-note {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,.2);
  margin-top: 12px;
  letter-spacing: .05em;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: rgba(255,255,255,.6);
}

/* ── HERO ── */
.hero {
  background: var(--dark3);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px 80px;
  position: relative;
  overflow: hidden;
  margin-top: -68px; /* pull up behind transparent nav */
  padding-top: 128px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,80,142,.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero-line { display: none; }
.hb1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: var(--pink);
  border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%;
  opacity: .1;
  pointer-events: none;
}
.hb2 {
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: var(--pink);
  border-radius: 38% 62% 54% 46% / 45% 55% 45% 55%;
  opacity: .06;
  pointer-events: none;
}

.hc {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.hero-logo { margin-bottom: 32px; opacity: 0; animation: fadeUp .5s .05s forwards; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp .6s .15s forwards;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--pink); flex-shrink: 0; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 148px);
  line-height: .82;
  letter-spacing: 2px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp .7s .25s forwards;
}
.hero-h1 .pk { color: var(--pink); }
.hero-bar { width: 56px; height: 3px; background: var(--pink); margin: 28px 0; opacity: 0; animation: fadeUp .5s .45s forwards; }
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 440px;
  opacity: 0;
  animation: fadeUp .6s .55s forwards;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

/* Hero right */
.hero-right { position: relative; opacity: 0; animation: fadeUp .7s .35s forwards; display:flex; align-items:center; justify-content:center; }
.app-float {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 360px;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(255,80,142,.35));
}
.app-float img { width: 100%; display: block; }

.wl-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(12px);
  align-self: center;
}
.wl-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.wl-card-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  text-transform: uppercase;
  color: var(--white);
  line-height: .92;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.wl-card-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  margin-bottom: 24px;
}
.wl-form { display: flex; flex-direction: column; gap: 10px; }
.wl-in {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color .2s, background .2s;
}
.wl-in::placeholder { color: rgba(255,255,255,.25); }
.wl-in:focus { border-color: var(--pink); background: rgba(255,80,142,.06); }
.wl-btn {
  width: 100%;
  padding: 15px;
  background: var(--pink);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.wl-btn:hover { background: var(--pink2); }
.wl-note { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.18); text-align: center; margin-top: 6px; }

/* Success state */
.wl-success {
  padding: 32px 24px;
  text-align: center;
  animation: fadeUp .5s forwards;
}
.wl-success--dark { padding: 20px 0; }
.wl-success-icon {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}
.wl-success-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.wl-success-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

/* Vorname input — same style as email */
.wl-in[type="text"], .wlinput[type="text"] {
  width: 100%;
}
/* Datenschutz-Hinweis am Formular */
.wl-privacy {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,.22);
  text-align: center;
  margin-top: 8px;
}
.wl-privacy a {
  color: rgba(255,255,255,.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wl-privacy a:hover { color: rgba(255,255,255,.7); }
.wl-privacy--dark {
  color: rgba(255,255,255,.18);
  margin-top: 4px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.sl { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--pink), transparent); animation: sp 2s ease-in-out infinite; }
.sc { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.2); }

/* ── TICKER ── */
.ticker {
  background: var(--pink);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(38,36,34,.15) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}
.td { width: 6px; height: 6px; background: var(--dark); border-radius: 50%; flex-shrink: 0; }

/* ── STATEMENT ── */
.statement {
  background: var(--white);
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
}
.si {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.st-asset {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.st-asset img { width: 100%; display: block; }
.stag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stag::before { content: ''; width: 20px; height: 1px; background: var(--pink); }
.sttitle {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: .9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sttitle .a { color: var(--pink); }
.sttitle .d { color: var(--faint); }
.sttext { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
.sttext strong { color: var(--dark); font-weight: 600; }

/* ── STATS ── */
.stats { background: var(--dark); padding: 72px 64px; position: relative; overflow: hidden; }
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249,235,80,.08) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}
.stats-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}
.si2 { padding: 40px; border-right: 1px solid rgba(255,255,255,.07); text-align: center; }
.si2:last-child { border-right: none; }
.snum {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.snum .pk { color: var(--pink); }
.snum .yw { color: var(--yellow); }
.slabel { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.3); line-height: 1.5; }

/* ── BENEFITS ── */
.benefits { background: var(--pink); padding: 100px 64px; position: relative; overflow: hidden; }
.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(38,36,34,.13) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}
.bin { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.bhdr { margin-bottom: 48px; }
.btitle {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 112px);
  line-height: .88;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
}
.btitle .oo { -webkit-text-stroke: 3px var(--dark); color: transparent; }
.bsub { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(38,36,34,.55); margin-top: 16px; max-width: 480px; }

/* Benefit cards */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bc {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), border-color .25s, box-shadow .3s;
}
.bc:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
/* Image fills top */
.bc-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.bc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.1) saturate(1.2);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  padding: 12px;
}
.bc:hover .bc-img img { transform: scale(1.06); }
/* Info */
.bc-info {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.bc-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.bc-tit {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
}
.bc-desc { font-size: 12px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,.4); }

/* ── PAKET ── */
.paket { background: var(--dark2); padding: 120px 64px; position: relative; overflow: hidden; }
.paket::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,80,142,.06) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}
.paket-asset {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  pointer-events: none;
  opacity: .08;
  z-index: 0;
}
.paket-asset img { width: 100%; mix-blend-mode: screen; filter: brightness(2); }
.pin {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.ptag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ptag::before { content: ''; width: 20px; height: 1px; background: var(--pink); }
.ptitle {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: .92;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 44px;
}
.ptitle em { color: var(--yellow); font-style: normal; }
.krow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: padding-left .2s;
  cursor: default;
}
.krow:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.krow:hover { padding-left: 8px; }
.kname { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.7); }
.kval { font-size: 13px; color: rgba(255,255,255,.25); }
.ktotal {
  margin-top: 24px;
  background: var(--pink);
  padding: 20px 24px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ktl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.ktv {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  color: #fff;
  letter-spacing: 1px;
}
.cbox {}
.chtitle {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: .95;
  margin-bottom: 12px;
}
.chsub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.35); line-height: 1.65; margin-bottom: 32px; }
.copts { display: flex; flex-direction: column; gap: 8px; }
.co {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  background: rgba(255,255,255,.03);
}
.co:hover, .co.active { border-color: var(--pink); background: rgba(255,80,142,.08); transform: translateX(4px); }
.coi { font-size: 22px; line-height: 1; }
.con { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); }
.coh { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.3); margin-top: 2px; }

/* ── PRICING ── */
.pricing { background: var(--off); padding: 120px 64px; position: relative; overflow: hidden; border-top: 1px solid rgba(38,36,34,.08); }
.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(38,36,34,.05) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}
.pric-in { max-width: 1060px; margin: 0 auto; position: relative; z-index: 1; }
.pric-hdr { text-align: center; margin-bottom: 56px; }
.pric-tag { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--pink); margin-bottom: 16px; }
.pric-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: .9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
}
.pric-sub { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.6; margin-top: 12px; }

/* Founding card — PINK instead of yellow */
.founding-card {
  background: var(--pink);
  border-radius: 24px;
  padding: 36px 44px;
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.founding-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
}
.fc-content { position: relative; z-index: 1; }
.fc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--dark);
  color: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.fc-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.5vw, 88px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  line-height: .82;
  margin-bottom: 16px;
}
.fc-sub { font-size: 14px; font-weight: 400; color: rgba(0,0,0,.6); line-height: 1.6; max-width: 420px; }
.fc-price {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--dark);
  letter-spacing: 1px;
  margin-top: 14px;
}
.fc-price span { font-size: 14px; font-weight: 400; font-family: var(--font-body); opacity: .6; }
.fc-countdown { position: relative; z-index: 1; text-align: center; flex-shrink: 0; }
.countdown-units { display: flex; gap: 8px; align-items: flex-start; }
.cu {
  background: var(--dark);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  min-width: 68px;
}
.cu-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
}
.cu-label { font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(249,235,80,.5); margin-top: 4px; }
.cu-sep { font-size: 28px; font-weight: 700; color: rgba(255,255,255,.4); padding-top: 10px; }
.cd-note { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 10px; }
.fc-cta {
  margin-top: 16px;
  width: 100%;
  padding: 13px 24px;
  background: var(--dark);
  color: var(--yellow);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .15s, transform .1s;
}
.fc-cta:hover { background: #111; transform: scale(1.02); }

/* Pricing grid */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pc {
  background: var(--white);
  border: 1px solid rgba(38,36,34,.1);
  border-radius: 24px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.pc:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(38,36,34,.1); }
.pc.feat { background: var(--dark); border-color: transparent; }
.pc.feat::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,80,142,.08) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  border-radius: 24px;
}
.ptag2 {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.pc:not(.feat) .ptag2 { background: rgba(38,36,34,.06); color: var(--muted); }
.pc.feat .ptag2 { background: var(--pink); color: #fff; }
.pname { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 6px; position: relative; z-index: 1; }
.pc.feat .pname { color: rgba(255,255,255,.45); }
.pprice {
  font-family: var(--font-display);
  font-size: 60px;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.pc.feat .pprice { color: var(--white); }
.pmo { font-size: 13px; font-weight: 300; color: var(--faint); margin-bottom: 24px; position: relative; z-index: 1; }
.pc.feat .pmo { color: rgba(255,255,255,.3); }
.pdiv { height: 1px; background: rgba(38,36,34,.08); margin-bottom: 20px; position: relative; z-index: 1; }
.pc.feat .pdiv { background: rgba(255,255,255,.08); }
.pfeats { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 24px; position: relative; z-index: 1; }
.pf { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.45; }
.pf.on { color: var(--dark); font-weight: 400; }
.pc.feat .pf { color: rgba(255,255,255,.4); }
.pc.feat .pf.on { color: rgba(255,255,255,.85); }
.ck {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pf.on .ck { background: var(--pink); color: #fff; }
.pf:not(.on) .ck { background: rgba(38,36,34,.06); color: var(--faint); }
.pc.feat .pf.on .ck { background: var(--pink); color: #fff; }
.pc.feat .pf:not(.on) .ck { background: rgba(255,255,255,.06); color: rgba(255,255,255,.2); }
.pcta {
  padding: 13px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .15s;
  position: relative;
  z-index: 1;
  text-align: center;
}
.pc:not(.feat) .pcta { background: var(--dark); color: #fff; }
.pc:not(.feat) .pcta:hover { background: #444; }
.pc.feat .pcta { background: var(--pink); color: #fff; }
.pc.feat .pcta:hover { background: var(--pink2); }
.pnote { font-size: 11px; font-weight: 300; color: var(--faint); text-align: center; margin-top: 12px; position: relative; z-index: 1; }
.pc.feat .pnote { color: rgba(255,255,255,.2); }

/* ── TEAM ── */
.team { background: var(--dark3); padding: 120px 64px; position: relative; overflow: hidden; }
.team::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,80,142,.06) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}
.team-in { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.team-hdr { margin-bottom: 64px; }
.team-hdr .stag { color: var(--pink); }
.team-hdr .stag::before { background: var(--pink); }
.team-hdr .sttitle { color: var(--white); }
.team-hdr .sttitle .a { color: var(--pink); }

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tc {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), border-color .25s, background .25s;
  display: flex;
  flex-direction: column;
}
.tc:hover {
  transform: translateY(-5px);
  border-color: var(--pink);
  background: rgba(255,80,142,.06);
}
/* Photo area */
.tav {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--dark2);
}
.tav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  mix-blend-mode: normal;
}
.tc:hover .tav img { transform: scale(1.04); }
/* Pink tint overlay on hover */
.tav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink);
  opacity: 0;
  transition: opacity .3s;
  mix-blend-mode: multiply;
}
.tc:hover .tav::after { opacity: .15; }
/* Initial letter fallback (if no image) */
.tav-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255,255,255,.15);
  letter-spacing: 2px;
}

/* Info area */
.tinfo {
  padding: 22px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tinfo-top {}
.tname {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -.2px;
}
.trole { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.5; }
.trole-title {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 2px;
}

/* ── FINAL WAITLIST ── */
.wl-final { background: var(--dark3); padding: 140px 64px; text-align: center; position: relative; overflow: hidden; }
.wl-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,80,142,.07) 2px, transparent 2px);
  background-size: 24px 24px;
  pointer-events: none;
}
.wl-final::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pink); }
.wl-shape {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: var(--pink);
  border-radius: 50%;
  opacity: .05;
  pointer-events: none;
}
.wlc { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.wltag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.wltag::before, .wltag::after { content: ''; width: 20px; height: 1px; background: var(--pink); }
.wltitle {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 112px);
  line-height: .88;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.wltitle .pk { color: var(--pink); }
.wlsub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: 44px; }
.wlform { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.wlinput {
  flex: 1;
  min-width: 240px;
  padding: 16px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
}
.wlinput::placeholder { color: rgba(255,255,255,.2); }
.wlinput:focus { border-color: var(--pink); }
.wlbtn {
  padding: 16px 36px;
  background: var(--pink);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.wlbtn:hover { background: var(--pink2); }
.wlfn { margin-top: 20px; font-size: 12px; font-weight: 300; color: rgba(255,255,255,.15); }

/* ── FOOTER ── */
footer { background: var(--dark3); border-top: 1px solid rgba(255,255,255,.04); padding: 60px 64px 40px; }
.fi {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.ftag { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.25); max-width: 220px; line-height: 1.5; margin-top: 12px; }
.fcols { display: flex; gap: 48px; flex-wrap: wrap; }
.fc-col-title { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 16px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fc a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.38); text-decoration: none; transition: color .15s; }
.fc a:hover { color: var(--white); }
.fb {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fcopy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.15); }

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.rv.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .05s; } .d2 { transition-delay: .1s; } .d3 { transition-delay: .15s; }
.d4 { transition-delay: .2s; } .d5 { transition-delay: .25s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes sp { 0%,100% { opacity: .3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TICKER ── */
.ticker { cursor: default; user-select: none; }
.ticker:hover .tt { animation-play-state: paused; }
.tt { display: inline-flex; animation: tickerScroll 32s linear infinite; will-change: transform; }
.ti {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--dark);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: color .15s;
}
.ticker:hover .ti { color: rgba(38,36,34,.6); }
.td { width: 6px; height: 6px; background: var(--dark); border-radius: 50%; flex-shrink: 0; }

/* ── LOADING SPINNER ── */
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

/* ── SCROLL REVEAL improvements ── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.rv.vis { opacity: 1; transform: none; }
.rv-left { opacity: 0; transform: translateX(-24px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.rv-left.vis { opacity: 1; transform: none; }
.rv-scale { opacity: 0; transform: scale(.96); transition: opacity .6s cubic-bezier(.34,1.56,.64,1), transform .6s cubic-bezier(.34,1.56,.64,1); }
.rv-scale.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .05s; } .d2 { transition-delay: .1s; } .d3 { transition-delay: .15s; }
.d4 { transition-delay: .2s; } .d5 { transition-delay: .25s; } .d6 { transition-delay: .3s; }

/* ── RESPONSIVE TABLET ── */
@media (max-width: 1024px) {
  .hero, .statement, .stats, .benefits, .paket, .pricing, .team, .wl-final, footer { padding-left: 32px; padding-right: 32px; }
  .hc { grid-template-columns: 1fr; gap: 48px; }
  .app-float { display: none; }
  .hero-right { min-height: auto; }
  .wl-card { margin-bottom: 0; }
  .si { grid-template-columns: 1fr; gap: 40px; }
  .st-asset { display: none; }
  .bgrid { grid-template-columns: repeat(2, 1fr); }
  .pin { grid-template-columns: 1fr; gap: 48px; }
  .pgrid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .tgrid { grid-template-columns: repeat(3, 1fr); }
  .stats-in { grid-template-columns: 1fr; }
  .si2 { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .si2:last-child { border-bottom: none; }
  .founding-card { grid-template-columns: 1fr; gap: 28px; }
  .fc-countdown { display: block; } /* show on mobile/tablet */
  .countdown-units { justify-content: flex-start; }
  .cu { min-width: 60px; padding: 12px 14px; }
  .cu-num { font-size: 28px; }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 640px) {
  .phone-frame { width: 160px !important; }
  .nlinks { display: none; }
  .ncta { display: none; }
  .hamburger { display: flex; }
  nav { padding: 10px 12px; }
  .ni { padding-left: 14px; }
  .hero { padding: 80px 20px 100px; padding-top: 100px; margin-top: -60px; }
  .hero-h1 { font-size: clamp(52px, 15vw, 76px); }
  .hc { gap: 32px; }
  .ticker .ti { font-size: 14px; }
  .statement { padding: 72px 20px; }
  .sttitle { font-size: clamp(40px, 12vw, 64px); }
  .stats { padding: 48px 20px; }
  .benefits { padding: 72px 20px; }
  .btitle { font-size: clamp(44px, 13vw, 68px); }
  .bgrid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .paket { padding: 72px 20px; }
  .paket-asset { display: none; }
  .pricing { padding: 72px 20px; }
  .founding-card { padding: 24px 20px; }
  .pgrid { max-width: 100%; }
  .team { padding: 72px 20px; }
  .tgrid { grid-template-columns: 1fr; gap: 12px; }
  .wl-final { padding: 80px 20px; }
  .wlform { flex-direction: column; }
  .wlinput, .wlbtn { width: 100%; border-radius: 14px; }
  footer { padding: 40px 20px 24px; }
  .fi { flex-direction: column; gap: 28px; }
  .fcols { flex-direction: column; gap: 24px; }
  .fb { flex-direction: column; text-align: center; }
}

/* ── STICKY CTA BANNER ── */
/* ── STICKY BOTTOM BAR — styles in footer.php inline ── */

/* ── iPHONE 17 PRO MOCKUP ── */
/*
 * Structure:
 * <div class="phone-frame">
 *   <div class="phone-frame-screen">
 *     <img src="screenshot.png">
 *   </div>
 *   <img src="assets/iphone-frame.svg" class="phone-frame-overlay" aria-hidden="true">
 *   <div class="phone-glow"></div>
 * </div>
 */
.phone-frame {
  position: relative;
  width: 260px;
  flex-shrink: 0;
  display: inline-block;
  padding: 3px;
  border-radius: 32px;
  background: linear-gradient(145deg, #ddd6cc, #a89e94, #ccc0b4, #847870);
  box-shadow:
    0 24px 64px rgba(0,0,0,.65),
    0 4px 16px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 -1px 0 rgba(0,0,0,.3);
}
.phone-frame-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 393 / 852;
  border-radius: 29px;
  overflow: hidden;
  background: #050505;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
}
.phone-frame-screen > img:not(.phone-frame-overlay) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
}
.phone-frame-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  display: block;
}
.phone-glow {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 44px;
  background: var(--pink);
  filter: blur(28px);
  opacity: .25;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
@media(max-width:1024px) {
  .phone-frame { width: 220px; border-radius: 27px; }
  .phone-frame-screen { border-radius: 24px; }
}
@media(max-width:640px) {
  .phone-frame { width: 150px !important; border-radius: 19px; }
  .phone-frame-screen { border-radius: 13px; }
}
.phone-frame::before {
  content: '';
  position: absolute;
  right: -4px; top: 27%;
  width: 4px; height: 17%;
  background: linear-gradient(to right, #a89e94, #c8beb4, #a89e94);
  border-radius: 0 2px 2px 0;
}
.phone-frame::after {
  content: '';
  position: absolute;
  left: -4px; top: 22%;
  width: 4px; height: 10%;
  background: linear-gradient(to left, #a89e94, #c8beb4, #a89e94);
  border-radius: 2px 0 0 2px;
  box-shadow: 0 140% 0 4px #b8aea4, 0 260% 0 4px #b8aea4;
}
/* ── STORE BADGES ── */
.store-badges-row { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.store-badge-link { display:inline-block; transition:transform .2s, opacity .2s; }
.store-badge-link:hover { transform:translateY(-2px); opacity:.9; }
.store-badge-img { height:47px; width:auto; display:block; }
@media(max-width:480px) { .store-badges-row { gap:8px; } .store-badge-img { height:40px; } }