:root {
  --bg: #080a0d;
  --panel: #111820;
  --panel-2: #17212b;
  --paper: #f4efe5;
  --paper-2: #fffaf1;
  --ink: #111418;
  --text: #f7f4ea;
  --muted: #aab4c1;
  --muted-dark: #596574;
  --line: rgba(255, 255, 255, .13);
  --dark-line: rgba(17, 20, 24, .14);
  --green: #37d67a;
  --cyan: #5ad9df;
  --rust: #9c351f;
  --font: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(55, 214, 122, .11), transparent 28%),
    linear-gradient(225deg, rgba(90, 217, 223, .08), transparent 34%),
    linear-gradient(180deg, #080a0d 0%, #111821 58%, #080a0d 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .052) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  pointer-events: none;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6.5vw, 78px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.4vw, 30px);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(8, 10, 13, .88);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand span {
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 244, 234, .72);
  font-size: 14px;
  font-weight: 900;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  background: var(--green);
  font-weight: 950;
  text-align: center;
}

.btn.ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}

.hero {
  padding: clamp(54px, 8vw, 96px) 0 clamp(48px, 7vw, 78px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.lead {
  max-width: 790px;
  margin-bottom: 0;
  color: rgba(247, 244, 234, .74);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
}

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

.hero-shot {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.hero-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #080a0d;
}

.hero-shot figcaption {
  padding: 16px;
  color: rgba(247, 244, 234, .72);
  font-size: 14px;
  font-weight: 850;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.proof-row span {
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, .06);
  color: rgba(247, 244, 234, .7);
  font-size: 13px;
  font-weight: 850;
}

.proof-row b {
  display: block;
  color: #fff;
  font-size: 22px;
}

.section {
  padding: clamp(54px, 8vw, 88px) 0;
}

.paper {
  background: var(--paper);
  color: var(--ink);
}

.paper .kicker {
  color: var(--rust);
}

.paper .lead {
  color: var(--muted-dark);
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(260px, .55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.niche-grid,
.info-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.niche-card,
.info-box,
.faq-box {
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 16px 42px rgba(8, 10, 13, .06);
}

.niche-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
}

.niche-card small,
.info-box small,
.faq-box small {
  color: var(--rust);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.niche-card h3,
.info-box h3,
.faq-box h3 {
  color: var(--ink);
  margin: 12px 0 10px;
}

.niche-card p,
.info-box p,
.faq-box p,
.niche-card li,
.info-box li {
  color: var(--muted-dark);
  font-weight: 780;
}

.niche-card span {
  margin-top: auto;
  color: var(--ink);
  font-weight: 950;
}

.dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dark-box {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  padding: 24px;
}

.dark-box b {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dark-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.dark-box li,
.dark-box p {
  color: rgba(247, 244, 234, .74);
  font-weight: 820;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(247, 244, 234, .64);
  font-size: 14px;
  font-weight: 850;
}

.breadcrumbs a {
  color: rgba(247, 244, 234, .84);
}

.cta-band {
  padding: 30px;
  border: 1px solid rgba(55, 214, 122, .3);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(55, 214, 122, .15), rgba(90, 217, 223, .08));
}

.cta-band p {
  max-width: 800px;
  color: rgba(247, 244, 234, .76);
  font-weight: 820;
}

.footer {
  padding: 34px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(247, 244, 234, .64);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-weight: 850;
}

@media (max-width: 920px) {
  .hero-grid,
  .split-head,
  .dark-grid {
    grid-template-columns: 1fr;
  }

  .proof-row,
  .niche-grid,
  .info-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 520px);
  }

  .site-header {
    position: relative;
  }

  .nav {
    min-height: auto;
    flex-wrap: wrap;
    padding: 10px 0 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .nav > .btn {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .proof-row,
  .niche-grid,
  .info-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-shot img {
    aspect-ratio: 4 / 3;
  }

  .btn {
    width: 100%;
  }

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

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