:root {
  --bg: #050507;
  --bg-soft: #0c0c12;
  --panel: #121219;
  --panel-strong: #171824;
  --line: #2a2936;
  --text: #f8f7ff;
  --muted: #b4b2c4;
  --muted-strong: #d7d4e6;
  --violet: #8d66ff;
  --violet-strong: #6f4eff;
  --cyan: #57e3ff;
  --green: #4ade80;
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(141, 102, 255, 0.08), rgba(5, 5, 7, 0) 380px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 76px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 5vw;
  background: rgba(5, 5, 7, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(141, 102, 255, 0.34);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-download {
  color: #08080d;
  background: var(--text);
}

.site-nav .nav-download:hover {
  color: #08080d;
  background: var(--cyan);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 82vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.98) 0%, rgba(5, 5, 7, 0.88) 42%, rgba(5, 5, 7, 0.18) 72%, rgba(5, 5, 7, 0.66) 100%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.1), rgba(5, 5, 7, 0.98));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -5;
  overflow: hidden;
}

.hero-shot {
  position: absolute;
  width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  filter: brightness(1.14) saturate(1.08);
  box-shadow: 0 28px 80px var(--shadow);
}

.hero-shot-a {
  right: 14vw;
  top: 88px;
}

.hero-shot-b {
  right: 4vw;
  top: 148px;
  transform: scale(0.92);
  opacity: 0.82;
}

.hero-shot-c {
  right: 25vw;
  top: 210px;
  transform: scale(0.78);
  opacity: 0.56;
}

.hero-scrim {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 160px;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0), var(--bg));
}

.hero-inner {
  width: min(1120px, 90vw);
  min-height: 82vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 92px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--text);
  color: #050507;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(141, 102, 255, 0.22);
}

.play-button:hover {
  background: var(--cyan);
}

.play-button small {
  display: block;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  color: #31313a;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid var(--violet-strong);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
}

.secondary-link:hover {
  border-color: var(--cyan);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  width: min(540px, 100%);
  margin: 48px 0 0;
}

.hero-stats div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(14, 14, 20, 0.72);
}

.hero-stats dt {
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.intro-band,
.section,
.screens-section,
.privacy-section,
.download-section,
.site-footer {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.intro-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-copy {
  max-width: 760px;
}

.intro-copy h2 {
  font-size: 28px;
}

.intro-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.domain-note {
  min-width: max-content;
  padding: 12px 16px;
  border: 1px solid rgba(87, 227, 255, 0.34);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 900;
  background: rgba(87, 227, 255, 0.08);
}

.section,
.screens-section,
.privacy-section,
.download-section {
  padding: 82px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 620px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.privacy-points article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)), var(--panel);
}

.feature-card p,
.privacy-points p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(141, 102, 255, 0.12);
  border: 1px solid rgba(141, 102, 255, 0.28);
}

.feature-icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: var(--violet);
}

.icon-zap::before {
  clip-path: polygon(48% 0, 100% 0, 62% 42%, 100% 42%, 35% 100%, 50% 55%, 12% 55%);
  background: var(--cyan);
}

.icon-shield::before {
  clip-path: polygon(50% 0, 90% 16%, 84% 68%, 50% 100%, 16% 68%, 10% 16%);
  background: var(--green);
}

.icon-tap::before {
  border-radius: 50%;
  border: 5px solid var(--violet);
  background: transparent;
}

.icon-route::before {
  clip-path: polygon(10% 20%, 48% 20%, 48% 0, 92% 50%, 48% 100%, 48% 78%, 10% 78%);
  background: var(--cyan);
}

.screens-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.screen-gallery figure {
  margin: 0;
}

.screen-gallery img {
  width: 100%;
  aspect-ratio: 333 / 592;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px var(--shadow);
}

.screen-gallery figcaption {
  min-height: 46px;
  padding-top: 12px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.split-copy p:not(.eyebrow),
.privacy-copy p,
.download-section p {
  color: var(--muted);
  font-size: 17px;
}

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

.server-list span {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-strong);
  font-weight: 800;
  background: var(--panel);
}

.server-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.42);
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.privacy-points article {
  min-height: 136px;
}

.download-section {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid rgba(141, 102, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(141, 102, 255, 0.16), rgba(87, 227, 255, 0.06)),
    var(--panel-strong);
}

.download-section img {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(141, 102, 255, 0.34);
}

.download-section h2 {
  font-size: 30px;
}

.download-section p {
  margin: 6px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 44px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer strong {
  display: block;
  color: var(--text);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--cyan);
}

.legal-page {
  width: min(880px, 90vw);
  margin: 0 auto;
  padding: 74px 0 80px;
}

.legal-page h1 {
  font-size: 54px;
}

.legal-page section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page section:last-child {
  border-bottom: 0;
}

.legal-page h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 16px;
}

.legal-page a {
  color: var(--cyan);
  font-weight: 800;
}

.legal-page ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-updated {
  margin: 12px 0 22px;
  color: var(--muted-strong);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero-shot-a {
    right: 6vw;
  }

  .hero-shot-b {
    right: -54px;
  }

  .hero-shot-c {
    right: 22vw;
  }

  .feature-grid,
  .screen-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.72) 48%, rgba(5, 5, 7, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 5, 7, 0.92), rgba(5, 5, 7, 0.52));
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: 92px;
  }

  .hero-shot {
    width: 230px;
  }

  .hero-shot-a {
    right: 10vw;
    top: 390px;
  }

  .hero-shot-b {
    right: -38px;
    top: 430px;
  }

  .hero-shot-c {
    right: 44vw;
    top: 450px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .intro-band,
  .split-section,
  .privacy-section,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .download-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 12px 4vw;
  }

  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding: 0 8px;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .feature-grid,
  .screen-gallery,
  .server-list {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 28px;
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 14px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

  .hero-actions,
  .play-button,
  .secondary-link {
    width: 100%;
  }

  .play-button,
  .secondary-link {
    justify-content: center;
  }

  .screen-gallery {
    gap: 26px;
  }

  .screen-gallery img {
    width: min(333px, 100%);
    margin: 0 auto;
  }

  .screen-gallery figcaption {
    text-align: center;
  }

  h1 {
    font-size: 44px;
  }

  .legal-page h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .section,
  .screens-section,
  .privacy-section,
  .download-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .download-section {
    padding: 22px;
  }
}
