:root {
  --bg: #0f172a;
  --bg-2: #111827;
  --panel: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.12);
  --text: #f8fafc;
  --muted: rgba(248,250,252,0.76);
  --muted-2: rgba(248,250,252,0.46);
  --cyan: #38bdf8;
  --pink: #f472b6;
  --purple: #8b5cf6;
  --lime: #a3e635;
  --shadow: 0 30px 90px rgba(0,0,0,0.35);
  --radius: 28px;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', var(--font-sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(56,189,248,0.18), transparent 18%),
    radial-gradient(circle at 85% 12%, rgba(244,114,182,0.18), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(139,92,246,0.16), transparent 20%),
    linear-gradient(180deg, #0f172a 0%, #111827 50%, #0b1220 100%);
  overflow-x: hidden;
}

.bg-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.32;
  pointer-events: none;
}

.blur-a { width: 260px; height: 260px; background: rgba(56,189,248,0.22); top: -5%; left: -7%; }
.blur-b { width: 240px; height: 240px; background: rgba(244,114,182,0.18); top: 12%; right: -5%; }
.blur-c { width: 220px; height: 220px; background: rgba(163,230,53,0.14); bottom: -4%; left: 40%; }

.site-header,
.hero,
.ticker,
.cards-section,
.split-band,
.site-footer {
  width: min(1180px, calc(100% - 30px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 66px;
  height: 66px;
  display: block;
}

.brand-name,
.mini {
  margin: 0;
}

.brand-name { font-weight: 700; }

.mini {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-2);
}

.mini.accent { color: var(--cyan); }

.header-btn,
.primary-btn,
.secondary-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-btn {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: center;
  padding: 42px 0 24px;
}

.hero-copy,
.hero-stage,
.info-card,
.quote-box,
.contact-box,
.ticker {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-stage,
.quote-box,
.contact-box,
.ticker {
  border-radius: 32px;
}

.hero-copy { padding: 38px; }

.hero-copy h1,
.section-head h2,
.quote,
.contact-box h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(3rem, 6.4vw, 5.5rem);
  line-height: 0.94;
}

.lead,
.info-card p,
.contact-box p,
.contact-line,
.section-head p {
  color: var(--muted);
  line-height: 1.85;
}

.lead { margin-top: 18px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-btn,
.secondary-btn {
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 800;
}

.primary-btn {
  color: #08121d;
  background: linear-gradient(135deg, var(--cyan), #8ae1ff 40%, var(--lime) 100%);
}

.secondary-btn {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.hero-stage {
  position: relative;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
}

.logo-spotlight {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.hero-logo {
  width: min(100%, 320px);
  display: block;
  filter: drop-shadow(0 0 35px rgba(56,189,248,0.18));
}

.floating-icons {
  position: relative;
  min-height: 160px;
}

.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 700;
  animation: floaty 4.5s ease-in-out infinite;
}

.chip .icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.chip-a { top: 12px; left: 8px; }
.chip-b { top: 0; right: 18px; animation-delay: -1s; }
.chip-c { bottom: 18px; left: 50px; animation-delay: -1.8s; }
.chip-d { bottom: 0; right: 0; animation-delay: -2.5s; }

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 700;
}

.store-badges b {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #0b1220;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  font-size: 0.9rem;
}

.ticker {
  margin-top: 8px;
  padding: 14px 18px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  color: var(--muted);
  font-weight: 700;
  animation: marquee 18s linear infinite;
}

.cards-section {
  padding-top: 28px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 18px;
}

.section-head h2,
.contact-box h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 0.97;
}

.cards-grid,
.split-band {
  display: grid;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 24px;
  border-radius: 28px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #08121d;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.split-band {
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: stretch;
  padding-top: 24px;
}

.quote-box,
.contact-box {
  padding: 30px;
}

.quote {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.contact-box a { color: var(--cyan); }
.primary-btn.full { width: 100%; margin-top: 12px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 40px;
  color: var(--muted-2);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 680ms ease forwards;
}

.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 240ms; }
.delay-3 { animation-delay: 360ms; }

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

@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-32%); }
}

@media (max-width: 1024px) {
  .hero,
  .cards-grid,
  .split-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .ticker,
  .cards-section,
  .split-band,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-stage,
  .info-card,
  .quote-box,
  .contact-box,
  .ticker {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4.3rem);
  }
}
