:root {
  color-scheme: dark;
  --bg: #07080c;
  --bg-soft: #0d1118;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f7f8fb;
  --muted: #b8c0ce;
  --quiet: #8791a2;
  --blue: #67a5ff;
  --green: #74d6a4;
  --pink: #e99bc1;
  --gold: #e7c36c;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: rgba(103, 165, 255, 0.34);
}

a {
  color: inherit;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 26px;
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: 42px;
  height: 26px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand-mark img:nth-child(1) {
  transform: translate(-3px, 3px);
  opacity: 0.72;
}

.brand-mark img:nth-child(2) {
  transform: translate(0, 0);
  opacity: 0.9;
}

.brand-mark img:nth-child(3) {
  transform: translate(3px, -3px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(6, 8, 13, 0.48);
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 84vh, 840px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.96) 0%, rgba(7, 8, 12, 0.84) 33%, rgba(7, 8, 12, 0.35) 70%, rgba(7, 8, 12, 0.78) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 8, 12, 0.2) 34%, rgba(7, 8, 12, 0.08) 100%);
}

.hero::after {
  z-index: -1;
  border-bottom: 1px solid var(--line-soft);
}

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0 74px;
}

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

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

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(58px, 10vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 26px;
  color: rgba(247, 248, 251, 0.82);
  font-size: clamp(20px, 2.25vw, 29px);
  line-height: 1.28;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #fff;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--surface-strong);
  border-color: rgba(255, 255, 255, 0.24);
  outline: none;
}

.button.primary {
  border-color: rgba(255, 255, 255, 0.9);
  background: #fff;
  color: #07080c;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-meta li,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

main {
  background: var(--bg);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.section.compact {
  padding: 66px 0;
}

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

h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.proof-strip {
  border-bottom: 1px solid var(--line-soft);
  background: #090b11;
}

.proof-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}

.proof-item {
  min-height: 104px;
  padding: 22px 20px;
  border-right: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 18px;
}

.proof-item span {
  color: var(--quiet);
  font-size: 14px;
}

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

.feature-card,
.pro-panel,
.support-card,
.policy-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-card {
  padding: 23px;
}

.feature-card p,
.support-card p,
.policy-card p,
.policy-card li,
.support-card li {
  color: var(--muted);
}

.tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.tag.pink {
  color: var(--pink);
}

.tag.gold {
  color: var(--gold);
}

.showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.screenshot-tile {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #0c0f15;
}

.screenshot-tile.large {
  position: sticky;
  top: 20px;
}

.screenshot-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.screenshot-tile figcaption {
  padding: 15px 16px 17px;
  color: var(--muted);
  font-size: 14px;
}

.screenshot-stack {
  display: grid;
  gap: 18px;
}

.pro-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
}

.pro-copy {
  padding: 34px;
}

.pro-copy .lead {
  margin-bottom: 22px;
}

.pro-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pro-list li {
  padding: 12px 13px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
}

.pro-media {
  min-height: 100%;
  border-left: 1px solid var(--line-soft);
}

.pro-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.source-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.source-item {
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.source-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.source-item span {
  color: var(--muted);
  font-size: 15px;
}

.note-band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #0b0e14;
}

.note-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0;
  color: var(--muted);
  font-size: 16px;
}

.page-hero {
  padding: 144px 0 58px;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(12, 17, 25, 0.96), rgba(7, 8, 12, 1)),
    #0a0d13;
}

.page-hero .section {
  padding: 0;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 8vw, 84px);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}

.support-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.support-card,
.policy-card {
  padding: 24px;
}

.support-card ul,
.policy-card ul {
  margin: 13px 0 0;
  padding-left: 20px;
}

.support-card li,
.policy-card li {
  margin: 8px 0;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 15px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-weight: 720;
  text-decoration: none;
}

.link-row span {
  color: var(--quiet);
  font-size: 13px;
}

.link-row:hover,
.link-row:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #050609;
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  color: var(--quiet);
  font-size: 14px;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  outline: none;
}

@media (max-width: 900px) {
  .site-header {
    width: min(var(--max), calc(100% - 32px));
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(7, 8, 12, 0.78) 40%, rgba(7, 8, 12, 0.46) 100%),
      linear-gradient(90deg, rgba(7, 8, 12, 0.86), rgba(7, 8, 12, 0.52));
  }

  .hero-inner,
  .section,
  .note-inner,
  .footer-inner,
  .proof-grid {
    width: min(var(--max), calc(100% - 32px));
  }

  .proof-grid,
  .feature-grid,
  .showcase,
  .pro-panel,
  .source-columns,
  .support-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    border: 0;
  }

  .proof-item {
    border: 1px solid var(--line-soft);
  }

  .screenshot-tile.large {
    position: static;
  }

  .pro-media {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .pro-media img {
    min-height: 260px;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-bottom: 48px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .feature-card,
  .pro-copy,
  .support-card,
  .policy-card {
    padding: 20px;
  }

  .link-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
