:root {
  --bg: #05030c;
  --bg-soft: #0a0715;
  --surface: rgba(18, 14, 34, 0.72);
  --surface-strong: #121022;
  --surface-light: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f8f7ff;
  --muted: #a7a3ba;
  --muted-strong: #cac7d8;
  --violet: #8b5cf6;
  --violet-light: #b39aff;
  --blue: #2f80ff;
  --cyan: #4dd8ff;
  --green: #54e8aa;
  --gold: #ffd166;
  --danger: #ff6b8a;
  --gradient: linear-gradient(135deg, #9b6cff 0%, #5b5ff7 48%, #168cff 100%);
  --gradient-text: linear-gradient(115deg, #fff 10%, #d5c8ff 45%, #85c5ff 100%);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 80px rgba(110, 77, 255, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(108, 72, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 92% 8%, rgba(29, 111, 255, 0.14), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 19% 21%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 9%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 67% 34%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 8% 66%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 72%, #fff 0 1px, transparent 1.5px);
  background-size: 310px 310px, 430px 430px, 370px 370px, 520px 520px, 460px 460px;
  content: "";
  pointer-events: none;
}

::selection {
  color: #fff;
  background: rgba(139, 92, 246, 0.58);
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  color: #08050f;
  background: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-header {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--violet-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display-title {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 8vw, 5.4rem);
  font-weight: 780;
  letter-spacing: -0.065em;
}

.section-title {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.65rem);
  font-weight: 760;
}

.section-copy,
.lead {
  color: var(--muted-strong);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.text-gradient {
  color: transparent;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
}

.text-muted {
  color: var(--muted);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: rgba(5, 3, 12, 0.82);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.12rem;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(105, 91, 255, 0.3);
}

.brand-wordmark span {
  color: var(--muted);
  font-weight: 550;
}

.brand-wordmark {
  display: block;
  width: 126px;
  height: 18px;
  overflow: hidden;
  background: url("/assets/images/antropeo-wordmark.webp") center / contain no-repeat;
  text-indent: -9999px;
  white-space: nowrap;
}

.nav-links {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  visibility: hidden;
  gap: 4px;
  padding: 18px 20px 28px;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  background: rgba(5, 3, 12, 0.96);
  transform: translateY(-12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  backdrop-filter: blur(22px);
}

.menu-open .nav-links {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-link {
  padding: 12px 10px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #fff;
}

.nav-link[aria-current="page"] {
  text-shadow: 0 0 20px rgba(179, 154, 255, 0.5);
}

.nav-cta {
  margin-top: 8px;
}

.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: var(--surface-light);
  cursor: pointer;
  place-items: center;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-open .menu-toggle-lines {
  background: transparent;
}

.menu-open .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 36px rgba(91, 95, 247, 0.28);
}

.button-primary:hover {
  box-shadow: 0 16px 44px rgba(91, 95, 247, 0.4);
}

.button-secondary {
  border-color: var(--line-strong);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(179, 154, 255, 0.42);
  background: rgba(255, 255, 255, 0.085);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 12px;
  font-size: 0.86rem;
}

.button-icon {
  width: 17px;
  height: 17px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) 0 70px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.3;
  background:
    linear-gradient(90deg, rgba(5, 3, 12, 0.58), rgba(5, 3, 12, 0.22) 54%, rgba(5, 3, 12, 0.55)),
    url("/assets/images/cosmic-background.webp") center 58% / cover no-repeat;
  content: "";
  filter: saturate(0.9);
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 74% 46%, rgba(75, 83, 255, 0.12), transparent 34%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero .display-title {
  max-width: 760px;
  margin-inline: auto;
}

.hero .lead {
  max-width: 660px;
  margin: 0 auto 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 22px;
}

.store-badge {
  position: relative;
  display: inline-flex;
  height: 40px;
  align-items: center;
}

.store-badge img {
  width: auto;
  height: 40px;
}

.store-badge.google img {
  width: 150px;
  height: 58px;
  max-width: none;
  margin: -9px -10px;
}

.store-badge.coming-soon {
  opacity: 0.58;
  filter: saturate(0.5);
}

.status-note {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  perspective: 1200px;
}

.hero-orbit {
  position: absolute;
  inset: 2% 0 auto 50%;
  width: min(112%, 600px);
  aspect-ratio: 1;
  border: 1px solid rgba(139, 92, 246, 0.17);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(47, 128, 255, 0.12);
  border-radius: inherit;
  content: "";
}

.hero-orbit::after {
  inset: 25%;
}

.hero-art-frame {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(171, 159, 255, 0.28);
  border-radius: 36px;
  background: #070711;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.52), 0 0 80px rgba(84, 83, 255, 0.2);
}

.hero-art-frame::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(5, 3, 12, 0.08), transparent 42%, rgba(5, 3, 12, 0.15)),
    linear-gradient(180deg, transparent 72%, rgba(5, 3, 12, 0.26));
  content: "";
  pointer-events: none;
}

.hero-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.phone {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 264px;
  height: 525px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 43px;
  background: #090711;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.58), 0 0 80px rgba(105, 72, 255, 0.2);
  transform: translateX(-50%) rotateY(-4deg) rotateX(2deg);
}

.phone::before {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 50%;
  width: 82px;
  height: 23px;
  border-radius: 18px;
  background: #030205;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
  background:
    radial-gradient(circle at 50% 15%, rgba(121, 73, 255, 0.26), transparent 36%),
    linear-gradient(180deg, #111021, #080710);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 18px 12px;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
}

.phone-brand img {
  width: 21px;
  height: 21px;
  border-radius: 6px;
}

.phone-level {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #d7cdff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.56rem;
  font-weight: 800;
}

.mock-globe-wrap {
  position: relative;
  height: 194px;
  overflow: hidden;
}

.mock-globe {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 198px;
  height: 198px;
  border: 1px solid rgba(156, 217, 255, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 27%, rgba(255, 255, 255, 0.38), transparent 5%),
    radial-gradient(ellipse at 35% 45%, #715aff 0 11%, transparent 12%),
    radial-gradient(ellipse at 69% 54%, #4a54d8 0 15%, transparent 16%),
    radial-gradient(ellipse at 52% 80%, #6f64ff 0 8%, transparent 9%),
    radial-gradient(circle at 38% 28%, #235ab7, #101a5f 60%, #080b2f 100%);
  box-shadow: inset -28px -20px 60px rgba(0, 0, 0, 0.55), 0 0 60px rgba(62, 117, 255, 0.32);
  transform: translateX(-50%);
}

.mock-globe::before,
.mock-globe::after {
  position: absolute;
  inset: 7% 46%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.mock-globe::after {
  inset: 47% 4%;
  border-radius: 50%;
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 47px;
  left: 53%;
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--violet);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.38);
  transform: rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.phone-fact-card {
  position: relative;
  z-index: 3;
  margin: -3px 13px 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(23, 20, 42, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.fact-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--violet-light);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-fact-card .phone-fact-title {
  margin-bottom: 7px;
  color: var(--text);
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.phone-fact-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.45;
}

.fact-location {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d8d5e5;
  font-size: 0.58rem;
  font-weight: 700;
}

.fact-location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(84, 232, 170, 0.8);
}

.phone-nav {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-around;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(13, 11, 24, 0.9);
}

.phone-nav span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #555165;
}

.phone-nav span.active {
  width: 25px;
  border-radius: 9px;
  background: var(--gradient);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  color: #f4f1ff;
  background: rgba(16, 12, 30, 0.82);
  box-shadow: var(--shadow);
  font-size: 0.72rem;
  font-weight: 750;
  backdrop-filter: blur(16px);
}

.floating-chip strong {
  color: var(--green);
}

.floating-chip-left {
  top: 28%;
  left: 0;
}

.floating-chip-right {
  right: 0;
  bottom: 22%;
}

.chip-icon {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #fff;
  background: var(--gradient);
  place-items: center;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  list-style: none;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-item::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-light);
  box-shadow: 0 0 10px rgba(179, 154, 255, 0.7);
  content: "";
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: 1fr;
}

.glass-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.glass-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.18), transparent 68%);
  content: "";
  transition: opacity 220ms ease;
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(159, 125, 255, 0.26);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.03));
  transform: translateY(-5px);
}

.glass-card:hover::after {
  opacity: 1;
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.28), rgba(47, 128, 255, 0.13));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
  place-items: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.glass-card h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
}

.glass-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-label {
  display: inline-flex;
  margin-top: 18px;
  color: var(--violet-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-media {
  position: relative;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: #070610;
  box-shadow: var(--shadow), 0 0 70px rgba(96, 70, 255, 0.12);
  aspect-ratio: 16 / 9;
}

.showcase-media::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(2, 2, 10, 0.32);
  content: "";
  pointer-events: none;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discovery {
  overflow: hidden;
}

.discovery::before {
  position: absolute;
  top: 50%;
  left: 56%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  opacity: 0.65;
  background: radial-gradient(circle, rgba(47, 91, 255, 0.18), rgba(121, 70, 255, 0.07) 36%, transparent 69%);
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.discovery-grid {
  display: grid;
  align-items: center;
  gap: 60px;
}

.discovery-copy .section-copy {
  margin-bottom: 28px;
}

.discovery-flow {
  display: grid;
  gap: 11px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
  font-weight: 650;
}

.flow-number {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #fff;
  background: rgba(139, 92, 246, 0.22);
  font-size: 0.72rem;
  font-weight: 800;
  place-items: center;
}

.globe-stage {
  position: relative;
  min-height: 440px;
}

.globe-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  max-width: 90vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 134, 255, 0.25), rgba(101, 57, 255, 0.09) 44%, transparent 70%);
  transform: translate(-50%, -50%) scale(1.35);
  filter: blur(12px);
}

.globe {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(78vw, 410px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(140, 205, 255, 0.33);
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.42), transparent 4%),
    radial-gradient(ellipse at 29% 38%, #7054e8 0 8%, transparent 9%),
    radial-gradient(ellipse at 37% 50%, #5b55d9 0 17%, transparent 18%),
    radial-gradient(ellipse at 63% 33%, #4658d8 0 15%, transparent 16%),
    radial-gradient(ellipse at 73% 61%, #6f5be5 0 14%, transparent 15%),
    radial-gradient(ellipse at 44% 80%, #454bc4 0 10%, transparent 11%),
    radial-gradient(circle at 35% 30%, #2166bd, #101a66 58%, #070a2a 100%);
  box-shadow:
    inset -55px -35px 90px rgba(0, 0, 0, 0.58),
    inset 20px 12px 60px rgba(87, 174, 255, 0.2),
    0 0 90px rgba(48, 111, 255, 0.28),
    0 40px 90px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
}

.globe-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 34px, rgba(255, 255, 255, 0.45) 35px 36px, transparent 37px 68px),
    linear-gradient(90deg, transparent 49.6%, rgba(255, 255, 255, 0.35) 50%, transparent 50.4%);
  border-radius: 50%;
}

.globe-line {
  position: absolute;
  inset: 10% 44%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.globe-line.second {
  inset: 44% 5%;
}

.globe-pin {
  position: absolute;
  z-index: 3;
  top: 32%;
  left: 60%;
  width: 17px;
  height: 17px;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--violet);
  box-shadow: 0 0 0 8px rgba(139, 92, 246, 0.16), 0 8px 22px rgba(0, 0, 0, 0.5);
  transform: rotate(-45deg);
}

.orbit-ring {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(96vw, 510px);
  height: 175px;
  border: 1px solid rgba(169, 143, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-13deg);
}

.orbit-ring::after {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px rgba(47, 128, 255, 0.85);
  content: "";
}

.globe-fact {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 3%;
  width: min(280px, 78%);
  padding: 17px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(15, 12, 29, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.worldpin-frame {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(100%, 620px);
  overflow: hidden;
  border: 1px solid rgba(178, 158, 255, 0.28);
  border-radius: 30px;
  background: #08051b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5), 0 0 70px rgba(103, 65, 255, 0.22);
  transform: translate(-50%, -50%);
  aspect-ratio: 1.58;
}

.worldpin-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 3, 12, 0.42));
  content: "";
  pointer-events: none;
}

.worldpin-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.globe-fact small {
  display: block;
  margin-bottom: 7px;
  color: var(--violet-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.globe-fact p {
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.48;
}

.globe-fact strong {
  color: #fff;
}

.progression-panel {
  position: relative;
  overflow: hidden;
  padding: 34px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 50%, rgba(50, 102, 255, 0.16), transparent 36%),
    radial-gradient(circle at 10% 0%, rgba(139, 92, 246, 0.2), transparent 38%),
    rgba(16, 12, 29, 0.65);
  box-shadow: var(--shadow);
}

.progression-grid {
  display: grid;
  align-items: center;
  gap: 42px;
}

.progression-copy .section-copy {
  margin-bottom: 25px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat {
  padding: 14px 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
}

.stat strong {
  display: block;
  font-size: 1.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.rank-card {
  position: relative;
  max-width: 390px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(34, 27, 65, 0.95), rgba(13, 12, 28, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.rank-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.rank-emblem {
  display: grid;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 19px;
  background: var(--gradient);
  box-shadow: 0 12px 34px rgba(91, 95, 247, 0.28);
  place-items: center;
}

.rank-emblem svg {
  width: 30px;
  height: 30px;
}

.rank-name small {
  color: var(--violet-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rank-name h3 {
  margin: 3px 0 0;
  font-size: 1.4rem;
}

.progress-track {
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
  appearance: none;
  -webkit-appearance: none;
}

.progress-track::-webkit-progress-bar {
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

.progress-track::-webkit-progress-value {
  border-radius: 99px;
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(92, 96, 247, 0.5);
}

.progress-track::-moz-progress-bar {
  border-radius: 99px;
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(92, 96, 247, 0.5);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.achievement-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.achievement {
  display: grid;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--violet-light);
  background: rgba(255, 255, 255, 0.04);
  place-items: center;
}

.achievement svg {
  width: 24px;
  height: 24px;
}

.platform-grid {
  display: grid;
  gap: 16px;
}

.platform-card {
  display: flex;
  min-height: 228px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.platform-head {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.platform-icon {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  place-items: center;
}

.platform-icon img,
.platform-icon svg {
  width: 25px;
  height: 25px;
}

.zg-platform-icon {
  width: 58px;
  height: 58px;
  margin: -5px;
  border: 0;
  background: transparent;
}

.zg-platform-icon img {
  width: 58px;
  height: 58px;
}

.status-pill {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill.live {
  border-color: rgba(84, 232, 170, 0.22);
  color: var(--green);
  background: rgba(84, 232, 170, 0.07);
}

.platform-card h3 {
  margin-bottom: 8px;
}

.platform-card p {
  flex: 1;
}

.platform-card .button,
.platform-card .store-badge {
  margin-top: 18px;
}

.about-preview {
  text-align: center;
}

.about-preview-inner {
  position: relative;
  overflow: hidden;
  padding: 66px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0, rgba(124, 86, 255, 0.22), transparent 42%),
    rgba(16, 12, 29, 0.56);
}

.about-preview-inner::before {
  position: absolute;
  top: -170px;
  left: 50%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(166, 139, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.about-preview .section-title {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
}

.about-preview .section-copy {
  position: relative;
  max-width: 650px;
  margin: 0 auto 28px;
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(3, 2, 8, 0.38);
}

.footer-grid {
  display: grid;
  gap: 38px;
}

.footer-brand {
  max-width: 330px;
}

.footer-brand .brand {
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 18px;
}

.footer-group h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-group a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.87rem;
  transition: color 180ms ease;
}

.footer-group a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #747082;
  font-size: 0.74rem;
}

.page-hero {
  padding: calc(var(--header-height) + 94px) 0 84px;
  text-align: center;
}

.page-hero .display-title {
  max-width: 900px;
  margin-inline: auto;
}

.page-hero .lead {
  max-width: 690px;
  margin-inline: auto;
}

.mission-grid,
.vision-grid {
  display: grid;
  align-items: center;
  gap: 48px;
}

.statement-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 45% 42%, rgba(75, 120, 255, 0.2), transparent 24%),
    radial-gradient(circle at 55% 55%, rgba(142, 69, 255, 0.18), transparent 35%),
    rgba(15, 12, 28, 0.7);
}

.statement-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 265px;
  height: 265px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.statement-orbit::before,
.statement-orbit::after {
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: inherit;
  content: "";
}

.statement-orbit::after {
  inset: 46% -18%;
}

.statement-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 50px rgba(102, 83, 255, 0.25);
  transform: translate(-50%, -50%);
}

.statement-globe {
  width: 215px;
}

.values-grid {
  display: grid;
  gap: 15px;
}

.value-card {
  padding: 22px;
}

.value-number {
  display: block;
  margin-bottom: 24px;
  color: var(--violet-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.value-card h3 {
  font-size: 1.06rem;
}

.value-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 15px;
}

.timeline::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 19px;
  width: 1px;
  background: linear-gradient(var(--violet), rgba(47, 128, 255, 0.2));
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
}

.timeline-dot {
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(179, 154, 255, 0.35);
  border-radius: 13px;
  color: #fff;
  background: #17112d;
  font-size: 0.7rem;
  font-weight: 850;
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.2);
  place-items: center;
}

.timeline-content {
  padding: 5px 0 28px;
}

.timeline-content time {
  color: var(--violet-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin: 7px 0;
  font-size: 1.25rem;
}

.timeline-content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-featured {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(14, 11, 27, 0.76);
  box-shadow: var(--shadow);
}

.featured-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 35%, rgba(88, 151, 255, 0.38), transparent 18%),
    radial-gradient(circle at 36% 50%, rgba(137, 69, 255, 0.36), transparent 27%),
    linear-gradient(145deg, #161039, #081328);
}

.featured-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: inset -25px -30px 70px rgba(0, 0, 0, 0.45), 0 0 60px rgba(78, 116, 255, 0.3);
  content: "";
  transform: translate(-50%, -50%);
}

.featured-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 100px;
  border: 1px solid rgba(190, 170, 255, 0.28);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-12deg);
}

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.post-category {
  color: var(--violet-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.featured-content p {
  margin-bottom: 24px;
  color: var(--muted-strong);
}

.blog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: rgba(159, 125, 255, 0.38);
  color: #fff;
  background: rgba(139, 92, 246, 0.14);
}

.blog-grid {
  display: grid;
  gap: 16px;
}

.post-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 0;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-visual {
  position: relative;
  height: 144px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 35%, var(--card-accent, rgba(75, 105, 255, 0.4)), transparent 24%),
    linear-gradient(140deg, #17102d, #0c1025);
}

.post-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98px;
  height: 98px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.post-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 178px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-14deg);
}

.post-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px;
}

.post-body .post-meta {
  margin-bottom: 12px;
}

.post-body h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}

.post-body p {
  flex: 1;
  margin-bottom: 18px;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e3dcff;
  font-size: 0.82rem;
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.empty-state {
  display: none;
  padding: 50px 20px;
  color: var(--muted);
  text-align: center;
}

.legal-content {
  max-width: 780px;
  margin-inline: auto;
}

.legal-content h2 {
  margin: 40px 0 12px;
  font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted-strong);
}

.legal-content a {
  color: var(--violet-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid rgba(104, 160, 255, 0.85);
  outline-offset: 3px;
}

@media (min-width: 600px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .section {
    padding: 110px 0;
  }

  .card-grid.three,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .progression-panel {
    padding: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.35fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 860px) {
  :root {
    --header-height: 82px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    visibility: visible;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    opacity: 1;
    background: transparent;
    transform: none;
    backdrop-filter: none;
  }

  .nav-link {
    padding: 10px 12px;
  }

  .nav-cta {
    margin: 0 0 0 8px;
  }

  .hero {
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 50px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
    gap: 30px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero .display-title,
  .hero .lead {
    margin-left: 0;
  }

  .hero-actions,
  .store-row,
  .trust-line {
    justify-content: flex-start;
  }

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

  .phone {
    top: 8px;
    width: 278px;
    height: 554px;
  }

  .floating-chip-left {
    left: 1%;
  }

  .floating-chip-right {
    right: -2%;
  }

  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .discovery-grid,
  .progression-grid,
  .mission-grid,
  .vision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discovery-grid {
    gap: 80px;
  }

  .progression-copy {
    padding-right: 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .blog-featured {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .featured-visual {
    min-height: 430px;
  }

  .featured-content {
    padding: 56px;
  }

  .blog-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

@media (min-width: 1100px) {
  .hero-grid {
    gap: 66px;
  }

  .floating-chip-left {
    left: -6%;
  }

  .floating-chip-right {
    right: -8%;
  }
}

@media (max-width: 420px) {
  .hero-actions .button {
    width: 100%;
  }

  .floating-chip {
    padding: 9px 11px;
    font-size: 0.62rem;
  }

  .floating-chip-left {
    left: -8px;
  }

  .floating-chip-right {
    right: -8px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
