@font-face {
  font-family: "Bebas Neue";
  src: url("/assets/bebas-neue-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/assets/Inter_400Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("/assets/Inter_600SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --paper: #f8f9ff;
  --paper-rgb: 248 249 255;
  --ink: #080832;
  --text: #354563;
  --muted: #66708a;
  --primary: #6d28d9;
  --primary-hover: #5120a8;
  --link: #6d28d9;
  --border: #dddff0;
  --button-text: #fff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #05051d;
    --paper-rgb: 5 5 29;
    --ink: #fbfaff;
    --text: #d5d0e5;
    --muted: #bbb5d4;
    --primary: #6d28d9;
    --primary-hover: #7938e6;
    --link: #a78bfa;
    --border: #3b3850;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 3px solid var(--link); outline-offset: 6px; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin: 0; }

.page-width { width: min(1240px, calc(100% - 96px)); margin-inline: auto; }

.skip-link {
  position: absolute;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 12px 20px;
  color: var(--button-text);
  background: var(--primary);
  transform: translateY(-180%);
}

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

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: .02em;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.header-link:hover { color: var(--link); }
.header-link span { font-size: 21px; }

.hero { position: relative; isolation: isolate; }

.hero-art {
  position: absolute;
  z-index: -1;
  inset: -108px 0 0;
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgb(var(--paper-rgb) / .78), transparent 22%, transparent 75%, var(--paper)),
    linear-gradient(to right, var(--paper) 5%, rgb(var(--paper-rgb) / .96) 26%, rgb(var(--paper-rgb) / .88) 38%, rgb(var(--paper-rgb) / .25) 67%, rgb(var(--paper-rgb) / .05));
}

.hero-content { padding-block: 65px 130px; }

.eyebrow {
  color: var(--link);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2 {
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -.015em;
}

h1 { margin-block: 24px 22px; font-size: clamp(90px, 9.7vw, 144px); line-height: .94; }
h1 span { color: var(--link); }
.hero-description { max-width: 460px; font-size: 17px; line-height: 1.8; }

.explore-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  margin-top: 30px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--button-text);
  background: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s ease;
}

.explore-link:hover { background: var(--primary-hover); }

.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
}

.availability span { width: 5px; height: 5px; flex-shrink: 0; border-radius: 50%; background: var(--link); }

.overview { padding-block: 55px 94px; scroll-margin-top: 40px; }
.overview-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 72px; align-items: end; }
.overview-heading .eyebrow { grid-column: 1 / -1; }
h2 { font-size: clamp(52px, 5.4vw, 72px); line-height: 1; }
.overview-heading > p:last-child { max-width: 470px; padding-bottom: 4px; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
}

.features li { padding-top: 23px; border-top: 1px solid var(--border); }
.feature-number { color: var(--link); font-size: 12px; font-weight: 600; }
h3 { margin-block: 17px 10px; color: var(--ink); font-size: 18px; font-weight: 600; line-height: 1.5; }
.features p { max-width: 350px; color: var(--muted); font-size: 14px; line-height: 1.85; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 95px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

.site-footer a { display: inline-block; padding-block: 12px; color: var(--ink); text-underline-offset: 4px; }
.site-footer a:hover { color: var(--link); }

@media (max-width: 1000px) {
  .page-width { width: calc(100% - 64px); }
  .hero-art img { object-position: 58% center; }
  .hero-content { padding-block: 52px 100px; }
  .hero-description { max-width: 390px; font-size: 16px; }
  .features { gap: 28px; }
  .overview-heading { gap: 18px 40px; }
}

@media (max-width: 700px) {
  .page-width { width: calc(100% - 40px); }
  .site-header { min-height: 88px; }
  .brand span { font-size: 31px; }
  .brand img { width: 23px; height: 34px; }
  .header-link { display: none; }
  .hero-content { padding-block: 32px 325px; }
  h1 { margin-top: 20px; font-size: clamp(72px, 17.7vw, 114px); }
  .hero-description { max-width: 430px; font-size: 15px; line-height: 1.8; }
  .hero-art { inset: auto 0 0; height: 325px; }
  .hero-art img { object-position: 70% center; }
  .hero-art::after {
    background: linear-gradient(to bottom, var(--paper), rgb(var(--paper-rgb) / .2) 35%, rgb(var(--paper-rgb) / .06) 72%, var(--paper));
  }
  .explore-link { margin-top: 24px; }
  .availability { margin-top: 20px; font-size: 10px; }
  .overview { padding-block: 30px 62px; }
  .overview-heading { display: block; }
  h2 { margin-block: 17px 20px; font-size: 56px; }
  .overview-heading > p:last-child { max-width: 440px; font-size: 15px; }
  .features { grid-template-columns: 1fr; gap: 27px; margin-top: 32px; }
  .features li { padding-top: 20px; }
  h3 { margin-top: 9px; }
  .features p { max-width: 460px; }
  .site-footer { min-height: 85px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .explore-link { transition: none; }
}

@media (forced-colors: active) {
  .explore-link { border-color: ButtonText; }
  .hero-art { display: none; }
  .availability span { background: CanvasText; }
}
