/* PRICELIO landing bundle — sujungti shared+design-tokens+components+landing (2026-07-26), kad sumažintų render-blocking užklausas 4->1 */
/* === shared.css === */
/* ═══════════════════════════════════════════════════════
   PRICELIO – Shared Design System
═══════════════════════════════════════════════════════ */

:root {
  /* Canvas — giliai violetinė, ne gryna juoda */
  --bg-primary: #08031a;
  --bg-secondary: #0d0726;
  --bg-tertiary: #130c34;

  /* Kortelės — matomas glassmorphism */
  --bg-card: rgba(255, 255, 255, 0.07);
  --bg-card-hover: rgba(255, 255, 255, 0.11);

  /* Brand spalvos — pink-teal gradientas išlieka */
  --accent-primary: #ff2d78;
  --accent-primary-soft: #ff5c99;
  --accent-primary-glow: rgba(255, 45, 120, 0.35);
  --accent-secondary: #00ead0;
  --accent-secondary-soft: #70ffee;
  --accent-secondary-glow: rgba(0, 234, 208, 0.25);
  --accent-gradient: linear-gradient(135deg, #ff2d78 0%, #ff6b9d 40%, #00ead0 100%);
  --purple-accent: #c084fc;
  --purple-glow: rgba(192, 132, 252, 0.25);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* Tekstas */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.48);

  /* Borderai */
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.18);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ── Šviesi tema: Pastel Clay — ryški, gyva, ne "balta+pilka" ──── */
:root[data-theme="light"] {
  /* Canvas — šiltas lavender kremas, ne gryna balta */
  --bg-primary: #f0ebff;
  --bg-secondary: #faf7ff;
  --bg-tertiary: #ede0ff;

  /* Kortelės — clay pastel */
  --bg-card: rgba(255, 255, 255, 0.65);
  --bg-card-hover: rgba(255, 255, 255, 0.85);

  /* Brand — pink-teal išlieka, bet šviesiau pritaikytas */
  --accent-primary: #e91e63;
  --accent-primary-soft: #f06292;
  --accent-primary-glow: rgba(233, 30, 99, 0.25);
  --accent-secondary: #00bfa5;
  --accent-secondary-soft: #4dd0e1;
  --accent-secondary-glow: rgba(0, 191, 165, 0.22);
  --accent-gradient: linear-gradient(135deg, #e91e63 0%, #f06292 40%, #00bfa5 100%);
  --purple-accent: #7c3aed;
  --purple-glow: rgba(124, 58, 237, 0.22);

  /* Glassmorphism — baltas stiklas */
  --glass-bg: rgba(255, 255, 255, 0.60);
  --glass-border: rgba(255, 255, 255, 0.80);

  /* Tekstas — tamsiai violetinis, ne juodas */
  --text-primary: #1a0a3d;
  --text-secondary: rgba(26, 10, 61, 0.72);
  --text-muted: rgba(26, 10, 61, 0.48);

  /* Borderai */
  --border-subtle: rgba(124, 58, 237, 0.10);
  --border-hover: rgba(124, 58, 237, 0.28);

  /* Nav */
  --nav-bg: rgba(240, 235, 255, 0.88);
}

/* Tema persijungia švelniai (elementai, kurių neapima radial sweep) */
body { transition: background-color .45s ease, color .45s ease; }

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Common Reveal Animation ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Mesh Background ────────────────────────────────── */
.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mesh-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 1;
}

/* Tamsi tema — ryškesni blobai */
.mesh-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.28), transparent 70%);
  top: -200px;
  right: -150px;
  animation: meshFloat1 11s ease-in-out infinite;
}

.mesh-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 234, 208, 0.22), transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: meshFloat2 14s ease-in-out infinite;
}

.mesh-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.18), transparent 70%);
  top: 35%;
  left: 35%;
  animation: meshFloat3 17s ease-in-out infinite;
}

/* Šviesi tema — dar ryškesni, sodrūs blobai */
:root[data-theme="light"] .mesh-1 {
  background: radial-gradient(circle, rgba(233, 30, 99, 0.35), transparent 70%);
}
:root[data-theme="light"] .mesh-2 {
  background: radial-gradient(circle, rgba(0, 191, 165, 0.30), transparent 70%);
}
:root[data-theme="light"] .mesh-3 {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 70%);
}

@keyframes meshFloat1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-90px, 60px) scale(1.1); } }
@keyframes meshFloat2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(75px, -90px) scale(1.08); } }
@keyframes meshFloat3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-60px, 45px) scale(1.12); } }

/* ── Navigation ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg, rgba(8, 3, 18, 0.92));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 0 20px var(--accent-primary-glow);
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-spacer { flex: 1; }

.nav-country-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-country-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-country-link:hover {
  border-color: var(--accent-primary);
  color: #fff;
  background: rgba(255, 45, 120, 0.08);
}

.nav-country-link.active {
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  background: var(--accent-secondary-glow);
}

#en-toggle {
  padding: 6px 14px;
  background: var(--purple-glow);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 20px;
  color: var(--purple-accent);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Manrope', sans-serif;
}

#en-toggle:hover { background: rgba(167, 139, 250, 0.25); }
#en-toggle.active { opacity: 0.5; cursor: default; }

@media (max-width: 768px) {
  nav { padding: 12px 20px; gap: 10px; }
  .nav-country-link { padding: 6px 10px; font-size: 12px; }
}

.btn-gradient { background: var(--accent-gradient); color: #fff; border: none; font-weight: 700; letter-spacing: .01em; }
.btn-gradient:hover { opacity: .88; transform: scale(1.02); }

.nav-hamburger { display: none; background: none; border: 1px solid var(--border-subtle); border-radius: 8px; padding: .5rem .65rem; cursor: pointer; color: var(--text-secondary); font-size: 1.2rem; line-height: 1; }
.nav-mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5,2,10,.97); z-index: 9999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; backdrop-filter: blur(20px); }
.nav-mobile-menu.open { display: flex; }
.mobile-nav-link { color: var(--text-secondary); text-decoration: none; font-size: 1.4rem; font-weight: 600; transition: color .2s; }
.mobile-nav-link:hover { color: #fff; }
.mobile-nav-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 1rem; }
.nav-mobile-menu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-hamburger { display: block; }
}

/* Footer fallback — puslapiams be market.css/landing.css (product, auth, legal, tourist,
   paieška). Be šito footer nuorodos lieka numatytos naršyklės mėlynos su pabraukimu. */
footer { padding: 3rem 2rem 2rem; border-top: 1px solid var(--border-subtle); background: var(--bg-secondary); position: relative; z-index: 2; }
.footer-inner, .footer-container { max-width: 1200px; margin: 0 auto; }
.footer-logo { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 800; letter-spacing: .08em; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: .75rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0 0 1rem; justify-content: center; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { text-align: center; font-size: .82rem; color: var(--text-muted); }

/* ── Šviesi/tamsi tema: perjungimo mygtukas ──────────────── */
.theme-toggle {
  position: fixed; right: 18px; bottom: 18px; z-index: 9999;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1; cursor: pointer;
  background: var(--bg-secondary); color: var(--accent-primary);
  border: 1px solid var(--border-hover);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, background .3s ease;
}
.theme-toggle:hover { transform: translateY(-2px) scale(1.06); box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4); }
.theme-toggle:active { transform: scale(0.94); }

/* Radial sweep per View Transitions API — nauja tema „išauga" iš mygtuko */
::view-transition-old(root) { animation: none; }
::view-transition-new(root) { animation: theme-sweep .62s cubic-bezier(.4, 0, .2, 1); }
@keyframes theme-sweep {
  from { clip-path: circle(0 at var(--theme-x, 50%) var(--theme-y, 50%)); }
  to   { clip-path: circle(var(--theme-r, 150%) at var(--theme-x, 50%) var(--theme-y, 50%)); }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-new(root) { animation: none; }
}

/* === design-tokens.css === */
/* ═══════════════════════════════════════════════════════
   PRICELIO — E1 Design Tokens ("Apple + Anthropic" calm system)
   Scope: index.html + lt.html ONLY. Loaded AFTER shared.css so it
   wins the cascade for these two pages without touching shared.css
   (shared.css is used sitewide — gr.html, product.html, auth.html…
   — and must not be re-skinned by this migration, see E1 brief).

   Convention preserved from shared.css: default :root (no
   data-theme attribute) = DARK. :root[data-theme="light"] = light
   override. This matches shared-ui.js's toggle (setAttribute +
   localStorage) and — critically — matches the large amount of
   hardcoded rgba(255,255,255,…) text-on-dark-canvas styling still
   present inline throughout index.html/lt.html/landing.css/market.css.
   Flipping the *default* to light without rewriting every one of
   those inline colors would make body text invisible for anyone who
   hasn't explicitly toggled — so we keep dark-as-default and only
   replace the VALUES with the new calm palette.
═══════════════════════════════════════════════════════ */

:root {
  /* Canvas — calm near-black, not violet */
  --bg-primary: #131316;
  --bg-secondary: #1c1c20;
  --bg-tertiary: #202024;
  --bg-card: #1c1c20;
  --bg-card-hover: #232327;

  /* Single flat accent (no gradients) */
  --accent-primary: #a78bfa;
  --accent-primary-soft: #a78bfa;
  --accent-primary-glow: rgba(167, 139, 250, .12);
  --accent-secondary: #34d399;        /* semantic "live/positive" green, not decorative */
  --accent-secondary-soft: #34d399;
  --accent-secondary-glow: rgba(52, 211, 153, .12);
  --accent-gradient: var(--accent-primary); /* gradients banned — flat alias */
  --purple-accent: var(--accent-primary);
  --purple-glow: rgba(167, 139, 250, .12);

  /* "Glass"/legacy surface aliases — flattened to plain card surface */
  --glass-bg: var(--bg-card);
  --glass-border: var(--border-subtle);

  /* Text */
  --text-primary: #f1f0f5;
  --text-secondary: #a3a1ab;
  --text-muted: rgba(241, 240, 245, .55);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, .08);
  --border-hover: rgba(255, 255, 255, .18);

  /* Nav surface (used as fallback var in shared.css nav rule) */
  --nav-bg: rgba(19, 19, 22, .88);

  /* Radius — 8–12px range, no clay 18–32px shapes */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 12px;

  /* One shadow level everywhere */
  --shadow: 0 1px 3px rgba(0, 0, 0, .4);

  /* Typography */
  --font-ui: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Source Serif 4', Georgia, serif;
}

/* Explicit light override — set by the existing theme-toggle button
   (shared-ui.js -> data-theme="light" + localStorage) */
:root[data-theme="light"] {
  --bg-primary: #f6f6f9;
  --bg-secondary: #ffffff;
  --bg-tertiary: #eeeef2;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;

  --accent-primary: #7c3aed;
  --accent-primary-soft: #7c3aed;
  --accent-primary-glow: rgba(124, 58, 237, .08);
  --accent-secondary: #0d7a5f;
  --accent-secondary-soft: #0d7a5f;
  --accent-secondary-glow: rgba(13, 122, 95, .08);
  --accent-gradient: var(--accent-primary);
  --purple-accent: var(--accent-primary);
  --purple-glow: rgba(124, 58, 237, .08);

  --glass-bg: var(--bg-card);
  --glass-border: var(--border-subtle);

  --text-primary: #17171a;
  --text-secondary: #68666f;
  --text-muted: rgba(23, 23, 26, .55);

  --border-subtle: rgba(23, 23, 26, .15);
  --border-hover: rgba(23, 23, 26, .28);

  --nav-bg: rgba(246, 246, 249, .88);
  --shadow: 0 2px 10px rgba(23, 23, 26, .09);
}

/* ── Base overrides for shared.css structural rules on these 2 pages ── */
body { font-family: var(--font-ui); }

/* Grain texture — lt.html's dark canvas has this fractal-noise overlay,
   user explicitly likes it ("tas tamsu bet grūdėtas") and asked for it on
   index.html too, plus a subtle drift on scroll. Kept very low-opacity
   (.025) so it reads as texture, not as visible static/noise. The drift
   (translateY, see landing.js/market.js noiseParallax()) is deliberately
   tiny (~4% of scroll distance) — enough to feel alive, not distracting. */
.noise {
  position: fixed;
  inset: -60px 0 0 0;
  pointer-events: none;
  z-index: 1;
  opacity: .025;
  will-change: transform;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
  .noise { transform: none !important; }
}

h1, h2, h3,
.hero-title, .section-title, .cta-title, .wow-final,
.deals-title, .story-hook, .waitlist-title, .biz-title,
.milestone-title, .country-name {
  font-family: var(--font-display);
  font-weight: 600;
}

/* Nav / footer flattened (shared.css still defines structure; we only
   neutralize the leftover glow/gradient-text look here) */
.nav-logo-mark { box-shadow: none; }
.nav-logo-text { font-family: var(--font-ui); font-weight: 600; }
.footer-logo { font-family: var(--font-ui); font-weight: 600; letter-spacing: .04em; }
.theme-toggle { box-shadow: var(--shadow); }
.theme-toggle:hover { box-shadow: var(--shadow); transform: translateY(-1px); }

.nav-links-group { display: flex; gap: 12px; align-items: center; }

/* index/lt.html nav used its own .nav-country-links markup, never wired into
   shared.css's .nav-hamburger/.nav-mobile-menu pattern (that pattern only
   targeted .nav-links/.nav-actions, different classes) — on mobile all 5
   pill links + lang switcher crammed into one row and overflowed/got clipped
   by the page. Hide the link group behind the existing hamburger instead. */
@media (max-width: 768px) {
  .nav-links-group { display: none; }
  .nav-hamburger { display: block; }
}

/* === components.css === */
/* ═══════════════════════════════════════════════════════
   PRICELIO — E1 shared components (flat, calm, restrained)
   Scope: index.html + lt.html. Load after design-tokens.css,
   before any page-specific stylesheet (landing.css / market.css)
   so page overrides can still win where a page needs something
   more specific.
═══════════════════════════════════════════════════════ */

.btn,
.cta-btn,
.deals-tab,
.nav-country-link,
button {
  font-family: var(--font-ui);
}

/* Flat buttons — one accent, one shadow level, no clay bounce */
.btn,
.cta-btn,
.btn-gradient {
  border-radius: var(--radius-md);
  transition: opacity 150ms ease, transform 150ms ease;
}

.btn-gradient,
.cta-btn-lt {
  background: var(--accent-primary) !important;
  background-image: none !important;
}

.btn:hover,
.cta-btn:hover,
.btn-gradient:hover {
  opacity: .9;
  transform: translateY(-1px);
}

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

.btn-outline {
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--border-subtle);
}

/* Flat cards — single shadow, 8-12px radius, no glass/clay */
.portal-card,
.manifesto-card,
.platform-card,
.number-card,
.biz-card,
.deal-card,
.feature-card,
.country-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: box-shadow 150ms ease, transform 150ms ease, border-color 150ms ease !important;
}

.portal-card:hover,
.feature-card:hover,
.deal-card:hover,
.country-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow) !important;
  border-color: var(--border-hover) !important;
}

/* Nav */
nav {
  background: var(--nav-bg) !important;
  backdrop-filter: blur(20px);
}

.nav-country-link {
  border-color: var(--border-subtle);
  color: var(--text-secondary);
}
.nav-country-link:hover {
  border-color: var(--accent-primary);
  color: var(--text-primary);
  background: var(--accent-primary-glow);
}
.nav-country-link.active {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-primary-glow);
}

/* Footer */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); }
.footer-links a { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   Gradient-card signature accent — approved 2026-07-22.
   ONLY for cards showing a real product name + price
   (e.g. .deal-card in #dealsGrid). Do not apply to
   portal/feature/nav cards — those stay flat E1.
═══════════════════════════════════════════════════════ */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes pricelio-spin {
  from { --angle: 0deg; }
  to   { --angle: 360deg; }
}

.gradient-card {
  border-radius: 17px; /* inner radius (16px, matches .deal-card) + 1px padding tolerance */
  padding: 3px;
  background: conic-gradient(from var(--angle, 0deg), #ff2d78, #7c3aed, #00d4aa, #7c3aed, #ff2d78);
  animation: pricelio-spin 16s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .gradient-card { animation: none; }
}
.gradient-card > .gradient-card-inner {
  border-radius: 15px;
  height: 100%;
}
/* The gradient ring already reads as the card border — drop the flat
   E1 border on the wrapped element so it doesn't double up. */
.gradient-card > .gradient-card-inner.deal-card {
  border: none !important;
}

/* Price rendered in the same brand gradient, clipped to text */
.price-gradient-text {
  background: linear-gradient(135deg, #ff2d78, #7c3aed 55%, #00d4aa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Discount/savings pill — gradient fill, white text (fixed, not theme-dependent) */
.savings-badge-gradient {
  background: linear-gradient(135deg, #ff2d78, #7c3aed 55%, #00d4aa) !important;
  color: #fff !important;
}

/* Primary CTA button living on a price card */
.btn-deal-gradient {
  background: linear-gradient(135deg, #ff2d78, #7c3aed 55%, #00d4aa) !important;
  background-image: linear-gradient(135deg, #ff2d78, #7c3aed 55%, #00d4aa) !important;
  color: #fff !important;
  border: none;
}
.footer-links a:hover { color: var(--text-primary); }

/* === landing.css === */
/* ═══════════════════════════════════════════════════════
   PRICELIO – Landing Page Styles
═══════════════════════════════════════════════════════ */

html, body { overflow-x: hidden; max-width: 100vw; }

/* ── Founder Note Toast ─────────────────────────────── */
#founder-note {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px);
  z-index: 99998;
  width: calc(100% - 32px); max-width: 480px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
#founder-note.fn-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.fn-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px 20px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(167,139,250,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; gap: 14px; align-items: flex-start;
}
.fn-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.02em;
  flex-shrink: 0; padding-top: 2px;
}
.fn-body { flex: 1; min-width: 0; }
.fn-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 10px;
}
.fn-text:last-of-type { margin-bottom: 12px; }
.fn-close {
  padding: 8px 16px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 8px;
  color: #A78BFA;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.fn-close:hover {
  background: rgba(124,58,237,0.28);
  border-color: rgba(167,139,250,0.5);
}
@media (max-width: 600px) {
  #founder-note { bottom: 16px; }
  .fn-text { font-size: 0.8rem; }
}

/* ── Intro Overlay ──────────────────────────────────── */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#intro-overlay.hidden { display: none; }

.intro-scene {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Apple Intelligence aurora — soft, slow, smooth */
.intro-aura {
  position: absolute;
  inset: -100px;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  will-change: opacity, transform;
}

/* intro-aura decorative glow removed (E1 — no atmosphere blur/gradient) */

/* Rays container */
.intro-rays {
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 2;
  pointer-events: none;
}

/* Individual ray (generated by JS) */
.intro-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  height: 0;
  transform-origin: 0% 0%;
  border-radius: 1px;
  opacity: 0;
  will-change: height, opacity;
}

/* Apple Intelligence P — clean spring-in, no harsh 3D */
.intro-p-letter {
  font-family: 'Inter', sans-serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 3;
  color: var(--accent-primary);
  opacity: 0;
  transform: scale(0.88) translateY(14px);
  will-change: transform, opacity;
}

.intro-p-letter.visible {
  animation: introPEntry 0.5s ease forwards;
}

@keyframes introPEntry {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes introFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50%       { transform: scale(1.025) translateY(-7px); }
}

/* ── Hero Section ───────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 60px;
  gap: 56px;
}

.hero-portals {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 680px;
}
/* 680px fit 2 cards (LT+GR at launch); the grid now has 4 (LT/GR/LV/EE) —
   on desktop that forced an awkward 3+1 wrap in a tiny centered island with
   huge dead space either side. Let 4 cards sit in one row where there's room. */
@media (min-width: 1180px) {
  .hero-portals { max-width: 1280px; }
}

.portal-card {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 150ms ease, border-color 150ms ease;
}

.portal-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-primary);
}

.portal-card.portal-gr:hover {
  border-color: var(--accent-secondary);
}

.portal-card.detected { border-color: var(--accent-primary); }

.portal-top { display: flex; flex-direction: column; align-items: center; }
.portal-flag { font-size: 42px; margin-bottom: 10px; display: block; }
.portal-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }

.portal-deal {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  text-align: left;
}
.portal-deal-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.portal-deal-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #10B981;
  line-height: 1;
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
}
.portal-deal-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.portal-deal-chain {
  font-size: 11px;
  font-weight: 600;
  color: rgba(167,139,250,0.6);
  font-family: 'Inter', sans-serif;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 100px;
  color: var(--accent-secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portal-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-secondary);
}

/* ── Airport Board ─────────────────────────────────── */
.airport-board {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: rgba(4, 2, 14, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Scanline overlay */
.airport-board::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  border-radius: 20px;
  z-index: 2;
}

.board-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(124, 58, 237, 0.05);
}

.board-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-secondary);
  flex-shrink: 0;
}

.board-live-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.board-ts {
  margin-left: auto;
  font-size: 10px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.board-cols-flag { display: none; }

.board-cols-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px 90px;
  padding: 7px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 1024px) {
  .board-cols-flag { display: block; }
  .board-cols-header {
    grid-template-columns: 22px minmax(0, 1fr) 150px 110px;
    padding: 7px 24px;
  }
}

.board-cols-header span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.board-cols-header span:last-child { text-align: right; }

/* Fixed height prevents layout jump when rows update every 2s */
.board-rows { position: relative; z-index: 1; min-height: 200px; }

.board-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px 90px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  transition: background 0.2s ease;
  position: relative;
}

.board-row:last-child { border-bottom: none; }
.board-row.updating { background: rgba(124, 58, 237, 0.06); }

.board-row-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
  padding-right: 8px;
}

.board-row-store {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
}

.board-row-price {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f59e0b;
  font-variant-numeric: tabular-nums;
  text-align: right;
  letter-spacing: 0.02em;
}

.board-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 20px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(124, 58, 237, 0.04);
}

.board-footer-link {
  font-size: 11px;
  font-weight: 600;
  color: rgba(167, 139, 250, 0.7);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.board-footer-link:hover { color: #A78BFA; }
.board-footer-link.gr { color: rgba(0, 212, 170, 0.6); }
.board-footer-link.gr:hover { color: #00d4aa; }

/* Flip-char tiles (split-flap board characters).
   backface-visibility/preserve-3d/will-change promote each character to its
   own GPU compositing layer — fine transiently during a flip, but leaving
   them on permanently (on 20-30 adjacent 9px-wide layers per row) produces
   visible seams between letters at rest: "PIENAS" paints as "PI ENAS".
   Only the actively-flipping tile needs the 3D treatment (see .fc.flipping
   in landing.js flipChar()); at rest a .fc is just flat inline text. */
.fc {
  /* No min-width: a fixed floor here padded narrow glyphs (I, l, .,) out to
     the same box as wide ones (M, W) — with each character isolated in its
     own inline-block (required for the flip transform, but it also blocks
     normal kerning), that padding showed up as a visible gap flanking every
     "I": "PIENAS" painted as "PI ENAS", "MAXIMA" as "MAXI MA". Natural glyph
     width reads correctly; the flip animation doesn't need a fixed cell. */
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1;
  color: #e2d9f3;
  position: relative;
  white-space: pre; /* a lone space char in its own span collapses to 0 width otherwise */
}
.fc.flipping {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.board-row-name .fc  { font-size: 12px; }
.board-row-store .fc { font-size: 11px; color: rgba(167,139,250,0.75); }
.board-row-price .fc { font-size: 14px; color: #f59e0b; font-weight: 700; }

/* Demo button below board */
.board-demo-wrap { text-align: center; }

.board-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 10px 22px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s;
}

.board-demo-btn:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
  color: #A78BFA;
}

/* Flag column (desktop only) */
.board-row-flag {
  display: none;
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

/* Clickable board rows */
.board-row.clickable {
  cursor: pointer;
  transition: background 0.18s ease;
}
.board-row.clickable:hover {
  background: rgba(124, 58, 237, 0.09);
}
.board-row.clickable:hover .board-row-name .fc { color: #DDD0FF; }
.board-row.clickable::after {
  content: '→';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: rgba(124, 58, 237, 0);
  transition: color 0.15s, right 0.15s;
}
.board-row.clickable:hover::after {
  color: rgba(124, 58, 237, 0.6);
  right: 8px;
}

/* Desktop (1024px): wider board */
@media (min-width: 1024px) {
  .airport-board { max-width: 940px; }

  .board-cols-header,
  .board-row {
    grid-template-columns: 22px minmax(0, 1fr) 162px 118px;
    padding: 12px 26px;
  }
  .board-cols-header { padding: 7px 26px; }
  .board-row-flag { display: block; }
  .board-row-name .fc  { font-size: 13px; }
  .board-row-store .fc { font-size: 12px; }
  .board-row-price .fc { font-size: 15px; }
  .board-row-price { font-size: 15px; }
  .board-row-store { font-size: 12px; }
}

/* Large desktop (1440px+): much wider, more room */
@media (min-width: 1440px) {
  .airport-board { max-width: 1160px; }

  .board-cols-header,
  .board-row {
    grid-template-columns: 22px minmax(0, 1fr) 210px 135px;
    padding: 13px 32px;
  }
  .board-cols-header { padding: 8px 32px; }
  .board-row-name .fc  { font-size: 14px; }
  .board-row-store .fc { font-size: 13px; color: rgba(167,139,250,0.85); }
  .board-row-price .fc { font-size: 17px; }
  .board-row-price { font-size: 17px; }
  .board-row-store { font-size: 13px; }
}

@media (max-width: 768px) {
  .airport-board { max-width: 100%; }
  .p-container { display: none; }

  /* Mobile board: 2-column layout — hide store, compact name+store stacked */
  .board-cols-header,
  .board-row {
    grid-template-columns: minmax(0, 1fr) 80px;
    padding: 10px 16px;
  }
  .board-cols-header span:nth-child(3) { display: none; } /* hide store header */
  .board-row-store { display: none; }
  .board-row-name {
    font-size: 12px;
    line-height: 1.3;
  }
  .board-row-price { font-size: 13px; }
  .board-row-name .fc { font-size: 12px; }
  .board-row-price .fc { font-size: 13px; }
}

.hero-text { text-align: center; max-width: 700px; }
.hero-title { font-family: 'Source Serif 4', serif; font-size: 2.5rem; font-weight: 600; line-height: 1.15; margin-bottom: 20px; }
.hero-sub { color: var(--text-secondary); font-size: 1.15rem; margin-bottom: 28px; line-height: 1.7; }

.stat-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.stat-pill { background: var(--purple-glow); border: 1px solid rgba(167, 139, 250, 0.2); border-radius: 100px; padding: 6px 16px; font-size: 13px; color: var(--purple-accent); font-weight: 500; }

/* ── Hero Search ────────────────────────────────────── */
.hero-search-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-search-box:focus-within {
  border-color: rgba(124,58,237,0.6);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12), 0 8px 32px rgba(124,58,237,0.15);
}

.hero-search-country {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  height: 54px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-primary);
  user-select: none;
  flex-shrink: 0;
  transition: background 0.15s;
}
.hero-search-country:hover { background: rgba(255,255,255,0.05); }

.hero-search-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #F8F8FF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 0 16px;
  height: 54px;
  min-width: 0;
}
.hero-search-input::placeholder { color: var(--text-muted); }

.hero-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: var(--accent-primary);
  border: none;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.hero-search-btn:hover {
  opacity: .9;
}

.hero-search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 6px;
  min-width: 160px;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-search-country-opt {
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: background 0.15s;
}
.hero-search-country-opt:hover { background: var(--border-subtle); color: var(--text-primary); }

.hero-search-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.hero-hint-chip {
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(167,139,250,0.8);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.hero-hint-chip:hover {
  background: rgba(124,58,237,0.25);
  border-color: rgba(124,58,237,0.4);
  color: #A78BFA;
}

.hero-results-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(18, 10, 40, 0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 14px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.1);
}

.hero-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  cursor: pointer;
  transition: background 0.12s;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.hero-result-row:last-of-type { border-bottom: none; }
.hero-result-row:hover, .hero-result-row.active {
  background: rgba(124,58,237,0.12);
}

.hero-result-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-result-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hero-result-chain {
  font-size: 11px;
  font-weight: 600;
  color: rgba(167,139,250,0.6);
  font-family: 'Inter', sans-serif;
}

.hero-result-price {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #f59e0b;
  font-variant-numeric: tabular-nums;
}

.hero-result-all {
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(167,139,250,0.7);
  cursor: pointer;
  text-align: center;
  background: rgba(124,58,237,0.05);
  transition: background 0.12s, color 0.12s;
}
.hero-result-all:hover, .hero-result-all.active {
  background: rgba(124,58,237,0.15);
  color: #A78BFA;
}

.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); opacity: 0.6; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

@media (max-width: 768px) {
  .hero { padding: 60px 20px 40px; gap: 36px; }
  .p-container { width: 220px; height: 220px; }
  .p-letter { font-size: 10rem; }
  .hero-title { font-size: 2rem; }
  .hero-portals { flex-direction: column; align-items: center; }
  .portal-card { min-width: 260px; max-width: 100%; }
}

/* ── Sections ───────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 960px; margin: 0 auto; padding: 100px 40px; }
.section-title { font-family: 'Source Serif 4', serif; font-size: 1.75rem; font-weight: 600; text-align: center; margin-bottom: 64px; line-height: 1.2; }

/* ── Deals Section ──────────────────────────────────── */
.deals-section .section-inner { padding-top: 60px; padding-bottom: 60px; max-width: 1100px; }

.deals-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.deals-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deals-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
  animation: pulse 2s infinite;
}

.deals-title {
  font-family: 'Source Serif 4', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.deals-country-tabs {
  display: flex;
  gap: 8px;
}

.deals-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.deals-tab.active {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.4);
  color: #A78BFA;
}
.deals-tab:hover:not(.active) {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1024px) { .deals-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .deals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .deals-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.deal-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.deal-card:hover {
  border-color: rgba(124,58,237,0.35);
  background: rgba(124,58,237,0.07);
  transform: translateY(-2px);
}

.deal-card.skeleton {
  min-height: 110px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  cursor: default;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.deal-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #10B981;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.deal-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  padding-right: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deal-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.deal-now {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #10B981;
  font-variant-numeric: tabular-nums;
}

.deal-was {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.deal-chain {
  font-size: 11px;
  font-weight: 600;
  color: rgba(167,139,250,0.6);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section-inner { padding: 60px 20px; }
  .section-title { font-size: 1.7rem; margin-bottom: 40px; }
}

/* ── Manifesto ──────────────────────────────────────── */
.manifesto-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 48px;
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
  display: flex;
  gap: 36px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.manifesto-card.visible { opacity: 1; transform: translateX(0); }

.story-icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
  filter: grayscale(20%);
}

.story-body { flex: 1; min-width: 0; }

.story-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(167,139,250,0.5);
  margin-bottom: 10px;
}

.story-hook {
  font-family: 'Source Serif 4', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.story-text { color: var(--text-secondary); line-height: 1.85; font-size: 0.95rem; }
.story-toggle { color: rgba(167,139,250,0.7); font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: color 0.15s; }
.story-toggle:hover { color: #A78BFA; }

@media (max-width: 768px) {
  .manifesto-card { flex-direction: column; padding: 28px; gap: 16px; }
  .story-icon { font-size: 2.5rem; }
  .story-hook { font-size: 1.1rem; }
}

/* ── Wow Section ────────────────────────────────────── */
.wow-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 80px 40px;
  text-align: center;
}

.wow-text { max-width: 800px; margin: 0 auto; font-size: 1.15rem; line-height: 1.9; color: var(--text-primary); }

.wow-final {
  display: block;
  font-size: 1.8rem;
  color: var(--text-primary);
  font-weight: 600;
  font-family: 'Source Serif 4', serif;
  margin-top: 2rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .wow-section { padding: 50px 20px; }
  .wow-text { font-size: 1rem; }
  .wow-final { font-size: 1.4rem; }
}

/* ── How It Works — Phone Demo ────────────────────────── */
.how-demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.how-phone-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 240px;
  height: 490px;
  background: #0d0019;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  padding: 16px 0 0;
}

.phone-island {
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 10;
}

.phone-screen {
  position: relative;
  height: calc(100% - 52px);
  overflow: hidden;
  background: #0a0015;
}

.ps {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.ps.active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.ps-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

.ps-bar svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }
.ps-logo-sm { font-weight: 700; font-size: 10px; letter-spacing: 0.1em; color: var(--accent-primary); flex: 1; }

.ps-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 6px;
}

.ps-search-box svg { width: 13px; height: 13px; fill: none; stroke: rgba(167,139,250,0.7); stroke-width: 2; flex-shrink: 0; }
.ps-input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 12px; color: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
  caret-color: #A78BFA; min-width: 0;
}
.ps-input::placeholder { color: rgba(255,255,255,0.35); }
.ps-input::-webkit-search-cancel-button { display: none; }
.ps-hint { font-size: 9px; color: rgba(255,255,255,0.3); }

.ps-ctry-wrap { display: flex; gap: 3px; margin-left: auto; }
.ps-ctry {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px; padding: 2px 6px; font-size: 8px; font-weight: 700;
  color: rgba(255,255,255,0.45); cursor: pointer; font-family: inherit;
  transition: all 0.15s;
}
.ps-ctry.active { background: rgba(124,58,237,0.35); border-color: rgba(167,139,250,0.5); color: #A78BFA; }

.ps-stores-preview { display: flex; flex-wrap: wrap; gap: 6px; }
.ps-store-chip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 4px 8px; font-size: 9px; color: rgba(255,255,255,0.5); }

.ps-result-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0; flex-wrap: wrap;
  cursor: pointer;
  transition: background 0.1s;
  position: relative;
}
.ps-result-row:hover { background: rgba(255,255,255,0.04); border-radius: 6px; }
.ps-result-row.best { background: rgba(124,58,237,0.1); border-radius: 8px; border-bottom-color: transparent; }
.ps-result-store { font-size: 9px; font-weight: 700; color: rgba(167,139,250,0.8); }
.ps-result-price { font-size: 13px; font-weight: 700; color: #f59e0b; font-family: 'Inter', sans-serif; }
.ps-result-row.best .ps-result-price { color: #A78BFA; }
.ps-best-badge { width: 100%; font-size: 8px; color: #A78BFA; font-weight: 600; margin-top: 1px; padding-left: 0; }

.ps-winner-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; }
.ps-winner-store { font-size: 11px; font-weight: 700; color: rgba(167,139,250,0.7); text-transform: uppercase; letter-spacing: 0.1em; }
.ps-winner-price { font-family: 'Inter', sans-serif; font-size: 40px; font-weight: 700; color: #A78BFA; line-height: 1; }
.ps-winner-price span { font-size: 18px; opacity: 0.7; }
.ps-winner-name { font-size: 10px; color: rgba(255,255,255,0.5); }
.ps-savings { font-size: 10px; background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.25); color: #00d4aa; border-radius: 20px; padding: 3px 10px; }
.ps-history-chart { display: flex; align-items: flex-end; gap: 3px; height: 38px; margin-top: 8px; }
.sc-bar { flex: 1; background: rgba(124,58,237,0.2); border-radius: 2px 2px 0 0; }
.sc-bar.active { background: #7C3AED; }
.ps-history-label { font-size: 8px; color: rgba(255,255,255,0.2); }

/* ── PS-3 Store prices list ─────────────────────────── */
.ps3-loading { padding: 24px 16px; color: rgba(255,255,255,0.25); font-size: 11px; text-align: center; }
#ps3Prices { overflow-y: auto; flex: 1; }
.ps3-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 8px;
}
.ps3-row-best { background: rgba(124,58,237,0.12); border-bottom-color: rgba(124,58,237,0.15); }
.ps3-store {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 4px;
  flex: 1; min-width: 0;
}
.ps3-cheap-badge {
  color: #A78BFA; font-size: 10px;
}
.ps3-price-wrap { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.ps3-price {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700; color: #fff;
}
.ps3-row-best .ps3-price { color: #A78BFA; }
.ps3-old {
  font-size: 10px; color: rgba(255,255,255,0.25);
  text-decoration: line-through;
}
.ps3-diff { font-size: 9px; color: rgba(255,255,255,0.3); }

/* result row layout fix */
.ps-result-name-col { flex: 1; min-width: 0; font-size: 10px; color: rgba(255,255,255,0.75); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ps-result-right { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; gap: 1px; }

.how-steps { display: flex; flex-direction: column; }
.how-step { padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.how-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(124,58,237,0.1);
  line-height: 1;
  margin-bottom: 14px;
  user-select: none;
  transition: color 0.4s;
}

.how-step.active-step .step-num { color: rgba(124,58,237,0.35); }
.step-title { font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; color: rgba(255,255,255,0.9); }
.step-desc { font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary); max-width: 340px; }

.how-step-try { padding: 40px 0 20px; }
.step-try-label { font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.btn-try-phone {
  padding: 14px 28px;
  background: var(--accent-primary-glow);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-try-phone:hover {
  opacity: .85;
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.flow-dots { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 40px; }
.flow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-gradient); animation: flowMove 2s ease-in-out infinite; }
.flow-dot:nth-child(2) { animation-delay: 0.3s; } .flow-dot:nth-child(3) { animation-delay: 0.6s; }
.flow-dot:nth-child(4) { animation-delay: 0.9s; } .flow-dot:nth-child(5) { animation-delay: 1.2s; }
@keyframes flowMove { 0%, 100% { transform: translateX(-8px); opacity: 0.3; } 50% { transform: translateX(8px); opacity: 1; } }

.platform-cards { display: flex; gap: 24px; }
.platform-card { flex: 1; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 28px; }

.platform-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.platform-label.live { background: rgba(0, 212, 170, 0.12); border: 1px solid rgba(0, 212, 170, 0.25); color: var(--accent-secondary); }
.platform-label.soon { background: var(--purple-glow); border: 1px solid rgba(167, 139, 250, 0.3); color: var(--purple-accent); }
.platform-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 14px; }

.feature-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 100px; padding: 5px 12px; font-size: 12px; color: var(--text-secondary); }

@media (max-width: 768px) {
  .how-demo-layout { grid-template-columns: 1fr; gap: 32px; }
  .how-phone-sticky { position: relative; top: 0; }
  .phone-frame { width: 200px; height: 410px; }
  .how-step { padding: 24px 16px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); margin-bottom: 10px; }
  .how-step.active-step { border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.05); }
  .step-num { font-size: 28px; }
  .platform-cards { flex-direction: column; }
}

/* ── Map Section ────────────────────────────────────── */
.map-section-wrap { display: flex; gap: 48px; align-items: flex-start; }
.country-list { width: 300px; flex-shrink: 0; }

.country-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; margin-bottom: 6px; transition: background 0.2s; }
.country-row:hover { background: var(--glass-bg); }
.country-row-flag { font-size: 20px; flex-shrink: 0; }
.country-row-name { font-weight: 600; font-size: .9rem; flex: 1; }

.country-row-status { font-size: 10px; padding: 3px 8px; border-radius: 100px; font-weight: 600; flex-shrink: 0; }
.status-live { background: rgba(0, 212, 170, 0.12); color: var(--accent-secondary); border: 1px solid rgba(0, 212, 170, 0.2); }
.status-soon { background: var(--purple-glow); color: var(--purple-accent); border: 1px solid rgba(167, 139, 250, 0.2); }

.country-row-btn { padding: 5px 12px; background: var(--accent-gradient); border-radius: 8px; color: #fff; font-size: 11px; font-weight: 700; text-decoration: none; flex-shrink: 0; }
.country-divider { border: none; border-top: 1px solid var(--border-subtle); margin: 10px 0; }

.map-wrap { flex: 1; min-width: 0; }

.dot-map-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: rgba(5,2,10,0.5);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.dot-map-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(167,139,250,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
}

.europe-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.europe-land {
  fill: rgba(124,58,237,0.08);
  stroke: rgba(124,58,237,0.25);
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.pin-dot { width: 14px; height: 14px; border-radius: 50%; position: relative; z-index: 2; }
.map-pin.live.lt .pin-dot { background: #7C3AED; box-shadow: 0 0 20px rgba(124,58,237,0.8); }
.map-pin.live.gr .pin-dot { background: #00d4aa; box-shadow: 0 0 20px rgba(0,212,170,0.8); }

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);

  z-index: 1;
}

.map-pin.live.lt .pin-pulse { background: rgba(124,58,237,0.5); }
.map-pin.live.gr .pin-pulse { background: rgba(0,212,170,0.5); animation-delay: 0.9s; }

@keyframes pinPulse {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(4.5); opacity: 0; }
}

.pin-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.65); padding: 3px 8px; border-radius: 5px; white-space: nowrap; backdrop-filter: blur(4px); font-family: 'Inter', sans-serif; }
.pin-dot-sm { width: 8px; height: 8px; border-radius: 50%; background: rgba(167,139,250,0.2); border: 1px solid rgba(167,139,250,0.3); }
.pin-label-sm { font-size: 9px; color: rgba(255,255,255,0.3); white-space: nowrap; font-family: 'Inter', sans-serif; }

@media (max-width: 768px) {
  .map-section-wrap { flex-direction: column; }
  .country-list { width: 100%; }
  .map-wrap { display: none; } /* SVG map hidden on mobile — country list is sufficient */
}

/* ── Numbers/Stats ─────────────────────────────────── */
.numbers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.number-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 36px; text-align: center; transition: border-color 0.3s; }
.number-card:hover { border-color: rgba(167, 139, 250, 0.3); box-shadow: 0 0 30px rgba(167, 139, 250, 0.08); }

.number-big {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.number-label { color: var(--text-secondary); font-size: .9rem; font-weight: 500; }
@media (max-width: 768px) { .numbers-grid { grid-template-columns: 1fr; } .number-big { font-size: 2.8rem; } }

/* ── Roadmap ────────────────────────────────────────── */
.roadmap-timeline { position: relative; padding-left: 52px; }
.roadmap-timeline::before { content: ''; position: absolute; left: 16px; top: 8px; bottom: 8px; width: 2px; background: var(--border-subtle); }

.milestone { position: relative; margin-bottom: 36px; }
.milestone:last-child { margin-bottom: 0; }
.milestone-dot { position: absolute; left: -44px; top: 3px; width: 18px; height: 18px; border-radius: 50%; border: 2px solid; }

.dot-done { background: #00d4aa; border-color: #00d4aa; box-shadow: 0 0 14px rgba(0,212,170,0.5); }
.dot-progress { background: var(--accent-primary); border-color: var(--accent-primary); }
@keyframes progressPulse { 0%, 100% { box-shadow: 0 0 10px rgba(124,58,237,0.5); } 50% { box-shadow: 0 0 22px rgba(124,58,237,0.9); } }
.dot-future { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }
.dot-vision { background: var(--border-hover); border: none; }

.milestone-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.milestone-period { font-size: 11px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.milestone-now-badge { font-size: 10px; font-weight: 700; background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.4); color: #A78BFA; border-radius: 100px; padding: 2px 9px; letter-spacing: 0.05em; text-transform: uppercase; }

.milestone-title { font-family: 'Source Serif 4', serif; font-weight: 600; font-size: 1.1rem; margin-bottom: 10px; color: rgba(255,255,255,0.88); }
.milestone.done .milestone-title { color: rgba(255,255,255,0.4); }
.milestone.current .milestone-title { color: #fff; font-size: 1.05rem; }

.milestone-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.milestone-chip { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 100px; padding: 4px 11px; font-size: 11px; color: var(--text-muted); }
.done-chip { color: rgba(0,212,170,0.55); border-color: rgba(0,212,170,0.12); background: rgba(0,212,170,0.04); }
.milestone.current .milestone-chip { border-color: rgba(124,58,237,0.22); color: rgba(167,139,250,0.75); background: rgba(124,58,237,0.06); }

/* ── Sustainability/Biz ─────────────────────────────── */
.biz-cards { display: flex; gap: 24px; }
.biz-card { flex: 1; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px; position: relative; overflow: hidden; }

.biz-card.free { border-color: rgba(0, 212, 170, 0.2); }
.biz-card.b2b { border-color: rgba(167, 139, 250, 0.2); }

.biz-accent { display: inline-block; width: 40px; height: 4px; border-radius: 2px; margin-bottom: 20px; }
.biz-card.free .biz-accent { background: var(--accent-secondary); }
.biz-card.b2b .biz-accent { background: var(--purple-accent); }

.biz-title { font-family: 'Source Serif 4', serif; font-weight: 600; font-size: 1.3rem; margin-bottom: 20px; }
.biz-list { list-style: none; margin-bottom: 24px; }

.biz-list li { padding: 8px 0; color: var(--text-secondary); font-size: .95rem; border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; gap: 10px; }
.biz-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-secondary); flex-shrink: 0; }
.biz-card.b2b .biz-list li::before { background: var(--purple-accent); }

.biz-quote { color: var(--text-muted); font-size: .85rem; font-style: italic; border-top: 1px solid var(--border-subtle); padding-top: 16px; }

.coming-soon-overlay { position: absolute; inset: 0; background: rgba(8, 3, 18, 0.5); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; border-radius: 24px; }
.coming-soon-badge { background: var(--accent-primary-glow); border: 1px solid var(--border-subtle); color: var(--accent-primary); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; padding: 10px 24px; border-radius: var(--radius-md); letter-spacing: .05em; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.3); } 50% { box-shadow: 0 0 20px 4px rgba(167, 139, 250, 0.15); } }

@media (max-width: 768px) { .biz-cards { flex-direction: column; } }

/* ── CTA & Footer ───────────────────────────────────── */
.cta-section { padding: 120px 40px; text-align: center; position: relative; z-index: 1; }
.cta-p-wrap { width: 140px; height: 140px; margin: 0 auto 48px; position: relative; display: flex; align-items: center; justify-content: center; }
.cta-p-letter { font-family: 'Source Serif 4', serif; font-size: 6rem; font-weight: 600; color: var(--accent-primary); line-height: 1; }
/* cta-p-glow removed (E1 — no atmosphere blur/pulse) */

.cta-title { font-family: 'Source Serif 4', serif; font-size: 1.9rem; font-weight: 600; margin-bottom: 16px; line-height: 1.2; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-sub { color: var(--text-secondary); margin-bottom: 36px; font-size: 1rem; }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-flag { font-size: 20px; line-height: 1; }

.cta-btn-lt {
  background: var(--accent-primary);
  box-shadow: var(--shadow);
}
.cta-btn-lt:hover { transform: translateY(-1px); opacity: .9; }

.cta-btn-gr {
  background: var(--bg-tertiary);
  box-shadow: var(--shadow);
}
.cta-btn-gr:hover { transform: translateY(-1px); opacity: .9; }

.cta-biz {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.cta-biz a { color: rgba(255,255,255,0.55); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
.cta-biz a:hover { color: rgba(255,255,255,0.8); }

/* ── Šviesi tema: landing surface override ───────────────
   Tamsūs „showcase" elementai (airport-board, telefono mockup .ps*,
   žemėlapis, dropdown'ai, founder toast) sąmoningai lieka tamsūs.
   Čia taisom tik page-surface komponentus, kurie šviesoje virsta balta-ant-balto. */
:root[data-theme="light"] .hero-search-box { background: rgba(124,58,237,0.05); border-color: rgba(124,58,237,0.28); }
:root[data-theme="light"] .hero-search-country { color: var(--text-secondary); }
:root[data-theme="light"] .hero-search-country:hover { background: rgba(124,58,237,0.06); }
:root[data-theme="light"] .hero-search-divider { background: var(--border-subtle); }
:root[data-theme="light"] .hero-search-input { color: var(--text-primary); }
:root[data-theme="light"] .hero-search-input::placeholder { color: var(--text-muted); }

:root[data-theme="light"] .deals-tab { background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.18); color: var(--text-secondary); }
:root[data-theme="light"] .deals-tab:hover:not(.active) { background: rgba(124,58,237,0.12); color: var(--text-primary); }

:root[data-theme="light"] .deal-card { background: rgba(124,58,237,0.05); border-color: rgba(124,58,237,0.14); }
:root[data-theme="light"] .deal-card:hover { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.35); }
:root[data-theme="light"] .deal-name { color: var(--text-primary); }
:root[data-theme="light"] .deal-was { color: var(--text-muted); }
:root[data-theme="light"] .deal-card.skeleton { background: linear-gradient(90deg, rgba(124,58,237,0.04) 25%, rgba(124,58,237,0.09) 50%, rgba(124,58,237,0.04) 75%); background-size: 200% 100%; }

:root[data-theme="light"] .story-hook { color: var(--text-primary); }
:root[data-theme="light"] .wow-text { color: var(--text-secondary); }

:root[data-theme="light"] .how-step { border-bottom-color: var(--border-subtle); }
:root[data-theme="light"] .step-title { color: var(--text-primary); }
:root[data-theme="light"] .step-try-label { color: var(--text-muted); }
:root[data-theme="light"] .chip { background: rgba(124,58,237,0.05); border-color: rgba(124,58,237,0.14); }

:root[data-theme="light"] .milestone-title { color: var(--text-primary); }
:root[data-theme="light"] .milestone.done .milestone-title { color: var(--text-muted); }
:root[data-theme="light"] .milestone.current .milestone-title { color: var(--accent-primary); }
:root[data-theme="light"] .milestone-chip { background: rgba(124,58,237,0.05); border-color: rgba(124,58,237,0.14); }
:root[data-theme="light"] .dot-future { background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.3); }

:root[data-theme="light"] .cta-biz { color: var(--text-muted); }
:root[data-theme="light"] .cta-biz a { color: var(--accent-primary); border-bottom-color: rgba(124,58,237,0.3); }
:root[data-theme="light"] .cta-biz a:hover { color: var(--accent-secondary); }

/* Live lenta (airport-board) — šviesoje iš juodos -> šviesi kortelė */
:root[data-theme="light"] .airport-board { background: rgba(255,255,255,0.75); border-color: rgba(124,58,237,0.16); box-shadow: 0 0 0 1px rgba(124,58,237,0.06), 0 30px 70px rgba(124,58,237,0.12), inset 0 1px 0 rgba(255,255,255,0.6); }
:root[data-theme="light"] .board-header { background: rgba(124,58,237,0.05); border-bottom-color: var(--border-subtle); }
:root[data-theme="light"] .board-footer { background: rgba(124,58,237,0.04); border-top-color: var(--border-subtle); }
:root[data-theme="light"] .board-live-label,
:root[data-theme="light"] .board-ts,
:root[data-theme="light"] .board-cols-header span { color: var(--text-muted); }
:root[data-theme="light"] .board-cols-header,
:root[data-theme="light"] .board-row { border-bottom-color: var(--border-subtle); }
:root[data-theme="light"] .board-row-name { color: var(--text-primary); }
:root[data-theme="light"] .board-row-store { color: var(--text-muted); }
:root[data-theme="light"] .fc { color: #2a1f4a; }
:root[data-theme="light"] .board-row-store .fc { color: rgba(124,58,237,0.85); }
:root[data-theme="light"] .board-demo-btn { background: rgba(124,58,237,0.05); border-color: rgba(124,58,237,0.16); color: var(--text-secondary); }

/* Žemėlapio konteineris — šviesoje iš juodos -> šviesi kortelė */
:root[data-theme="light"] .dot-map-container { background: rgba(124,58,237,0.04); border-color: var(--border-subtle); }

/* Telefono mockup paliekamas tamsus (įrenginio ekranas) — intencionalu */

@media (max-width: 768px) {
  :root[data-theme="light"] .how-step { border-color: var(--border-subtle); background: rgba(124,58,237,0.04); }
}

@media (max-width: 768px) {
  .cta-section { padding: 70px 20px; }
  .cta-title { font-size: 1.6rem; }
  .cta-btn { padding: 14px 28px; font-size: 15px; }
}

footer { border-top: 1px solid var(--border-subtle); padding: 32px 40px; text-align: center; position: relative; z-index: 1; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 14px; list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { color: var(--text-muted); font-size: 12px; }
