@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/d7be4484-6185-4e32-a59f-6a6944d73935.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #050606;
  --surface: #0d0f10;
  --surface-raised: #121516;
  --line: #25292b;
  --line-strong: #373d40;
  --text: #f6f7f7;
  --muted: #a6abad;
  --quiet: #717779;
  --accent: #53d9c1;
  --accent-strong: #8eeada;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 4px;
}

a:hover {
  text-decoration-color: var(--accent);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(4, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner,
.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

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

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 144px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d6d9da;
  font-size: 14px;
  font-weight: 650;
}

.header-nav a {
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: #fff;
}

.header-nav .play-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  color: #fff;
}

.hero {
  position: relative;
  min-height: min(720px, 82vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0a0b0c;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.hero-shade {
  background: rgba(0, 0, 0, 0.76);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 158px 0 68px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #d6d9da;
  font-size: 13px;
  font-weight: 650;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span[aria-hidden="true"] {
  color: #858b8e;
}

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

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: #e1e4e4;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid #fff;
  border-radius: 7px;
  background: #fff;
  color: #080909;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(5, 6, 6, 0.64);
  color: #fff;
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

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

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

.section h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head > p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.feature-item {
  min-width: 0;
  padding: 28px 34px 30px 0;
  border-bottom: 1px solid var(--line);
}

.feature-item:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

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

.step {
  counter-increment: steps;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 30px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.screen-band {
  padding: 24px 0 88px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.screen-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #000;
}

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

.screen-caption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 13px;
}

.note {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.note h2,
.note h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.note p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 50px 23px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 8px;
  color: var(--accent-strong);
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 860px;
  padding: 0 50px 24px 0;
  margin: 0;
  color: var(--muted);
}

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

.related-link {
  min-width: 0;
  display: block;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
}

.related-link:hover,
.related-link:focus-visible {
  border-color: var(--line-strong);
  background: var(--surface-raised);
  outline: none;
}

.related-link small {
  display: block;
  margin-bottom: 32px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-link strong {
  display: block;
  font-size: 19px;
  line-height: 1.35;
}

.related-link span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.guide-intro {
  padding: 144px 0 72px;
  border-bottom: 1px solid var(--line);
}

.guide-intro h1 {
  max-width: 920px;
  margin-bottom: 22px;
}

.guide-intro .lead {
  max-width: 780px;
}

.guide-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.guide-card {
  min-width: 0;
  display: block;
  padding: 34px 34px 38px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.guide-card:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.guide-card small {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-card h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
}

.guide-card:hover h2,
.guide-card:focus-visible h2 {
  color: var(--accent-strong);
}

.cta-band {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
  background: #0b0d0d;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 680px;
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
}

.cta-inner p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 46px 0 30px;
  color: var(--muted);
  font-size: 13px;
}

.footer-main,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-main {
  align-items: flex-start;
  padding-bottom: 36px;
}

.footer-brand img {
  width: 122px;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 840px) {
  .header-inner,
  .shell,
  .hero-content {
    width: min(100% - 32px, var(--max));
  }

  .header-nav a:not(.play-link) {
    display: none;
  }

  .brand-link img {
    width: 126px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .section,
  .cta-band {
    padding: 68px 0;
  }

  .feature-list,
  .guide-directory {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-child(even),
  .guide-card,
  .guide-card:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .steps,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-link {
    min-height: 0;
  }

  .related-link small {
    margin-bottom: 18px;
  }

  .note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-inner,
  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .header-inner {
    min-height: 64px;
  }

  .header-nav .play-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .brand-link img {
    width: 112px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding-top: 126px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy,
  .section-head > p,
  .lead {
    font-size: 16px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .cta-inner h2 {
    font-size: 30px;
  }

  .screen-band {
    padding-bottom: 58px;
  }

  .screen-caption {
    display: block;
  }

  .screen-caption span:last-child {
    display: block;
    margin-top: 5px;
  }

  .guide-intro {
    padding: 116px 0 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
