:root {
  --bg: #04070d;
  --bg-soft: #08101d;
  --bg-card: rgba(9, 18, 34, 0.72);
  --bg-card-strong: rgba(10, 19, 36, 0.88);

  --text: #f4f7fb;
  --muted: #a7b4ca;
  --muted-2: #7f8ca5;

  --line: rgba(126, 154, 197, 0.16);
  --line-strong: rgba(132, 170, 219, 0.26);

  --accent-green: #66ffb2;
  --accent-cyan: #4fd8d6;
  --accent-blue: #2da8ff;
  --accent-blue-soft: rgba(45, 168, 255, 0.14);
  --accent-red: #ff667e;

  --shadow-lg:
    0 20px 60px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.025);
  --shadow-md:
    0 10px 30px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.02);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(102, 255, 178, 0.16), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(45, 168, 255, 0.16), transparent 20%),
    radial-gradient(circle at 50% 85%, rgba(45, 168, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #02050b 0%, #030812 36%, #03070f 100%);
  color: var(--text);
  min-height: 100vh;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(102, 255, 178, 0.02) 0%,
      transparent 16%,
      transparent 84%,
      rgba(45, 168, 255, 0.03) 100%
    );
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(3, 8, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

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

.nav-links a {
  color: var(--muted);
  font-size: 0.98rem;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 58px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-cyan);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 7vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 700px;
}

.hero-lead {
  margin: 0 0 16px;
  font-size: 1.22rem;
  line-height: 1.7;
  color: #dce6f8;
  max-width: 720px;
}

.hero-secondary {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #031018;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  box-shadow:
    0 8px 26px rgba(53, 184, 255, 0.18),
    0 8px 22px rgba(102, 255, 178, 0.1);
}

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

.button-secondary:hover {
  border-color: rgba(102, 255, 178, 0.35);
  background: rgba(255, 255, 255, 0.045);
}

.hero-links {
  margin-top: 22px;
  color: var(--muted-2);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.95rem;
}

.hero-links a {
  color: #cfe6ff;
}

.hero-links .dot {
  opacity: 0.55;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 460px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(15, 26, 46, 0.88), rgba(6, 12, 24, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 12% 12%, rgba(102, 255, 178, 0.12), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(45, 168, 255, 0.18), transparent 26%);
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-card-subtitle {
  color: var(--muted);
  margin-top: 4px;
}

.status-pill {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  color: #ff8294;
  border: 1px solid rgba(255, 102, 126, 0.45);
  background: rgba(255, 102, 126, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel,
.hero-facts {
  position: relative;
  z-index: 1;
}

.hero-panel {
  margin-top: 24px;
  border: 1px solid rgba(255, 102, 126, 0.45);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 28, 53, 0.84), rgba(10, 16, 30, 0.76));
  padding: 18px 18px 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.panel-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-facts {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.02);
}

.fact-row span {
  color: var(--muted);
}

.fact-row strong {
  color: var(--text);
  font-weight: 700;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

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

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading p,
.split-section p,
.availability-note {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

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

.info-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.tech-grid,
.use-grid {
  margin-top: 18px;
}

.verify-banner {
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(10, 18, 35, 0.92), rgba(7, 12, 24, 0.9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.verify-banner-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.verify-banner p {
  margin: 0;
  color: var(--muted);
}

.availability-wrap {
  text-align: center;
}

.store-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
  gap: 18px;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  padding: 22px;
  border-radius: 22px;
  background: var(--bg-card-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.store-card h3 {
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}

.store-card p {
  margin: 0;
  color: var(--muted);
}

.store-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  color: #d8e6f7;
  flex: 0 0 auto;
}

.availability-note {
  margin-top: 22px;
}

.availability-note a {
  color: #d8f2ff;
  font-weight: 700;
}

.site-footer {
  padding: 28px 0 46px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer-brand {
  color: var(--muted);
  line-height: 1.7;
}

.footer-brand strong {
  color: var(--text);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #d8f2ff;
  font-weight: 600;
  transition: color 160ms ease, opacity 160ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-credit {
  font-size: 0.95rem;
  color: var(--muted-2);
}

.footer-credit a {
  color: var(--muted);
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-credit a:hover {
  color: var(--text);
}

/* Logo */
.brand-mark {
  position: relative;
  flex: 0 0 auto;
  border-radius: 24px;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle, rgba(102, 255, 178, 0.18), transparent 45%),
    radial-gradient(circle at 75% 30%, rgba(45, 168, 255, 0.22), transparent 42%);
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

.brand-mark-small {
  width: 48px;
  height: 48px;
}

.brand-mark-large {
  width: 108px;
  height: 108px;
}

.realz-logo-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.inner-ring-spin {
  transform-origin: 60px 60px;
  animation: realzInnerSpin 2.2s linear infinite;
}

.specular {
  opacity: 0.55;
}

@keyframes realzInnerSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

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

  .hero {
    padding-top: 40px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .verify-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 30px 0 24px;
  }

  .hero-card {
    padding: 22px;
  }

  .status-pill {
    position: static;
    display: inline-flex;
    margin-top: 16px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .hero-links {
    font-size: 0.9rem;
  }

  .brand-mark-large {
    width: 84px;
    height: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inner-ring-spin,
  .reveal,
  .button {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}