:root {
  --bg: #0b1220;
  --bg-soft: #111c31;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #a7b4c8;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #52d2ff;
  --accent-2: #7c5cff;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(82, 210, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 20%, rgba(124, 92, 255, 0.18), transparent 30rem),
    var(--bg);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(11, 18, 32, 0.78);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06111f;
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(82, 210, 255, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(82, 210, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.hero {
  padding: 94px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}

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

h1 {
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  max-width: 630px;
  margin-bottom: 30px;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-card {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.phone {
  width: min(330px, 90%);
  height: 620px;
  border-radius: 44px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.phone-top {
  width: 96px;
  height: 26px;
  border-radius: 999px;
  background: #050914;
  margin: 0 auto 14px;
}

.app-screen {
  height: calc(100% - 40px);
  border-radius: 32px;
  padding: 26px;
  background:
    linear-gradient(160deg, rgba(82,210,255,0.2), transparent 42%),
    linear-gradient(340deg, rgba(124,92,255,0.3), transparent 50%),
    #101a2e;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.screen-badge {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  margin-bottom: auto;
  color: #d8f6ff;
  font-weight: 750;
  font-size: 13px;
}

.app-screen h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.app-screen p {
  color: var(--muted);
}

.screen-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.screen-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.screen-list strong {
  color: var(--accent);
}

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

.orb-one {
  width: 190px;
  height: 190px;
  background: rgba(82, 210, 255, 0.22);
  left: 8%;
  top: 12%;
}

.orb-two {
  width: 150px;
  height: 150px;
  background: rgba(124, 92, 255, 0.24);
  right: 3%;
  bottom: 9%;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-head p,
.rich-text p,
.value p,
.app-card p,
.cta p,
.footer p,
.legal p,
.legal li {
  color: var(--muted);
}

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

.app-card,
.value,
.cta-box,
.legal {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
}

.app-card {
  padding: 24px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
}

.app-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(82,210,255,0.25), rgba(124,92,255,0.32));
  color: #dff8ff;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.store-links a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.05);
  font-size: 14px;
  font-weight: 700;
}

.store-links a:hover {
  background: var(--card-strong);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 50px;
  align-items: start;
}

.rich-text {
  font-size: 18px;
}

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

.value {
  padding: 24px;
}

.cta {
  padding-top: 36px;
}

.cta-box {
  padding: 34px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 22px;
  background: rgba(0, 0, 0, 0.16);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

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

.copyright {
  color: var(--muted);
  font-size: 14px;
  padding-top: 18px;
}

.legal-page {
  padding: 56px 0 80px;
}

.legal {
  padding: min(6vw, 54px);
  max-width: 900px;
}

.legal h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.legal h2 {
  font-size: 25px;
  margin-top: 34px;
}

.legal a {
  color: var(--accent);
  text-decoration: underline;
}

.updated {
  margin-bottom: 30px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links:not(.nav-links-static) {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(12, 19, 34, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split,
  .app-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-card {
    min-height: 440px;
  }

  .phone {
    height: 480px;
  }

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

  .nav-links-static {
    gap: 12px;
    font-size: 13px;
  }

  .brand span {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    text-align: center;
  }

  .phone {
    width: 100%;
    height: 430px;
  }

  .app-screen h2 {
    font-size: 28px;
  }
}
