:root {
  color-scheme: dark;
  --ink: #f4f1e8;
  --muted: #b9b3a6;
  --soft: #8f897c;
  --bg: #121113;
  --panel: #1d1e23;
  --panel-2: #202118;
  --line: rgba(244, 241, 232, 0.14);
  --gold: #d7aa52;
  --gold-strong: #f0c86a;
  --ember: #c05a38;
  --green: #69a96d;
  --teal: #57a9a4;
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(18, 17, 19, 0.78);
  border-bottom: 1px solid rgba(244, 241, 232, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 118px 32px 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  opacity: 0.54;
  filter: saturate(0.95) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 17, 19, 0.96) 0%, rgba(18, 17, 19, 0.78) 40%, rgba(18, 17, 19, 0.38) 100%),
    linear-gradient(180deg, rgba(18, 17, 19, 0.2) 0%, rgba(18, 17, 19, 0.88) 100%);
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: 76px;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  color: #ddd7c9;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--gold);
  color: #17130b;
  box-shadow: 0 14px 28px rgba(215, 170, 82, 0.18);
}

.button.secondary {
  border-color: rgba(244, 241, 232, 0.22);
  color: var(--ink);
  background: rgba(244, 241, 232, 0.05);
}

.button.wide {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 132px));
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
}

.hero-stats div {
  border: 1px solid rgba(244, 241, 232, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(18, 17, 19, 0.42);
}

.hero-stats dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 5px 0 0;
  font-size: 18px;
  font-weight: 900;
}

.signal-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #201b14;
}

.band-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #e6dcc6;
}

.band-inner a {
  color: var(--gold-strong);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.section-heading.compact {
  margin-bottom: 24px;
}

h2 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.feature-card {
  min-height: 230px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px;
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 30px;
  border-radius: 6px;
  background: rgba(215, 170, 82, 0.12);
  color: var(--gold-strong);
  font-weight: 900;
  margin-bottom: 34px;
}

.feature-card h3,
.release-notes h3 {
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p,
.product-copy p,
.release-notes p,
.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.product-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
  align-items: center;
  padding: 84px max(20px, calc((100vw - 1180px) / 2));
  background: #17191a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-copy {
  padding-right: 12px;
}

.product-shot {
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(244, 241, 232, 0.16);
  overflow: hidden;
  box-shadow: 0 28px 70px var(--shadow);
  background: #0f0f11;
}

.pricing-section {
  padding-bottom: 108px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card,
.release-notes {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  padding: 28px;
}

.price-label {
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 4px;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.price-note {
  color: var(--muted);
}

ul {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}

li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: #ddd7c9;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--green);
}

.release-notes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #171d1d;
}

.release-notes a {
  color: var(--gold-strong);
  font-weight: 900;
}

.release {
  background: #161315;
  border-top: 1px solid var(--line);
}

.release-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 36px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.timeline li {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(244, 241, 232, 0.04);
}

.timeline li::before {
  display: none;
}

.timeline span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  font-size: 19px;
}

.site-footer {
  min-height: 88px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--soft);
  font-size: 13px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.site-footer a {
  margin-left: 14px;
  color: var(--gold-strong);
  font-weight: 800;
}

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.legal-hero {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: 56px;
}

.legal-hero p {
  color: var(--muted);
  font-size: 18px;
}

.legal-content {
  padding-top: 34px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 28px;
}

.legal-content p {
  color: #ddd7c9;
  line-height: 1.72;
}

.legal-content a {
  color: var(--gold-strong);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    padding: 0 18px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 108px 20px 54px;
  }

  .hero-bg {
    object-position: center top;
    opacity: 0.18;
    filter: saturate(0.82) contrast(1.12);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(18, 17, 19, 0.99) 0%, rgba(18, 17, 19, 0.94) 48%, rgba(18, 17, 19, 0.99) 100%);
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .hero-stats div {
    background: rgba(18, 17, 19, 0.82);
  }

  .band-inner,
  .product-strip,
  .pricing-layout,
  .release-inner {
    grid-template-columns: 1fr;
  }

  .band-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }

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

  .product-strip {
    padding: 70px 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .site-footer a {
    display: inline-block;
    margin: 8px 14px 0 0;
  }

  .legal-page {
    padding-top: 110px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 520px) {
  .actions,
  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 44px;
  }
}
