:root {
  --ink: #050505;
  --panel: #0b0b0c;
  --panel-high: #121214;
  --white: #f4f4f2;
  --muted: #c7c7cc;
  --dim: #93939d;
  --line: rgba(255, 255, 255, 0.105);
  --line-strong: rgba(255, 255, 255, 0.24);
  --accent: #9aa3b9;
  --display: Impact, "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1180px, calc(100vw - 80px));
  --header-height: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@property --dialog-outline-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dialog-open,
body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 100;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.94), rgba(6, 6, 7, 0.88));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px) saturate(120%);
  transition: inset 220ms ease, border-radius 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  animation: headerSettle 560ms var(--ease) both;
}

.site-header.is-scrolled {
  top: 0;
  right: 0;
  left: 0;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 6, 0.96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5), inset 0 -1px rgba(255, 255, 255, 0.06);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.26));
  transition: filter 220ms ease, transform 220ms var(--ease);
}

.brand:hover img {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
  transform: rotate(-4deg) scale(1.04);
}

.brand span {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a,
.nav-links button,
.footer-links a,
.footer-links button {
  border: 0;
  padding: 0;
  background: none;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links button:hover,
.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nav-shop,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.nav-shop {
  padding: 0 16px;
  border: 1px solid var(--line-strong);
}

.nav-shop:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-shop:hover {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.055);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 15px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  min-height: 700px;
  height: max(700px, 100svh);
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 28%),
    linear-gradient(315deg, rgba(154, 163, 185, 0.05), transparent 32%),
    #020203;
  isolation: isolate;
}

.hero-window {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 652px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background: #030304;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58), inset 0 1px rgba(255, 255, 255, 0.03);
  animation: frameSettle 720ms var(--ease) both;
}

.hero-grid,
.collab-grid {
  position: absolute;
  inset: -72px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.48;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 78%, transparent);
  animation: gridDrift 34s linear infinite;
  will-change: transform;
}

.hero-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0 68%, rgba(5, 5, 5, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vh, 18px);
  padding: 96px 58px 44px;
  text-align: center;
}

.hero-mark {
  position: relative;
  width: clamp(190px, min(24vw, 34vh), 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-mark::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  opacity: 0.42;
  transform: scale(0.94);
  animation: haloPulse 8s ease-in-out infinite;
}

.hero-mark::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.58) 50%, rgba(190, 210, 255, 0.24) 56%, transparent 64% 100%) 100% 0 / 260% 100% no-repeat;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  -webkit-mask-image: url("f4destar-logo-chrome.png");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("f4destar-logo-chrome.png");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  animation: logoOpenSweep 5s 520ms ease-in-out infinite;
  will-change: background-position, opacity;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.24)) drop-shadow(0 22px 34px rgba(0, 0, 0, 0.74));
  transform: translate3d(0, 0, 0);
  animation: logoOpen 820ms 80ms var(--ease) both, logoFloat 7s 980ms ease-in-out infinite;
  will-change: transform;
}

.hero-copy {
  max-width: 780px;
  margin-top: 0;
  animation: contentIn 420ms var(--ease) both;
}

.eyebrow {
  margin: 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  margin-bottom: 10px;
  white-space: nowrap;
}

.hero h1,
.partners h2,
.collab h2,
.contact-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(76px, 7.5vw, 116px);
  letter-spacing: 0.065em;
  white-space: nowrap;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-tagline span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #686872;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  animation: contentIn 420ms 80ms var(--ease) both;
}

.button {
  position: relative;
  min-height: 46px;
  padding: 0 23px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -42%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translate3d(-220%, 0, 0) skewX(-18deg);
  display: none;
  pointer-events: none;
}

.hero-actions .button-primary::before {
  display: block;
  animation: buttonSheen 7s ease-in-out infinite;
}

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-primary:hover {
  background: #d8d8dc;
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.018);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

.scroll-cue {
  position: absolute;
  right: 25px;
  bottom: 24px;
  z-index: 4;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 232, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.026);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 22px rgba(175, 190, 245, 0.2), inset 0 0 18px rgba(255, 255, 255, 0.035);
  text-decoration: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 240ms var(--ease);
}

.scroll-cue::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(190, 205, 255, 0.18);
  border-radius: inherit;
  opacity: 0.75;
  transform: scale(0.9);
  animation: cueGlow 3.2s ease-in-out infinite;
  pointer-events: none;
}

.scroll-cue span {
  position: relative;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  transform: translateY(-2px) rotate(45deg);
  animation: cueDrop 2.2s var(--ease) infinite;
}

.scroll-cue:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07), 0 0 28px rgba(205, 215, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.highlights {
  border-block: 1px solid var(--line);
  background: #09090a;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block: 0;
}

.highlight-grid div {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px 20px;
}

.highlight-grid div + div {
  border-left: 1px solid var(--line);
}

.highlight-grid dt {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.highlight-grid dd {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 27px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: 0.06em;
  line-height: 1;
}

.stat-number {
  display: inline-block;
  min-width: 4ch;
  text-align: left;
}

.partners {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background: var(--ink);
}

.partners-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  padding-bottom: 36px;
}

.partners-heading .eyebrow {
  margin-bottom: 10px;
}

.partners h2,
.collab h2 em,
.contact-dialog h2 {
  color: var(--white);
}

.partners h2 {
  font-size: clamp(62px, 6vw, 88px);
  letter-spacing: 0.055em;
}

.partners-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.partner-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: min(12vw, 150px);
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}

.partner-track {
  width: max-content;
  display: flex;
  animation: partnerMove 46s linear infinite;
}

.partner-set {
  flex: none;
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.partner-card {
  position: relative;
  width: clamp(300px, 32vw, 430px);
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: end;
  gap: 16px 28px;
  padding: 25px 34px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  color: inherit;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, transform 260ms var(--ease);
}

.partner-card:hover,
.partner-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  transform: translateY(-2px);
}

.partner-card > span {
  align-self: start;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partner-card img {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(0.35) drop-shadow(0 11px 15px rgba(0, 0, 0, 0.42));
  transition: filter 220ms ease, transform 320ms var(--ease);
}

.partner-card:hover img,
.partner-card:focus-visible img {
  filter: grayscale(0) drop-shadow(0 14px 18px rgba(0, 0, 0, 0.55));
  transform: scale(1.045);
}

.partner-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.07em;
}

@keyframes partnerMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.collab {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #070708;
  text-align: center;
}

.collab-grid {
  opacity: 0.36;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

.collab-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 88px;
}

.collab-inner > img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.32));
  animation: miniLogoFloat 7.5s ease-in-out infinite;
}

.collab .eyebrow {
  margin-bottom: 16px;
}

.collab h2 {
  font-size: clamp(66px, 8vw, 112px);
  letter-spacing: 0.04em;
}

.collab h2 em {
  font-style: normal;
}

.collab-inner > p {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

.collab .button {
  margin-top: 29px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 25px 70px;
  padding-block: 40px 26px;
}

.footer-brand img {
  width: 31px;
  height: 31px;
}

.footer-inner > p {
  max-width: 355px;
  margin: 0;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(720px, calc(100svh - 32px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(145deg, #0d0d0f, #070708 64%);
  color: var(--white);
  box-shadow: 0 44px 150px rgba(0, 0, 0, 0.86), inset 0 1px rgba(255, 255, 255, 0.055);
}

.contact-dialog[open] {
  animation: modalIn 280ms var(--ease) both;
}

.contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px) saturate(75%);
}

.dialog-shell {
  position: relative;
  overflow: hidden;
  padding: 56px 64px 54px;
  border-radius: 18px;
}

.dialog-shell::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 12px;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.dialog-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from var(--dialog-outline-angle), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.1) 18%, rgba(255, 255, 255, 0.86) 26%, rgba(184, 202, 255, 0.42) 32%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.07) 68%, rgba(255, 255, 255, 0.24) 84%, rgba(255, 255, 255, 0.16));
  opacity: 0.9;
  filter: drop-shadow(0 0 14px rgba(198, 212, 255, 0.18));
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: dialogOutlineFlow 4.8s linear infinite;
}

.dialog-shell > * {
  position: relative;
  z-index: 3;
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 220ms var(--ease);
}

.dialog-close:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.075);
  transform: rotate(4deg);
}

.dialog-close span {
  display: block;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
}

.contact-dialog .eyebrow,
.contact-dialog h2,
.dialog-lede,
.contact-list {
  position: relative;
  z-index: 2;
}

.contact-dialog .eyebrow {
  margin-bottom: 12px;
}

.contact-dialog h2 {
  font-size: clamp(68px, 8vw, 98px);
  letter-spacing: 0.05em;
}

.dialog-lede {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.contact-list {
  margin-top: 34px;
}

.contact-list a {
  min-height: 82px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.026);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 240ms var(--ease), box-shadow 240ms ease;
}

.contact-list a:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.contact-number,
.contact-list small {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list a > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-list strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-list i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-style: normal;
  transition: background 180ms ease, transform 220ms var(--ease);
}

.contact-list a:hover i {
  background: rgba(255, 255, 255, 0.08);
  transform: translate(1px, -1px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.highlights,
.partners,
.collab,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

@keyframes headerSettle {
  from {
    opacity: 0.9;
    transform: translate3d(0, -8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes frameSettle {
  from {
    opacity: 0.92;
    transform: scale(0.992);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gridDrift {
  to {
    transform: translate3d(72px, 72px, 0);
  }
}

@keyframes haloPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.5;
    transform: scale(1);
  }
}

@keyframes logoOpen {
  0% {
    opacity: 0.08;
    transform: translate3d(0, 10px, 0) scaleX(0.34) scaleY(0.72) rotate(-7deg);
  }

  52% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scaleX(1.04) scaleY(1.03) rotate(1deg);
  }

  78% {
    transform: translate3d(0, 0, 0) scaleX(0.985) scaleY(1) rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(1) scaleY(1) rotate(0deg);
  }
}

@keyframes logoOpenSweep {
  0%,
  72%,
  100% {
    opacity: 0;
    background-position: 100% 0;
  }

  10% {
    opacity: 0.62;
    background-position: 54% 0;
  }

  22% {
    opacity: 0;
    background-position: 0 0;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -8px, 0) scale(1.018);
  }
}

@keyframes miniLogoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes contentIn {
  from {
    opacity: 0.9;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes buttonSheen {
  0%,
  42%,
  100% {
    transform: translate3d(-220%, 0, 0) skewX(-18deg);
  }

  58% {
    transform: translate3d(620%, 0, 0) skewX(-18deg);
  }
}

@keyframes cueDrop {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(-3px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(2px) rotate(45deg);
  }
}

@keyframes cueGlow {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.88);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes dialogOutlineFlow {
  to {
    --dialog-outline-angle: 360deg;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .hero-mark {
    width: min(24vw, 230px);
  }

  .hero-inner {
    padding: 82px 48px 32px;
  }

  .hero h1 {
    font-size: 82px;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(calc(100% - 48px), 900px);
  }

  .partners-heading {
    grid-template-columns: 1fr minmax(250px, 0.65fr);
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 16px;
    right: 16px;
    left: 16px;
    border-radius: 12px 12px 0 0;
  }

  .site-header.is-scrolled {
    top: 0;
    right: 0;
    left: 0;
    border-radius: 0;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    min-height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 36px max(24px, calc((100vw - var(--shell)) / 2));
    background: rgba(5, 5, 5, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms var(--ease);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-links button {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    color: var(--white);
    font-family: var(--display);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-align: left;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(2.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-2.5px) rotate(-45deg);
  }

  .hero {
    height: auto;
    min-height: 760px;
    padding: 16px;
  }

  .hero-window {
    min-height: 728px;
    border-radius: 14px;
  }

  .hero-inner {
    min-height: 728px;
    padding: 92px 26px 38px;
  }

  .hero-mark {
    width: min(52vw, 250px);
  }

  .hero h1 {
    font-size: clamp(76px, 12vw, 98px);
  }

  .partners-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    font-size: 19px;
  }

  .nav {
    gap: 9px;
  }

  .nav-shop {
    min-height: 36px;
    padding: 0 11px;
    font-size: 8px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 740px;
    padding: 10px;
  }

  .hero-window {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 720px;
    padding: 90px 18px 34px;
  }

  .hero-mark {
    width: min(60vw, 238px);
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 62px);
    letter-spacing: 0.035em;
  }

  .hero-tagline {
    flex-wrap: wrap;
    gap: 7px;
    font-size: 7px;
    letter-spacing: 0.11em;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

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

  .highlight-grid div {
    min-height: 62px;
    gap: 12px;
    padding: 10px 8px;
  }

  .highlight-grid div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .highlight-grid div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .partners {
    padding: 68px 0 76px;
  }

  .partners h2 {
    font-size: 66px;
  }

  .partner-card {
    width: 285px;
    min-height: 135px;
    padding: 21px 24px;
  }

  .partner-card img {
    width: 62px;
    height: 62px;
  }

  .partner-card h3 {
    font-size: 30px;
  }

  .collab {
    min-height: 590px;
  }

  .collab h2 {
    font-size: clamp(62px, 18vw, 86px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-links {
    grid-column: 1;
    grid-row: auto;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 7px;
  }

  .dialog-shell {
    padding: 54px 21px 25px;
  }

  .contact-dialog h2 {
    font-size: 64px;
  }

  .contact-list {
    margin-top: 26px;
  }

  .contact-list a {
    grid-template-columns: 26px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .contact-list strong {
    font-size: 12px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .partner-track {
    animation: none;
  }
}

@media (forced-colors: active) {
  .button-primary {
    border: 1px solid ButtonText;
  }
}
