:root {
  color-scheme: dark;
  --bg: #070a0f;
  --bg-soft: #0c1118;
  --surface: #111821;
  --surface-strong: #151e29;
  --line: #253142;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f3f7fb;
  --muted: #a7b1bf;
  --muted-strong: #c4ccd6;
  --green: #00e676;
  --green-dark: #00b85d;
  --blue: #3d7cff;
  --cyan: #16d6c8;
  --warning: #ffd43b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(61, 124, 255, 0.08), transparent 420px),
    radial-gradient(circle at top center, rgba(0, 230, 118, 0.08), transparent 380px),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

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

p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px max(24px, calc((100% - 1160px) / 2));
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 10, 15, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.main-nav a,
.header-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  padding: 0 14px;
}

.main-nav a:hover,
.header-action:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.header-action {
  padding: 0 16px;
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: var(--green);
}

.hero,
.section,
.site-footer,
.legal-page {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 54px;
  align-items: center;
  padding: 58px 0 48px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(0, 230, 118, 0.28);
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.08);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: 4.6rem;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.1rem;
}

.hero-text {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.16rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #04100a;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.hero-proof div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 8px;
  color: var(--text);
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 92px 0;
  border-top: 1px solid var(--line-soft);
}

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

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

.product-panel,
.feature-item,
.role-grid article,
.capture-card,
.trust-section,
.launch-section,
.legal-content article {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.product-panel {
  min-height: 278px;
  padding: 24px;
}

.panel-number {
  display: block;
  margin-bottom: 52px;
  color: var(--green);
  font-weight: 900;
}

.product-panel h3,
.feature-item h3,
.role-grid h3 {
  margin-bottom: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 115px;
}

.split-copy p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.05rem;
}

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

.feature-item {
  padding: 22px;
}

.feature-item::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

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

.role-grid article {
  padding: 24px;
}

.capture-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.capture-card {
  overflow: hidden;
  margin: 0;
}

.capture-card.large {
  grid-row: span 2;
}

.capture-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line-soft);
}

.capture-card figcaption {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.capture-card strong {
  color: var(--text);
}

.capture-card span {
  color: var(--muted);
  line-height: 1.45;
}

.trust-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.trust-section .eyebrow {
  margin-bottom: 14px;
}

.text-link {
  color: var(--green);
  font-weight: 800;
}

.launch-section {
  padding: 44px;
  text-align: center;
}

.launch-section .eyebrow {
  margin-inline: auto;
}

.launch-section p {
  max-width: 720px;
  margin: 18px auto 0;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line-soft);
}

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

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.legal-page {
  padding: 64px 0 90px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 32px;
}

.legal-hero h1 {
  font-size: 3.4rem;
}

.legal-hero p:not(.eyebrow) {
  margin-top: 16px;
}

.legal-content {
  display: grid;
  gap: 14px;
}

.legal-content article {
  padding: 24px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 46px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-visual {
    max-width: 640px;
  }

  .product-grid,
  .role-grid,
  .split-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 20px;
  }

  .header-action {
    display: none;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .main-nav a {
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero,
  .section,
  .site-footer,
  .legal-page {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    gap: 28px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .legal-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

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

  .capture-card.large {
    grid-row: auto;
  }

  .launch-section,
  .trust-section {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
