@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/Roboto-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/Roboto-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/MaterialSymbolsOutlined-subset.woff2") format("woff2");
}

@font-face {
  font-family: "Obit Square Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    local("Obit"),
    url("../fonts/Obit.woff2") format("woff2"),
    url("../fonts/Obit.woff") format("woff"),
    url("../fonts/Obit.ttf") format("truetype"),
    url("../fonts/Obit.otf") format("opentype");
  unicode-range: U+0000-00FF, U+0100-024F, U+2000-206F, U+20A0-20CF, U+2122;
}

.material-symbols-outlined {
  direction: ltr;
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-feature-settings: "liga";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: normal;
  text-transform: none;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

html {
  background-color: #160e34;
}

body {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
}

body > section:not(.site-page-header),
body > footer,
body > .section-strip,
main > section:not(.site-page-header),
main > footer,
main > .section-strip {
  padding-top: var(--site-shell-section-space-mobile) !important;
  padding-bottom: var(--site-shell-section-space-mobile) !important;
}

button,
input,
textarea,
select {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display-hero,
.font-headline-lg,
.font-headline-lg-mobile,
.font-headline-md {
  font-family: "Obit Square Display", "Roboto", sans-serif !important;
}

:root {
  --site-shell-bg: #160e34;
  --site-shell-surface: #110a2a;
  --site-shell-text: #e2e2e2;
  --site-shell-text-muted: #cac4cf;
  --site-shell-accent: #edea30;
  --site-shell-accent-2: #e14d9b;
  --site-shell-accent-3: #20bcde;
  --site-shell-border: rgba(237, 234, 48, 0.2);
  --site-shell-pad-mobile: 16px;
  --site-shell-pad-desktop: clamp(64px, calc((100vw - 1520px) / 2), 200px);
  --site-shell-section-space-mobile: 60px;
  --site-shell-section-space-desktop: 80px;
  --site-shell-button-pad-y: 14px;
  --site-shell-button-pad-x: 24px;
  --site-shell-button-min-height: 52px;
  --site-shell-ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --site-shell-ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --site-shell-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --site-shell-motion-fast: 180ms;
  --site-shell-motion-medium: 320ms;
  --site-shell-motion-slow: 680ms;
}

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

@keyframes site-shell-pattern-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(16px, -12px, 0) scale(1.035);
  }
}

@keyframes site-shell-grid-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(18px, 0, 0);
  }
}

.site-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity var(--site-shell-motion-slow) var(--site-shell-ease-out-quint),
    transform var(--site-shell-motion-slow) var(--site-shell-ease-out-quint),
    filter calc(var(--site-shell-motion-slow) - 80ms)
      var(--site-shell-ease-out-quart),
    clip-path calc(var(--site-shell-motion-slow) + 80ms)
      var(--site-shell-ease-out-expo);
  transition-delay: var(--site-motion-delay, 0ms);
  will-change: transform, opacity, filter;
}

.site-reveal--nav {
  transform: translate3d(0, -18px, 0) scale(0.985);
  filter: blur(8px);
}

.site-reveal--hero {
  transform: translate3d(0, 18px, 0) scale(0.992);
  filter: blur(8px);
}

.site-reveal--soft {
  transform: translate3d(0, 16px, 0) scale(0.992);
  filter: blur(6px);
}

.site-reveal--media {
  transform: translate3d(0, 24px, 0) scale(1.015);
  clip-path: inset(0 0 12% 0 round 0);
  filter: blur(5px) saturate(0.82);
}

.site-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0 round 0);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px var(--site-shell-pad-mobile);
  background: rgba(22, 14, 52, 0.95);
  border-bottom: 2px solid var(--site-shell-border);
  backdrop-filter: blur(12px);
}

.site-nav__primary {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.site-nav__brand {
  color: var(--site-shell-accent);
  font-family: "Obit Square Display", "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 20px;
}

.site-nav__link {
  color: var(--site-shell-text-muted);
  border-bottom: 2px solid transparent;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding-bottom: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color var(--site-shell-motion-fast) ease,
    border-color var(--site-shell-motion-fast) ease,
    transform var(--site-shell-motion-fast) var(--site-shell-ease-out-quart);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-footer__link:hover,
.site-footer__link:focus-visible,
.site-footer__brand-link:hover,
.site-footer__brand-link:focus-visible,
.site-footer__icon:hover,
.site-footer__icon:focus-visible {
  color: var(--site-shell-accent);
}

.site-nav__link.is-active,
.site-footer__link.is-active {
  color: var(--site-shell-accent);
  border-color: var(--site-shell-accent);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-footer__link:hover,
.site-footer__link:focus-visible {
  transform: translateY(-2px);
}

.site-nav__cta,
.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  background: var(--site-shell-accent);
  color: var(--site-shell-bg);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform var(--site-shell-motion-fast) var(--site-shell-ease-out-quart),
    filter var(--site-shell-motion-fast) ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible,
.site-footer__cta:hover,
.site-footer__cta:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-3px) scale(1.01);
}

.site-unified-button {
  padding: var(--site-shell-button-pad-y) var(--site-shell-button-pad-x) !important;
  min-height: var(--site-shell-button-min-height);
  text-transform: none !important;
  transition:
    transform var(--site-shell-motion-fast) var(--site-shell-ease-out-quart),
    filter var(--site-shell-motion-fast) ease;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  padding: 48px var(--site-shell-pad-mobile);
  background: var(--site-shell-surface);
  border-top: 4px solid var(--site-shell-accent);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__brand-link {
  color: var(--site-shell-text);
  font-family: "Obit Square Display", "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__copy,
.site-footer__meta-item,
.site-footer__copyright {
  color: var(--site-shell-text-muted);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.site-footer__eyebrow {
  color: var(--site-shell-accent);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__link {
  width: fit-content;
  color: var(--site-shell-text-muted);
  border-bottom: 2px solid transparent;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  padding-bottom: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.site-footer__icons {
  display: flex;
  gap: 12px;
}

.site-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(202, 196, 207, 0.28);
  color: var(--site-shell-text-muted);
  text-decoration: none;
  transition:
    border-color var(--site-shell-motion-fast) ease,
    color var(--site-shell-motion-fast) ease,
    transform var(--site-shell-motion-fast) var(--site-shell-ease-out-quart);
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.site-footer__copyright {
  margin-top: 20px;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-page-header {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(360px, 42vw, 520px) !important;
  padding: clamp(88px, 13vw, 132px) var(--site-shell-pad-mobile)
    clamp(48px, 7vw, 72px) !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(32, 188, 222, 0.18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(225, 77, 155, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(17, 10, 42, 0.96), rgba(22, 14, 52, 0.98)),
    #110a2a !important;
  border-bottom: 2px solid var(--site-shell-border) !important;
}

.site-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237, 234, 48, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 234, 48, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
  pointer-events: none;
}

.site-page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern.svg");
  background-position: right -24px center;
  background-repeat: no-repeat;
  background-size: min(720px, 46vw);
  opacity: 0.09;
  pointer-events: none;
}

.site-motion-enabled .site-page-header::before {
  animation: site-shell-grid-drift 18s linear infinite alternate;
}

.site-motion-enabled .site-page-header::after {
  animation: site-shell-pattern-drift 16s ease-in-out infinite alternate;
}

.site-page-header > :not(.site-page-header__inner) {
  display: none !important;
}

.site-page-header__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 !important;
}

.site-page-header__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 12px;
  width: 100%;
  max-width: 820px;
  margin: 0 !important;
  text-align: left !important;
}

.site-page-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 40px;
  padding: 10px 16px;
  border: 2px solid rgba(225, 77, 155, 0.3);
  background: rgba(225, 77, 155, 0.12);
  color: var(--site-shell-accent-2);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-page-header__kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.site-page-header__date,
.site-page-header__byline {
  color: var(--site-shell-text-muted);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-page-header__title,
[data-hero-title] {
  margin: 0 !important;
  color: var(--site-shell-text);
  font-family: "Obit Square Display", "Roboto", sans-serif !important;
  font-size: clamp(40px, 7vw, 80px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.04em !important;
  font-style: normal !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  text-wrap: balance;
}

.site-page-header__title .site-hero-title__line-2,
[data-hero-title] .site-hero-title__line-2 {
  color: var(--site-shell-accent) !important;
}

.site-page-header__lede {
  max-width: 760px;
  margin: 0 !important;
  color: var(--site-shell-text-muted);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-wrap: pretty;
}

.site-page-header__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  gap: 16px;
  width: 100%;
  margin-top: 6px;
}

.site-page-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  width: 100%;
  margin-top: 6px;
}

.site-page-header__meta-item {
  min-width: 160px;
  padding-left: 16px;
  border-left: 4px solid var(--site-shell-accent);
}

.site-page-header__meta-item:nth-child(2) {
  border-left-color: var(--site-shell-accent-2);
}

.site-page-header__meta-item:nth-child(3) {
  border-left-color: var(--site-shell-accent-3);
}

.site-page-header__meta-label {
  margin-bottom: 6px;
  color: var(--site-shell-text-muted);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-page-header__meta-value {
  color: var(--site-shell-text);
  font-family: "Obit Square Display", "Roboto", sans-serif !important;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.site-page-header__support {
  width: min(100%, 760px);
  margin-left: 0 !important;
  margin-right: auto !important;
}

@media (min-width: 768px) {
  body > section:not(.site-page-header),
  body > footer,
  body > .section-strip,
  main > section:not(.site-page-header),
  main > footer,
  main > .section-strip {
    padding-top: var(--site-shell-section-space-desktop) !important;
    padding-bottom: var(--site-shell-section-space-desktop) !important;
  }

  .site-nav {
    padding-left: var(--site-shell-pad-desktop);
    padding-right: var(--site-shell-pad-desktop);
  }

  .site-footer {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    padding-left: var(--site-shell-pad-desktop);
    padding-right: var(--site-shell-pad-desktop);
  }

  .site-footer__brand {
    padding-right: 32px;
  }

  .site-page-header {
    padding-left: var(--site-shell-pad-desktop) !important;
    padding-right: var(--site-shell-pad-desktop) !important;
  }
}

@media (min-width: 1100px) {
  .site-nav__links {
    display: flex;
  }
}

@media (min-width: 1400px) {
  .site-nav__primary {
    gap: 32px;
  }

  .site-nav__links {
    gap: 32px;
  }

  .site-nav__link {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .site-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}
