:root {
  color-scheme: dark;
  --bg: #07070a;
  --panel: #111118;
  --panel-2: #171721;
  --text: #f6f3ff;
  --muted: #bab5c8;
  --line: rgba(255, 255, 255, 0.14);
  --purple: #8a2bdf;
  --lime: #aaff00;
  --cyan: #55d7ff;
  --rose: #ff64b4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(7, 7, 10, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav a:hover {
  color: var(--lime);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0.72) 42%, rgba(7, 7, 10, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0) 45%),
    url("/assets/hero.jpg") center right / cover no-repeat;
}

.hero-content {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: #ddd7ed;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button-primary {
  background: var(--lime);
  color: #111;
}

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

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
}

.intro-grid,
.tool-grid,
.steps {
  display: grid;
  gap: 14px;
}

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

.intro-grid article,
.tool-card,
.steps li,
.launch {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

.intro-grid article {
  min-height: 160px;
  padding: 22px;
}

.intro-grid strong,
.intro-grid span {
  display: block;
}

.intro-grid strong {
  margin-bottom: 12px;
  font-size: 19px;
}

.intro-grid span,
.tool-card p,
.steps p,
.launch p,
.showcase-copy p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

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

.tool-card {
  min-height: 280px;
  padding: 24px;
}

.tool-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: rgba(170, 255, 0, 0.12);
  color: var(--lime);
  font-weight: 900;
}

.tool-card:nth-child(2) .tool-index {
  background: rgba(85, 215, 255, 0.12);
  color: var(--cyan);
}

.tool-card:nth-child(3) .tool-index {
  background: rgba(255, 100, 180, 0.13);
  color: var(--rose);
}

.tool-card:nth-child(4) .tool-index {
  background: rgba(138, 43, 223, 0.2);
  color: #c692ff;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  min-height: 560px;
  margin: 36px 0;
  background: #c6ff00;
  color: #09090b;
}

.showcase img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 72px);
}

.showcase-copy .section-kicker {
  color: #7b18c9;
}

.showcase-copy p {
  color: #202020;
  font-size: 18px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  padding: 24px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cyan);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.launch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 28px;
  padding: clamp(26px, 5vw, 48px);
}

.status-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.status-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
}

.status-ready {
  background: rgba(170, 255, 0, 0.14);
  color: var(--lime);
}

.status-soon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .intro,
  .showcase,
  .launch {
    grid-template-columns: 1fr;
  }

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

  .showcase img {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    background:
      linear-gradient(0deg, rgba(7, 7, 10, 0.96) 0%, rgba(7, 7, 10, 0.68) 52%, rgba(7, 7, 10, 0.18) 100%),
      url("/assets/hero.jpg") center top / cover no-repeat;
  }

  .hero-content {
    width: min(100% - 28px, 900px);
    padding: 58svh 0 54px;
  }

  .lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .intro-grid,
  .tool-grid,
  .steps,
  .status-list {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .steps li {
    min-height: auto;
  }

  .tool-index,
  .steps span {
    margin-bottom: 22px;
  }

  .footer {
    flex-direction: column;
  }
}
