:root {
  color-scheme: dark;
  --bg: #090b0f;
  --panel: #101820;
  --panel-soft: rgba(16, 24, 32, 0.72);
  --text: #f4f8fb;
  --muted: #a9b7be;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #25d0bc;
  --accent-2: #f4b449;
}

* {
  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;
}

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

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 24px clamp(18px, 4vw, 56px) 64px;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 11, 15, 0.96) 0%, rgba(9, 11, 15, 0.78) 42%, rgba(9, 11, 15, 0.34) 100%),
    linear-gradient(0deg, rgba(9, 11, 15, 0.95) 0%, rgba(9, 11, 15, 0.12) 52%);
}

.topbar,
.hero-content {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(37, 208, 188, 0.58);
  background: rgba(37, 208, 188, 0.14);
  color: var(--accent);
  font-weight: 900;
}

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

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

.hero-content {
  align-self: center;
  max-width: 740px;
  padding-top: 72px;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  margin-bottom: 32px;
  color: #d8e3e7;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 680px;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 750;
}

.primary-action {
  background: var(--accent);
  color: #07100f;
  border-color: transparent;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.section {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

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

.section h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  min-height: 220px;
  padding: 26px;
  background: var(--panel);
}

.feature-kicker {
  display: block;
  margin-bottom: 42px;
  color: var(--accent-2);
  font-weight: 800;
}

.feature h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.app-list {
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.app-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.app-row:last-child {
  border-bottom: 0;
}

.app-row span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.app-row strong {
  color: var(--text);
}

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

@media (max-width: 820px) {
  .hero {
    min-height: 82vh;
  }

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .feature {
    min-height: 0;
  }

  .app-row {
    grid-template-columns: 1fr;
  }
}
