/* ═══════════════════════════════════════════════════════════
   HIOTAKU — Landing Page Styles
   Design system: Air (dark canvas, flat surfaces, no shadows)
═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --color-whiteout: #ffffff;
  --color-haze: #f5f5f5;
  --color-ink: #1b1b1b;
  --color-black-void: #000000;
  --color-twilight-blue: #426188;
  --color-signal-blue: #2b7fff;

  /* Typography */
  --font-control: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-control-compressed: 'Anton', ui-sans-serif, system-ui, sans-serif;
  --font-control-cursive: 'Caveat', cursive;
  --font-control-tnt: 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Type scale */
  --text-caption: 13px;
  --leading-caption: 1.5;
  --text-body: 16px;
  --leading-body: 1.5;
  --text-subheading: 20px;
  --leading-subheading: 1.4;
  --text-heading: 32px;
  --leading-heading: 1.1;
  --text-heading-lg: 56px;
  --leading-heading-lg: 1;
  --text-display: clamp(80px, 14vw, 200px);
  --leading-display: 0.85;

  /* Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-black: 900;

  /* Spacing */
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-48: 48px;
  --spacing-52: 52px;
  --spacing-64: 64px;
  --spacing-80: 80px;
  --spacing-120: 120px;

  /* Layout */
  --page-max-width: 1150px;
  --section-gap: 48px;
  --card-padding: 20px;
  --element-gap: 8px;

  /* Border radius */
  --radius-cards: 12px;
  --radius-pills: 9999px;
  --radius-images: 11px;
  --radius-inputs: 4px;
  --radius-buttons: 8px;

  /* Surfaces */
  --surface-dark-canvas: #000000;
  --surface-haze-card: #f5f5f5;
  --surface-whiteout: #ffffff;

  /* Nav */
  --nav-height: 72px;
}

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

/* ── SVG Icon system ── */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Pill icon */
.pill__icon {
  width: 13px;
  height: 13px;
  color: inherit;
  opacity: 0.75;
}

/* Button icon */
.btn__icon {
  width: 18px;
  height: 18px;
  color: inherit;
}
.btn--lg .btn__icon {
  width: 20px;
  height: 20px;
}

/* Link underline icon — slides on hover */
.link-underline {
  gap: 6px;
}
.link-underline__icon {
  width: 16px;
  height: 16px;
  color: inherit;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.link-underline:hover .link-underline__icon {
  transform: translateX(4px);
}

/* Feature card icon */
.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(66, 97, 136, 0.12);
  border: 1px solid rgba(66, 97, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-twilight-blue);
  flex-shrink: 0;
}
.feature-card__svg {
  width: 22px;
  height: 22px;
  color: inherit;
}

/* Logo bar SVG icons */
.logo-bar__svg {
  width: 22px;
  height: 22px;
  color: var(--color-whiteout);
}

/* Pricing check icon */
.pricing-check-icon {
  width: 16px;
  height: 16px;
  color: var(--color-twilight-blue);
  flex-shrink: 0;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
}
/* Remove old ::before pseudo-element checkmark */
.pricing-card__features li::before { display: none; }

/* Testimonial quote icon */
.testimonial-card__quote-icon {
  color: var(--color-twilight-blue);
  opacity: 0.5;
  margin-bottom: var(--spacing-12);
}
.testimonial-quote-svg {
  width: 20px;
  height: 20px;
  color: inherit;
}

/* Testimonial avatar */
.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(66, 97, 136, 0.15);
  border: 1px solid rgba(66, 97, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-twilight-blue);
  flex-shrink: 0;
}
.testimonial-avatar-icon {
  width: 16px;
  height: 16px;
  color: inherit;
}

/* Player card bookmark */
.player-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-12) var(--spacing-16);
  background: var(--surface-haze-card);
}
.player-card__meta-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}
.player-card__meta-right {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-twilight-blue);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.player-card__meta-right:hover { opacity: 1; transform: scale(1.15); }
.player-card__action-icon {
  width: 18px;
  height: 18px;
  color: inherit;
}

/* Footer social icons — now SVG-based */
.footer__social {
  display: flex;
  gap: var(--spacing-12);
  margin-top: var(--spacing-20);
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-buttons);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.footer__social-link:hover {
  color: var(--color-whiteout);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}
.footer__social-link svg {
  width: 16px;
  height: 16px;
  color: inherit;
}

/* Footer bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-32);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__credit {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.3);
}
.footer-heart-icon {
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin: 0 2px;
  color: #e05;
  fill: #e05;
  stroke: #e05;
}

/* Footer brand rearranged (social now inside brand col) */
.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--spacing-64);
  margin-bottom: var(--spacing-48);
}

/* Catalog card play button rename */
.catalog-card__play-btn {
  cursor: pointer;
  transition: transform 0.2s ease;
  color: var(--color-whiteout);
}
.catalog-card__play-btn:hover { transform: scale(1.12); }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--font-control);
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-body);
  background-color: var(--color-black-void);
  color: var(--color-whiteout);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
main { overflow-x: clip; }

/* ── Focus styles (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--color-signal-blue);
  outline-offset: 2px;
  border-radius: var(--radius-buttons);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--page-max-width);
  margin-inline: auto;
  padding-inline: var(--spacing-24);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */

/* Ghost button — transparent + white border on dark */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
  font-family: var(--font-control);
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border-radius: var(--radius-buttons);
  padding: 10px var(--spacing-16);
  transition: opacity 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--color-whiteout);
  color: var(--color-whiteout);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.06); }

/* Ghost dark — for use on light cards */
.btn--ghost-dark {
  background: transparent;
  border: 1px solid var(--color-ink);
  color: var(--color-ink);
}
.btn--ghost-dark:hover { background: rgba(0, 0, 0, 0.05); }

/* Solid light button */
.btn--solid-light {
  background: var(--color-haze);
  border: 1px solid var(--color-ink);
  color: var(--color-ink);
}
.btn--solid-light:hover { background: #e8e8e8; }

.btn--lg { padding: 14px var(--spacing-24); font-size: var(--text-subheading); }
.btn--full { width: 100%; }

.btn--cta {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Underline link ── */
.link-underline {
  display: inline-flex;
  align-items: center;
  color: var(--color-signal-blue);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-body);
  padding: 2px var(--spacing-8);
  border-bottom: 2px solid var(--color-signal-blue);
  transition: opacity 0.15s ease;
}
.link-underline:hover { opacity: 0.75; }

/* ── Pill ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-4);
  padding: 6px var(--spacing-12);
  border-radius: var(--radius-pills);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-whiteout);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.pill--toggle {
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.pill--toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.pill--toggle.pill--active,
.pill--toggle[aria-selected="true"] {
  background: var(--color-whiteout);
  color: var(--color-ink);
  border-color: var(--color-whiteout);
}

/* ═══════════════════════════════════════════════
   SECTION HEADER (shared)
═══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-48);
}
.section-header__sub {
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: var(--color-twilight-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-12);
}
.section-header__title {
  font-family: var(--font-control-tnt);
  font-size: var(--text-heading-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-heading-lg);
  color: var(--color-whiteout);
  margin-bottom: var(--spacing-16);
}
.section-header__title em {
  font-family: var(--font-control-cursive);
  font-style: italic;
  font-weight: var(--font-weight-regular);
}
.section-header__body {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin-inline: auto;
  line-height: var(--leading-body);
}

/* ═══════════════════════════════════════════════
   NAVIGATION — floating island
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 16px;
  left: 24px;
  right: 24px;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(8, 8, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  /* cap width so it doesn't stretch on very wide screens */
  max-width: calc(var(--page-max-width) - 48px);
  margin-inline: auto;
}
/* Subtle glow when scrolled */
.nav.is-scrolled {
  background: rgba(8, 8, 12, 0.90);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.nav__inner {
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--spacing-24);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-32);
}
.nav__left {
  display: flex;
  align-items: center;
  gap: var(--spacing-32);
}
.nav__logo {
  font-family: var(--font-control-tnt);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--color-whiteout);
  letter-spacing: -0.02em;
}
.nav__logo em {
  font-family: var(--font-control-cursive);
  font-style: italic;
  font-weight: var(--font-weight-regular);
  color: var(--color-twilight-blue);
}
.nav__links {
  display: flex;
  gap: var(--spacing-24);
  align-items: center;
}
.nav__link {
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}
.nav__link:hover { color: var(--color-whiteout); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--spacing-8);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-whiteout);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile menu — attached below the floating island */
.nav__mobile {
  display: block;
  position: absolute;
  top: calc(var(--nav-height) + 8px);
  left: 0;
  right: 0;
  background: rgba(8, 8, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: var(--spacing-24);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  /* hidden until JS marks it ready */
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  visibility: hidden;
}
/* JS has loaded — enable transitions */
.nav__mobile.nav__mobile--ready {
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.22s;
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
  margin-bottom: var(--spacing-24);
}
.nav__mobile .nav__link {
  font-size: var(--text-subheading);
}
.nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
}
/* open state */
.nav__mobile.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 16px + var(--spacing-64));
  padding-bottom: var(--spacing-80);
  padding-inline: var(--spacing-24);
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg svg,
.hero__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -200px;
  background: radial-gradient(circle, rgba(66, 97, 136, 0.25) 0%, transparent 70%);
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(43, 127, 255, 0.1) 0%, transparent 70%);
  animation: orb-drift 16s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translateY(0px) translateX(0px); }
  to   { transform: translateY(30px) translateX(20px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: var(--spacing-64);
}
.hero__badge {
  margin-bottom: var(--spacing-24);
}
.hero__heading {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-24);
}
.hero__heading-line {
  display: block;
  font-size: clamp(38px, 7vw, var(--text-heading-lg));
  line-height: var(--leading-heading-lg);
}
.hero__heading-line--tnt {
  font-family: var(--font-control-tnt);
  font-weight: var(--font-weight-medium);
  color: var(--color-whiteout);
}
.hero__heading-line--accent {
  font-family: var(--font-control-tnt);
  font-weight: var(--font-weight-medium);
  color: var(--color-twilight-blue);
}
.hero__heading-line--accent em {
  font-family: var(--font-control-cursive);
  font-style: italic;
  font-weight: var(--font-weight-regular);
  color: var(--color-whiteout);
}
.hero__sub {
  font-size: var(--text-subheading);
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--spacing-32);
  line-height: var(--leading-body);
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-16);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-32);
}
.hero__pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
  flex-wrap: wrap;
}

/* Player mock card */
.hero__player {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
}
.player-card {
  background: var(--surface-haze-card);
  border-radius: var(--radius-cards);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.player-card__screen {
  position: relative;
  background: #0a0a14;
  border-radius: var(--radius-images) var(--radius-images) 0 0;
  overflow: hidden;
}
.player-card__screen svg { width: 100%; height: auto; }
.player-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.player-card__play:hover { transform: translate(-50%, -60%) scale(1.1); }
.player-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  padding: var(--spacing-12) var(--spacing-16);
  background: var(--surface-haze-card);
}
.player-card__tag {
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: var(--color-signal-blue);
}
.player-card__title {
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-ink);
}

/* ═══════════════════════════════════════════════
   LOGO BAR
═══════════════════════════════════════════════ */
.logo-bar {
  padding-block: var(--spacing-48);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.logo-bar__label {
  text-align: center;
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-32);
}
.logo-bar__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-48);
  flex-wrap: wrap;
}
.logo-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-8);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.logo-bar__item:hover { opacity: 0.8; }
.logo-bar__icon {
  font-size: 20px;
  color: var(--color-whiteout);
}
.logo-bar__name {
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: var(--color-whiteout);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════ */
.features {
  padding-block: var(--spacing-120);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-24);
}
.feature-card {
  background: var(--surface-haze-card);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
  /* No shadow — flat surface per design system */
}
.feature-card__icon {
  font-size: 22px;
  color: var(--color-twilight-blue);
  line-height: 1;
}
.feature-card__title {
  font-size: var(--text-heading);
  font-weight: var(--font-weight-medium);
  color: var(--color-ink);
  line-height: var(--leading-heading);
}
.feature-card__desc {
  font-size: var(--text-body);
  font-weight: var(--font-weight-regular);
  color: rgba(27, 27, 27, 0.65);
  line-height: var(--leading-body);
}

/* ═══════════════════════════════════════════════
   CATALOG
═══════════════════════════════════════════════ */
.catalog {
  padding-block: var(--spacing-120);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.catalog__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-48);
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-16);
  margin-bottom: var(--spacing-48);
}
.catalog__cta { text-align: center; }

/* Catalog card */
.catalog-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
}
.catalog-card__thumb {
  position: relative;
  border-radius: var(--radius-images);
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #0d0d1a;
}
.catalog-card__thumb svg { width: 100%; height: 100%; object-fit: cover; }
.catalog-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.catalog-card:hover .catalog-card__overlay,
.catalog-card:focus-within .catalog-card__overlay { opacity: 1; }
.catalog-card__play {
  color: var(--color-whiteout);
  transition: transform 0.2s ease;
}
.catalog-card__play:hover { transform: scale(1.1); }
.catalog-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}
.catalog-card__type {
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: var(--color-twilight-blue);
}
.catalog-card__title {
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-whiteout);
  line-height: 1.3;
}
.catalog__meta {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.4);
}

/* Category cards (landing page showcase) */
.catalog__grid--categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-12);
  margin-bottom: var(--spacing-48);
}
.catalog-category-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
  padding: var(--spacing-20) var(--spacing-24);
  border-radius: var(--radius-cards);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-whiteout);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.catalog-category-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.catalog-category-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}
.catalog-category-card__body { flex: 1; min-width: 0; }
.catalog-category-card__title {
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-whiteout);
  margin-bottom: var(--spacing-4);
}
.catalog-category-card__desc {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.catalog-category-card__arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s ease, transform 0.2s ease;
}
.catalog-category-card:hover .catalog-category-card__arrow {
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════
   DISPLAY SECTION — Poster headline
═══════════════════════════════════════════════ */
.display-section {
  position: relative;
  padding-block: var(--spacing-80);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.display-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.display-section__bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.display-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  pointer-events: none;
}
.display-headline {
  font-family: var(--font-control-compressed);
  font-size: var(--text-display);
  font-weight: var(--font-weight-black);
  line-height: var(--leading-display);
  color: var(--color-whiteout);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  /* Bleed to viewport edges */
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--spacing-24);
  overflow: hidden;
  white-space: nowrap;
}
.display-headline__track {
  display: inline-flex;
  gap: var(--spacing-24);
  animation: marquee 20s linear infinite;
}
.display-headline__word {
  flex-shrink: 0;
}
.display-headline__word--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   PRICING / FREE
═══════════════════════════════════════════════ */
.pricing {
  padding-block: var(--spacing-120);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
/* Centred single-card wrapper */
.free-card-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-48);
}
.pricing-card--free {
  width: 100%;
  max-width: 480px;
}
/* Badge inside the free card */
.free-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-6);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-twilight-blue);
  margin-bottom: var(--spacing-8);
}
.free-badge__icon {
  width: 18px;
  height: 18px;
  color: var(--color-twilight-blue);
}
/* .pricing__grid removed — replaced by .free-card-wrap (single centred card) */
.pricing-card {
  background: var(--surface-haze-card);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-24);
  border: 1px solid transparent;
}
.pricing-card--highlight {
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--color-whiteout);
}
.pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
}
.pricing-card__name {
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: var(--color-twilight-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card--highlight .pricing-card__name {
  color: var(--color-twilight-blue);
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-4);
}
.pricing-card__amount {
  font-family: var(--font-control-tnt);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: var(--font-weight-medium);
  color: var(--color-ink);
  line-height: 1;
}
.pricing-card__period {
  font-size: var(--text-body);
  color: rgba(27, 27, 27, 0.5);
}
.pricing-card__desc {
  font-size: var(--text-body);
  color: rgba(27, 27, 27, 0.6);
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-ink);
}
.pricing-card__features li::before {
  display: none;
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about {
  padding-block: var(--spacing-120);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-64);
  align-items: center;
}
.about__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--spacing-24);
}
.about__heading em {
  font-style: italic;
  color: var(--color-twilight-blue);
}
.about__body {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: var(--spacing-16);
}
.about__stats {
  display: flex;
  gap: var(--spacing-32);
  margin-top: var(--spacing-32);
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}
.about__stat-num {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-twilight-blue);
}
.about__stat-label {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about__visual {
  display: flex;
  justify-content: center;
}
.about__card {
  width: 280px;
  height: 340px;
  border-radius: var(--radius-cards);
  background: linear-gradient(135deg, rgba(66, 97, 136, 0.3), rgba(43, 127, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(66, 97, 136, 0.4), transparent 60%);
}
.about__card-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-16);
}
.about__card-logo {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}
.about__card-logo em {
  font-family: var(--font-control-cursive);
  font-style: italic;
  font-weight: var(--font-weight-regular);
  color: var(--color-twilight-blue);
}
.about__card-tagline {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.5);
}
.about__card-icons {
  display: flex;
  gap: var(--spacing-12);
  color: rgba(255, 255, 255, 0.4);
}
.about--page .about__inner {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; gap: var(--spacing-48); }
  .about__stats { gap: var(--spacing-24); }
  .about__visual { order: -1; }
}

/* Pricing badge */
.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-6);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-twilight-blue);
  margin-bottom: var(--spacing-8);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials {
  padding-block: var(--spacing-120);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-24);
}
.testimonial-card {
  background: var(--surface-haze-card);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-20);
}
.testimonial-card__quote {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
}
.testimonial-card__quote-icon {
  color: var(--color-twilight-blue);
  opacity: 0.5;
}
.testimonial-card__quote blockquote {
  font-size: var(--text-body);
  font-weight: var(--font-weight-regular);
  color: var(--color-ink);
  line-height: var(--leading-body);
  margin: 0;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(66, 97, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-twilight-blue);
  flex-shrink: 0;
}
.testimonial-card__name {
  display: block;
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-ink);
}
.testimonial-card__tag {
  display: block;
  font-size: var(--text-caption);
  color: rgba(27, 27, 27, 0.5);
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding-block: var(--spacing-120);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-section__bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  padding-inline: var(--spacing-24);
}
.cta-section__heading {
  font-family: var(--font-control-tnt);
  font-size: var(--text-heading-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-heading-lg);
  color: var(--color-whiteout);
  margin-bottom: var(--spacing-16);
}
.cta-section__heading em {
  font-family: var(--font-control-cursive);
  font-style: italic;
  font-weight: var(--font-weight-regular);
}
.cta-section__sub {
  font-size: var(--text-subheading);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--spacing-32);
  line-height: var(--leading-body);
}
.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-16);
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  padding-block: var(--spacing-64);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--color-black-void);
}
.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--spacing-64);
  margin-bottom: var(--spacing-48);
}
.footer__logo {
  display: inline-block;
  font-family: var(--font-control-tnt);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--color-whiteout);
  margin-bottom: var(--spacing-12);
}
.footer__logo em {
  font-family: var(--font-control-cursive);
  font-style: italic;
  font-weight: var(--font-weight-regular);
  color: var(--color-twilight-blue);
}
.footer__tagline {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.4);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-32);
}
.footer__nav-col h3 {
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-16);
}
.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
}
.footer__nav-col a {
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s ease;
}
.footer__nav-col a:hover { color: var(--color-whiteout); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-32);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__copy {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.3);
}
.footer__social {
  display: flex;
  gap: var(--spacing-16);
}
.footer__social-link {
  font-size: var(--text-subheading);
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.15s ease;
}
.footer__social-link:hover { color: var(--color-whiteout); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .catalog__grid--categories { grid-template-columns: repeat(2, 1fr); }
  /* .pricing__grid — removed, using .free-card-wrap now */
  .footer__top { grid-template-columns: 1fr; gap: var(--spacing-48); }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav — smaller + tighter on mobile */
  .nav {
    top: 10px;
    left: 12px;
    right: 12px;
    height: 56px;
    border-radius: 14px;
  }
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { padding-top: calc(56px + 10px + var(--spacing-48)); }
  .hero__heading-line { font-size: clamp(32px, 9vw, 48px); }

  /* Grids */
  .features__grid { grid-template-columns: 1fr; }
  .catalog__grid--categories { grid-template-columns: 1fr; }
  /* .pricing__grid — removed, .free-card-wrap is already single-column */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: var(--spacing-16); text-align: center; }

  /* Display */
  .display-headline { font-size: clamp(52px, 16vw, 120px); }
}

@media (max-width: 480px) {
  .catalog__grid--categories { gap: var(--spacing-12); }
  .catalog-category-card { padding: var(--spacing-16); }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: var(--spacing-24); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn, .hero__actions .link-underline { text-align: center; justify-content: center; }
  .cta-section__actions { flex-direction: column; align-items: stretch; }
  .cta-section__actions .btn, .cta-section__actions .link-underline { justify-content: center; }
}

/* ═══════════════════════════════════════════════
   PAGE HERO — Inner page headers
═══════════════════════════════════════════════ */
.page-hero {
  padding-block: calc(var(--spacing-120) + 40px) var(--spacing-80);
  text-align: center;
}
.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: var(--spacing-24);
}
.page-hero__heading em {
  font-style: italic;
  color: var(--color-twilight-blue);
}
.page-hero__sub {
  font-size: var(--text-lead);
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

/* Numbered icon for steps */
.feature-card__icon--num {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__icon--num span {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--font-weight-bold);
  color: var(--color-twilight-blue);
}

/* Category info cards */
.category-info {
  margin-top: var(--spacing-48);
}
.category-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-16);
}
.category-info__card {
  padding: var(--spacing-24);
  border-radius: var(--radius-cards);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}
.category-info__card h3 {
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-whiteout);
  margin-bottom: var(--spacing-8);
}
.category-info__card p {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .category-info__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .category-info__card { padding: var(--spacing-16); }
}

/* ═══════════════════════════════════════════════
   ERROR PAGES
═══════════════════════════════════════════════ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--spacing-120);
}
.error-page__code {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: var(--spacing-24);
}
.error-page__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--spacing-16);
}
.error-page__title em {
  font-style: italic;
  color: var(--color-twilight-blue);
}
.error-page__desc {
  font-size: var(--text-lead);
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--spacing-32);
  line-height: 1.6;
}
.error-page__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-24);
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════ */
.legal-page {
  padding-block: var(--spacing-80);
}
.legal-page__content {
  max-width: 720px;
  margin-inline: auto;
}
.legal-page__content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-top: var(--spacing-48);
  margin-bottom: var(--spacing-16);
}
.legal-page__content h2:first-child {
  margin-top: 0;
}
.legal-page__content p {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--spacing-16);
}
.legal-page__content ul {
  margin-bottom: var(--spacing-16);
  padding-left: var(--spacing-24);
}
.legal-page__content li {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--spacing-8);
}
.legal-page__content a {
  color: var(--color-twilight-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.legal-page__content a:hover {
  color: var(--color-white);
}
@media (max-width: 768px) {
  .legal-page__content { padding-inline: var(--spacing-16); }
}

/* ═══════════════════════════════════════════════
   COOKIE CONSENT
═══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--spacing-16);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-banner[aria-hidden="false"] {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-24);
  padding: var(--spacing-20) var(--spacing-24);
  border-radius: var(--radius-cards);
  background: rgba(13, 13, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.cookie-banner__text p {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--color-twilight-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.cookie-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.cookie-modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-cards);
  background: var(--color-ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-24) var(--spacing-24) 0;
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}
.cookie-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.cookie-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}
.cookie-modal__body {
  padding: var(--spacing-24);
}
.cookie-modal__desc {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--spacing-24);
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-16);
  padding: var(--spacing-16) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.cookie-option:last-child { border-bottom: none; }
.cookie-option__info h3 {
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-whiteout);
  margin-bottom: var(--spacing-4);
}
.cookie-option__info p {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: background 0.2s ease;
}
.cookie-toggle__slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--color-whiteout);
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--color-twilight-blue);
}
.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-12);
  padding: 0 var(--spacing-24) var(--spacing-24);
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════
   ANIMATIONS — Keyframes
═══════════════════════════════════════════════ */

/* Fade up — primary entrance for most elements */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fade in — simple opacity reveal */
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scale in — for cards and badges */
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* Slide right — for nav links */
@keyframes slide-right {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Float — hero player card gentle levitation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Shimmer — hero badge glow sweep */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Pulse ring — play button halo */
@keyframes pulse-ring {
  0%   { transform: translate(-50%, -60%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -60%) scale(1.6); opacity: 0; }
}

/* Ticker — logo bar horizontal scroll */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Counter count-up shimmer overlay */
@keyframes count-flash {
  0%   { opacity: 0.5; }
  100% { opacity: 0; }
}

/* Starburst spin for badge icon */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════
   HERO — Entrance sequence
   Staggered: badge → headline → sub → actions → pills → player
═══════════════════════════════════════════════ */

.hero__badge {
  animation: fade-in 0.5s ease both;
  animation-delay: 0.1s;
}

/* Badge shimmer effect */
.hero__badge .pill {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.18) 40%,
    rgba(255,255,255,0.06) 80%
  );
  background-size: 200% auto;
  animation: shimmer 3s linear infinite, fade-in 0.5s ease 0.1s both;
}

.hero__badge .pill span {
  display: inline-block;
  animation: spin-slow 8s linear infinite;
  margin-right: 4px;
}

.hero__heading {
  animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.25s;
}

.hero__sub {
  animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.4s;
}

.hero__actions {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.55s;
}

.hero__pills {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.65s;
}

/* Stagger each pill */
.hero__pills .pill:nth-child(1) { animation: scale-in 0.4s ease both; animation-delay: 0.7s; }
.hero__pills .pill:nth-child(2) { animation: scale-in 0.4s ease both; animation-delay: 0.78s; }
.hero__pills .pill:nth-child(3) { animation: scale-in 0.4s ease both; animation-delay: 0.86s; }
.hero__pills .pill:nth-child(4) { animation: scale-in 0.4s ease both; animation-delay: 0.94s; }
.hero__pills .pill:nth-child(5) { animation: scale-in 0.4s ease both; animation-delay: 1.02s; }
.hero__pills .pill:nth-child(6) { animation: scale-in 0.4s ease both; animation-delay: 1.10s; }

/* Player card — floats after appearing */
.hero__player {
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}
.player-card {
  animation: float 5s ease-in-out 1.6s infinite;
}

/* Play button pulse ring */
.player-card__play::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  animation: pulse-ring 2s ease-out 2s infinite;
  pointer-events: none;
}

/* Orbs animate in */
.hero__orb--1 {
  animation: orb-drift 12s ease-in-out infinite alternate, fade-in 1.5s ease both;
}
.hero__orb--2 {
  animation: orb-drift 16s ease-in-out infinite alternate-reverse, fade-in 1.8s ease both;
}

/* ═══════════════════════════════════════════════
   NAV — Entrance
═══════════════════════════════════════════════ */
.nav {
  animation: fade-in 0.5s ease both;
}
.nav__logo {
  animation: slide-right 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.nav__links .nav__link:nth-child(1) { animation: fade-in 0.4s ease 0.15s both; }
.nav__links .nav__link:nth-child(2) { animation: fade-in 0.4s ease 0.22s both; }
.nav__links .nav__link:nth-child(3) { animation: fade-in 0.4s ease 0.29s both; }
.nav__links .nav__link:nth-child(4) { animation: fade-in 0.4s ease 0.36s both; }
.nav__actions { animation: fade-in 0.5s ease 0.4s both; }

/* ═══════════════════════════════════════════════
   LOGO BAR — Infinite ticker scroll
═══════════════════════════════════════════════ */
.logo-bar__row {
  /* Override flex — use ticker track instead */
  display: block;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* Inner duplicated track for seamless loop */
.logo-bar__track {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-48);
  animation: ticker 18s linear infinite;
  /* Width = 2× content so loop is seamless */
}

.logo-bar__row:hover .logo-bar__track {
  animation-play-state: paused;
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL — handled by AOS (data-aos attributes)
   The .reveal class is no longer used. AOS manages
   opacity/transform for all scroll-triggered elements.
═══════════════════════════════════════════════ */

/* Keep these only as a safety fallback for no-JS */
@media (scripting: none) {
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════
   FEATURE CARDS — hover lift (no shadow — just border)
═══════════════════════════════════════════════ */
.feature-card {
  transition: border-color 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  will-change: transform;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 97, 136, 0.35);
}

/* Icon bounce on card hover */
.feature-card:hover .feature-card__icon {
  animation: fade-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ═══════════════════════════════════════════════
   CATALOG CARDS — hover scale + overlay reveal
═══════════════════════════════════════════════ */
.catalog-card__thumb {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog-card:hover .catalog-card__thumb {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════
   PRICING CARDS — hover border glow
═══════════════════════════════════════════════ */
.pricing-card {
  transition: border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 97, 136, 0.4);
}
.pricing-card--highlight:hover {
  border-color: rgba(66, 97, 136, 0.7);
}

/* ═══════════════════════════════════════════════
   TESTIMONIAL CARDS — hover
═══════════════════════════════════════════════ */
.testimonial-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  border: 1px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 97, 136, 0.3);
}

/* ═══════════════════════════════════════════════
   BUTTONS — micro-interactions
═══════════════════════════════════════════════ */
.btn {
  transition: opacity 0.15s ease, background-color 0.15s ease, transform 0.12s ease;
}
.btn:active { transform: scale(0.96); }

/* Ghost button border glow on hover */
.btn--ghost:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
}

/* Underline link arrow slide */
.link-underline {
  transition: opacity 0.15s ease, gap 0.2s ease;
}
.link-underline:hover { gap: 6px; }

/* ═══════════════════════════════════════════════
   DISPLAY HEADLINE — letter-spacing breathe
═══════════════════════════════════════════════ */
@keyframes headline-breathe {
  0%, 100% { letter-spacing: -0.02em; }
  50%       { letter-spacing: 0.01em; }
}

.display-headline {
  animation: headline-breathe 6s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   NAV LINK — underline slide in on hover
═══════════════════════════════════════════════ */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.4);
  transition: width 0.2s ease;
}
.nav__link:hover::after { width: 100%; }

/* ═══════════════════════════════════════════════
   PILL TOGGLE — active state pop
═══════════════════════════════════════════════ */
.pill--toggle {
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.pill--toggle:active { transform: scale(0.94); }

/* ═══════════════════════════════════════════════
   FOOTER links — stagger on visibility
═══════════════════════════════════════════════ */
.footer__nav-col a {
  transition: color 0.15s ease, transform 0.15s ease;
  display: inline-block;
}
.footer__nav-col a:hover { transform: translateX(3px); }
