:root {
  color-scheme: dark;
  --ink: #0a0a0c;
  --surface: #151518;
  --surface-raised: #1d1d21;
  --paper: #f5f4f1;
  --white: #ffffff;
  --red: #f51832;
  --red-action: #d0142b;
  --red-deep: #a90f22;
  --steel: #bebebb;
  --steel-light: #d8d8d8;
  --line: #323236;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --section-space: clamp(4.5rem, 10vw, 9rem);
  --page-gutter: clamp(1rem, 4vw, 4.5rem);
  --content-width: 90rem;
  --header-height: 7.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

::selection {
  background: var(--red);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(100%, var(--content-width));
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 0.65rem var(--page-gutter) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: clamp(9.5rem, 32vw, 13.5rem);
  height: auto;
}

.header-actions {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.header-actions::-webkit-scrollbar {
  display: none;
}

.header-actions .primary-nav {
  width: auto;
  flex: 0 0 auto;
  overflow: visible;
}

.primary-nav {
  display: flex;
  width: 100%;
  margin: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

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

.primary-nav a,
.primary-nav .nav-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 0.5rem;
  color: var(--steel-light);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color 160ms ease-out, background-color 160ms ease-out;
}

.primary-nav .nav-item--disabled {
  color: var(--steel);
  cursor: not-allowed;
  opacity: 0.56;
}

.primary-nav a:hover {
  color: var(--white);
}

.primary-nav .nav-browse {
  margin-left: 0.2rem;
  padding-inline: 0.8rem;
  background: var(--red-action);
  color: var(--white);
}

.primary-nav .nav-browse:hover {
  background: var(--red-deep);
}

.language-switcher {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  color: var(--steel-light);
}

.language-switcher__button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.language-switcher__button[aria-pressed="true"] {
  background: var(--white);
  color: var(--ink);
}

.language-switcher__divider {
  color: var(--steel);
  font-size: 0.65rem;
}

.header-signup {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  background: var(--red);
  padding-inline: 0.5rem;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: border-color 160ms ease-out, background-color 160ms ease-out, color 160ms ease-out, transform 160ms ease-out;
  white-space: nowrap;
}

.header-signup:hover {
  border-color: var(--red-deep);
  background: var(--red-deep);
  color: var(--white);
}

.header-signup:active {
  transform: translateY(1px);
}

.header-signup:focus-visible {
  outline-color: var(--white);
  outline-offset: -4px;
}

.section-shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 1.8rem;
  height: 3px;
  background: currentColor;
  content: "";
}

.display-heading {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.editorial-placeholder {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--steel);
}

.editorial-placeholder strong {
  color: var(--white);
  font-size: 0.76em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-frame {
  position: relative;
  isolation: isolate;
  min-height: 30rem;
  overflow: hidden;
  background: #000;
}

.media-frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.05) 65%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 48%);
  content: "";
  pointer-events: none;
}

.media-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.plan-grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: var(--line);
}

.plan-card {
  min-height: 16rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--surface);
}

.plan-card__label {
  margin: 0;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-card h3 {
  max-width: 12ch;
  margin: 1rem 0 2.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.4rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  margin: auto 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 0.9;
}

.price small {
  color: var(--steel);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-list {
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  align-items: center;
  min-height: 5rem;
  padding: 1rem 0;
  cursor: pointer;
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  color: var(--red);
  content: "+";
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

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

.faq-number {
  color: var(--red);
  font-size: 0.7rem;
}

.faq-list details > p {
  max-width: 50rem;
  margin: 0;
  padding: 0 0 1.75rem 2.4rem;
  color: var(--steel);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 720px) {
  :root {
    --header-height: 5.25rem;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    padding-top: 0;
  }

  .brand img {
    width: clamp(10.5rem, 17vw, 13.5rem);
  }

  .primary-nav {
    width: auto;
    margin: 0;
    overflow: visible;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
  }

  .header-signup {
    padding-inline: 0.9rem;
    font-size: 0.62rem;
  }

  .primary-nav a {
    padding-inline: clamp(0.75rem, 1.5vw, 1.25rem);
    font-size: 0.68rem;
  }

  .primary-nav .nav-item {
    padding-inline: clamp(0.75rem, 1.5vw, 1.25rem);
    font-size: 0.68rem;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1100px) {
  .primary-nav a {
    font-size: 0.75rem;
    letter-spacing: 0.11em;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
