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

:root {
  --bg: #09090b;
  --bg2: #0f0f12;
  --surface: #18181b;
  --surface2: #1f1f23;
  --border: #27272a;
  --border2: #3f3f46;
  --accent: #8b5cf6;
  --accent2: #a78bfa;
  --accent-d: rgba(139, 92, 246, 0.14);
  --text: #fafafa;
  --muted: #a1a1aa;
  --muted2: #71717a;
  --good: #22c55e;
  --r: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
}

nav {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(9, 9, 11, 0.92);
  border-bottom: 1px solid var(--border);
  display: flex;
  height: 62px;
  justify-content: space-between;
  padding: 0 56px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  align-items: center;
  color: var(--text);
  display: flex;
  font-size: 17px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.3px;
  text-decoration: none;
}

.logo-dot {
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  height: 9px;
  width: 9px;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

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

.nav-cta,
.btn-primary {
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta {
  color: #fff;
  font-size: 14px;
  padding: 9px 18px;
}

.nav-links a.nav-cta,
.nav-links a.nav-cta:visited,
.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:focus,
.nav-links a.nav-cta:active {
  color: #fff;
}

.nav-cta:hover,
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  text-decoration: none;
}

.hero {
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.96), rgba(9, 9, 11, 0.7) 48%, rgba(9, 9, 11, 0.96)),
    url("../images/space.jpg") center / cover;
  border-bottom: 1px solid var(--border);
  min-height: calc(100svh - 62px);
  overflow: hidden;
  padding: 92px 56px 72px;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 62%);
  content: "";
  height: 620px;
  left: -180px;
  pointer-events: none;
  position: absolute;
  top: -220px;
  width: 620px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  margin: 0 auto;
  max-width: 1180px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 100%;
  min-width: 0;
}

.hero-tag,
.label {
  color: var(--accent2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero-tag {
  align-items: center;
  border: 1px solid var(--border2);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 14px;
}

.hero-tag span {
  background: var(--accent);
  border-radius: 999px;
  height: 6px;
  width: 6px;
}

h1 {
  font-size: clamp(44px, 6.4vw, 82px);
  font-weight: 700;
  letter-spacing: -3.6px;
  line-height: 1.02;
  margin-bottom: 24px;
}

h1 em {
  color: var(--accent2);
  font-style: normal;
}

.hero-copy p,
.section-sub,
.policy-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-copy p {
  max-width: 600px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.trust-row {
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 46px;
  padding-top: 24px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.product-shot {
  background: rgba(24, 24, 27, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  overflow: hidden;
  transform: rotate(1deg);
  width: 100%;
}

.browser-bar {
  align-items: center;
  background: rgba(15, 15, 18, 0.92);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 9px;
  height: 48px;
  padding: 0 16px;
}

.traffic {
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.traffic:nth-child(1) {
  background: #ef4444;
}

.traffic:nth-child(2) {
  background: #eab308;
}

.traffic:nth-child(3) {
  background: #22c55e;
}

.address {
  background: #09090b;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted2);
  flex: 1;
  font-size: 12px;
  min-width: 0;
  overflow: hidden;
  padding: 7px 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-body {
  display: grid;
  grid-template-columns: 1fr 310px;
  min-height: 520px;
}

.mock-page {
  background: rgba(9, 9, 11, 0.72);
  padding: 32px;
}

.mock-page h3 {
  font-size: 32px;
  letter-spacing: -1.6px;
  line-height: 1.1;
  margin: 16px 0 28px;
  max-width: 330px;
}

.mock-line {
  background: #2a2a30;
  border-radius: 999px;
  height: 10px;
  margin: 13px 0;
}

.mock-line.short {
  width: 64%;
}

.mock-line.mid {
  width: 78%;
}

.mock-line.long {
  width: 94%;
}

.mock-visual {
  background:
    radial-gradient(circle at 75% 35%, rgba(167, 139, 250, 0.55), transparent 28%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.86), rgba(34, 197, 94, 0.42));
  border-radius: 16px;
  height: 146px;
  margin: 24px 0 28px;
}

.side-panel {
  background: #fafafa;
  color: #111114;
  padding: 24px;
}

.side-panel h3 {
  color: #111114;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin: 0 0 4px;
}

.tab-name {
  border-bottom: 1px solid #d4d4d8;
  color: #71717a;
  font-size: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.summary-list {
  display: grid;
  gap: 14px;
}

.summary-item {
  display: grid;
  gap: 8px;
  grid-template-columns: 9px 1fr;
}

.summary-item::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 7px;
  margin-top: 8px;
  width: 7px;
}

.summary-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}

.summary-item span {
  color: #52525b;
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 3px;
}

.ask-box {
  border-top: 1px solid #d4d4d8;
  margin-top: 20px;
  padding-top: 16px;
}

.ask-box p {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 10px;
  color: #3f3f46;
  font-size: 12px;
  line-height: 1.4;
  padding: 10px;
}

.section {
  padding: 96px 56px;
}

.section.dark {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.section-inner {
  margin: 0 auto;
  max-width: 1100px;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.section-sub {
  max-width: 620px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
}

.feature h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
  margin: 18px 0 10px;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.icon {
  align-items: center;
  background: var(--accent-d);
  border-radius: 12px;
  color: var(--accent2);
  display: flex;
  font-size: 20px;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.flow {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
}

.flow-step {
  border: 1px solid var(--border);
  margin-left: -1px;
  padding: 34px;
}

.flow-num {
  color: var(--accent2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.flow-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.flow-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.privacy-band {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
}

.privacy-list {
  display: grid;
  gap: 12px;
}

.privacy-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  list-style: none;
  padding: 16px 18px;
}

.privacy-list strong {
  color: var(--text);
}

.final {
  padding-bottom: 112px;
  text-align: center;
}

.final .section-sub {
  margin: 0 auto;
}

.legal-page {
  padding: 76px 56px 112px;
}

.legal-wrap {
  margin: 0 auto;
  max-width: 860px;
}

.legal-wrap h1 {
  font-size: clamp(38px, 5vw, 66px);
  margin-bottom: 20px;
}

.policy-meta {
  color: var(--muted2);
  font-size: 14px;
  margin: 18px 0 42px;
}

.policy-section {
  border-top: 1px solid var(--border);
  padding: 34px 0;
}

.policy-section h2 {
  font-size: 26px;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  margin-bottom: 12px;
}

.policy-section ul {
  padding-left: 20px;
}

.policy-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--muted);
  margin-top: 24px;
  padding: 22px;
}

footer {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 34px 56px;
}

footer p,
footer a {
  color: var(--muted2);
  font-size: 13px;
  text-decoration: none;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero,
  .section,
  .legal-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-grid,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .product-shot {
    transform: none;
  }

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

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

@media (max-width: 680px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    display: block;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-copy {
    max-width: 330px;
    width: min(100%, 330px);
  }

  h1 {
    font-size: 36px;
    letter-spacing: -2px;
    max-width: 340px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy p,
  .section-sub,
  .policy-lead {
    font-size: 16px;
  }

  .btn-group {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .mock-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-shot {
    margin-top: 48px;
    max-width: 330px;
    width: min(100%, 330px);
  }

  .mock-page {
    display: none;
  }

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

  footer {
    padding: 28px 24px;
  }
}
