:root,
html[data-theme="light"] {
  --bg: #f7f2ed;
  --bg-deep: #ebe4da;
  --bg-card: #ebe4da;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --muted: #6b6b6b;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.22);
  --white: #ffffff;
  --black: #0a0a0a;
  --header-bg: rgba(240, 235, 227, 0.92);
  --card-fill: rgba(255, 255, 255, 0.38);
  --card-fill-hover: rgba(255, 255, 255, 0.62);
  --art-well: #ebe4da;
  --shadow: rgba(17, 17, 17, 0.06);
  --logo-filter: none;
  --mark-filter: none;
  --pv-bg: #ffffff;
  --pv-fg: #111111;
  --pv-muted: rgba(17, 17, 17, 0.42);
  --pv-well: rgba(17, 17, 17, 0.06);
  --tag-bg: #e6e6e6;
  --tag-fg: #111111;
  --pv-mono: #111111;
  --pv-mono-2: #3a3a3a;
  --pv-mono-3: #5c5c5c;
  --pv-mono-4: #7a7a7a;
  --pv-mono-5: #9a9a9a;
  --pv-mono-6: #b8b8b8;
  --font: "Poppins", "Segoe UI", sans-serif;
  --font-serif: "Poppins", "Segoe UI", sans-serif;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="dark"] {
  --bg: #0f0f10;
  --bg-deep: #161618;
  --bg-card: #1c1c1f;
  --ink: #f3efe8;
  --ink-soft: #c9c4bb;
  --muted: #9a958c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --white: #ffffff;
  --black: #0a0a0a;
  --header-bg: rgba(15, 15, 16, 0.92);
  --card-fill: rgba(255, 255, 255, 0.04);
  --card-fill-hover: rgba(255, 255, 255, 0.08);
  --art-well: #1a1a1c;
  --shadow: rgba(0, 0, 0, 0.35);
  --logo-filter: invert(1);
  --mark-filter: invert(1);
  --pv-bg: #3a3a3e;
  --pv-fg: #ececec;
  --pv-muted: rgba(255, 255, 255, 0.42);
  --pv-well: rgba(255, 255, 255, 0.07);
  --tag-bg: #3f3f44;
  --tag-fg: #f3efe8;
  --pv-mono: #f4f4f4;
  --pv-mono-2: #d4d4d4;
  --pv-mono-3: #b0b0b0;
  --pv-mono-4: #8c8c8c;
  --pv-mono-5: #6a6a6a;
  --pv-mono-6: #4a4a4a;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 0.9rem;
  background: var(--black);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-img {
  display: block;
  height: 2.1rem;
  width: auto;
  flex: 0 0 auto;
  filter: var(--logo-filter);
  transition: filter 0.25s var(--ease);
}

.site-footer .logo-img {
  filter: invert(1);
}

html[data-theme="dark"] .site-footer .logo-img {
  filter: invert(1);
}

.logo-img-light {
  filter: invert(1);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.nav > a,
.nav-trigger {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.nav > a:hover,
.nav-trigger:hover {
  opacity: 0.65;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.8;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 12rem;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-menu[hidden] {
  display: none;
}

.nav-menu a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 0.35rem;
  font-size: 0.9rem;
}

.nav-menu a:hover {
  background: var(--bg-deep);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

/* Always visible in the header bar (mobile/tablet + desktop) — outside the menu drawer */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: auto;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  background: var(--card-fill);
  transform: translateY(-1px);
}

.theme-toggle-sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle-moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle-sun {
  display: inline-flex;
}

.theme-toggle-mobile {
  width: auto;
  height: auto;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0.2rem;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.theme-toggle-mobile:hover {
  transform: none;
  background: transparent;
}

.theme-toggle-label {
  font-size: 0.92rem;
}

button.btn {
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    transform 0.2s var(--ease),
    opacity 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sales,
.btn-dark {
  background: var(--ink);
  color: var(--bg);
}

.btn-sales {
  padding-inline: 1.05rem;
}

.chevron-light {
  border-color: var(--white);
}

.menu-toggle {
  margin-left: 0.45rem;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-content: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.2rem;
  height: 1.5px;
  background: var(--ink);
}

.mobile-nav {
  display: grid;
  gap: 0.25rem;
  padding: 0.25rem 1rem 1.1rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.75rem 0.2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.mobile-nav .btn {
  margin-top: 0.75rem;
  border-bottom: 0;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(var(--ink) 1px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.08;
  -webkit-mask-image: linear-gradient(#000, #0000 88%);
  mask-image: linear-gradient(#000, #0000 88%);
}

.hero-art {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  height: min(30vh, 300px);
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 40% 68%, #0000 92%);
  mask-image: linear-gradient(#0000 0%, #000 40% 68%, #0000 92%);
}

.hero-art pre {
  margin: 0;
  flex-shrink: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: var(--ink);
  opacity: 0.5;
  white-space: pre;
}

html[data-theme="dark"] .hero-art pre {
  opacity: 0.65;
}

@media (max-width: 640px) {
  .hero-art {
    height: min(26vh, 230px);
  }

  .hero-art pre {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
}

.hero-eagle-wrap {
  position: absolute;
  left: 50%;
  /* Center over the ASCII hero-art band (hero padding + half art height) */
  top: calc(clamp(4rem, 10vw, 7.5rem) + min(15vh, 150px));
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: hero-eagle-float 5.2s ease-in-out infinite;
}

.hero-eagle {
  display: block;
  width: clamp(4.25rem, 9vw, 6.75rem);
  height: auto;
  color: var(--ink);
  opacity: 0.95;
  overflow: visible;
}

.hero-eagle-wing-front {
  transform-box: fill-box;
  transform-origin: 70% 55%;
  animation: hero-eagle-flap 2.8s ease-in-out infinite;
}

.hero-eagle-wing-back {
  transform-box: fill-box;
  transform-origin: 45% 50%;
  animation: hero-eagle-flap-back 2.8s ease-in-out infinite;
}

@keyframes hero-eagle-flap {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  40% {
    transform: rotate(-9deg) translateY(-2%);
  }
  70% {
    transform: rotate(5deg) translateY(1%);
  }
}

@keyframes hero-eagle-flap-back {
  0%,
  100% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(6deg);
  }
  70% {
    transform: rotate(-4deg);
  }
}

@keyframes hero-eagle-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-0.85rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eagle-wrap,
  .hero-eagle-wing-front,
  .hero-eagle-wing-back {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hero-eagle-wrap {
    /* Above the headline, slightly lower than eagleup1 */
    top: 4.35rem;
  }

  .hero-eagle {
    width: clamp(3.5rem, 18vw, 5rem);
  }

  @keyframes hero-eagle-float {
    0%,
    100% {
      transform: translate(-50%, -50%) translateY(0);
    }
    50% {
      transform: translate(-50%, -50%) translateY(-0.45rem);
    }
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: -4.5rem auto 0;
  display: grid;
  gap: 2.25rem;
  align-items: end;
}

.hero h1 {
  margin: 0;
  width: 100%;
  max-width: min(9.5em, 100%);
  font-family: var(--font);
  font-size: clamp(2.3rem, 5.2vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--ink);
}

.hero h1 .underline {
  text-decoration: underline;
  text-decoration-thickness: 0.055em;
  text-underline-offset: 0.12em;
  text-decoration-skip-ink: none;
}

.hero-copy {
  margin: 0;
  max-width: 30ch;
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 1.5rem, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
}

.hero-media {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: clamp(2.5rem, 6vw, 4.5rem) auto 0;
}

.hero-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 55%),
    var(--art-well);
}

.hero-video,
.showcase-video {
  background-color: #111;
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
  pointer-events: none;
}



.video-edge-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.28) 0%, rgba(10, 10, 10, 0.08) 14%, transparent 28%, transparent 72%, rgba(10, 10, 10, 0.08) 86%, rgba(10, 10, 10, 0.28) 100%),
    linear-gradient(to right, rgba(10, 10, 10, 0.18) 0%, transparent 10%, transparent 90%, rgba(10, 10, 10, 0.18) 100%);
}

.video-edge-ripple {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  height: clamp(4.5rem, 16%, 7.5rem);
}

.video-edge-ripple-top {
  top: 0;
  align-items: flex-start;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 100%);
}

.video-edge-ripple-bottom {
  bottom: 0;
  align-items: flex-end;
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 45%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, #000 45%, transparent 100%);
}

.video-edge-ripple pre {
  margin: 0;
  width: max-content;
  max-width: none;
  flex-shrink: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: clamp(9px, 1.15vw, 12px);
  line-height: 1.25;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.95;
  white-space: pre;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.video-edge-ripple-top pre {
  transform: translateY(-18%);
}

.video-edge-ripple-bottom pre {
  transform: translateY(18%) scaleY(-1);
}

@media (max-width: 640px) {
  .video-edge-ripple {
    height: clamp(3.5rem, 18%, 5.5rem);
  }

  .video-edge-ripple pre {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-edge-ripple pre {
    opacity: 0.75;
  }
}



/* Trusted */
.trusted {
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
}

.trusted-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  min-height: 4.75rem;
  display: grid;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
}

.trusted-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.trusted-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.trusted-track {
  display: flex;
  width: max-content;
  animation: marquee 55s linear infinite;
}

.trusted-logos {
  display: flex;
  align-items: center;
}

.trusted-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 11rem;
  height: 3.25rem;
  padding: 0 1rem;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.trusted-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 9.5rem;
  max-height: 2.6rem;
  object-fit: contain;
  object-position: center;
  /* originals recolored to grey with detail preserved — do not flatten */
  filter: var(--mark-filter);
  opacity: 0.92;
}

.logo-shape {
  width: 0.9rem;
  height: 0.9rem;
  background: currentColor;
  opacity: 0.85;
}

.logo-shape.diamond {
  transform: rotate(45deg);
  border-radius: 0.1rem;
}

.logo-shape.circle {
  border-radius: 50%;
}

.logo-shape.bars {
  background: linear-gradient(
    90deg,
    currentColor 0 22%,
    transparent 22% 39%,
    currentColor 39% 61%,
    transparent 61% 78%,
    currentColor 78% 100%
  );
}

.logo-shape.hex {
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.logo-shape.square {
  border-radius: 0.15rem;
}

.logo-shape.wave {
  border-radius: 1rem 0.2rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.products h2,
.releases h2,
.resources h2,
.commitments h2,
.learn h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 750;
}

.products h2 {
  margin-bottom: 1.75rem;
}

.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.35rem;
  background: var(--card-fill);
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.product-card:hover {
  border-color: var(--line-strong);
  background: var(--card-fill-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px var(--shadow);
}

.product-lead {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 7rem;
  margin-bottom: 0.75rem;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  min-height: 2.85rem;
}

.product-top .product-logo,
.product-logo {
  height: 1.95rem;
  max-height: 1.95rem;
  max-width: 8rem;
  width: auto;
  margin: 0;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  filter: var(--mark-filter);
}

.product-top .product-logo--dantani {
  height: 1.05rem;
  max-height: 1.05rem;
  max-width: 4.5rem;
}

.product-top .product-logo--statgost {
  height: 2.8rem;
  max-height: 2.8rem;
  max-width: 8.6rem;
}

.product-top .product-logo--wide {
  height: 1.4rem;
  max-height: 1.4rem;
  max-width: 9.2rem;
}

.product-top .product-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  margin: 0;
  z-index: 2;
  white-space: nowrap;
}

.product-tag:empty {
  display: none;
}

.product-tech-pills {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.product-tech-pill {
  display: inline-block;
  padding: 0.32rem 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.product-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0;
  padding: 0.16rem 0.38rem;
  background: var(--tag-bg);
  color: var(--tag-fg);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0.18rem;
  line-height: 1.2;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.product-brand strong {
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.25rem;
  background: var(--ink);
}

.brand-icon-a {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brand-icon-b {
  border-radius: 50%;
}

.brand-icon-c {
  clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0 50%);
}

.brand-icon-d {
  transform: rotate(45deg);
  border-radius: 0.15rem;
}

.brand-icon-e {
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
}

.brand-icon-f {
  clip-path: polygon(0 20%, 50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%);
}

.brand-icon-g {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.product-card.is-coming-soon {
  position: relative;
}

.product-card.is-coming-soon .product-art {
  margin-bottom: 0;
  flex: 1;
}

.coming-soon-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.45rem 0.75rem;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}


.product-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 5.5rem;
  margin-bottom: 1.1rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: visible;
}

.product-art.has-logo {
  padding: 0;
  background: transparent;
}

.product-art.has-logo::after {
  display: none;
}

.product-name {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.product-card.is-coming-soon .coming-soon-badge {
  margin-top: 0.15rem;
}

.product-card:hover .product-art {
  border-color: transparent;
}

.product-art::after {
  content: none;
}

.product-preview {
  position: relative;
  flex: 0 0 9.5rem;
  height: 9.5rem;
  margin-bottom: 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: var(--pv-bg);
  color: var(--pv-fg);
  overflow: hidden;
}

.product-card.is-coming-soon .product-preview {
  display: grid;
  place-items: center;
}

.pv-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.pv-scene.is-on {
  opacity: 1;
}

.pv-line {
  display: block;
  width: 100%;
  height: calc(100% - 1.4rem);
  padding: 0.7rem 0.6rem 0;
}

.pv-line polyline {
  fill: none;
  stroke: var(--pv-mono);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.pv-line polyline:nth-child(2) {
  stroke: var(--pv-mono-3);
}

.pv-scene.is-on .pv-line polyline {
  animation: pv-draw 1.4s ease-out forwards;
}

.pv-scene.is-on .pv-line polyline:nth-child(2) {
  animation-delay: 0.22s;
}

.pv-chart--mini {
  height: 2.4rem;
  padding: 0;
  width: 100%;
}

.pv-codes {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
}

.pv-codes span {
  padding: 0.38rem 0.5rem;
  border-radius: 0.4rem;
  background: var(--pv-well);
  animation: pv-row 4s ease-in-out infinite;
}

.pv-codes span:nth-child(2) { animation-delay: 0.25s; }
.pv-codes span:nth-child(3) { animation-delay: 0.5s; }
.pv-codes span:nth-child(4) { animation-delay: 0.75s; }

.pv-globe {
  position: absolute;
  inset: 0;
  perspective: 220px;
  display: grid;
  place-items: center;
}

.pv-globe-spin {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  transform-style: preserve-3d;
  animation: pv-spin 8s linear infinite;
}

.pv-globe-spin i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  margin: -1.5px 0 0 -1.5px;
  border-radius: 1px;
  background: currentColor;
  opacity: 0.85;
}

.pv-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 100%;
  padding: 1.1rem 1rem 1.7rem;
}

.pv-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 0.2rem 0.2rem 0 0;
  transform-origin: bottom;
  animation: pv-bar 2.8s ease-in-out infinite;
}

.pv-chart span:nth-child(1) { background: var(--pv-mono); }
.pv-chart span:nth-child(2) { background: var(--pv-mono-2); animation-delay: 0.15s; }
.pv-chart span:nth-child(3) { background: var(--pv-mono-3); animation-delay: 0.3s; }
.pv-chart span:nth-child(4) { background: var(--pv-mono-4); animation-delay: 0.45s; }
.pv-chart span:nth-child(5) { background: var(--pv-mono-5); animation-delay: 0.6s; }
.pv-chart span:nth-child(6) { background: var(--pv-mono-6); animation-delay: 0.75s; }

.pv-caption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.45rem;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pv-muted);
}

.pv-feed {
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem;
}

.pv-feed span {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0.55rem;
  border-radius: 0.45rem;
  background: var(--pv-well);
  font-size: 0.7rem;
  animation: pv-row 5s ease-in-out infinite;
}

.pv-feed span:nth-child(2) { animation-delay: 0.4s; }
.pv-feed span:nth-child(3) { animation-delay: 0.8s; }

.pv-feed em {
  font-style: normal;
  color: var(--pv-fg);
  font-weight: 700;
}

.preview-turtul .pv-map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 45%, rgba(147, 197, 253, 0.28), transparent 28%),
    radial-gradient(circle at 70% 50%, rgba(196, 181, 253, 0.22), transparent 26%);
}

.preview-turtul .pv-map i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #93c5fd;
  animation: pv-pulse 2.4s ease-out infinite;
}

.preview-turtul .pv-map i:nth-child(2) { animation-delay: 0.3s; background: #38bdf8; }
.preview-turtul .pv-map i:nth-child(3) { animation-delay: 0.6s; }
.preview-turtul .pv-map i:nth-child(4) { animation-delay: 0.9s; background: #fb7185; }
.preview-turtul .pv-map i:nth-child(5) { animation-delay: 1.2s; background: #38bdf8; }

.pv-chat {
  display: grid;
  gap: 0.4rem;
  padding: 0.75rem;
  font-size: 0.68rem;
  line-height: 1.35;
}

.pv-chat p {
  max-width: 88%;
  padding: 0.4rem 0.55rem;
  border-radius: 0.7rem;
  animation: pv-bubble 7s ease-in-out infinite;
}

.pv-chat .in {
  justify-self: start;
  background: var(--pv-well);
}

.pv-chat .out {
  justify-self: end;
  background: var(--pv-fg);
  color: var(--pv-bg);
}

.pv-chat p:nth-child(2) { animation-delay: 1.1s; }
.pv-chat p:nth-child(3) { animation-delay: 2.2s; }

.pv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}

.pv-stats div {
  display: grid;
  place-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.pv-stats div:last-child { border: 0; }

.pv-stats small {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pv-muted);
}

.pv-stats b {
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  animation: pv-tick 3s ease-in-out infinite;
}

.pv-value {
  display: grid;
  place-content: center;
  height: 100%;
  text-align: center;
  gap: 0.35rem;
  padding: 0 1.2rem;
}

.pv-value small {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pv-muted);
}

.pv-value b {
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.pv-bar {
  display: block;
  height: 0.28rem;
  border-radius: 99px;
  background: var(--pv-well);
  overflow: hidden;
}

.pv-bar i {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--pv-fg);
  animation: pv-fill 3.2s ease-in-out infinite;
}

.pv-code {
  margin: 0;
  padding: 0.85rem 0.9rem;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 0.64rem;
  line-height: 1.55;
  color: var(--pv-fg);
}

.pv-code span {
  display: block;
  opacity: 0;
  animation: pv-line 5.5s ease-in-out infinite;
}

.pv-code span:nth-child(1) { color: #38bdf8; animation-delay: 0s; }
.pv-code span:nth-child(2) { animation-delay: 0.7s; }
.pv-code span:nth-child(3) { color: #c4b5fd; animation-delay: 1.4s; }
.pv-code span:nth-child(4) { animation-delay: 2.1s; }

@keyframes pv-bar {
  0%, 100% { transform: scaleY(0.72); }
  50% { transform: scaleY(1); }
}

@keyframes pv-row {
  0%, 100% { opacity: 0.55; transform: translateX(0); }
  40% { opacity: 1; transform: translateX(2px); }
}

@keyframes pv-pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes pv-bubble {
  0%, 8% { opacity: 0; transform: translateY(8px); }
  18%, 78% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; }
}

@keyframes pv-tick {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

@keyframes pv-fill {
  0%, 100% { width: 54%; }
  50% { width: 86%; }
}

@keyframes pv-line {
  0%, 8% { opacity: 0; }
  16%, 80% { opacity: 1; }
  92%, 100% { opacity: 0.2; }
}

@keyframes pv-spin {
  to { transform: rotateY(360deg); }
}

@keyframes pv-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .pv-chart span,
  .pv-feed span,
  .preview-turtul .pv-map i,
  .pv-chat p,
  .pv-stats b,
  .pv-bar i,
  .pv-code span,
  .pv-globe-spin,
  .pv-line polyline {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .pv-line polyline {
    stroke-dashoffset: 0;
  }
}

.product-desc {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.product-card li {
  padding: 0.15rem 0 0.15rem 0.9rem;
  position: relative;
}

.product-card li:not(:last-child) {
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--ink);
}


/* Showcase video between products and releases */
.showcase {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}

.showcase-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 55%),
    var(--art-well);
}

.showcase-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
  pointer-events: none;
}



/* Releases */
.releases h2 {
  margin-bottom: 1.5rem;
}

.release-grid {
  display: grid;
  gap: 1rem;
}

.release-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.4rem;
  background: var(--bg-card);
  border-radius: 0.75rem;
}

.release-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-weight: 750;
}

.release-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.text-link {
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link:hover {
  opacity: 0.7;
}

.release-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.meta-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.release-card .btn {
  align-self: flex-start;
  margin-top: auto;
}


.ascii-art {
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.ascii-art pre {
  margin: 0;
  flex-shrink: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: var(--ink);
  opacity: 0.5;
  white-space: pre;
}

html[data-theme="dark"] .ascii-art pre {
  opacity: 0.65;
}

.commitments-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.ascii-art-commitments {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: min(22vh, 210px);
  margin: 0 0 -1.25rem;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 28% 72%, #0000 100%);
  mask-image: linear-gradient(#0000 0%, #000 28% 72%, #0000 100%);
}

.ascii-art-commitments pre {
  transform: translateX(-8%);
}

@media (max-width: 640px) {
  .ascii-art-commitments {
    height: min(18vh, 160px);
  }

  .ascii-art-commitments pre {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
}

/* Commitments */
.commitments {
  padding-top: 2rem;
}

.commitments-inner {
  display: grid;
  gap: 2rem;
}

.commitments h2 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.commitment-list {
  display: grid;
}

.commitment-list span {
  display: block;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  cursor: default;
}

.commitment-list li:last-child span {
  border-bottom: 1px solid var(--line);
}

/* Learn */
.learn {
  padding-top: 1rem;
}

.learn-inner {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-deep);
  border-radius: 0.85rem;
}

.eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.learn p {
  margin-top: 0.75rem;
  max-width: 42ch;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.footer-brand .logo-img {
  height: 2.4rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1rem;
}

.footer-cols h3 {
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.5);
}

.footer-cols a {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
}

.footer-cols a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

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

  .trusted-track,
  .btn,
  .product-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (min-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-inner {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
  }

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

  .resources .release-grid {
    display: flex;
    grid-template-columns: none;
  }

  .commitments-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .learn-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-card {
    grid-column: auto;
  }

  .nav,
  .header-actions {
    display: flex;
    align-items: center;
  }

  .theme-toggle {
    margin-left: 0.65rem;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: end;
    column-gap: clamp(2rem, 4vw, 4.5rem);
  }

  .hero-copy {
    justify-self: start;
    width: min(100%, 30ch);
    margin-left: 0;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }

  .footer-cols {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .footer-cols {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}



/* Media exposure */
.media-exposure {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-block: 1px solid var(--line);
  background: var(--bg);
}

.media-exposure-inner {
  text-align: left;
}

.media-exposure-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 750;
  text-transform: none;
  color: var(--ink);
}

.media-exposure-kicker {
  margin: 0 0 1.5rem;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.media-exposure-sep {
  white-space: nowrap;
}

.media-exposure-logos {
  width: min(100%, 58rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem) clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  justify-items: center;
}

.media-exposure-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.6rem;
  padding: 0.2rem 0.3rem;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.media-exposure-logo:hover,
.media-exposure-logo:focus-visible {
  opacity: 0.85;
  transform: translateY(-1px);
}

.media-exposure-logo img {
  width: auto;
  max-width: 100%;
  max-height: 2.85rem;
  height: auto;
  object-fit: contain;
  filter: var(--mark-filter);
}

@media (max-width: 900px) {
  .media-exposure-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1.1rem;
  }
}

@media (max-width: 520px) {
  .media-exposure-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Resources */
.resources h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 750;
  line-height: 1.2;
  text-transform: none;
}

.resources {
  padding-top: 2rem;
}

.resources-lede {
  margin: -0.35rem 0 1.5rem;
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.resources .release-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.25rem;
  padding-bottom: 0.65rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.resources .release-grid .resource-card,
.resources .release-grid .release-card {
  flex: 0 0 min(22rem, 82vw);
  width: min(22rem, 82vw);
  max-width: 22rem;
  scroll-snap-align: start;
}

.resources .resource-empty {
  flex: 0 0 100%;
  grid-column: auto;
}


.resource-empty {
  grid-column: 1 / -1;
  padding: 1.4rem;
  border: 1px dashed var(--line);
  border-radius: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.resource-modal[hidden] {
  display: none !important;
}

.resource-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.resource-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
}

.resource-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  max-height: min(90vh, 40rem);
  overflow: auto;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 1rem;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px var(--shadow);
}

.resource-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.resource-modal-head h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.resource-modal-x {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.resource-modal-copy {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.resource-form {
  display: grid;
  gap: 0.85rem;
}

.resource-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink);
}

.resource-field input {
  width: 100%;
  min-height: 2.6rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--bg-card);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.resource-field input:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

.resource-field input.is-invalid {
  border-color: #c0392b;
}

.resource-form-error {
  margin: 0;
  color: #b3261e;
  font-size: 0.88rem;
  font-weight: 600;
}

.resource-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.resource-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Sales brand picker */
.sales-modal[hidden] {
  display: none !important;
}

.sales-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.sales-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
}

.sales-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-height: min(85vh, 36rem);
  overflow: auto;
  padding: 1.35rem 1.35rem 1.1rem;
  border-radius: 1rem;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px var(--shadow);
}

.sales-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.sales-modal-head h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.sales-modal-x {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.sales-modal-copy {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.sales-brand-list {
  display: grid;
  gap: 0;
}

.sales-brand-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 0.15rem;
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.sales-brand-list li:last-child a {
  border-bottom: 1px solid var(--line);
}

.sales-brand-list a:hover {
  opacity: 0.7;
}

.sales-soon {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Legal pages */
.legal-page {
  padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}

.legal-inner h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

.legal-meta {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-prose {
  max-width: 48rem;
}

.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}

.legal-prose h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--ink-soft);
  line-height: 1.55;
}

.legal-prose ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.legal-prose a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a {
  color: inherit;
  opacity: 0.8;
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem 1.75rem;
  margin-left: auto;
}

.footer-partners img {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-partners {
    justify-content: flex-start;
    margin-left: 0;
  }
}
