/* ═══════════════════════════════════════
   WÖRLD — styles.css v2
   Clean. Sharp. No fuzz.
   ═══════════════════════════════════════ */

:root {
  --bg:      #0E0F1A;
  --navy:    #111323;
  --card:    rgba(255,255,255,.04);
  --border:  rgba(255,255,255,.08);
  --blue:    #3B5BDB;
  --blue-l:  #4C6EF5;
  --green:   #12B886;
  --gold:    #F59F00;
  --gold-l:  #FCC419;
  --coral:   #F03E3E;
  --white:   #fff;
  --muted:   rgba(255,255,255,.5);
  --r:       14px;
  --r-lg:    22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Cabinet Grotesk', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 32px;
  transition: background .3s, border-color .3s;
}
nav.scrolled {
  background: rgba(14,15,26,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo-img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 13px; font-weight: 800; color: var(--white);
  background: var(--blue); border-radius: 100px;
  padding: 9px 22px; text-decoration: none; transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-l); transform: translateY(-1px); }
@media(max-width:700px){ .nav-links{display:none;} }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
@media(max-width:600px){ .container{padding:0 20px;} }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 32px 80px; text-align: center;
  /* CLEAN background — sharp, no blur, no noise */
  background: radial-gradient(ellipse 100% 70% at 20% 50%, rgba(59,91,219,.18) 0%, transparent 60%),
              radial-gradient(ellipse 80% 60% at 85% 30%, rgba(18,184,134,.1) 0%, transparent 55%),
              radial-gradient(ellipse 60% 80% at 50% 100%, rgba(245,159,0,.07) 0%, transparent 55%),
              var(--bg);
}

/* Star field — crisp dots, no blur */
.hero-stars {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
/* Stars are injected via JS as crisp box-shadow dots */

/* Sharp accent glows — large but not blurry, just low-opacity colour pools */
.hero-glow-left {
  position: absolute; top: -10%; left: -5%; width: 55%; height: 70%;
  background: radial-gradient(ellipse, rgba(59,91,219,.14) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-glow-right {
  position: absolute; top: 0; right: -5%; width: 45%; height: 60%;
  background: radial-gradient(ellipse, rgba(18,184,134,.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* Floating country tags */
.float-tags {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  display: flex; align-items: center; justify-content: center;
}
.ftag {
  position: absolute;
  transform: translate(var(--tx,0), var(--ty,0));
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: rgba(245,200,66,.55);
  animation: tagPulse 8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes tagPulse {
  0%,100%{opacity:0;transform:translate(var(--tx),calc(var(--ty) + 8px));}
  30%,70%{opacity:1;transform:translate(var(--tx),var(--ty));}
}
@media(max-width:1200px){ .float-tags{display:none;} }

.hero-inner {
  position: relative; z-index: 1;
  max-width: 760px; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-l);
  background: rgba(59,91,219,.12);
  border: 1px solid rgba(59,91,219,.28);
  border-radius: 100px; padding: 8px 20px; margin-bottom: 36px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  flex-shrink: 0; animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.hero-logo-wrap { margin-bottom: 24px; }
.hero-logo {
  height: clamp(50px, 9vw, 82px); width: auto; display: inline-block;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .1s both;
}

.hero-headline {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 7vw, 72px); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.0; margin-bottom: 12px;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .2s both;
}
.hero-sub {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 3vw, 28px);
  font-style: italic; color: rgba(255,255,255,.45);
  margin-bottom: 24px;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .28s both;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 17px); color: var(--muted); line-height: 1.8;
  max-width: 580px; margin: 0 auto 36px;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .36s both;
}
.hero-desc strong { color: var(--white); }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── COUNTDOWN ── */
.countdown-wrap {
  margin-bottom: 36px;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .44s both;
}
.countdown-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 14px;
}
.countdown-row {
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.cd-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 16px 20px; min-width: 78px;
}
.cd-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 5vw, 42px); font-weight: 900;
  color: var(--blue-l); line-height: 1; letter-spacing: -.02em;
  display: block;
}
.cd-lbl {
  font-size: 10px; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.28); margin-top: 4px;
}
.cd-sep {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px; font-weight: 900;
  color: rgba(255,255,255,.15); line-height: 1; margin-bottom: 20px;
}
@media(max-width:500px){
  .cd-block { padding: 12px 14px; min-width: 62px; }
  .cd-sep { font-size: 22px; }
}

/* ── HERO BUTTONS ── */
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .52s both;
}
.btn-expo-go, .btn-vote-hero {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px; font-weight: 800;
  padding: 14px 26px; border-radius: 100px;
  text-decoration: none; transition: all .2s;
}
.btn-expo-go {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 24px rgba(59,91,219,.45);
}
.btn-expo-go:hover { background: var(--blue-l); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,91,219,.55); }
.btn-vote-hero {
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-vote-hero:hover { background: rgba(255,255,255,.12); color: var(--white); transform: translateY(-2px); }


/* ── HERO STATS ── */
.hero-stats {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .42s both;
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; background: rgba(255,255,255,.025);
}
.hstat {
  text-align: center; padding: 18px 28px;
  border-right: 1px solid var(--border);
  flex: 1; min-width: 110px;
}
.hstat:last-child { border-right: none; }
.hstat-n {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 3.5vw, 32px); font-weight: 900;
  color: var(--white); line-height: 1; letter-spacing: -.02em;
}
.hstat-l {
  display: block;
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em; margin-top: 5px;
  white-space: nowrap;
}
@media(max-width:540px){
  .hstat { padding: 14px 16px; }
  .hstat-l { font-size: 9px; }
}

.hero-fine {
  font-size: 12px; color: rgba(255,255,255,.25); letter-spacing: .03em;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .60s both;
}

/* Hero globe decoration */
.hero-globe-deco {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 380px; opacity: .08; pointer-events: none; z-index: 0;
  animation: slowSpin 40s linear infinite;
}
.hero-globe-img { width: 100%; height: auto; }
@keyframes slowSpin { from{transform:translateY(-50%) rotate(0)} to{transform:translateY(-50%) rotate(360deg)} }
@media(max-width:900px){ .hero-globe-deco{display:none;} }

.scroll-nudge {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 20px; color: rgba(255,255,255,.2);
  animation: nudge 2s ease-in-out infinite;
}
@keyframes nudge { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--navy); overflow: hidden; padding: 13px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ticker {
  display: flex; gap: 36px; white-space: nowrap; width: max-content;
  animation: tick 30s linear infinite;
}
.ticker span { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .04em; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-wrap:hover .ticker { animation-play-state: paused; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-dark { background: var(--navy); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media(max-width:768px){ .section{padding:64px 0;} }

.stag {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue-l); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.stag::after { content:''; flex: 0 0 22px; height: 1px; background: var(--blue-l); opacity: .4; }
.stitle {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 5vw, 50px); font-weight: 900;
  letter-spacing: -.022em; line-height: 1.06; margin-bottom: 14px;
}
.ssub {
  font-size: 17px; color: var(--muted); line-height: 1.75;
  max-width: 560px; margin-bottom: 48px;
}

/* ── CARDS ── */
.g3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 30px; transition: all .22s;
  position: relative; overflow: hidden;
}
.card:hover { border-color: rgba(59,91,219,.35); background: rgba(59,91,219,.07); transform: translateY(-3px); }
.card-num {
  font-family: 'Unbounded', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; color: rgba(255,255,255,.2); margin-bottom: 16px;
}
.card-icon { font-size: 34px; margin-bottom: 14px; }
.card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }

/* ── PROBLEM BOX ── */
.problem-box {
  margin-top: 48px; padding: 40px;
  background: rgba(255,255,255,.02); border: 1px solid var(--border);
  border-left: 3px solid var(--coral); border-radius: 0 var(--r) var(--r) 0;
}
.pb-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 3vw, 32px); font-style: italic;
  color: var(--white); margin-bottom: 16px; line-height: 1.35;
}
.pb-body { font-size: 16px; color: var(--muted); line-height: 1.8; }
.pb-body em { color: rgba(255,255,255,.85); font-style: normal; font-weight: 700; }

/* ── STEPS ── */
.steps { display: flex; gap: 16px; align-items: stretch; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 220px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; transition: all .22s;
}
.step:hover { border-color: rgba(59,91,219,.3); transform: translateY(-2px); }
.step-n {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px; font-weight: 900; color: rgba(255,255,255,.07);
  line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step-arr {
  font-size: 28px; color: rgba(255,255,255,.12);
  align-self: center; flex-shrink: 0; padding: 0 4px;
}
@media(max-width:680px){ .step-arr{display:none;} }

/* ── COUNTRIES ── */
.countries-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 10px; margin-bottom: 28px;
}
.ctile {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 14px;
  display: flex; flex-direction: column; gap: 3px;
  transition: all .2s; cursor: default;
}
.ctile:hover {
  border-color: rgba(59,91,219,.45); background: rgba(59,91,219,.09);
  transform: translateY(-3px);
}
.cf { font-size: 26px; line-height: 1; }
.cfimg { width: 40px; height: auto; border-radius: 3px; display: block; }
.tf { vertical-align: middle; border-radius: 2px; margin-right: 2px; }
.cr { font-size: 9px; color: rgba(255,255,255,.28); text-transform: uppercase; letter-spacing: .1em; font-family: 'Unbounded', sans-serif; }
.cp { font-size: 15px; font-weight: 800; }

.more-box {
  background: linear-gradient(135deg, rgba(59,91,219,.1), rgba(18,184,134,.06));
  border: 1px solid rgba(59,91,219,.2); border-radius: var(--r-lg);
  padding: 36px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
}
.more-globe { width: 70px; height: auto; flex-shrink: 0; opacity: .85; }
.more-box h3 { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 8px; }
.more-box p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--blue-l);
  background: rgba(59,91,219,.14); border: 1px solid rgba(59,91,219,.28);
  border-radius: 100px; padding: 10px 22px; text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: rgba(59,91,219,.24); transform: translateY(-1px); }

.vote-banner {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(245,159,0,.1), rgba(240,62,62,.08));
  border: 1px solid rgba(245,159,0,.22);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s;
}
.vote-banner:hover { border-color: rgba(245,159,0,.4); transform: translateY(-2px); }
.vote-link {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px;
  text-decoration: none; color: var(--white);
}
.vote-emoji { font-size: 28px; flex-shrink: 0; }
.vote-text {
  font-size: 16px; font-weight: 600; line-height: 1.5;
  color: rgba(255,255,255,.85);
  font-family: 'Cabinet Grotesk', sans-serif;
}
.vote-arrow {
  font-size: 22px; font-weight: 700; color: var(--gold);
  margin-left: auto; flex-shrink: 0;
  transition: transform .2s;
}
.vote-banner:hover .vote-arrow { transform: translateX(4px); }

/* ── TAGS ── */
.tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; padding: 4px 12px; border-radius: 100px;
}
.tag-blue { background: rgba(59,91,219,.15); color: var(--blue-l); border: 1px solid rgba(59,91,219,.28); }
.tag-green { background: rgba(18,184,134,.12); color: var(--green); border: 1px solid rgba(18,184,134,.25); }
.tag-gold { background: rgba(245,159,0,.12); color: var(--gold); border: 1px solid rgba(245,159,0,.25); }

/* ── BENTO ── */
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.bcard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; transition: all .22s;
}
.bcard:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.bcard-wide { grid-column: span 2; }
.bcard-blue { background: rgba(59,91,219,.07); border-color: rgba(59,91,219,.2); }
.bcard-gold { background: rgba(245,159,0,.06); border-color: rgba(245,159,0,.2); }
.bc-icon { font-size: 30px; margin-bottom: 13px; }
.bcard h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.bcard p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
@media(max-width:780px){ .bento{grid-template-columns:1fr;} .bcard-wide{grid-column:span 1;} }

/* ── GLÖBS ── */
.globs-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media(max-width:800px){ .globs-wrap{grid-template-columns:1fr;} }

.earn-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.earn-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r);
}
.earn-item > span { font-size: 22px; flex-shrink: 0; }
.earn-item div { display: flex; flex-direction: column; gap: 3px; }
.earn-item strong { font-size: 14px; font-weight: 700; }
.earn-item span { font-size: 13px; color: var(--muted); }

.packs-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media(max-width:600px){ .packs-row{grid-template-columns:repeat(2,1fr);} }
.pack {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 12px; text-align: center;
  display: flex; flex-direction: column; gap: 3px; position: relative;
  transition: all .2s;
}
.pack:hover { border-color: rgba(245,159,0,.4); transform: translateY(-3px); }
.pack-best { border-color: rgba(245,159,0,.42); background: rgba(245,159,0,.06); }
.p-best-tag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a0a00;
  font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}
.p-amt { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 900; color: var(--gold); line-height: 1; }
.p-sub { font-size: 10px; color: rgba(255,255,255,.28); text-transform: uppercase; letter-spacing: .07em; }
.p-price { font-size: 14px; font-weight: 800; margin-top: 8px; }

.globs-right { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.glob-visual { position: relative; }
.glob-img { width: 200px; height: auto; }

.glob-truth {
  background: rgba(245,159,0,.06); border: 1px solid rgba(245,159,0,.2);
  border-radius: var(--r); padding: 22px;
  font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.8;
  display: flex; flex-direction: column; gap: 10px;
}
.glob-truth strong { color: var(--white); }

/* ── PASS ── */
.pass-card {
  background: linear-gradient(135deg, #1a1300 0%, #201900 50%, #1a1400 100%);
  border: 1.5px solid rgba(245,159,0,.3); border-radius: var(--r-lg);
  padding: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; position: relative; overflow: hidden;
}
.pass-card::before {
  content: ''; position: absolute; top:-30%; right:-5%;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,159,0,.07), transparent);
  pointer-events: none;
}
@media(max-width:800px){ .pass-card{grid-template-columns:1fr;padding:36px;} }

.pass-eyebrow {
  font-family: 'Unbounded', sans-serif; font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px; opacity: .8;
}
.pass-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 4vw, 40px); font-weight: 900;
  letter-spacing: -.022em; line-height: 1.06; margin-bottom: 10px;
}
.pass-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.pass-list li { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.5; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #1a0e00;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px; font-weight: 800;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; transition: all .2s; width: fit-content;
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,159,0,.3); }

.pass-features { display: flex; flex-direction: column; gap: 14px; }
.pf {
  display: flex; gap: 14px; padding: 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
}
.pf > span { font-size: 22px; flex-shrink: 0; }
.pf strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 3px; }
.pf p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── PLATFORMS ── */
.platform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }
@media(max-width:700px){ .platform-row{grid-template-columns:1fr;} }

.pcard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all .25s;
}
.pcard-ios { border-color: rgba(59,91,219,.25); }
.pcard-ios:hover { border-color: rgba(59,91,219,.5); box-shadow: 0 16px 48px rgba(59,91,219,.12); transform: translateY(-3px); }
.pcard-steam:hover { border-color: rgba(255,255,255,.2); transform: translateY(-3px); }

.pcard-header { display: flex; align-items: center; gap: 16px; }
.pcard-icon { width: 60px; height: 60px; border-radius: 14px; object-fit: cover; }
.pcard-name { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 900; margin-bottom: 4px; }
.pcard-status {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  padding: 4px 12px; border-radius: 100px;
}
.pcard-soon { background: rgba(18,184,134,.14); color: var(--green); border: 1px solid rgba(18,184,134,.28); }
.pcard-wip { background: rgba(245,159,0,.12); color: var(--gold); border: 1px solid rgba(245,159,0,.25); }

.pcard-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

.steam-icon-wrap { opacity: .75; }
.steam-update {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px;
  font-size: 13px; display: flex; flex-direction: column; gap: 6px;
}
.steam-update span { color: rgba(255,255,255,.35); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.steam-update em { color: rgba(255,255,255,.6); font-style: italic; line-height: 1.6; }

.mini-cd {
  background: rgba(59,91,219,.1); border: 1px solid rgba(59,91,219,.2);
  border-radius: var(--r); padding: 14px 20px;
  display: flex; align-items: baseline; gap: 8px; justify-content: center;
  font-family: 'Unbounded', sans-serif; font-weight: 900;
}
.mini-cd span { font-size: 22px; color: var(--blue-l); letter-spacing: -.01em; }
.mini-cd small { font-size: 9px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-right: 4px; }

.btn-apple-full, .btn-steam-full {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px; font-weight: 800;
  padding: 14px 24px; border-radius: 100px;
  text-decoration: none; transition: all .2s;
}
.btn-apple-full { background: #000; color: #fff; }
.btn-apple-full:hover { background: #1a1a1a; transform: translateY(-1px); }
.btn-steam-full { background: rgba(255,255,255,.07); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.14); }
.btn-steam-full:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* ── NOTIFY BOX ── */
.notify-box {
  background: linear-gradient(135deg, rgba(59,91,219,.1), rgba(18,184,134,.06));
  border: 1px solid rgba(59,91,219,.22); border-radius: var(--r-lg);
  padding: 48px; text-align: center;
}
.nb-icon { margin-bottom: 16px; }
.notify-box h3 { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.notify-box p { font-size: 16px; color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.notify-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 12px; flex-wrap: wrap; justify-content: center; }
.notify-input {
  flex: 1; min-width: 200px; padding: 14px 20px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; color: var(--white); font-size: 15px;
  font-family: 'Cabinet Grotesk', sans-serif; outline: none; transition: border-color .2s;
}
.notify-input::placeholder { color: rgba(255,255,255,.3); }
.notify-input:focus { border-color: var(--blue-l); }
.btn-notify {
  padding: 14px 28px; background: var(--blue); color: #fff;
  border: none; border-radius: 100px;
  font-size: 15px; font-weight: 800;
  font-family: 'Cabinet Grotesk', sans-serif;
  cursor: pointer; transition: all .2s;
}
.btn-notify:hover { background: var(--blue-l); transform: translateY(-1px); }
.notify-confirm { font-size: 14px; color: var(--green); min-height: 20px; margin-top: 4px; }
.notify-fine { font-size: 12px; color: rgba(255,255,255,.22); margin-top: 12px; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 64px 0 40px; background: var(--navy); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
@media(max-width:800px){ .footer-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:500px){ .footer-grid{grid-template-columns:1fr;} }

.footer-logo { height: 36px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 230px; }
.footer-note { margin-top: 12px !important; font-size: 12px !important; color: rgba(255,255,255,.2) !important; }
.footer-col h4 {
  font-family: 'Unbounded', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-glob-note { display: flex; align-items: center; gap: 10px; }
.footer-glob-note span { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.18); }

/* ── LEGAL PAGES ── */
.legal-body {
  background: var(--bg); color: var(--white);
  font-family: 'Cabinet Grotesk', sans-serif;
}
.legal-hero {
  background: var(--navy); border-bottom: 1px solid var(--border);
  padding: 120px 32px 56px; text-align: center;
}
.legal-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 5vw, 48px); font-weight: 900;
  letter-spacing: -.02em; margin-bottom: 12px;
}
.legal-hero p { font-size: 15px; color: var(--muted); }
.legal-hero .legal-date { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 8px; }

.legal-content { max-width: 800px; margin: 0 auto; padding: 64px 32px; }
.legal-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px; font-weight: 700; margin: 44px 0 14px;
  color: var(--blue-l); letter-spacing: -.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 16px; font-weight: 700; margin: 24px 0 10px;
  color: rgba(255,255,255,.9);
}
.legal-content p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 14px; }
.legal-content ul, .legal-content ol {
  margin: 10px 0 16px 22px; display: flex; flex-direction: column; gap: 8px;
}
.legal-content li { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.7; }
.legal-content a { color: var(--blue-l); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--white); }
.legal-content .highlight-box {
  background: rgba(59,91,219,.08); border: 1px solid rgba(59,91,219,.2);
  border-radius: var(--r); padding: 20px 24px; margin: 20px 0;
}
.legal-content .highlight-box p { margin-bottom: 0; color: rgba(255,255,255,.75); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-l); text-decoration: none; font-weight: 600; font-size: 14px; margin-bottom: 32px; transition: gap .2s; }
.legal-back:hover { gap: 12px; }

/* ── REVEAL ── */
.rc {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--rd, 0s);
}
.rc.in { opacity: 1; transform: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(59,91,219,.4); border-radius: 100px; }

/* ═══════════════════════════════════════
   GAME IDENTITY — 3D GAME EMPHASIS
   ═══════════════════════════════════════ */

/* ── GAME PLATFORM BAR ── */
.game-platform-bar {
  background: rgba(59,91,219,.05);
  border-bottom: 1px solid rgba(59,91,219,.14);
  padding: 13px 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; overflow: hidden;
}
.gpb-item {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Unbounded', sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.gpb-pip { color: rgba(59,91,219,.8); font-size: 16px; opacity: .5; }
@media(max-width:600px){ .game-platform-bar{ gap:14px; } .gpb-item{ font-size:8px; } }

/* ── PHASE TRACKER BANNER ── */
.phase-section { padding: 0 0 0; }
.phase-banner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(245,159,0,.09), rgba(240,100,0,.05));
  border: 2px solid rgba(245,159,0,.3); border-radius: var(--r-lg);
  padding: 30px 40px; text-decoration: none; transition: all .25s;
  position: relative; overflow: hidden;
}
.phase-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(245,159,0,.04), transparent);
  animation: phaseSweep 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes phaseSweep { 0%,100%{transform:translateX(-100%)} 50%{transform:translateX(100%)} }
.phase-banner:hover {
  border-color: rgba(245,159,0,.55);
  background: linear-gradient(135deg, rgba(245,159,0,.15), rgba(240,100,0,.08));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,159,0,.12);
}
.pb-icon { font-size: 40px; flex-shrink: 0; }
.pb-text { flex: 1; min-width: 160px; }
.pb-eyebrow {
  font-family: 'Unbounded', sans-serif; font-size: 9px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,159,0,.65); margin-bottom: 6px;
}
.pb-heading {
  font-family: 'Unbounded', sans-serif; font-size: clamp(17px,2.5vw,22px);
  font-weight: 900; color: var(--white); letter-spacing: -.01em; margin-bottom: 6px;
}
.pb-sub { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.55; }
.pb-arrow {
  font-size: 28px; font-weight: 900; color: var(--gold);
  flex-shrink: 0; transition: transform .2s;
}
.phase-banner:hover .pb-arrow { transform: translateX(6px); }

/* ── IPHONE GAME SHOWCASE ── */
.iphone-showcase {
  position: absolute; right: 52px; top: 50%;
  transform: translateY(-46%);
  z-index: 3; display: none;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.7)) drop-shadow(0 0 50px rgba(59,91,219,.12));
}
@media(min-width:1280px) { .iphone-showcase { display: block; } }
@media(min-width:1500px) { .iphone-showcase { right: 96px; } }

.iphone-device {
  width: 214px; height: 452px; background: #07080f;
  border-radius: 46px; border: 1.5px solid rgba(255,255,255,.18);
  box-shadow:
    0 0 0 5px rgba(255,255,255,.03),
    inset 0 0 0 1px rgba(255,255,255,.05);
  position: relative; overflow: hidden;
}
.iphone-dynamic-island {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 26px; background: #000;
  border-radius: 100px; z-index: 20;
  border: 1px solid rgba(255,255,255,.07);
}

/* Carousel */
.iphone-carousel {
  display: flex; width: 400%; height: 100%;
  animation: iphCarousel 20s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes iphCarousel {
  0%, 20%  { transform: translateX(0); }
  25%, 45% { transform: translateX(-25%); }
  50%, 70% { transform: translateX(-50%); }
  75%, 95% { transform: translateX(-75%); }
  98%, 100%{ transform: translateX(0); }
}
.iscene {
  width: 25%; height: 100%; flex-shrink: 0;
  display: flex; flex-direction: column;
  padding: 46px 16px 18px; gap: 10px; overflow: hidden;
}
.iscene-globe  { background: linear-gradient(170deg, #080a1c 0%, #0b1232 100%); }
.iscene-avatar { background: linear-gradient(170deg, #060c07 0%, #09130b 100%); }
.iscene-world  { background: linear-gradient(170deg, #06080e 0%, #080c1c 100%); }
.iscene-chat   { background: linear-gradient(170deg, #0e0608 0%, #180a0e 100%); }

.iscene-header { display: flex; align-items: center; gap: 7px; margin-bottom: 2px; }
.iscene-step {
  font-family: 'Unbounded', sans-serif; font-size: 8px; font-weight: 700;
  letter-spacing: .14em; color: rgba(255,255,255,.25);
}
.iscene-label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px; font-weight: 800; color: rgba(255,255,255,.88);
}

/* Scene 1: Globe */
.globe-container {
  display: flex; align-items: center; justify-content: center;
  height: 132px; position: relative;
}
.css-globe {
  width: 98px; height: 98px;
  border: 1.5px solid rgba(76,110,245,.65);
  border-radius: 50%; position: relative;
  animation: globeSpin 10s linear infinite;
  box-shadow: 0 0 26px rgba(59,91,219,.22), inset 0 0 22px rgba(59,91,219,.07);
}
@keyframes globeSpin { to { transform: rotate(360deg); } }
.globe-ring {
  position: absolute; border: 1px solid rgba(76,110,245,.28);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.gr1 { width: 42px; height: 98px; }
.gr2 { width: 82px; height: 98px; }
.gr3 { width: 98px; height: 42px; border-radius: 50%; }
.globe-lat { position: absolute; border-top: 1px solid rgba(76,110,245,.2); width: 96px; left: 0; }
.gl1 { top: 28%; } .gl2 { top: 50%; } .gl3 { top: 72%; }
.globe-ping {
  position: absolute; top: 20%; left: 58%;
  width: 9px; height: 9px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: globePing 2s ease-in-out infinite;
}
@keyframes globePing { 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.6); opacity:.6; } }
.country-banner {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: rgba(76,110,245,.15); border: 1px solid rgba(76,110,245,.32);
  border-radius: 100px; padding: 7px 16px;
  font-size: 12px; font-weight: 800; color: #fff;
}
.tap-btn {
  text-align: center; font-size: 10px; font-weight: 700;
  color: var(--blue-l); letter-spacing: .04em; margin-top: 2px;
  animation: tapPulse 2s ease-in-out infinite;
}
@keyframes tapPulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* Scene 2: Avatar */
.wordie-display {
  display: flex; flex-direction: column; align-items: center;
  height: 132px; justify-content: center;
}
.wordie-head {
  width: 40px; height: 40px; background: #E8C47A;
  border-radius: 50% 50% 38% 38%;
  display: flex; align-items: center; justify-content: center;
}
.wordie-face { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 9px; }
.wordie-eyes { display: flex; gap: 8px; }
.wordie-eye { width: 5px; height: 5px; background: #1a1a2e; border-radius: 50%; }
.wordie-mouth { width: 14px; height: 5px; border-bottom: 2px solid #1a1a2e; border-radius: 0 0 100px 100px; }
.wordie-body {
  width: 34px; height: 44px; background: #1971C2;
  border-radius: 4px 4px 6px 6px;
  animation: wordieBob 2s ease-in-out infinite;
}
@keyframes wordieBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.wordie-legs { display: flex; gap: 6px; }
.wordie-leg {
  width: 11px; height: 23px; background: #1d2744;
  border-radius: 0 0 5px 5px;
  animation: wordieWalk 1s ease-in-out infinite;
}
.wordie-leg:nth-child(2) { animation-delay: .5s; }
@keyframes wordieWalk { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(.84)} }
.style-options { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.style-row { display: flex; gap: 8px; }
.style-swatch {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--c); border: 2px solid transparent; transition: all .2s;
}
.style-swatch.active { border-color: #fff; transform: scale(1.25); box-shadow: 0 0 10px var(--c); }
.style-label { font-size: 9px; color: rgba(255,255,255,.28); letter-spacing: .07em; }

/* Scene 3: World */
.hud-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: var(--green);
  background: rgba(18,184,134,.1); border: 1px solid rgba(18,184,134,.22);
  border-radius: 100px; padding: 4px 10px; align-self: flex-start;
}
.hud-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
.iso-world {
  flex: 1; background: #040609; border-radius: 8px;
  overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,.06);
}
.iso-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,91,219,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,91,219,.11) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: perspective(150px) rotateX(42deg);
  transform-origin: top center;
}
.iso-building {
  position: absolute; background: rgba(59,91,219,.22);
  border: 1px solid rgba(76,110,245,.4); border-radius: 2px;
}
.ib1 { width: 28px; height: 24px; left: 16px; top: 22px; }
.ib2 { width: 18px; height: 36px; left: 54px; top: 12px; background: rgba(76,110,245,.28); }
.ib3 { width: 22px; height: 18px; right: 18px; top: 30px; }
.iso-player-sprite {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  animation: playerMove 4s ease-in-out infinite;
}
@keyframes playerMove {
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%{ transform:translateX(-85%) translateY(-14px); }
}
.player-head { width: 11px; height: 11px; background: #E8C47A; border-radius: 50%; }
.player-body-s { width: 11px; height: 9px; background: #1971C2; border-radius: 1px; }
.iso-npc-sprite { position: absolute; right: 26px; top: 42px; }
.npc-exclaim {
  text-align: center; background: var(--gold); color: #1a0a00;
  font-size: 7px; font-weight: 900; padding: 1px 4px; border-radius: 3px;
  margin-bottom: 2px; animation: blink 2s ease-in-out infinite;
}
.npc-head { width: 9px; height: 9px; background: #C37AE8; border-radius: 50%; }
.npc-body-s { width: 9px; height: 7px; background: #2F9E44; border-radius: 1px; }
.hud-bottom { display: flex; justify-content: space-between; padding: 0 2px; }
.hud-globs, .hud-stamp { font-size: 9px; font-weight: 700; border-radius: 100px; padding: 3px 8px; }
.hud-globs { color: var(--gold); background: rgba(245,159,0,.1); border: 1px solid rgba(245,159,0,.2); }
.hud-stamp { color: var(--blue-l); background: rgba(59,91,219,.1); border: 1px solid rgba(59,91,219,.2); }

/* Scene 4: Chat */
.chat-messages-iph { flex: 1; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.chat-msg-iph { display: flex; gap: 7px; align-items: flex-start; }
.msg-me-iph { flex-direction: row-reverse; }
.chat-avatar-iph {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg,#862E9C,#4C6EF5);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.chat-bub {
  font-size: 10px; line-height: 1.45; padding: 7px 10px;
  border-radius: 12px; max-width: 140px; color: rgba(255,255,255,.9);
}
.bub-npc { background: rgba(255,255,255,.08); border-radius: 12px 12px 12px 3px; }
.bub-me  { background: var(--blue); border-radius: 12px 12px 3px 12px; }
.chat-typing-iph {
  display: flex; align-items: center; gap: 3px;
  padding: 7px 10px; background: rgba(255,255,255,.06);
  border-radius: 12px; align-self: flex-start; width: fit-content;
}
.typing-dot { width: 4px; height: 4px; background: rgba(255,255,255,.4); border-radius: 50%; animation: typingBounce .9s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation-delay: .15s; }
.typing-dot:nth-child(3) { animation-delay: .3s; }
@keyframes typingBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }
.chat-reward-iph {
  display: flex; align-items: center; gap: 5px;
  background: rgba(245,159,0,.12); border: 1px solid rgba(245,159,0,.25);
  border-radius: 100px; padding: 5px 12px;
  font-size: 10px; font-weight: 700; color: var(--gold);
  align-self: center; margin-top: 2px;
  animation: rewardPop .4s cubic-bezier(.175,.885,.32,1.275) 2s both;
}
@keyframes rewardPop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.chat-input-iph {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 8px 14px;
  font-size: 10px; color: rgba(255,255,255,.22); margin-top: 4px;
}

/* Scene dots */
.iphone-dots {
  position: absolute; bottom: 13px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 10;
}
.iphone-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.2); }
.id1 { animation: dot1a 20s infinite; }
.id2 { animation: dot2a 20s infinite; }
.id3 { animation: dot3a 20s infinite; }
.id4 { animation: dot4a 20s infinite; }
@keyframes dot1a { 0%,20%{background:rgba(255,255,255,.9);transform:scale(1.4)} 21%,100%{background:rgba(255,255,255,.2);transform:scale(1)} }
@keyframes dot2a { 0%,24%{background:rgba(255,255,255,.2);transform:scale(1)} 25%,45%{background:rgba(255,255,255,.9);transform:scale(1.4)} 46%,100%{background:rgba(255,255,255,.2);transform:scale(1)} }
@keyframes dot3a { 0%,49%{background:rgba(255,255,255,.2);transform:scale(1)} 50%,70%{background:rgba(255,255,255,.9);transform:scale(1.4)} 71%,100%{background:rgba(255,255,255,.2);transform:scale(1)} }
@keyframes dot4a { 0%,74%{background:rgba(255,255,255,.2);transform:scale(1)} 75%,95%{background:rgba(255,255,255,.9);transform:scale(1.4)} 96%,100%{background:rgba(255,255,255,.2);transform:scale(1)} }
