:root {
  --bg: #000;
  --bg-alt: #050505;
  --fg: #f2f2f2;
  --green: #19E68C;
  --green-light: #6FF5BF;
  --line: #1c1c1c;
  --line-2: #232323;
  --line-3: #3a3a3a;
  --muted: #9a9a9a;
  --muted-2: #8f8f8f;
  --muted-3: #6a6a6a;
  --card-bg: #0a0a0a;
  --card-bg-hover: #0f0f0f;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: Archivo, sans-serif;
}

a {
  color: var(--green);
  text-decoration: none;
}
a:hover { color: var(--green-light); }

::selection {
  background: var(--green);
  color: #000;
}

.mono { font-family: 'Space Grotesk', ui-monospace, monospace; }

.accent { color: var(--green); }

/* ── Nav ─────────────────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.navbar-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.03em;
  flex: none;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  min-width: 0;
}

.nav-link { color: #c9c9c9; }
.nav-link:hover { color: var(--green); }

.nav-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  border: 1px solid var(--line-3);
  padding: 11px 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.nav-contact:hover { border-color: var(--green); color: #fff; }

.nav-contact .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

/* ── Hero ────────────────────────────────────────── */

.hero {
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#0d0d0d 1px, transparent 1px),
    linear-gradient(90deg, #0d0d0d 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-inner {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 78px 40px 84px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.05fr) minmax(170px, 200px);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  font-size: 12.5px;
  color: var(--green);
  letter-spacing: 0.14em;
  margin-bottom: 26px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 13ch;
  text-wrap: balance;
}

.hero-lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: #a8a8a8;
  max-width: 42ch;
  margin: 26px 0 0;
  text-wrap: pretty;
}

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

.btn-cta {
  color: #fff;
  border: 1px solid var(--green);
  padding: 15px 28px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.btn-cta:hover { background: var(--green); color: #000; }

.link-quiet {
  color: #c9c9c9;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.link-quiet:hover { color: var(--green); }

.hero-visual-wrap {
  position: relative;
  aspect-ratio: 1 / 0.82;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-stat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hero-stat-bar {
  width: 16px;
  height: 2px;
  background: var(--green);
  margin-top: 9px;
  flex: none;
}

.hero-stat-big {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
}

.hero-stat-sub {
  font-size: 12.5px;
  color: var(--muted-2);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Shared section layout ──────────────────────── */

.section {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 72px;
}

.section-platform { background: var(--bg-alt); }

.section-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 56px 40px 60px;
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.section-grid-center { align-items: center; padding: 52px 40px 56px; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
}

.section-lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 16px 0 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--green);
}
.link-arrow:hover { color: var(--green-light); }

/* ── Brands ──────────────────────────────────────── */

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 14px;
  min-width: 0;
}

.brand-card {
  border: 1px solid var(--line-2);
  border-top: 2px solid;
  background: var(--card-bg);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  min-height: 172px;
}
.brand-card:hover {
  border-color: #3d3d3d;
  background: var(--card-bg-hover);
}

.brand-num {
  font-size: 11px;
  color: var(--muted-3);
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.03em;
  margin-top: 14px;
  color: #fff;
}

.brand-pronounce {
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
  margin-top: 6px;
}

.brand-market {
  font-size: 11.5px;
  color: var(--muted-2);
  margin-top: 9px;
}

.brand-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: #a8a8a8;
  margin-top: 9px;
  flex: 1;
}

.brand-arrow {
  font-size: 15px;
  color: var(--muted-3);
  margin-top: 14px;
}

/* ── Platform modules ────────────────────────────── */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  align-items: start;
  row-gap: 26px;
  min-width: 0;
}

.module {
  padding: 0 10px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
}

.module-first { border-left-color: transparent; }

.module-icon { color: var(--fg); }

.module-code {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
}

.module-desc {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted-2);
}

/* ── Network ─────────────────────────────────────── */

.network-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 52px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  align-items: start;
}

.purpose-label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--green); }

.purpose-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 14px 0 0;
}

.network-col {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  margin-top: 20px;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 27px;
  letter-spacing: -0.03em;
  color: #fff;
}

.stat-label { font-size: 11.5px; color: var(--muted-2); margin-top: 3px; }

.values-list {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}

.value-icon { color: #e6e6e6; }

.value-name { font-size: 11px; color: var(--muted); line-height: 1.35; }

.powered-block {
  border: 1px solid var(--line-2);
  background: var(--card-bg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.powered-label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--green); }

.powered-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 14px 0 0;
}

/* ── Belief ──────────────────────────────────────── */

.belief-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 40px;
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.belief-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 26ch;
}

.belief-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
  margin: 18px 0 0;
}

/* ── Careers ─────────────────────────────────────── */

.careers-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.careers-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 50px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  max-width: 20ch;
}

.careers-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  color: #000;
  background: var(--green);
  padding: 15px 30px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.btn-primary:hover { background: var(--green-light); color: #000; }

.btn-secondary {
  color: #fff;
  border: 1px solid var(--line-3);
  padding: 15px 30px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  scroll-margin-top: 72px;
}
.btn-secondary:hover { border-color: var(--green); color: #fff; }

/* ── Footer ──────────────────────────────────────── */

.site-footer { scroll-margin-top: 72px; }

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 40px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-copy { font-size: 12px; color: var(--muted-3); }

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--fg);
  font-size: 14px;
}

.footer-links { display: flex; gap: 26px; font-size: 12px; }

.footer-link { color: var(--muted-2); }
.footer-link:hover { color: var(--green); }

.footer-social { display: flex; gap: 16px; color: var(--muted-2); }
.footer-social a { color: inherit; }

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 900px) {
  .hero-inner,
  .section-grid,
  .section-grid-center,
  .network-grid,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-wrap { aspect-ratio: 16 / 9; }

  .network-col {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }
}

@media (max-width: 640px) {
  .navbar-inner,
  .hero-inner,
  .section-grid,
  .section-grid-center,
  .network-grid,
  .belief-grid,
  .careers-inner,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-inner { gap: 12px; }

  .logo { font-size: 22px; }

  .nav-links {
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }

  .nav-contact { padding: 9px 16px; white-space: nowrap; }

  .hero-actions { gap: 18px; }

  .footer-inner { justify-content: flex-start; }
}
