:root {
  --bg: #07111f;
  --bg-soft: #0b1729;
  --panel: rgba(12, 22, 40, 0.72);
  --panel-strong: #0f1d33;
  --text: #ecf3ff;
  --muted: #a8b7d1;
  --line: rgba(255, 255, 255, 0.1);
  --brand: #64e0ff;
  --brand-2: #8b5cf6;
  --accent: #23c483;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(100, 224, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(139, 92, 246, 0.18), transparent 24%),
    linear-gradient(180deg, #06111e 0%, #091726 55%, #07111f 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 200px;
  height: 150px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color .2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.section {
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 140px);
}

.eyebrow,
.card-kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.hero h1,
.section-heading h2,
.info-card h2,
.cta-box h2 {
  margin: 18px 0 16px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  max-width: 11ch;
}

.lead,
.section-heading p,
.info-card p,
.store-card p,
.value-card p,
.cta-box p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #81f7d4);
  color: #04111c;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.orb-one {
  inset: 40px 90px auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(100, 224, 255, 0.65), transparent 68%);
}

.orb-two {
  inset: auto auto 40px 20px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.45), transparent 70%);
}

.hero-card,
.info-card,
.store-card,
.value-card,
.company-card,
.cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-main {
  position: absolute;
  right: 42px;
  top: 58px;
  width: min(100%, 390px);
  padding: 34px;
}

.card-main strong {
  display: block;
  font-size: 2rem;
  margin: 16px 0 8px;
}

.card-main p,
.card-float span,
.card-float strong {
  margin: 0;
}

.card-float {
  position: absolute;
  padding: 18px 20px;
  min-width: 200px;
}

.card-float.one {
  left: 24px;
  top: 260px;
}

.card-float.two {
  right: 0;
  top: 260px;
}
.card-float.three {
  left: 24px;
  bottom: 60px;
}
.card-float.four {
  right: 0;
  bottom: 60px;
}

.card-float strong {
  display: block;
  margin-top: 4px;
  font-size: 1.4rem;
}

.intro-grid,
.values-grid,
.company-grid {
  display: grid;
  gap: 22px;
}

.intro-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.info-card,
.value-card,
.company-card,
.cta-box {
  padding: 28px;
}

.info-card.highlight {
  background: linear-gradient(160deg, rgba(35, 196, 131, 0.14), rgba(15, 29, 51, 0.85));
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.95;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading.narrow {
  max-width: 760px;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.store-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.store-card::after {
  content: '';
  position: absolute;
  inset: auto -40px -90px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 224, 255, 0.15), transparent 68%);
}

.store-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.store-status,
.store-category {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.store-status.online {
  background: rgba(35, 196, 131, 0.14);
  color: #77f0bf;
}

.store-status.soon {
  background: rgba(139, 92, 246, 0.18);
  color: #ccb6ff;
}

.store-category {
  background: rgba(255,255,255,0.06);
  color: var(--muted);
}

.store-card h3,
.value-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.store-card a {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 700;
  color: var(--brand);
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
}

.company-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-card {
  background: rgba(255,255,255,0.04);
}

.company-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.company-card strong {
  font-size: 1.08rem;
  line-height: 1.5;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(140deg, rgba(100, 224, 255, 0.14), rgba(139, 92, 246, 0.16), rgba(15, 29, 51, 0.95));
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  text-align: right;
}

.glass {
  background: rgba(255,255,255,0.04);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .intro-grid,
  .company-grid,
  .values-grid,
  .stores-grid,
  .cta-box,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .company-grid,
  .values-grid,
  .stores-grid {
    display: grid;
  }

  .cta-box,
  .footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .topbar {
    border-radius: 26px;
    padding: 16px;
  }

  .nav,
  .desktop-only {
    display: none;
  }

  .section {
    padding: 54px 0;
  }

  .hero h1 {
    max-width: none;
  }

  .card-main {
    right: 0;
    left: 0;
    width: auto;
  }

  .card-float.one {
    left: 0;
  }

  .card-float.two {
    right: 0;
    bottom: 20px;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(calc(100% - 22px), var(--max));
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .card-main,
  .card-float,
  .info-card,
  .store-card,
  .value-card,
  .company-card,
  .cta-box {
    padding: 22px;
  }

  .hero-actions,
  .hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .card-float {
    min-width: 0;
    width: 74%;
  }
}
