/* ═══════════════════════════════════════════════════════
   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.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
}
#founder-note.fn-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.fn-card {
  background: linear-gradient(160deg, rgba(30,15,60,0.97) 0%, rgba(15,8,32,0.97) 100%);
  border: 1px solid rgba(167,139,250,0.25);
  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: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0.02em;
  flex-shrink: 0; padding-top: 2px;
}
.fn-body { flex: 1; min-width: 0; }
.fn-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem; line-height: 1.6;
  color: rgba(255,255,255,0.65);
  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: 'Space Grotesk', 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::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #C084FC 0deg,
    #818CF8 51deg,
    #38BDF8 102deg,
    #34D399 153deg,
    #F472B6 204deg,
    #FB923C 255deg,
    #A78BFA 306deg,
    #C084FC 360deg
  );
  filter: blur(65px);
  animation: auraRotate 6s linear infinite;
  will-change: transform;
  opacity: 0.9;
}

.intro-aura::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    #A78BFA 0deg,
    #F9A8D4 90deg,
    #67E8F9 180deg,
    #86EFAC 270deg,
    #A78BFA 360deg
  );
  filter: blur(85px);
  animation: auraRotate 9s linear infinite reverse;
  opacity: 0.65;
  will-change: transform;
}

@keyframes auraRotate {
  to { transform: rotate(360deg); }
}

/* 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: 'Space Grotesk', sans-serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 3;
  background: linear-gradient(
    160deg,
    #F5F3FF 0%,
    #EDE9FE 20%,
    #C4B5FD 50%,
    #8B5CF6 80%,
    #5B21B6 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 0 60px rgba(139, 92, 246, 0.7))
    drop-shadow(0 4px 0 #5B21B6)
    drop-shadow(0 14px 40px rgba(0, 0, 0, 0.55));
  opacity: 0;
  transform: scale(0.88) translateY(14px);
  will-change: transform, opacity;
}

.intro-p-letter.visible {
  animation:
    introPEntry 0.95s cubic-bezier(0.22, 1.0, 0.36, 1.0) forwards,
    introFloat 4.5s ease-in-out 1s infinite;
}

@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;
}

.portal-card {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 32px 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
}

.portal-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-primary);
  box-shadow: 0 30px 60px rgba(255, 45, 120, 0.25);
  background: rgba(255, 45, 120, 0.05);
}

.portal-card.portal-gr:hover {
  border-color: var(--accent-secondary);
  box-shadow: 0 30px 60px rgba(0, 234, 208, 0.25);
  background: rgba(0, 234, 208, 0.05);
}

.portal-card.detected { animation: portalPulse 2s ease-in-out infinite; }
@keyframes portalPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 120, 0.4); transform: scale(1); } 50% { box-shadow: 0 0 40px 10px rgba(255, 45, 120, 0.2); transform: scale(1.03); } }

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

.portal-deal {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  text-align: left;
}
.portal-deal-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.portal-deal-price {
  font-family: 'Space Grotesk', 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: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  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: 'Space Grotesk', 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);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

/* ── Airport Board ─────────────────────────────────── */
.airport-board {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: rgba(4, 2, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  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 rgba(255, 255, 255, 0.05);
  background: rgba(124, 58, 237, 0.05);
}

.board-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00d4aa;
  flex-shrink: 0;
  animation: boardPulse 1.6s ease-in-out infinite;
}

@keyframes boardPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(0, 212, 170, 0); }
}

.board-live-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.board-ts {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-family: 'Space Grotesk', 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 rgba(255, 255, 255, 0.04);
}

@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: rgba(255, 255, 255, 0.18);
}

.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 rgba(255, 255, 255, 0.03);
  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: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
  padding-right: 8px;
}

.board-row-store {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  overflow: hidden;
}

.board-row-price {
  font-family: 'Space Grotesk', 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 rgba(255, 255, 255, 0.05);
  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: 'Space Grotesk', 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) */
.fc {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  line-height: 1;
  min-width: 0.65em;
  color: #e2d9f3;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}

.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 rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  padding: 10px 22px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Space Grotesk', 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: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 700; 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: rgba(255,255,255,0.7);
  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: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 0 16px;
  height: 54px;
  min-width: 0;
}
.hero-search-input::placeholder { color: rgba(255,255,255,0.28); }

.hero-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
  border: none;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}
.hero-search-btn:hover {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}

.hero-search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #1a0a2e;
  border: 1px solid rgba(255,255,255,0.12);
  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: rgba(255,255,255,0.8);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: background 0.15s;
}
.hero-search-country-opt:hover { background: rgba(255,255,255,0.08); color: #fff; }

.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: 'Space Grotesk', 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 rgba(255,255,255,0.04);
}
.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: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  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: 'Space Grotesk', sans-serif;
}

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

.hero-result-all {
  padding: 10px 16px;
  font-family: 'Space Grotesk', 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(--purple-accent); opacity: 0.6; animation: scrollBounce 2.5s ease-in-out infinite; }
@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: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; 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: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

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

.deals-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.5);
  font-family: 'Space Grotesk', 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: rgba(255,255,255,0.8);
}

.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 rgba(255,255,255,0.07);
  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: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.deal-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  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: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #10B981;
  font-variant-numeric: tabular-nums;
}

.deal-was {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  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: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
  border-top: 1px solid rgba(167, 139, 250, 0.15);
  border-bottom: 1px solid rgba(167, 139, 250, 0.15);
  padding: 80px 40px;
  text-align: center;
}

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

.wow-final {
  display: block;
  font-size: 1.8rem;
  color: var(--purple-accent);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-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: 'Space Grotesk', 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: 800; font-size: 10px; letter-spacing: 0.1em; background: linear-gradient(135deg,#ff2d78,#00d4aa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; 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: 'Space Mono', monospace;
  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: 'Space Mono', monospace; }
.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: 'Space Mono', monospace; 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: 'Space Grotesk', 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: 'Space Mono', monospace;
  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: 'Space Mono', monospace;
  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: 'Space Grotesk', 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: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(167,139,250,0.1) 100%);
  border: 1px solid rgba(167,139,250,0.4);
  border-radius: 12px;
  color: #A78BFA;
  font-family: 'Space Grotesk', 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 {
  background: linear-gradient(135deg, rgba(124,58,237,0.35) 0%, rgba(167,139,250,0.2) 100%);
  border-color: rgba(167,139,250,0.7);
  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: 'Space Grotesk', 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%);
  animation: pinPulse 2.2s ease-out infinite;
  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: 'Space Grotesk', 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: 'Space Grotesk', 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: 'Space Grotesk', 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: linear-gradient(to bottom, #00d4aa 0%, #7C3AED 22%, rgba(124,58,237,0.25) 55%, rgba(255,255,255,0.06) 100%); }

.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: #7C3AED; border-color: #A78BFA; box-shadow: 0 0 14px rgba(124,58,237,0.7); animation: progressPulse 2s ease-in-out infinite; }
@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: linear-gradient(135deg,#ff2d78,#00d4aa); 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: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 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: 'Space Grotesk', sans-serif; font-weight: 700; 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: rgba(167, 139, 250, 0.2); border: 1px solid rgba(167, 139, 250, 0.4); color: var(--purple-accent); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; padding: 10px 24px; border-radius: 12px; letter-spacing: .05em; animation: badgePulse 2.5s ease-in-out infinite; }
@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: 'Space Grotesk', sans-serif; font-size: 7rem; font-weight: 700; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.cta-p-glow { position: absolute; width: 180px; height: 180px; background: radial-gradient(circle, var(--accent-primary-glow) 0%, transparent 70%); filter: blur(30px); animation: glowPulse 4s ease-in-out infinite; }

.cta-title { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; 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: 'Space Grotesk', 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: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}
.cta-btn-lt:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(124, 58, 237, 0.5); }

.cta-btn-gr {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.35);
}
.cta-btn-gr:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(14, 165, 233, 0.45); }

.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); }

@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; }
