:root {
  color-scheme: dark;
  --bg: #050409;
  --bg-2: #08060f;
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --cyan: #18d9ff;
  --pink: #ff1d99;
  --lime: #5fff66;
  --gold: #ffb800;
  --max: 1180px;
  --radius: 8px;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(155deg, rgba(255, 29, 153, 0.16) 0%, rgba(255, 29, 153, 0) 33%),
    linear-gradient(25deg, rgba(24, 217, 255, 0.13) 0%, rgba(24, 217, 255, 0) 36%),
    linear-gradient(180deg, #020105 0%, var(--bg-2) 46%, #020105 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.compact {
  top: 12px;
  padding: 10px;
  min-height: auto;
  background: rgba(5, 4, 9, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 0.98rem;
  font-weight: 900;
}

.brand img,
.site-footer img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(24, 217, 255, 0.35);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(300px, 390px);
  gap: 34px;
  justify-content: center;
  align-items: center;
  width: min(calc(100% - 40px), 1040px);
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  overflow: hidden;
  padding: 112px 0 42px;
}

.hero::before {
  position: absolute;
  inset: 24% 8% auto auto;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(24, 217, 255, 0.28), transparent 68%);
  filter: blur(12px);
}

.hero-media {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}

.phone {
  line-height: 0;
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 34px 60px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 34px rgba(24, 217, 255, 0.22));
}

.phone-primary {
  width: min(100%, 390px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 720px;
}

.eyebrow,
.feature-index {
  display: block;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(24, 217, 255, 0.5);
}

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

h1 {
  margin-bottom: 16px;
  max-width: 7ch;
  font-size: 5.1rem;
  line-height: 0.92;
  font-weight: 1000;
}

.hero-lede {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.24rem;
  line-height: 1.55;
  font-weight: 680;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 950;
  cursor: pointer;
}

.button-primary {
  border-color: rgba(24, 217, 255, 0.68);
  background: linear-gradient(135deg, #b9f5ff, var(--cyan) 54%, #4aaeff);
  color: #020105;
  box-shadow: 0 0 32px rgba(24, 217, 255, 0.36);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-small {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.88rem;
}

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

.policy-hero h1 {
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 1000;
}

.policy-hero p,
.policy-content p,
.feature-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

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

.feature-card {
  min-height: 210px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.feature-card:nth-child(2) .feature-index {
  color: var(--pink);
  text-shadow: 0 0 16px rgba(255, 29, 153, 0.5);
}

.feature-card:nth-child(3) .feature-index {
  color: var(--lime);
  text-shadow: 0 0 16px rgba(95, 255, 102, 0.44);
}

.feature-card:nth-child(4) .feature-index {
  color: var(--gold);
  text-shadow: 0 0 16px rgba(255, 184, 0, 0.44);
}

.feature-card h3,
.feature-card h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 1000;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.policy-page {
  padding-top: 144px;
}

.policy-hero {
  max-width: 760px;
  padding-bottom: 36px;
}

.policy-hero h1 {
  max-width: 11ch;
}

.support-hero h1 {
  max-width: 13ch;
}

.policy-content {
  display: grid;
  gap: 12px;
  max-width: 850px;
  padding-bottom: 80px;
}

.policy-content article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.policy-content h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.policy-content p {
  margin-bottom: 0;
}

.policy-content p + p,
.policy-content p + ul,
.policy-content ul + p {
  margin-top: 14px;
}

.policy-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.62;
}

.policy-content li + li {
  margin-top: 8px;
}

.policy-content a {
  color: var(--cyan);
  font-weight: 900;
}

.support-grid {
  padding-bottom: 80px;
}

.copy-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--lime);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer div {
  font-weight: 1000;
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
  text-align: center;
}

.site-footer nav {
  justify-content: flex-end;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 52px;
  }

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

  h1 {
    max-width: none;
    font-size: 4.1rem;
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .phone-primary {
    width: min(100%, 330px);
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer div,
  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 22px);
  }

  .brand span {
    max-width: 108px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero {
    padding-inline: 18px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions,
  .support-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .feature-card,
  .policy-content article {
    padding: 18px;
  }

  .policy-page,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .policy-hero h1 {
    font-size: 2.35rem;
  }

  .phone-primary {
    width: min(100%, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
