:root {
  --bg: #071426;
  --surface: #f5f7fa;
  --surface-warm: #eaf1ff;
  --fg: #f5f7fa;
  --fg-2: #ecf0f2;
  --muted: #a4b4cc;
  --meta: #f2991e;
  --border: rgba(245, 247, 250, 0.18);
  --border-soft: rgba(245, 247, 250, 0.1);
  --accent: #f2991e;
  --accent-on: #071426;
  --accent-hover: color-mix(in oklab, var(--accent), white 8%);
  --accent-active: color-mix(in oklab, var(--accent), black 14%);
  --success: #16a34a;
  --warn: #f2991e;
  --danger: #e3100e;
  --brand-blue: #214dc2;
  --deep-black: #0e0f0e;
  --font-display: "acumin-pro-extra-condensed", "Barlow Condensed", Impact, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-mono: "SF Mono", ui-monospace, Menlo, monospace;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 24px;
  --text-2xl: 36px;
  --text-3xl: 54px;
  --text-4xl: 76px;
  --leading-body: 1.52;
  --leading-tight: 0.85;
  --tracking-display: 0.025em;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --section-y-desktop: 96px;
  --section-y-tablet: 68px;
  --section-y-phone: 48px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --elev-flat: none;
  --elev-ring: 0 0 0 1px var(--border);
  --elev-raised: 0 20px 52px rgba(16, 24, 40, 0.11);
  --focus-ring: 0 0 0 4px rgba(242, 153, 30, 0.28);
  --motion-fast: 150ms;
  --motion-base: 240ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --container-max: 1180px;
  --container-gutter-desktop: 50px;
  --container-gutter-tablet: 24px;
  --container-gutter-phone: 20px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
}

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

button {
  color: inherit;
  font: inherit;
}

.site {
  overflow-x: clip;
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

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

.hero-media,
.fallback-media {
  object-fit: cover;
  z-index: 0;
  filter: contrast(1.08) saturate(1.05);
}

.hero-media {
  display: block;
}

.fallback-media {
  opacity: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 16%, color-mix(in oklab, var(--brand-blue), transparent 8%) 0 15%, transparent 41%),
    linear-gradient(90deg, rgba(33, 77, 194, 0.74) 0%, rgba(7, 20, 38, 0.42) 45%, rgba(7, 20, 38, 0.74) 100%),
    linear-gradient(0deg, rgba(7, 20, 38, 0.55), rgba(7, 20, 38, 0.12) 44%, rgba(14, 15, 14, 0.44));
}

.header {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 20px 0;
  pointer-events: none;
}

.header-logo,
.header-actions,
.signin,
.menu-toggle {
  pointer-events: auto;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  width: 160px;
  min-width: 160px;
  height: 86px;
}

.logo-full,
.logo-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.logo-mark {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.signin {
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--danger);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu-toggle {
  width: 35px;
  min-width: 35px;
  height: 35px;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  width: 30px;
  height: 30px;
  fill: var(--fg);
}

.menu-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 20;
  width: min(520px, 100vw);
  background: var(--bg);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 420ms var(--ease-standard), opacity 420ms var(--ease-standard);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 52px;
}

.menu-panel[data-open="true"] {
  transform: translateX(0);
  opacity: 1;
}

.menu-panel a {
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--fg);
  transition: transform var(--motion-base) var(--ease-standard), -webkit-text-stroke-color var(--motion-base) var(--ease-standard);
}

.menu-panel a:hover {
  transform: translateX(20px);
  color: transparent;
  -webkit-text-stroke: 1px var(--fg);
}

.hero-inner {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 9vw 0;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: none;
  padding-inline: var(--container-gutter-phone);
  margin-inline: auto;
}

.hero-title {
  margin: 0 0 6px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(70px, 8.34vw, 160px);
  line-height: var(--leading-tight);
  letter-spacing: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title .stroked {
  color: transparent;
  -webkit-text-stroke: 1px var(--fg);
  text-stroke: 1px var(--fg);
}

.hero-title .filled {
  color: var(--fg);
  max-width: none;
}

.play-button {
  position: relative;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  cursor: pointer;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.social-rail {
  position: absolute;
  z-index: 8;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 24px;
}

.social-rail a {
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.86;
  transition: transform var(--motion-base) var(--ease-standard), opacity var(--motion-base) var(--ease-standard);
}

.social-rail a:hover {
  transform: scale(1.18);
  opacity: 1;
}

.foreground-cut {
  position: relative;
  z-index: 6;
  margin: 0 0 -2px;
  color: var(--surface);
  pointer-events: none;
}

.foreground-cut svg {
  display: block;
  width: 100%;
  height: 112px;
}

.foreground-cut path {
  fill: currentColor;
}

.after-hero {
  background: var(--surface);
  color: var(--bg);
  padding: 62px var(--container-gutter-phone) 84px;
  min-height: 40vh;
}

.eyebrow {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--danger);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 50px;
  height: 2px;
  background: currentColor;
}

.after-hero h2 {
  margin: 0 0 24px;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(60px, 7.2vw, 116px);
  line-height: 0.86;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.after-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 28px;
  color: color-mix(in oklab, var(--bg), var(--surface) 24%);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.circle-arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  transition: transform 1.2s cubic-bezier(0.15, 0.92, 0.14, 0.95);
}

.primary-link:hover .circle-arrow {
  transform: scale(1.15);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--container-gutter-tablet);
  }

  .hero-title {
    font-size: clamp(110px, 8.34vw, 160px);
  }
}

@media (min-width: 1025px) {
  .header {
    padding: 25px 20px 0;
  }

  .header-logo {
    width: 180px;
    min-width: 180px;
    height: 96px;
  }

  .container {
    padding-left: 14vw;
    padding-right: 50px;
  }

  .social-rail {
    display: flex;
  }

  .play-button {
    display: none;
  }

  .foreground-cut svg {
    height: 156px;
  }

  .after-hero {
    padding-inline: 14vw 50px;
  }
}

@media (min-width: 1600px) {
  .header {
    padding: 2.6vw 2.6vw 0;
  }

  .header-logo {
    width: min(12.5vw, 240px);
    min-width: min(12.5vw, 240px);
    height: min(14.7vw, 282px);
  }

  .container {
    padding-left: 14vw;
    padding-right: 2.6vw;
  }

  .social-rail {
    left: 2.6vw;
  }

  .foreground-cut svg {
    height: 8vw;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
  }

  .header-logo {
    width: 40px;
    min-width: 40px;
    height: 42px;
  }

  .logo-full {
    display: none;
  }

  .logo-mark {
    display: block;
  }

  .signin {
    display: none;
  }

  .hero-inner {
    align-items: center;
    padding: 120px 0 34px;
  }

  .hero-title {
    font-size: clamp(64px, 20vw, 82px);
    letter-spacing: 1.3px;
  }

  .hero-title .filled {
    max-width: 8.4ch;
  }

  .foreground-cut svg {
    height: 96px;
  }

  .menu-panel {
    padding: 88px 28px 52px;
  }
}
