:root {
  --brand: #2f66ff;
  --brand-mid: #4d8fff;
  --brand-light: #69b4ff;
  --gradient: linear-gradient(104deg, #2f66ff 0%, #69b4ff 100%);
  --gradient-h: linear-gradient(90deg, #2f66ff 0%, #5ca6ff 55%, #69b4ff 100%);
  --surface-dark: #12141d;
  --surface-dark-elevated: #181b26;
  --hero-gradient: #12141d;
  --bg-dark: #12141d;
  --bg-header: rgba(10, 10, 10, 0.96);
  --text: #0f1115;
  --text-muted: #5c6370;
  --white: #f5f5f5;
  --radius: 14px;
  --shadow: 0 16px 48px rgba(15, 17, 21, 0.14);
  --max: 1140px;
  --header-h: 72px;
  --platforms-strip-h: 100px;
  --shows-panel-bg: #fafafa;
  --content-pad: clamp(16px, 4vw, 72px);
  --touch-min: 44px;
  /* Breakpoints (reference): 479 | 639 | 767 | 1023 | 1279 | 1280+ */
}

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

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

/* Desktop: même rendu que 125 % de zoom navigateur */
@media (min-width: 1024px) {
  html {
    zoom: 1.25;
  }

  /* Compense le zoom pour garder le hero dans le viewport */
  .hero {
    height: calc((100svh - 8px) / 1.25);
    height: calc((100dvh - 8px) / 1.25);
    max-height: calc((100svh - 8px) / 1.25);
    max-height: calc((100dvh - 8px) / 1.25);
  }

  /* Evite le grand vide noir et garde les logos visibles sur le premier fold */
  .hero-shell {
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100%;
    min-height: calc(100svh / 1.25);
    min-height: calc(100dvh / 1.25);
    padding-top: calc((var(--header-h) + 8px) / 1.25);
    padding-bottom: 0;
  }

  .hero-main {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .hero-platforms {
    margin-top: -132px;
    padding-top: 0;
    padding-bottom: 4px;
  }

  /* Desktop: chat exactement à la hauteur de la vidéo (sans bande noire) */
  .hero-demo-stage {
    --hero-chat-w: clamp(156px, 26%, 200px);
  }

  .hero-demo-player {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--hero-chat-w);
    align-items: stretch;
  }

  .hero-demo-media {
    width: 100%;
  }

  .hero-demo-chat.cc-demo-chat {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 100%;
    max-height: 100%;
  }
}

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

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #fff;
  pointer-events: none;
}

a {
  color: var(--brand);
  text-decoration: none;
}

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

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 0.08s);
}

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

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes platforms-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.float-y {
  animation: float-y 5s ease-in-out infinite;
}

.float-y-slow {
  animation: float-y 7s ease-in-out infinite;
}

/* Header — Teleparty-style bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(12px, 2vw, 40px);
  padding: 20px var(--content-pad);
  background: var(--surface-dark);
  border-bottom: 0;
  transition:
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.brand-name {
  color: var(--white);
}

.brand-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.site-footer .brand-icon {
  width: 40px;
  height: 40px;
}

.brand:hover .brand-icon {
  transform: rotate(-6deg) scale(1.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  margin-left: auto;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 40px);
  margin: 0;
}

.nav a {
  color: #e8eaed;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand-light);
  transition: width 0.25s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: var(--touch-min);
  min-width: var(--touch-min);
  height: var(--touch-min);
  min-height: var(--touch-min);
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-menu-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  background: var(--gradient-h);
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 8px 28px rgba(47, 102, 255, 0.35);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 12px 36px rgba(47, 102, 255, 0.5);
}

.btn-glow {
  animation: shimmer 4s linear infinite;
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.92rem;
}

.header-cta {
  justify-self: end;
  white-space: nowrap;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.08rem;
  margin-top: 4px;
}

/* Hero — Teleparty-style fold (100svh, platforms visible without scroll) */
.hero {
  position: relative;
  height: 100svh;
  height: 100dvh;
  max-height: 100svh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  background: var(--surface-dark);
  color: var(--white);
  overflow: hidden;
  box-sizing: border-box;
}

.hero-shell {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  row-gap: 0;
  height: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 8px) clamp(24px, 5vw, 72px) 10px;
  box-sizing: border-box;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.92fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
  align-content: start;
  min-height: 0;
  height: 100%;
  padding: 4px 0 0;
  overflow: visible;
  --hero-align-top: clamp(72px, 14vh, 118px);
}

.hero-copy {
  max-width: 34rem;
  width: 100%;
  justify-self: end;
  align-self: start;
  margin-left: auto;
  padding: var(--hero-align-top) clamp(8px, 1.5vw, 20px) 0 clamp(28px, 4.5vw, 56px);
}

.hero-copy .eyebrow {
  margin: 0 0 14px;
  font-size: 0.7rem;
}

.hero-copy h1 {
  font-size: clamp(1.6rem, 2.45vw, 2.25rem);
  line-height: 1.14;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
  max-width: none;
}

.hero-copy .lead {
  font-size: clamp(0.95rem, 1.45vw, 1.05rem);
  line-height: 1.55;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-copy .lead + .lead {
  margin-top: 0;
}

.hero-copy .lead:last-of-type {
  margin-bottom: 22px;
}

.hero-copy .btn-lg {
  margin-top: 4px;
  padding: 14px 30px;
  font-size: 1.02rem;
}

.hero-copy .fine {
  margin-top: 12px;
  font-size: 0.8rem;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
}

.eyebrow.dark {
  color: var(--brand);
}

.eyebrow.light {
  color: var(--brand-light);
}

.lead {
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 14px;
  font-weight: 400;
}

.hero-copy .lead strong {
  color: #fff;
  font-weight: 600;
}

.fine {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 14px 0 0;
  font-weight: 400;
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: stretch;
  align-self: start;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin: 0;
  padding-top: var(--hero-align-top);
  box-sizing: border-box;
}

.promo-frame {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: auto;
  max-width: 100%;
  background: var(--surface-dark);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.65);
}

/* Hero — live chat demo mock */
.hero-demo {
  width: 100%;
}

.hero-demo-stage {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  border-radius: 10px;
  overflow: hidden;
}

/* Vidéo + chat côte à côte (pas de recadrage vidéo) */
.hero-demo-player {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  line-height: 0;
  background: #0a0a0a;
  overflow: hidden;
}

.hero-demo-media {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  padding: 0;
  line-height: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-demo-video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  vertical-align: top;
}

/* Hero chat — colonne à droite de la vidéo */
.hero-demo-chat.cc-demo-chat {
  position: relative;
  flex: 0 0 clamp(156px, 26%, 200px);
  width: clamp(156px, 26%, 200px);
  min-width: 144px;
  max-width: 200px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  height: auto;
  max-height: none;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #0b0b0d;
  border-left: 1px solid #303030;
  box-shadow: none;
  box-sizing: border-box;
}

.hero-demo-chat .chat-header-bar.hero-demo-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 5px;
  border-bottom: 1px solid #202020;
  background: #0f0f12;
  flex-shrink: 0;
}

.hero-demo-chat-brand {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-demo-chat .chat-members-top {
  padding: 5px 6px 7px;
  border-bottom: 1px solid #202020;
  background: #0f0f12;
  flex-shrink: 0;
}

.hero-demo-chat .chat-members-title {
  font-size: 6px;
  color: #8f9ab2;
  margin: 0 0 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.hero-demo-chat .chat-members-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  max-height: 30px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 0;
  scrollbar-width: none;
}

.hero-demo-chat .chat-members-list .member-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  max-width: 100%;
  color: #dce3ef;
  font-size: 6.5px;
  line-height: 1.2;
  white-space: nowrap;
  border: 1px solid #262626;
  border-radius: 999px;
  padding: 2px 5px 2px 2px;
  background: #121214;
}

.hero-demo-chat .chat-members-list .member-avatar {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 7px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-demo-chat .chat-members-list .member-item span {
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 4.5rem;
}

.hero-demo-chat .chat-log {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  scrollbar-width: thin;
  scrollbar-color: #3a3a42 transparent;
}

.hero-demo-chat .chat-item {
  display: flex;
  gap: 4px;
  position: relative;
}

.hero-demo-chat .chat-item > img {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 11px;
}

.hero-demo-chat .chat-body {
  min-width: 0;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-demo-chat .chat-name {
  font-size: 7.5px;
  color: #b7caea;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.hero-demo-chat .chat-text {
  font-size: 8px;
  color: #e8edf7;
  word-break: break-word;
  line-height: 1.4;
  margin: 0;
}

.hero-demo-chat .chat-item--system .chat-name {
  display: none;
}

.hero-demo-chat .chat-item--system .chat-text {
  font-size: 7.5px;
  color: #c8ced8;
}

.hero-demo-chat .chat-item--system .chat-actions-inline {
  display: none !important;
}

.hero-demo-chat .chat-gif {
  margin-top: 2px;
  display: block;
  max-width: min(100%, 100%);
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #121214;
}

.hero-demo-chat .chat-gif--solo {
  margin-top: 2px;
  max-width: min(100%, 100%);
  max-height: 54px;
}

.hero-demo-chat .chat-item--gif .chat-body {
  max-width: 100%;
}

.hero-demo-chat .chat-item--gif .chat-text:empty {
  display: none;
}

.hero-demo-chat .chat-reply {
  margin: 2px 0 4px;
  font-size: 10px;
  color: #9aa6bb;
  border-left: 2px solid #3f4c66;
  padding-left: 6px;
  line-height: 1.3;
}

.hero-demo-chat .chat-meta {
  position: relative;
  z-index: 2;
  margin-top: 3px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.hero-demo-chat .chat-reaction-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: none;
  border-radius: 999px;
  padding: 1px 5px;
  font-size: 8px;
  line-height: 1.35;
  color: #dbdee1;
  background: #383a40;
  box-shadow: none;
}

.hero-demo-chat .chat-actions-inline {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid #4e5058;
  border-radius: 6px;
  background: #313338;
  z-index: 1;
  pointer-events: auto;
}

.hero-demo-chat .chat-item:hover .chat-actions-inline,
.hero-demo-chat .chat-item:focus-within .chat-actions-inline {
  display: flex;
}

.hero-demo-chat .chat-action-btn {
  border: 0;
  background: #2a3346;
  color: #f0f5ff;
  border-radius: 5px;
  font-size: 11px;
  padding: 2px 5px;
  cursor: pointer;
  line-height: 1.2;
}

.hero-demo-chat .chat-action-btn.reply {
  font-weight: 700;
}

.hero-demo-chat .reply-preview {
  margin: 4px 8px 0;
  border-left: 2px solid #4b84ff;
  padding: 2px 6px;
  font-size: 10px;
  color: #b5c2d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-shrink: 0;
}

.hero-demo-chat .reply-preview.hidden {
  display: none;
}

.hero-demo-chat .reply-cancel {
  border: 0;
  background: transparent;
  color: #a9b6ce;
  font-size: 11px;
  cursor: pointer;
  padding: 0 2px;
}

.hero-demo-chat .gif-picker,
.hero-demo-chat .gif-picker * {
  box-sizing: border-box;
}

.hero-demo-chat .gif-picker {
  margin: 0 6px 6px;
  padding: 8px;
  border-radius: 10px;
  background: #2b2d31;
  border: 1px solid #1e1f22;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  max-height: min(50vh, 360px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-demo-chat .gif-picker.hidden {
  display: none;
}

.hero-demo-chat .gif-picker-pane {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  max-height: min(42vh, 300px);
  overflow: hidden;
}

.hero-demo-chat .gif-search-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 6px 8px;
  border-radius: 8px;
  background: #1e1f22;
  border: 1px solid #5865f2;
  box-shadow: 0 0 0 1px rgba(88, 101, 242, 0.2);
}

.hero-demo-chat .gif-search-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #b5bac1;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero-demo-chat .gif-search-wrap input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #dbdee1;
  font-size: 12px;
  font-family: inherit;
  outline: none;
}

.hero-demo-chat .gif-search-wrap input::placeholder {
  color: #777a84;
}

.hero-demo-chat .gif-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex-shrink: 0;
  overflow-y: auto;
  max-height: 100px;
}

.hero-demo-chat .gif-category-tile {
  position: relative;
  height: 52px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  padding: 0;
}

.hero-demo-chat .gif-category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-demo-chat .gif-category-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-demo-chat .gif-category-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

.hero-demo-chat .gif-category-tile.has-preview .gif-category-bg {
  opacity: 0.88;
}

.hero-demo-chat .gif-category-tile.has-preview .gif-category-fallback {
  opacity: 0.4;
}

.hero-demo-chat .gif-category-emoji {
  position: absolute;
  right: 6px;
  bottom: 4px;
  z-index: 3;
  font-size: 20px;
  line-height: 1;
  pointer-events: none;
}

.hero-demo-chat .gif-category-label {
  position: relative;
  z-index: 2;
  display: block;
  padding: 6px 28px 4px 6px;
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
  line-height: 1.15;
}

.hero-demo-chat .gif-results.gif-results-pane {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  flex: 1;
  min-height: 0;
  max-height: min(34vh, 260px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2px 4px;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: #3a3a42 transparent;
}

.hero-demo-chat .gif-results.gif-results-pane::-webkit-scrollbar {
  width: 6px;
}

.hero-demo-chat .gif-results.gif-results-pane::-webkit-scrollbar-thumb {
  background: #3a3a42;
  border-radius: 3px;
}

.hero-demo-chat .gif-results.gif-results-pane.visible {
  display: grid;
}

.hero-demo-chat .gif-result {
  border: 1px solid #313338;
  border-radius: 8px;
  overflow: hidden;
  background: #121826;
  cursor: pointer;
  padding: 0;
  position: relative;
  display: block;
  width: 100%;
}

.hero-demo-chat .gif-result img {
  width: 100%;
  height: 110px;
  min-height: 110px;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

.hero-demo-chat .gif-fav-btn {
  position: absolute;
  top: 3px;
  right: 3px;
  border: 1px solid #3c4a64;
  border-radius: 999px;
  width: 18px;
  height: 18px;
  background: rgba(15, 20, 30, 0.88);
  color: #cad6ee;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.hero-demo-chat .gif-fav-btn.active {
  color: #ffd86b;
  border-color: #ffd86b;
}

.hero-demo-chat .gif-hint {
  flex-shrink: 0;
  font-size: 10px;
  color: #878b94;
  padding: 0 2px;
}

.hero-demo-chat .chat-bottom {
  margin-top: auto;
  flex-shrink: 0;
  border-top: 1px solid #202020;
  background: #1e1f22;
}

.hero-demo-chat .discord-compose {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 22px;
  margin: 3px 5px 4px;
  padding: 2px 3px;
  background: #383a40;
  border-radius: 6px;
}

.hero-demo-chat .discord-compose-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #dbdee1;
  font-size: 8px;
  line-height: 1.3;
  padding: 3px 3px 3px 2px;
  outline: none;
  font-family: inherit;
}

.hero-demo-chat .discord-compose-input::placeholder {
  color: #949ba4;
}

.hero-demo-chat .discord-gif-chip {
  border: 0;
  background: transparent;
  color: #b5bac1;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0 3px;
  min-width: 22px;
  height: 14px;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
}

.hero-demo-chat .discord-gif-chip:hover,
.hero-demo-chat .discord-gif-chip.is-open {
  color: #dbdee1;
  background: rgba(0, 0, 0, 0.22);
}

/* Platforms row — pinned inside first screen */
.hero-platforms {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  padding: 0 0 clamp(12px, 1.6vh, 18px);
  margin-top: -32px;
  overflow: visible;
  text-align: center;
  flex-shrink: 0;
}

.platforms-label {
  position: relative;
  top: -10px;
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.platforms-showcase {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0 clamp(8px, 2vw, 24px);
  width: 100%;
  max-width: min(1280px, 100%);
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: visible;
  align-items: flex-end;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.platforms-showcase::-webkit-scrollbar {
  display: none;
}

.platforms-showcase li {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: auto;
  min-height: clamp(44px, 5vh, 56px);
  flex: 0 0 auto;
}

.platforms-showcase img {
  display: block;
  height: clamp(30px, 3.6vh, 40px);
  width: auto;
  max-width: clamp(72px, 9vw, 128px);
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
}

/* Disney+ — arc au-dessus du mot : aligné en bas, hauteur libre */
.platforms-showcase .logo-disney {
  align-items: flex-end;
  padding-bottom: 1px;
}

.platforms-showcase .logo-disney img {
  display: block;
  height: clamp(40px, 4.8vh, 52px);
  width: auto;
  max-width: clamp(124px, 14vw, 172px);
  object-fit: contain;
  object-position: center bottom;
}

/* Prime Video — légèrement plus bas pour l’alignement sur l’arc */
.platforms-showcase .logo-prime img {
  transform: translateY(3px);
  object-position: center bottom;
}

.platforms-marquee {
  display: none;
}

.platforms-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.platforms-track {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: platforms-scroll 42s linear infinite;
  will-change: transform;
}

.platforms-marquee:hover .platforms-track {
  animation-play-state: paused;
}

.platforms-track li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(88px, 9vw, 118px);
  height: 34px;
}

.platforms-track img {
  display: block;
  width: auto;
  height: clamp(34px, 4vh, 44px);
  max-width: 140px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
}

.platforms-track .logo-disney img {
  height: clamp(44px, 5.1vh, 56px);
  max-width: 176px;
}

.platforms-track .logo-prime img {
  transform: translateY(2px);
}

@media (prefers-reduced-motion: reduce) {
  .platforms-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding: 0 4vw;
    gap: clamp(16px, 3vw, 40px);
  }

  .platforms-marquee {
    mask-image: none;
  }

  .platforms-track li[aria-hidden="true"] {
    display: none;
  }
}

/* Features */
.feature-block {
  padding: 80px 5vw;
}

.feature-block.light {
  background: #fafafa;
}

.feature-block.gray {
  background: #f3f5f9;
}

#sync.feature-block {
  background: #ffffff;
}

#sync .shows-video-frame,
#sync .shows-video {
  background: #ffffff;
}

#sync .sync-playback-frame {
  position: relative;
  overflow: hidden;
}

.sync-playback-badge {
  position: absolute;
  left: 36%;
  top: 48%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(12, 14, 20, 0.88);
  border: 1px solid rgba(105, 180, 255, 0.4);
  box-shadow: 0 6px 20px rgba(47, 102, 255, 0.22);
  pointer-events: none;
  z-index: 2;
}

.sync-playback-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #42e878;
  animation: sync-playback-pulse 2.2s ease-in-out infinite;
}

.sync-playback-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8f0ff;
  white-space: nowrap;
}

@keyframes sync-playback-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(66, 232, 120, 0.55);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 7px rgba(66, 232, 120, 0);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sync-playback-pulse {
    animation: none;
  }
}

.feature-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

#features .feature-inner {
  gap: 40px 56px;
}

.feature-inner.reverse .feature-copy {
  order: 2;
}

.feature-inner.reverse .feature-visual {
  order: 1;
}

.feature-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.feature-copy p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

.glass-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 102, 255, 0.12);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.tilt-hover:hover {
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
  box-shadow: 0 28px 60px rgba(47, 102, 255, 0.2);
}

.feature-promo-img {
  width: 100%;
}

/* Streaming platforms video circle */
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shows-video-frame {
  width: 100%;
  max-width: min(800px, 100%);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: #fafafa;
  box-shadow: none;
}

.shows-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #fafafa;
  border-radius: 0;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}

/* All supported platforms */
.platforms-all {
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 64px);
  background: var(--hero-gradient);
  color: #fff;
}

.platforms-all-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.platforms-all .eyebrow.light {
  color: rgba(105, 180, 255, 0.9);
}

.platforms-all h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.platforms-all-lead {
  margin: 0 auto 32px;
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.platforms-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(88, 132, 255, 0.38);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 1px rgba(47, 102, 255, 0.08);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.platforms-grid-item:hover {
  border-color: rgba(105, 180, 255, 0.75);
  box-shadow: 0 0 24px rgba(47, 102, 255, 0.22);
  transform: translateY(-2px);
}

.platforms-grid-item img {
  display: block;
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: 30px;
  object-fit: contain;
  filter: brightness(1.05);
}

.platforms-grid-item.logo-disney img {
  max-height: 50px;
  max-width: 100%;
}

.platforms-grid-item.logo-prime img {
  transform: translateY(2px);
}

@media (min-width: 600px) {
  .platforms-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

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

  .platforms-grid-item {
    min-height: 80px;
  }

  .platforms-grid-item img {
    max-height: 32px;
  }
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #e8ecf2;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-mid);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* How */
.how {
  padding: 80px 5vw;
  background: #fff;
}

.how-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
}

.how-left h2 {
  font-size: 2rem;
  margin: 0 0 24px;
}

.how-left .btn-primary {
  width: 100%;
  max-width: 280px;
  padding: 13px 28px;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-left: 3px solid #e8ecf2;
}

.step-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-left: 3px solid transparent;
  margin-left: -3px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    padding-left 0.25s ease;
}

.step-btn:hover {
  color: var(--brand);
  padding-left: 20px;
}

.step-btn.active {
  color: var(--brand);
  border-left-color: var(--brand);
}

.step-screen {
  margin-bottom: 20px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.step-screen.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.step-screen-caption {
  padding: 4px 4px 0;
}

.step-tag {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
}

.step-screen-caption h3 {
  font-size: 1.5rem;
  margin: 6px 0 0;
  color: var(--text);
}

/* How — POV browser tutorial (animated) */
.how-pov {
  --pov-from-x: 50%;
  --pov-from-y: 40%;
  --pov-click-x: 50%;
  --pov-click-y: 50%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(15, 17, 21, 0.18);
  border: 1px solid #dfe3eb;
  background: #dee1e6;
}

.how-pov-chrome {
  position: relative;
  background: #fff;
}

.how-pov-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 10px 0;
  background: #dee1e6;
}

.how-pov-tab {
  width: 120px;
  height: 28px;
  border-radius: 8px 8px 0 0;
  background: #c4c9d1;
}

.how-pov-tab.is-active {
  background: #fff;
}

.how-pov-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #e8eaed;
}

.how-pov-nav span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-radius: 2px;
  background: #c4c9d1;
}

.how-pov-omnibox {
  flex: 1;
  min-width: 0;
  background: #f1f3f4;
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.72rem;
  color: #5f6368;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.how-pov-ext-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.how-pov-ext-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain;
  image-rendering: auto;
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow 0.2s ease;
}

.how-pov-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  background: #0f1115;
  overflow: hidden;
}

.how-pov[data-step="1"] .how-pov-viewport {
  background: #0b0b0b;
}

.how-pov[data-step="1"] .how-pov-shot {
  object-fit: cover;
}

.how-pov-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.how-pov-scene.is-active {
  opacity: 1;
}

.how-pov-scene--party.is-active {
  pointer-events: auto;
}

.how-pov-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Step 5 — live chat overlay (real DOM, not a PNG) */
.how-pov-scene--party {
  background: #0b0b0b;
  display: flex;
  align-items: stretch;
}

.how-pov-scene--party .how-pov-shot--party {
  flex: 0 0 74%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.how-pov-live-chat {
  position: relative;
  flex: 0 0 26%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: #0b0b0d;
  border-left: 1px solid #303030;
  box-sizing: border-box;
  font-size: clamp(7px, 0.95vw, 11px);
}

.how-pov-live-chat.hero-demo-chat {
  max-width: none;
  min-width: 0;
  height: 100%;
  max-height: none;
  margin: 0;
  box-shadow: none;
}

.how-pov-live-chat .hero-demo-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45em 0.55em;
}

.how-pov-chat-live {
  font-size: 0.72em;
  font-weight: 600;
  color: #7d8aa3;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.how-pov-chat-live::before {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-radius: 50%;
  background: #3ba55d;
}

.how-pov-live-chat .chat-members-top {
  padding: 0.55em 0.65em 0.65em;
}

.how-pov-live-chat .chat-log {
  padding: 0.55em 0.65em;
  gap: 0.65em;
}

.how-pov-live-chat .chat-item {
  animation: how-pov-msg-in 0.35s ease-out;
}

@keyframes how-pov-msg-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.how-pov-chat-typing {
  display: flex;
  align-items: center;
  gap: 0.45em;
  margin: 0 0.65em 0.45em;
  padding: 0.45em 0.55em;
  border-radius: 0.65em;
  background: #1a1d24;
  border: 1px solid #2f3544;
  flex-shrink: 0;
}

.how-pov-chat-typing.hidden {
  display: none;
}

.how-pov-typing-avatar {
  width: 0.95em;
  height: 0.95em;
  border-radius: 50%;
  flex-shrink: 0;
  background: #57a55a;
}

.how-pov-typing-text {
  font-size: 0.78em;
  color: #9aa3b5;
  flex: 1;
  min-width: 0;
}

.how-pov-typing-text strong {
  color: #b7caea;
  font-weight: 600;
}

.how-pov-typing-dots {
  display: inline-flex;
  gap: 0.2em;
  align-items: center;
}

.how-pov-typing-dots i {
  display: block;
  width: 0.28em;
  height: 0.28em;
  border-radius: 50%;
  background: #69b4ff;
  animation: how-pov-dot 1.1s ease-in-out infinite;
}

.how-pov-typing-dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.how-pov-typing-dots i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes how-pov-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.how-pov-live-chat .chat-gif--placeholder {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 3.6em;
  border-radius: 0.55em;
  background: linear-gradient(145deg, #1a1c22 0%, #12141a 100%);
  border: 1px solid #2e3340;
  position: relative;
}

.how-pov-live-chat .chat-gif--placeholder::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #69b4ff;
  font-size: 1.1em;
}

.how-pov-compose .discord-compose-input:disabled {
  opacity: 0.85;
  cursor: default;
}

.how-pov-cursor {
  position: absolute;
  z-index: 20;
  width: 20px;
  height: 26px;
  margin: 0;
  transform: translate(1px, 1px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='26' viewBox='0 0 20 26'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='1.15' stroke-linejoin='round' d='M3 2v18l4.2-3.6 2.6 6.4 2.4-1-2.6-6.2H14L3 2z'/%3E%3C/svg%3E")
    0 0 / contain no-repeat;
  filter: none;
  pointer-events: none;
  left: 18%;
  top: 22%;
}

.how-pov-click {
  position: absolute;
  z-index: 19;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  border: 2px solid rgba(47, 102, 255, 0.9);
  opacity: 0;
  pointer-events: none;
}

.how-pov .how-pov-cursor,
.how-pov .how-pov-click,
.how-pov .how-pov-ext-icon {
  animation: none;
}

.how-pov.how-pov-restart[data-step="0"] .how-pov-cursor,
.how-pov.how-pov-restart[data-step="1"] .how-pov-cursor,
.how-pov.how-pov-restart[data-step="2"] .how-pov-cursor,
.how-pov.how-pov-restart[data-step="3"] .how-pov-cursor {
  animation: pov-cursor-tap 4s ease-in-out 1;
}

.how-pov.how-pov-restart[data-step="0"] .how-pov-click,
.how-pov.how-pov-restart[data-step="1"] .how-pov-click,
.how-pov.how-pov-restart[data-step="2"] .how-pov-click,
.how-pov.how-pov-restart[data-step="3"] .how-pov-click {
  animation: pov-click-tap 4s ease-in-out 1;
}

.how-pov.how-pov-restart[data-step="2"] .how-pov-ext-icon {
  animation: pov-ext-glow 4s ease-in-out 1;
}

/* Step 4: static scene (chat sidebar); no overlay cursor */
.how-pov[data-step="4"] .how-pov-cursor,
.how-pov.how-pov-restart[data-step="4"] .how-pov-cursor {
  display: none;
}

@keyframes pov-cursor-tap {
  0%,
  12% {
    left: var(--pov-from-x);
    top: var(--pov-from-y);
  }
  32%,
  100% {
    left: var(--pov-click-x);
    top: var(--pov-click-y);
  }
}

@keyframes pov-click-tap {
  0%,
  26% {
    opacity: 0;
    left: var(--pov-click-x);
    top: var(--pov-click-y);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  38% {
    opacity: 0;
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
  }
}

@keyframes pov-ext-glow {
  0%,
  8% {
    box-shadow: 0 0 0 3px rgba(105, 180, 255, 0.9);
  }
  22%,
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes pov-cursor-idle {
  0%,
  100% {
    left: var(--pov-click-x);
    top: var(--pov-click-y);
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-pov-cursor,
  .how-pov-click,
  .how-pov-ext-icon,
  .how-pov-live-chat .chat-item,
  .how-pov-typing-dots i {
    animation: none !important;
  }
}

.step-detail {
  transition: opacity 0.35s ease;
}

.step-detail.is-changing {
  opacity: 0;
}

.step-detail h4 {
  color: var(--brand);
  margin: 0 0 8px;
}

.step-detail p {
  color: var(--text-muted);
  margin: 0;
}

/* FAQ */
.faq-list {
  padding: 56px 5vw 80px;
}

.faq-list h2 {
  text-align: center;
  margin: 0 0 32px;
}

.accordion {
  max-width: 760px;
  margin: 0 auto;
}

.accordion details {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  border: 1px solid #e8ecf2;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.accordion details[open] {
  border-color: var(--brand-mid);
}

.accordion summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion details[open] summary {
  color: var(--brand);
}

.accordion p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--text-muted);
  animation: fade-in 0.35s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.site-footer {
  background: var(--surface-dark);
  color: #949ba4;
  padding: 48px 5vw 32px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.site-footer h4 {
  color: #dbdee1;
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.site-footer a {
  display: block;
  color: #949ba4;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: var(--brand-light);
  transform: translateX(4px);
}

.copyright {
  text-align: center;
  margin: 0;
  font-size: 0.8rem;
  color: #6d737c;
}

/* ==========================================================================
   Responsive — ≤1279 small desktop | ≤1023 tablet | ≤767 large phone | ≤639 phone | ≤479 small phone
   ========================================================================== */

@media (max-width: 1279px) {
  :root {
    --max: 1040px;
  }

  .hero-shell {
    max-width: 100%;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-h: 64px;
    --platforms-strip-h: 84px;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 16px;
    padding: 14px var(--content-pad);
  }

  .brand {
    font-size: 1.2rem;
    min-height: var(--touch-min);
  }

  .header-actions {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header-actions .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    padding: 12px 0 8px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-actions .nav.open {
    display: flex;
  }

  .header-actions .nav a {
    display: flex;
    align-items: center;
    min-height: var(--touch-min);
    padding: 8px 4px;
    font-size: 1.02rem;
  }

  .header-actions .nav a::after {
    display: none;
  }

  .header-actions .header-cta {
    display: inline-flex;
    width: 100%;
    max-width: none;
    margin-top: 8px;
    white-space: normal;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: none;
    overflow: visible;
  }

  .hero-shell {
    height: auto;
    min-height: calc(100svh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    padding: calc(var(--header-h) + 6px) var(--content-pad) 12px;
  }

  .hero-main,
  .feature-inner,
  .how-layout {
    grid-template-columns: 1fr;
  }

  .hero-main {
    gap: clamp(12px, 3vw, 20px);
    align-items: start;
    align-content: start;
    padding-top: 4px;
    max-height: none;
  }

  .hero-visual {
    order: -1;
    justify-self: center;
    margin: clamp(12px, 3vh, 28px) 0 0;
    max-width: min(560px, 100%);
  }

  .hero-copy {
    max-width: 42rem;
    margin-inline: auto;
    margin-left: auto;
    text-align: center;
    justify-self: center;
    padding: clamp(16px, 4vw, 28px) 0 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    max-width: 22em;
    margin-inline: auto;
  }

  .hero-copy .lead {
    max-width: 36rem;
    margin-inline: auto;
  }

  .hero-copy .btn-lg {
    width: 100%;
    max-width: 320px;
  }

  .hero-demo-player {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-demo-video {
    width: 100%;
  }

  .hero-demo-chat.cc-demo-chat {
    flex: 0 0 clamp(132px, 28%, 160px);
    width: clamp(132px, 28%, 160px);
    min-width: 120px;
    max-width: 160px;
  }

  .platforms-showcase {
    display: none;
  }

  .platforms-marquee {
    display: block;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .hero-platforms {
    padding: 6px 0 4px;
    min-height: var(--platforms-strip-h);
  }

  .feature-block {
    padding: clamp(48px, 8vw, 72px) var(--content-pad);
  }

  .feature-inner {
    gap: clamp(28px, 5vw, 40px);
  }

  .feature-inner.reverse .feature-copy,
  .feature-inner.reverse .feature-visual {
    order: unset;
  }

  .feature-copy {
    max-width: 40rem;
  }

  .feature-copy p {
    font-size: clamp(0.98rem, 2.5vw, 1.05rem);
    max-width: 55ch;
  }

  .how {
    padding: clamp(48px, 8vw, 72px) var(--content-pad);
  }

  .how-layout {
    gap: clamp(28px, 5vw, 40px);
  }

  .how-left h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .how-left .btn-primary {
    max-width: none;
    width: 100%;
  }

  .how-pov-viewport {
    min-height: clamp(220px, 42vw, 320px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 32px);
  }

  .faq-list {
    padding: clamp(40px, 7vw, 56px) var(--content-pad) clamp(56px, 8vw, 80px);
  }

  .platforms-all {
    padding: clamp(48px, 8vw, 80px) var(--content-pad);
  }

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

  .page-legal .legal-page {
    padding-left: var(--content-pad);
    padding-right: var(--content-pad);
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 60px;
    --platforms-strip-h: 76px;
  }

  .site-header.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-shell {
    min-height: 0;
    padding-bottom: 16px;
  }

  .hero-main {
    padding-top: 0;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    margin-top: 4px;
    max-width: 100%;
  }

  .hero-demo-video {
    width: 100%;
  }

  .hero-demo-chat.cc-demo-chat {
    flex: 0 0 clamp(120px, 30%, 148px);
    width: clamp(120px, 30%, 148px);
    min-width: 108px;
    max-width: 148px;
  }

  .sync-playback-badge {
    left: 50%;
    top: auto;
    bottom: 12%;
    transform: translateX(-50%);
    padding: 5px 10px 5px 6px;
  }

  .sync-playback-label {
    font-size: 0.62rem;
  }

  .how-layout {
    gap: 24px;
  }

  .how-left {
    text-align: center;
  }

  .steps-list {
    border-left: 0;
    margin-bottom: 20px;
  }

  .step-btn {
    min-height: var(--touch-min);
    padding: 12px 14px;
    margin-left: 0;
    border-left: 0;
    border-radius: 10px;
    text-align: center;
  }

  .step-btn:hover {
    padding-left: 14px;
  }

  .step-btn.active {
    background: rgba(47, 102, 255, 0.08);
    border-left: 0;
  }

  .step-screen-caption h3 {
    font-size: clamp(1.2rem, 4.5vw, 1.5rem);
  }

  .how-pov-tab {
    width: clamp(72px, 22vw, 100px);
  }

  .how-pov-viewport {
    min-height: clamp(200px, 56vw, 280px);
    aspect-ratio: 16 / 10;
  }

  .stat-card {
    padding: 22px 16px;
  }

  .stat-value {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .accordion summary {
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
    padding: 14px 18px;
  }

  .support-hero {
    padding-left: var(--content-pad);
    padding-right: var(--content-pad);
  }

  .support-categories,
  .support-content {
    padding-left: var(--content-pad);
    padding-right: var(--content-pad);
  }

  .support-faq summary {
    min-height: var(--touch-min);
    padding: 16px 18px;
    font-size: 0.98rem;
  }

  .site-footer {
    padding: 40px var(--content-pad) 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .site-footer a {
    margin-bottom: 10px;
  }

  .site-footer a:hover {
    transform: none;
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 639px) {
  :root {
    --platforms-strip-h: 72px;
  }

  .brand {
    font-size: 1.1rem;
    gap: 8px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .hero-copy .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .hero-copy .fine {
    font-size: 0.75rem;
  }

  .platforms-label {
    font-size: 0.68rem;
    top: -6px;
    margin-bottom: 12px;
  }

  .platforms-track {
    gap: clamp(24px, 6vw, 40px);
  }

  .platforms-track li {
    width: clamp(72px, 18vw, 96px);
  }

  .feature-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .feature-copy h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .glass-card.tilt-hover:hover {
    transform: none;
  }

  .platforms-grid {
    gap: 10px;
  }

  .platforms-grid-item {
    min-height: 68px;
    padding: 12px 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    min-height: var(--touch-min);
    padding: 18px 16px;
  }

  .support-card-desc {
    flex: 1 1 100%;
    padding-left: 54px;
  }

  .support-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .support-hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .support-section + .support-section {
    margin-top: 32px;
    padding-top: 32px;
  }

  .page-legal .legal {
    padding: clamp(24px, 6vw, 32px);
  }

  .page-legal .legal h1 {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }
}

@media (max-width: 479px) {
  :root {
    --header-h: 56px;
    --platforms-strip-h: 68px;
  }

  .site-header {
    padding: 12px clamp(14px, 4vw, 20px);
    gap: 10px;
  }

  .hero-shell {
    padding-left: clamp(14px, 4vw, 20px);
    padding-right: clamp(14px, 4vw, 20px);
  }

  .hero-copy h1 {
    font-size: clamp(1.35rem, 7.5vw, 1.65rem);
    line-height: 1.18;
  }

  .hero-copy .lead {
    font-size: 0.92rem;
  }

  .hero-demo-player {
    flex-direction: column;
  }

  .hero-demo-video {
    width: 100%;
  }

  .hero-demo-chat.cc-demo-chat {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: var(--hero-demo-video-h, 260px);
    max-height: var(--hero-demo-video-h, 260px);
    border-left: 0;
    border-top: 1px solid #303030;
  }

  .hero-demo-chat .discord-compose-input {
    font-size: 7px;
  }

  .btn-lg {
    padding: 14px 22px;
    font-size: 1rem;
  }

  .how-pov-toolbar {
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 8px;
  }

  .how-pov-omnibox {
    flex: 1 1 100%;
    order: 3;
    font-size: 0.65rem;
  }

  .how-pov-tabs {
    padding: 6px 8px 0;
  }

  .how-pov-tab {
    width: 56px;
    height: 24px;
  }

  .platforms-all h2 {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }

  .platforms-all-lead {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .faq-list h2 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .support-hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .support-card-title {
    font-size: 1rem;
  }
}

@media (min-width: 1280px) {
  .hero-shell {
    padding-left: clamp(32px, 4vw, 72px);
    padding-right: clamp(32px, 4vw, 72px);
  }

  .feature-block,
  .how,
  .faq-list {
    padding-left: clamp(32px, 4vw, 72px);
    padding-right: clamp(32px, 4vw, 72px);
  }
}

/* Legal / privacy page */
body.page-legal {
  margin: 0;
  background: #f7f8fa;
  color: var(--text);
}

.page-legal .site-header {
  position: fixed;
  background: var(--surface-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding-top: 14px;
  padding-bottom: 14px;
}

.page-legal .site-header--static {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-legal .legal-page {
  padding: calc(var(--header-h) + 40px) clamp(20px, 5vw, 48px) 80px;
  min-height: 100vh;
  box-sizing: border-box;
}

.page-legal .legal {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.page-legal .legal h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-legal .legal code {
  font-size: 0.88em;
  background: #f0f2f5;
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.page-legal .legal h2 {
  margin: 28px 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.page-legal .legal p,
.page-legal .legal li {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  max-width: 65ch;
  overflow-wrap: break-word;
}

.page-legal .legal ul {
  margin: 0;
  padding-left: 1.25rem;
}

.page-legal .legal li + li {
  margin-top: 8px;
}

.page-legal .legal-updated {
  margin: 0 0 20px;
}

.page-legal .legal a {
  color: var(--brand);
  font-weight: 500;
}

.page-legal .legal a:hover {
  color: var(--brand-mid);
}

.page-legal .legal-back {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
}

.page-legal .legal-back:hover {
  text-decoration: underline;
}

/* Support page (Teleparty-style FAQ hub) */
body.page-support {
  margin: 0;
  background: #f3f4f6;
  color: var(--white);
}

.page-support .nav a[aria-current="page"] {
  color: var(--brand-light);
}

.page-support .nav a[aria-current="page"]::after {
  width: 100%;
}

.support-page {
  padding-top: 0;
}

.support-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(40px, 8vw, 72px)) clamp(20px, 5vw, 48px)
    clamp(48px, 7vw, 72px);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--surface-dark) 0%,
    #10131c 22%,
    var(--surface-dark) 52%,
    #161a26 78%,
    var(--surface-dark-elevated) 100%
  );
}

.support-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(180px, 28vh);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(24, 27, 38, 0.35) 40%,
    var(--surface-dark-elevated) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.support-hero-glow {
  position: absolute;
  top: 0;
  width: min(62vw, 580px);
  height: min(85vh, 620px);
  filter: blur(52px);
  pointer-events: none;
  z-index: 0;
}

.support-hero-glow--left {
  left: -8%;
  background: radial-gradient(
    ellipse at 32% 42%,
    rgba(47, 102, 255, 0.52) 0%,
    rgba(105, 180, 255, 0.2) 34%,
    rgba(18, 20, 29, 0.08) 58%,
    transparent 78%
  );
}

.support-hero-glow--right {
  right: -10%;
  background: radial-gradient(
    ellipse at 68% 38%,
    rgba(105, 180, 255, 0.38) 0%,
    rgba(47, 102, 255, 0.14) 40%,
    transparent 72%
  );
}

.support-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.support-hero .eyebrow {
  margin: 0 0 14px;
}

.support-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.support-hero-lead {
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-support .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: none;
}

.page-support .btn-ghost:hover {
  border-color: rgba(105, 180, 255, 0.55);
  background: rgba(47, 102, 255, 0.14);
  color: #fff;
}

.support-categories {
  position: relative;
  padding: clamp(8px, 2vw, 16px) clamp(20px, 5vw, 48px) clamp(32px, 5vw, 48px);
  background: linear-gradient(
    180deg,
    var(--surface-dark-elevated) 0%,
    #1a1e2a 48%,
    var(--surface-dark-elevated) 100%
  );
}

.support-categories::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 96px;
  background: linear-gradient(
    to bottom,
    var(--surface-dark-elevated) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.support-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: var(--surface-dark-elevated);
  color: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.support-card:hover {
  border-color: rgba(105, 180, 255, 0.45);
  transform: translateY(-2px);
}

.support-card.is-active {
  border-color: var(--brand-mid);
  background: linear-gradient(145deg, rgba(47, 102, 255, 0.18) 0%, var(--surface-dark-elevated) 55%);
  box-shadow:
    0 0 0 1px rgba(47, 102, 255, 0.35),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

.support-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(47, 102, 255, 0.2);
  color: var(--brand-light);
}

.support-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.support-card-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.support-content {
  padding: clamp(32px, 5vw, 48px) clamp(20px, 5vw, 48px) clamp(56px, 7vw, 80px);
  background: #f3f4f6;
  margin-bottom: 0;
}

.support-faq-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.support-section {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.support-section:first-child {
  margin-top: 0;
}

.support-section + .support-section {
  margin-top: clamp(40px, 6vw, 56px);
  padding-top: clamp(40px, 6vw, 56px);
  border-top: 1px solid #e5e7eb;
}

.support-section-title {
  margin: 0 0 20px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.support-section-title--accent {
  color: #dc2626;
}

.support-troubleshoot-lead {
  margin: -8px 0 20px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.support-mailto {
  color: #dc2626;
  font-weight: 700;
}

.support-mailto:hover {
  color: #b91c1c;
  text-decoration: underline;
}

.support-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-faq {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e8ecf2;
  box-shadow: 0 4px 16px rgba(15, 17, 21, 0.06);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.support-faq[open] {
  border-color: var(--brand-mid);
  box-shadow: 0 8px 24px rgba(47, 102, 255, 0.12);
}

.support-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.support-faq summary::-webkit-details-marker {
  display: none;
}

.support-faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #9aa3b2;
  border-bottom: 2px solid #9aa3b2;
  transform: rotate(45deg);
  margin-top: -4px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.support-faq[open] summary {
  color: var(--brand);
}

.support-faq[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-color: var(--brand);
}

.support-faq-body {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  border-top: 1px solid #eef1f5;
}

.support-faq-body p {
  margin: 14px 0 0;
}

.support-faq-body p:first-child {
  margin-top: 14px;
}

.support-faq-body ul,
.support-faq-body ol {
  margin: 14px 0 0;
  padding-left: 1.25rem;
}

.support-faq-body li + li {
  margin-top: 6px;
}

.support-faq-body code {
  font-size: 0.9em;
  padding: 0.12em 0.4em;
  border-radius: 6px;
  background: #f3f4f6;
  color: var(--text);
}

.support-faq-body a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.support-faq-body a:hover {
  color: var(--brand-mid);
  text-decoration: underline;
}

.support-faq-body a.support-mailto:hover {
  color: #b91c1c;
}

.page-support .site-footer--dark {
  margin-top: 0;
}

