/* Sideline Captions — main site styles
   Font stack mirrors screen.studio: SF Pro Display, Inter, Manrope */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ss-bg: #000000;
  --ss-nav-sheet-bg: #0a0a0a;
  --ss-primary: #6279e6;
  --ss-primary-dark: #3842ba;
  --ss-gradient: linear-gradient(135deg, #6279e6 0%, #3842ba 100%);
  --ss-gradient-glow: radial-gradient(ellipse 120% 80% at 50% -15%, rgba(99, 102, 241, 0.28) 0%, transparent 65%);
  --ss-surface: hsla(0, 0%, 100%, 0.06);
  --ss-surface-hover: hsla(0, 0%, 100%, 0.09);
  --ss-surface-strong: hsla(0, 0%, 100%, 0.12);
  --ss-border: hsla(0, 0%, 100%, 0.1);
  --ss-border-subtle: hsla(0, 0%, 100%, 0.06);
  --ss-text: #ffffff;
  --ss-text-muted: #b3b3b3;
  --ss-text-soft: #9a9a9a;
  --ss-text-faint: #949494;
  --ss-focus-ring: #6279e6;
  --ss-font: BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Manrope", -apple-system, sans-serif;
  --ss-radius-sm: 16px;
  --ss-radius: 24px;
  --ss-radius-lg: 32px;
  --ss-radius-xl: 40px;
  --ss-btn-radius: 8px;
  --ss-nav-desktop-min: 1235px;
  --ss-nav-mobile-max: 1234px;
  --ss-cta-exit-duration: 670ms;
  --ss-cta-exit-easing: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  --ss-gap: 12px;
  --ss-max: 1200px;
  --ss-nav-h: 76px;
  --ss-glass-bg: rgba(0, 0, 0, 0.3);
  --ss-glass-bg-scrolled: rgba(0, 0, 0, 0.52);
  --ss-glass-blur: 24px;
  --ss-glass-blur-scrolled: 32px;
  --ss-quote-text-size: clamp(1.75rem, 4vw, 2.75rem);
  --ss-quote-text-weight: 700;
  --ss-quote-text-line-height: 1.32;
  --ss-quote-text-tracking: -0.03em;
  --ss-quote-author-size: 17px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.is-mobile-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

html.is-mobile-menu-open body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

/* Skip link — first focus for keyboard users */
.ss-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  padding: 12px 18px;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.ss-skip-link:focus,
.ss-skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--ss-focus-ring);
  outline-offset: 2px;
}

body.ss-poc {
  margin: 0;
  font-family: var(--ss-font);
  background: var(--ss-bg);
  color: var(--ss-text);
  line-height: 1.5;
  overflow-x: clip;
}

#main-content {
  scroll-margin-top: calc(var(--ss-nav-h) + 16px);
}

.ss-poc a { color: inherit; text-decoration: none; }
.ss-poc img, .ss-poc video { display: block; max-width: 100%; height: auto; }
.ss-poc button:not(.ss-btn-ghost):not(.ss-btn-primary):not(.roster-preview-signin-btn):not(.gradient-bg):not(.hiw-step):not(.billing-toggle-btn):not(.ss-trial-form__submit):not(.ss-hero-trial-form__submit):not(.footer-trial-form__submit):not(.roster-gen-tab) {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Brand gradient utilities */
.ss-gradient-text {
  background: var(--ss-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ss-gradient-bg {
  background: var(--ss-gradient);
}

/* ── Header / nav — transparent at top, frosted glass on scroll ── */
.ss-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.ss-header.is-mega-open .ss-nav {
  z-index: 100;
}

.ss-header.has-dropdown-open .ss-nav {
  z-index: 100;
}

.ss-nav {
  position: relative;
  z-index: 100;
  width: 100%;
  height: var(--ss-nav-h);
  display: flex;
  align-items: center;
  justify-content: stretch;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.ss-header.is-mega-open .ss-nav,
.ss-header.has-dropdown-open .ss-nav,
.ss-header.is-mobile-open .ss-nav {
  background: var(--ss-glass-bg);
  backdrop-filter: blur(var(--ss-glass-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--ss-glass-blur)) saturate(1.35);
  border-bottom-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ss-header.is-scrolled .ss-nav {
  background: var(--ss-glass-bg-scrolled);
  backdrop-filter: blur(var(--ss-glass-blur-scrolled)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--ss-glass-blur-scrolled)) saturate(1.5);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.35);
}

.ss-header.is-mega-open.is-scrolled .ss-nav,
.ss-header.has-dropdown-open.is-scrolled .ss-nav {
  border-bottom-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .ss-header.is-mega-open .ss-nav,
  .ss-header.has-dropdown-open .ss-nav,
  .ss-header.is-mobile-open .ss-nav {
    background: rgba(0, 0, 0, 0.92);
  }
  .ss-header.is-scrolled .ss-nav {
    background: rgba(0, 0, 0, 0.96);
  }

  .ss-dropdown__sheet,
  .ss-dropdown__sheet::before {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0.92);
  }

  .ss-header.is-scrolled .ss-dropdown__sheet,
  .ss-header.is-scrolled .ss-dropdown__sheet::before {
    background: rgba(0, 0, 0, 0.96);
  }
}

.ss-nav__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}

@media (min-width: 640px) {
  .ss-nav__inner { padding: 0 32px; }
}

@media (min-width: 1024px) {
  .ss-nav__inner { padding: 0 48px; }
}

.ss-nav__links {
  display: none;
  align-items: stretch;
  gap: 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.ss-nav__links a:hover { color: #fff; }

.ss-nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  position: relative;
  z-index: 102;
}

.ss-nav__brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.ss-nav__links .ss-mega__trigger {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding: 0 18px;
  min-height: 100%;
  height: auto;
  background: transparent;
  transition: color 0.15s;
}

.ss-nav__links .ss-mega__trigger:hover,
.ss-header.is-mega-open .ss-mega__trigger {
  color: #fff;
}

.ss-mega__chevron,
.ss-dropdown__chevron {
  display: none;
}

.ss-mega__chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}

.ss-header.is-mega-open .ss-mega__chevron {
  transform: rotate(180deg);
}

/* ── Product mega menu ── */
@keyframes ss-nav-item-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ss-mega__backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.ss-header.is-mega-open .ss-mega__backdrop,
.ss-header.has-dropdown-open .ss-mega__backdrop {
  pointer-events: auto;
}

.ss-header.is-mega-visible .ss-mega__backdrop,
.ss-header.is-dropdown-visible .ss-mega__backdrop {
  opacity: 1;
}

.ss-mega__panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--ss-mega-top, var(--ss-nav-h));
  z-index: 95;
  padding: 0;
  background: var(--ss-nav-sheet-bg);
  border-bottom: 1px solid var(--ss-border-subtle);
  opacity: 0;
  transform: none;
  transform-origin: top center;
  transition: opacity 0.25s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
}

/* Hover bridge between nav trigger and mega panel */
.ss-mega__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
  background: var(--ss-nav-sheet-bg);
}

.ss-header.is-mega-open .ss-mega__panel {
  pointer-events: auto;
}

.ss-header.is-mega-visible .ss-mega__panel {
  opacity: 1;
}

.ss-mega__inner {
  max-width: var(--ss-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ss-mega__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .ss-mega__inner {
    padding: 0 48px;
  }
}

.ss-mega__list-col {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--ss-border-subtle);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media (min-width: 768px) {
  .ss-mega__list-col {
    border-bottom: none;
    border-right: 1px solid var(--ss-border-subtle);
  }
}

.ss-mega__col {
  padding: 24px 20px;
  border-bottom: 1px solid var(--ss-border-subtle);
}

@media (min-width: 768px) {
  .ss-mega__col {
    border-bottom: none;
    border-right: 1px solid var(--ss-border-subtle);
  }
  .ss-mega__col:last-of-type {
    border-right: none;
  }
}

.ss-mega__col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ss-text-soft);
  margin: 0 0 14px;
}

.ss-mega__links {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  min-height: 100%;
  position: relative;
  isolation: isolate;
}

.ss-mega__link-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background: hsla(0, 0%, 100%, 0.07);
  opacity: 0;
  will-change: transform, width, height;
}

.ss-mega__link-bg.is-active-state {
  background: hsla(0, 0%, 100%, 0.09);
}

.ss-mega__links .ss-mega__link:last-child {
  flex: 1;
}

.ss-mega__link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(-5px);
  position: relative;
  z-index: 1;
  background: transparent;
}

.ss-header.is-mega-visible .ss-mega__link {
  animation: ss-nav-item-in 0.25s cubic-bezier(0, 0.7, 0.5, 1) both;
}

.ss-header.is-mega-visible .ss-mega__links .ss-mega__link:nth-child(1) { animation-delay: 0.02s; }
.ss-header.is-mega-visible .ss-mega__links .ss-mega__link:nth-child(2) { animation-delay: 0.05s; }
.ss-header.is-mega-visible .ss-mega__links .ss-mega__link:nth-child(3) { animation-delay: 0.08s; }
.ss-header.is-mega-visible .ss-mega__links .ss-mega__link:nth-child(4) { animation-delay: 0.11s; }
.ss-header.is-mega-visible .ss-mega__links .ss-mega__link:nth-child(5) { animation-delay: 0.14s; }
.ss-header.is-mega-visible .ss-mega__links .ss-mega__link:nth-child(6) { animation-delay: 0.17s; }

.ss-mega__link:hover,
.ss-mega__link.is-active,
.ss-mega__link:focus-visible {
  border: none;
  box-shadow: none;
}

.ss-mega__link:focus-visible {
  outline: 2px solid var(--ss-focus-ring);
  outline-offset: 2px;
}

.ss-mega__link-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: cover;
}

.ss-mega__link-icon--svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 1px;
  background: none;
  border: none;
  color: #d4d4d8;
}

.ss-mega__link-icon--svg svg {
  width: 22px;
  height: 22px;
}

.ss-mega__link-icon--svg svg path,
.ss-mega__link-icon--svg svg circle,
.ss-mega__link-icon--svg svg line,
.ss-mega__link-icon--svg svg polyline,
.ss-mega__link-icon--svg svg rect {
  stroke-width: 1.5;
}

.ss-mega__link:hover .ss-mega__link-icon--svg,
.ss-mega__link.is-active .ss-mega__link-icon--svg,
.ss-mega__link:focus-visible .ss-mega__link-icon--svg {
  color: #f4f4f5;
}

.ss-mega__link-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.ss-mega__link-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ffffff;
  line-height: 1.3;
}

.ss-mega__link-title .ss-gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  color: #fff;
}

.ss-mega__link-desc {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.45;
}

.ss-mega__link-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.ss-mega__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(200, 212, 252, 0.9);
  background: rgba(98, 121, 230, 0.15);
  border: 1px solid rgba(98, 121, 230, 0.3);
  border-radius: 6px;
  padding: 2px 6px;
}

.ss-mega__promo {
  padding: 0;
  background: linear-gradient(165deg, rgba(98, 121, 230, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  opacity: 0;
  transform: translateY(-5px);
}

.ss-header.is-mega-visible .ss-mega__promo {
  animation: ss-nav-item-in 0.25s cubic-bezier(0, 0.7, 0.5, 1) 0.1s both;
}

.ss-mega__promo-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 100%;
  padding: 16px 16px 25px;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  transition: background 0.15s ease;
}

.ss-mega__promo-link:hover {
  background: hsla(0, 0%, 100%, 0.04);
}

.ss-mega__promo-title {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}

.ss-mega__promo-desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--ss-text-muted);
  margin: 0;
}

.ss-mega__promo-img-wrap {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.ss-mega__promo-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.35s ease;
}

.ss-mega__promo-img.is-swapping {
  opacity: 0;
  transform: scale(1.02);
}

.ss-mega__promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ss-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s;
}

.ss-mega__promo-link:hover .ss-mega__promo-cta {
  opacity: 0.92;
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .ss-mega__panel,
  .ss-mega__backdrop,
  .ss-mega__link,
  .ss-mega__link-bg,
  .ss-mega__promo,
  .ss-mega__promo-img,
  .ss-mega__chevron {
    transition: none !important;
    animation: none !important;
  }
  .ss-mega__link,
  .ss-mega__promo {
    opacity: 1;
    transform: none;
  }
}

.ss-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--ss-btn-radius);
  background: #3e47b7;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.15s, opacity 0.15s;
  box-shadow: none;
}

.ss-nav__cta:hover {
  transform: scale(1.02);
  opacity: 0.92;
  box-shadow: none;
}

.ss-nav__login {
  display: none;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ss-text-muted);
  white-space: nowrap;
  transition: color 0.15s;
}

.ss-nav__login:hover {
  color: var(--ss-text);
}

.ss-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 102;
}

.ss-nav__cta--desktop {
  display: none;
}

.ss-nav__mobile-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--ss-text-muted);
  background: transparent;
  transition: color 0.15s, background 0.15s;
}

.ss-nav__mobile-btn:hover {
  color: var(--ss-text);
  background: var(--ss-surface);
}

.ss-nav__mobile-btn svg {
  position: absolute;
  width: 22px;
  height: 22px;
}

.ss-nav__mobile-btn [data-ss-mobile-icon-close] {
  display: none;
}

.ss-header.is-mobile-open .ss-nav__mobile-btn [data-ss-mobile-icon-open] {
  display: none;
}

.ss-header.is-mobile-open .ss-nav__mobile-btn [data-ss-mobile-icon-close] {
  display: block;
}

/* Nav dropdowns — full-width sheets (Screen Studio style) */
.ss-dropdown {
  position: static;
  display: flex;
  align-items: stretch;
  align-self: stretch;
}

.ss-nav__links > .ss-mega__trigger {
  align-self: stretch;
}

.ss-dropdown__sheet {
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  top: var(--ss-mega-top, var(--ss-nav-h));
  z-index: 93;
  background: var(--ss-glass-bg);
  backdrop-filter: blur(var(--ss-glass-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--ss-glass-blur)) saturate(1.35);
  border-bottom: 1px solid var(--ss-border-subtle);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  height: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition:
    height 0.35s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.2s ease-out,
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease;
}

.ss-header.is-scrolled .ss-dropdown__sheet {
  background: var(--ss-glass-bg-scrolled);
  backdrop-filter: blur(var(--ss-glass-blur-scrolled)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--ss-glass-blur-scrolled)) saturate(1.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ss-header.is-dropdown-visible .ss-dropdown__sheet {
  opacity: 1;
  pointer-events: auto;
}

.ss-dropdown__sheet::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
  background: var(--ss-glass-bg);
  backdrop-filter: blur(var(--ss-glass-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--ss-glass-blur)) saturate(1.35);
}

.ss-header.is-scrolled .ss-dropdown__sheet::before {
  background: var(--ss-glass-bg-scrolled);
  backdrop-filter: blur(var(--ss-glass-blur-scrolled)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--ss-glass-blur-scrolled)) saturate(1.5);
}

.ss-dropdown__menu {
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  top: var(--ss-mega-top, var(--ss-nav-h));
  z-index: 94;
  min-width: 0;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  padding: 8px max(24px, calc((100vw - var(--ss-max)) / 2)) 20px;
  padding-left: var(--ss-dropdown-pad-left, max(24px, calc((100vw - var(--ss-max)) / 2)));
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  transform: none;
  pointer-events: none;
  transition: opacity 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.ss-dropdown__menu::before {
  display: none;
}

.ss-header.has-dropdown-open .ss-dropdown.is-open .ss-dropdown__menu {
  pointer-events: auto;
}

.ss-header.is-dropdown-visible .ss-dropdown.is-open .ss-dropdown__menu {
  opacity: 1;
}

.ss-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 36rem;
  padding: 13px 0;
  border-radius: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ss-text-muted);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-5px);
  transition: color 0.15s ease;
}

.ss-header.is-dropdown-visible .ss-dropdown.is-open:not(.ss-dropdown--revealed) .ss-dropdown__menu a {
  animation: none;
  opacity: 0;
  transform: translateY(-5px);
}

.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a {
  animation: ss-nav-item-in 0.25s cubic-bezier(0, 0.7, 0.5, 1) both;
}

.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(1) { animation-delay: 0.02s; }
.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(2) { animation-delay: 0.05s; }
.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(3) { animation-delay: 0.08s; }
.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(4) { animation-delay: 0.11s; }
.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(5) { animation-delay: 0.14s; }
.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(6) { animation-delay: 0.17s; }
.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(7) { animation-delay: 0.20s; }
.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(8) { animation-delay: 0.23s; }
.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(9) { animation-delay: 0.26s; }
.ss-header.is-dropdown-visible .ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a:nth-child(10) { animation-delay: 0.29s; }

.ss-dropdown.is-open.ss-dropdown--revealed .ss-dropdown__menu a {
  opacity: 1;
  transform: translateY(0);
}

.ss-dropdown__menu a:hover {
  background: transparent;
  color: var(--ss-text);
}

@media (max-width: 1234px) {
  .ss-dropdown__menu,
  .ss-dropdown__sheet {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-dropdown__sheet {
    transition: none !important;
  }

  .ss-dropdown__menu,
  .ss-dropdown__menu a {
    transition: none !important;
    animation: none !important;
  }

  .ss-header.is-dropdown-visible .ss-dropdown.is-open .ss-dropdown__menu a {
    opacity: 1;
    transform: none;
  }
}

.ss-dropdown__icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Sports Roster Generator nav — promo + league columns */
.ss-dropdown--roster-nav .ss-dropdown__menu {
  flex-direction: row;
  align-items: stretch;
  padding-top: 18px;
  padding-bottom: 24px;
}

.ss-dropdown--roster-nav .ss-dropdown__menu-grid,
.ss-dropdown--roster-nav .ss-dropdown__menu-grid--roster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  width: 100%;
  max-width: min(72rem, calc(100vw - 48px));
  align-items: stretch;
}

.ss-dropdown__menu-cols-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  min-width: 0;
}

.ss-dropdown__promo--roster {
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-dropdown__promo--roster .ss-dropdown__promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  text-align: center;
}

.ss-dropdown__promo--roster .ss-mega__promo-title {
  margin: 0;
}

.ss-dropdown__promo--roster .ss-mega__promo-desc {
  margin: 0;
  max-width: 22rem;
}

.ss-dropdown--roster-nav .ss-dropdown__menu .ss-dropdown__promo-cta {
  width: auto;
  max-width: none;
}

.ss-dropdown__promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: auto;
  max-width: none;
  margin-top: 0;
  padding: 10px 16px;
  gap: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  background: var(--ss-gradient);
  color: #fff;
  border-radius: var(--ss-btn-radius);
  box-shadow: 0 4px 20px rgba(98, 121, 230, 0.25);
  opacity: 1;
  transform: none;
  transition: opacity 0.15s, transform 0.15s;
}

.ss-dropdown--roster-nav .ss-dropdown__menu .ss-dropdown__promo-cta:hover {
  background: var(--ss-gradient);
  color: #fff;
  opacity: 0.92;
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(98, 121, 230, 0.25);
}

.ss-dropdown--roster-nav .ss-dropdown__promo-cta.ss-btn-primary {
  color: #fff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
}

.ss-dropdown--roster-nav .ss-dropdown__leagues-index {
  margin-top: 2px;
}

.ss-dropdown--roster-nav .ss-dropdown__col-label {
  margin: 0 0 8px;
  padding: 0;
  font-family: var(--ss-font-label, var(--font-label));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ss-text-soft);
}

.ss-dropdown--roster-nav .ss-dropdown__menu-col a {
  max-width: none;
}

.ss-dropdown--roster-nav .ss-dropdown__menu-col a[aria-current="page"] {
  color: var(--ss-text);
}

.ss-dropdown--roster-nav .ss-dropdown__team-link {
  justify-content: space-between;
  gap: 12px;
  white-space: normal;
}

.ss-dropdown--roster-nav .ss-dropdown__team-name {
  flex: 1;
  min-width: 0;
}

.ss-dropdown--roster-nav .ss-dropdown__team-tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(200, 212, 252, 0.9);
  background: rgba(98, 121, 230, 0.15);
  border: 1px solid rgba(98, 121, 230, 0.3);
  border-radius: 6px;
  padding: 2px 6px;
}

.ss-mobile-menu__group-label {
  margin: 12px 0 4px;
  padding: 0 16px;
  font-family: var(--ss-font-label, var(--font-label));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ss-text-soft);
}

.ss-mobile-menu__team-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ss-mobile-menu__team-name {
  flex: 1;
  min-width: 0;
}

.ss-dropdown__trigger,
.ss-nav__plain-link {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding: 0 18px;
  min-height: 100%;
  height: auto;
  background: transparent;
  transition: color 0.15s;
  white-space: nowrap;
}

a.ss-dropdown__trigger {
  text-decoration: none;
}

.ss-dropdown__trigger-row {
  display: inline-flex;
  align-items: stretch;
  align-self: stretch;
  min-height: 100%;
}

.ss-dropdown__trigger-link {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.ss-dropdown__trigger-link:hover,
.ss-dropdown--roster-nav.is-open .ss-dropdown__trigger-link {
  color: #fff;
}

.ss-dropdown__trigger-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 4px;
  min-height: 100%;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}

.ss-dropdown__trigger-caret:hover,
.ss-dropdown--roster-nav.is-open .ss-dropdown__trigger-caret {
  color: #fff;
}

.ss-dropdown__trigger-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}

.ss-dropdown--roster-nav.is-open .ss-dropdown__trigger-chevron {
  transform: rotate(180deg);
}

.ss-nav__plain-link:hover,
.ss-dropdown__trigger:hover,
.ss-dropdown.is-open .ss-dropdown__trigger {
  color: #fff;
}

.ss-dropdown__chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}

.ss-dropdown.is-open .ss-dropdown__chevron {
  transform: rotate(180deg);
}

/* Mobile menu — frosted glass overlay */
.ss-mobile-menu {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(var(--ss-glass-blur-scrolled)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--ss-glass-blur-scrolled)) saturate(1.5);
  max-height: calc(100vh - var(--ss-nav-h));
  overflow-y: auto;
}

@media (max-width: 1234px) {
  .ss-header.is-mobile-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    width: 100%;
  }

  .ss-mobile-menu:not([hidden]) {
    display: block !important;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--ss-nav-h);
    bottom: 0;
    z-index: 99;
    max-height: none;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    -webkit-overflow-scrolling: touch;
  }

  .ss-header.is-mobile-open .ss-nav {
    border-bottom: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .ss-mobile-menu {
    background: rgba(0, 0, 0, 0.88);
  }
}

.ss-mobile-menu__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 16px 24px 24px;
}

@media (min-width: 640px) {
  .ss-mobile-menu__inner { padding: 16px 32px 24px; }
}

.ss-mobile-menu__accordion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ss-text-muted);
  background: transparent;
  border-bottom: 1px solid var(--ss-border-subtle);
}

.ss-mobile-menu__accordion:hover { color: var(--ss-text); }

.ss-mobile-menu__row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  border-bottom: 1px solid var(--ss-border-subtle);
}

.ss-mobile-menu__row .ss-mobile-menu__link--row {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: none;
}

.ss-mobile-menu__accordion--toggle {
  width: auto;
  flex-shrink: 0;
  padding: 12px 4px;
  border-bottom: none;
}

.ss-mobile-menu__roster-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 12px;
  padding: 12px 18px;
  border-radius: var(--ss-btn-radius, 9999px);
  background: var(--ss-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(98, 121, 230, 0.25);
  transition: transform 0.15s, opacity 0.15s;
}

.ss-mobile-menu__roster-btn:hover,
.ss-mobile-menu__roster-btn[aria-current="page"] {
  color: #fff;
  transform: scale(1.01);
  opacity: 0.95;
}

.ss-mobile-menu__link--leagues-index {
  margin-top: 2px;
}

.ss-mobile-menu__chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.ss-mobile-menu__chevron.is-open {
  transform: rotate(180deg);
}

.ss-mobile-menu__sub {
  padding: 8px 0 12px 4px;
}

.ss-mobile-menu__card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: var(--ss-radius-sm);
  background: var(--ss-surface);
  border: 1px solid var(--ss-border-subtle);
  color: var(--ss-text-muted);
  transition: border-color 0.15s, color 0.15s;
}

.ss-mobile-menu__card:hover {
  border-color: var(--ss-border);
  color: var(--ss-text);
}

.ss-mobile-menu__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #d4d4d8;
}

.ss-mobile-menu__card-icon svg {
  width: 22px;
  height: 22px;
}

.ss-mobile-menu__card:hover .ss-mobile-menu__card-icon {
  color: #f4f4f5;
}

.ss-mobile-menu__card-text {
  flex: 1;
  min-width: 0;
}

.ss-mobile-menu__card-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ss-text);
}

.ss-mobile-menu__card-desc {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: var(--ss-text-soft);
}

.ss-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--ss-text-muted);
  border-bottom: 1px solid var(--ss-border-subtle);
}

.ss-mobile-menu__link:hover { color: var(--ss-text); }

.ss-mobile-menu__link img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.ss-mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--ss-btn-radius);
  background: var(--ss-gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .ss-nav__cta--desktop { display: inline-flex; }
  .ss-nav__login--desktop { display: inline-flex; }
}

@media (min-width: 1235px) {
  .ss-nav__inner {
    position: relative;
    justify-content: flex-start;
    align-items: stretch;
  }

  .ss-nav__brand,
  .ss-nav__actions {
    align-self: center;
  }

  /* Center nav without transform — transform breaks position:fixed dropdowns */
  .ss-nav__links {
    display: flex;
    margin-left: 0;
    position: absolute;
    inset: 0;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    pointer-events: auto;
    z-index: 101;
  }

  .ss-nav__actions {
    margin-left: auto;
  }

  .ss-nav__mobile-btn { display: none; }
}

@media (min-width: 1320px) {
  .ss-nav__link--blog { display: inline-flex; }
}

@media (max-width: 1319px) {
  .ss-nav__link--blog { display: none; }
}

/* ── Layout shell ── */
.ss-wrap {
  width: 100%;
  max-width: var(--ss-max);
  margin: 0 auto;
  padding: 0 24px;
}

.ss-section {
  padding: 96px 0;
}

.ss-section--tight { padding: 64px 0; }

.ss-hero + .ss-section--tight {
  padding-top: 0;
}

.ss-products-suite + .ss-section--featured-quote,
.ss-products-pin + .ss-section--featured-quote {
  padding-top: 88px;
  padding-bottom: 56px;
}

.ss-section--featured-quote + .ss-section--stats {
  padding-top: 48px;
  padding-bottom: 96px;
}

.ss-section--text {
  padding: 96px 0;
  text-align: center;
}

.ss-section--text-left {
  padding: 96px 0;
  text-align: left;
}

/* ── Typography ── */
.ss-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(98, 121, 230, 0.1);
  border: 1px solid rgba(98, 121, 230, 0.25);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 20px;
}

.ss-eyebrow::before,
.page-eyebrow::before,
.ss-pricing-card__eyebrow::before,
.section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ss-gradient);
  flex-shrink: 0;
}

.page-eyebrow,
.ss-pricing-card__eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ss-section-head--center .ss-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.ss-h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 20px;
}

.ss-h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 12px;
}

.ss-h2--display {
  font-size: clamp(2.375rem, 6vw, 4.125rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.ss-h2--xl {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.ss-h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 10px;
}

.ss-lead {
  font-size: clamp(1.1875rem, 2.4vw, 1.4375rem);
  line-height: 1.55;
  color: var(--ss-text-muted);
  margin: 0;
  max-width: 46ch;
}

.ss-lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.ss-hero .ss-lead { max-width: 54ch; }

.ss-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ss-text-muted);
  margin: 0;
}

/* ── Hero ── */
.ss-poc > main {
  margin-top: calc(-1 * var(--ss-nav-h));
}

.ss-hero {
  position: relative;
  padding: calc(32px + var(--ss-nav-h)) 0 48px;
  text-align: center;
  overflow: hidden;
}

.ss-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ss-gradient-glow);
  pointer-events: none;
}

.ss-hero .ss-wrap {
  position: relative;
  z-index: 1;
}

.ss-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(98, 121, 230, 0.1);
  border: 1px solid rgba(98, 121, 230, 0.25);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}

.ss-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ss-gradient);
}

.ss-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.ss-hero__cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: auto;
  max-width: 100%;
}

.ss-hero__cta-buttons .ss-btn-primary,
.ss-hero__cta-buttons .ss-btn-ghost {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
}

@media (min-width: 640px) {
  .ss-hero__cta-buttons {
    gap: 16px;
  }
}

@media (max-width: 479px) {
  .ss-hero__cta-buttons .ss-btn-primary--lg,
  .ss-hero__cta-buttons .ss-btn-ghost--lg {
    padding: 14px 18px;
    font-size: 15px;
  }
}

.ss-hero__microcopy {
  margin: 0;
  max-width: 36rem;
  padding-top: 12px;
  text-align: center;
  font-family: var(--ss-font);
  font-size: 0.8125rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
}

.ss-hero__cta .ss-hero__microcopy {
  width: 100%;
}

.ss-hero-trial-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 24rem;
  gap: 0;
}

@media (min-width: 640px) {
  .ss-hero-trial-form {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: auto;
    max-width: none;
  }
}

.ss-hero-trial-form__input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--ss-btn-radius);
  background: #fff;
  border: 1px solid #e4e4e7;
  color: #18181b;
  font-family: var(--ss-font);
  font-size: 16px;
  line-height: 1;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.ss-hero-trial-form__input::placeholder {
  color: #a1a1aa;
}

.ss-hero-trial-form__input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--ss-primary);
}

@media (min-width: 640px) {
  .ss-hero-trial-form__input {
    min-width: 16rem;
    max-width: 20rem;
    width: auto;
  }
}

.ss-hero-trial-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0 28px;
  border: none;
  border-radius: var(--ss-btn-radius);
  background: var(--ss-gradient);
  color: #fff;
  font-family: var(--ss-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}

.ss-hero-trial-form__submit:hover {
  transform: scale(1.02);
  opacity: 0.92;
}

@media (max-width: 639px) {
  .ss-hero-trial-form__submit {
    margin-top: 12px;
  }
}

@media (min-width: 640px) {
  .ss-hero-trial-form__submit {
    width: auto;
    margin-top: 0;
  }
}

.ss-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--ss-btn-radius);
  background: var(--ss-gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(98, 121, 230, 0.25);
}

.ss-btn-primary:hover {
  transform: scale(1.02);
  opacity: 0.95;
  box-shadow: 0 6px 32px rgba(98, 121, 230, 0.35);
}

.ss-btn-primary--block {
  display: block;
  width: 100%;
  text-align: center;
}

.ss-btn-primary--lg {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 6px 32px rgba(98, 121, 230, 0.3);
}

.ss-btn-primary--lg:hover {
  box-shadow: 0 8px 40px rgba(98, 121, 230, 0.4);
}

.ss-btn-primary--sm {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(98, 121, 230, 0.22);
}

.ss-btn-primary--sm:hover {
  box-shadow: 0 6px 28px rgba(98, 121, 230, 0.32);
}

/* CTA buttons — match header Free Trial radius site-wide (overrides Tailwind rounded-*) */
:is(
  .ss-nav__cta,
  .ss-mobile-menu__cta,
  .ss-btn-primary,
  .ss-btn-ghost,
  .ss-footer__cta,
  .ss-hero-trial-form__submit,
  .ss-pricing-card__cta,
  .download-button,
  .trial-cta,
  .footer-trial-cta__link,
  .footer-trial-form__submit,
  .contact-modal button[type="submit"],
  .roster-preview-signin-btn,
  .hero-cta-secondary,
  a.gradient-bg,
  button.gradient-bg,
  input[type="submit"].gradient-bg
) {
  border-radius: var(--ss-btn-radius) !important;
}

.ss-poc .ss-hero__cta .ss-btn-primary,
.ss-poc .ss-cta-plain .ss-btn-primary {
  color: #fff;
  background: var(--ss-gradient);
}

.ss-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--ss-btn-radius);
  background: var(--ss-surface);
  border: 1px solid var(--ss-border);
  color: var(--ss-text);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s;
}

.ss-btn-ghost:hover { background: var(--ss-surface-hover); }

.ss-poc button.ss-btn-ghost,
.ss-poc button.ss-btn-primary {
  font-family: inherit;
  cursor: pointer;
}

.ss-hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(96vw, 1100px);
  margin: 28px auto 0;
  padding: 0;
}

.ss-hero__media #text-type-root {
  width: 100%;
}

.ss-hero__media .demo-macbook-assembly {
  width: 100%;
}

.ss-hero__media .caption-demo__replay {
  margin-top: 0.75rem;
}

@media (max-width: 767px) {
  .ss-hero {
    padding: calc(28px + var(--ss-nav-h)) 0 36px;
  }

  .ss-hero__badge {
    font-size: 9px;
    letter-spacing: 0.035em;
    padding: 6px 11px;
    gap: 6px;
    max-width: calc(100vw - 48px);
    white-space: nowrap;
  }

  .ss-hero__badge-dot {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
  }

  .ss-hero .ss-lead {
    font-size: 1.0625rem;
    line-height: 1.5;
  }

  .ss-hero__cta {
    margin-top: 20px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
  }

  .ss-hero__media {
    margin-top: 0;
    max-width: min(94vw, 420px);
    position: relative;
    z-index: 1;
  }

  .ss-hero__media .demo-macbook-assembly {
    margin-top: 0;
  }

  .ss-hero__media .caption-demo__replay {
    margin-top: 1rem;
  }
}

/* ── Bento grid system ── */
.ss-bento {
  display: grid;
  gap: var(--ss-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ss-bento--stats { grid-template-columns: repeat(2, 1fr); }
  .ss-bento--4 { grid-template-columns: repeat(2, 1fr); }
  .ss-bento--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .ss-bento--stats { grid-template-columns: repeat(4, 1fr); }
  .ss-bento--4 { grid-template-columns: repeat(4, 1fr); }
  .ss-bento--3 { grid-template-columns: repeat(3, 1fr); }
  .ss-bento--features {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }
  .ss-bento--products {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ss-card {
  border-radius: var(--ss-radius);
  background: var(--ss-surface);
  border: 1px solid var(--ss-border-subtle);
  padding: 28px;
  transition: background 0.2s, border-color 0.2s;
  overflow: hidden;
  position: relative;
}

.ss-card:hover {
  background: var(--ss-surface-hover);
  border-color: rgba(98, 121, 230, 0.22);
}

/* Stats row — distinct cards, staggered fade/blur reveal */
.ss-stats-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .ss-stats-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

.ss-section--stats .ss-card--stat {
  padding: 36px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(98, 121, 230, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  filter: blur(12px);
  transform: translateY(14px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    border-color 0.2s ease;
  will-change: opacity, filter, transform;
}

.ss-section--stats.is-revealed .ss-card--stat {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.ss-section--stats.is-revealed .ss-card--stat:nth-child(1) { transition-delay: 0s; }
.ss-section--stats.is-revealed .ss-card--stat:nth-child(2) { transition-delay: 0.18s; }
.ss-section--stats.is-revealed .ss-card--stat:nth-child(3) { transition-delay: 0.36s; }
.ss-section--stats.is-revealed .ss-card--stat:nth-child(4) { transition-delay: 0.54s; }

.ss-section--stats .ss-card--stat:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(98, 121, 230, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  .ss-section--stats .ss-card--stat {
    opacity: 1;
    filter: none;
    transform: none;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
}

/* Stats bento cards */
.ss-card--stat {
  padding: 24px;
  text-align: center;
}

.ss-stat-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ss-text);
}

.ss-stat-label {
  font-size: 13px;
  color: var(--ss-text-muted);
  line-height: 1.35;
}

/* Feature bento spans */
@media (min-width: 900px) {
  .ss-span-6 { grid-column: span 6; }
  .ss-span-4 { grid-column: span 4; }
  .ss-span-8 { grid-column: span 8; }
  .ss-span-12 { grid-column: span 12; }
  .ss-row-2 { grid-row: span 2; }
}

.ss-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ss-gradient);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(98, 121, 230, 0.3);
}

.ss-card__icon svg {
  width: 20px;
  height: 20px;
}

.ss-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ss-text-soft);
  margin-bottom: 12px;
}

.ss-card__tag-accent {
  background: var(--ss-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ss-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--ss-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.15s;
}

.ss-card__link:hover { opacity: 0.8; }

.ss-card__icon svg,
.ss-card__icon-svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.ss-card--feature {
  padding: 32px;
}

.ss-card--feature .ss-h3 {
  margin-bottom: 16px;
}

/* Product steps: card list + single shared demo (not per-step video) */
.ss-product-steps {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ss-product-steps {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
  }
}

.ss-product-steps__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ss-product-steps__demo {
  margin: 0;
}

.ss-product-steps__demo-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ss-product-steps__demo .ss-product-studio {
  border-radius: var(--ss-radius-md, 0.75rem);
  overflow: hidden;
}

.ss-card--testimonial {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ss-testimonial-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ss-text-muted);
  flex: 1;
}

.ss-features-grid {
  gap: 16px;
}

@media (min-width: 768px) {
  .ss-features-grid { gap: 20px; }
}

.ss-pricing-card {
  border-radius: var(--ss-radius);
  background: var(--ss-surface);
  border: 1px solid var(--ss-border);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.ss-text-scramble-wrap {
  display: inline-block;
  position: relative;
  vertical-align: top;
  max-width: 100%;
}

.ss-text-scramble-sizer {
  visibility: hidden;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

[data-text-scramble] {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}

.ss-text-scramble--active {
  font-variant-numeric: tabular-nums;
}

.ss-pricing-card--highlight {
  border-color: rgba(98, 121, 230, 0.4);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(98, 121, 230, 0.12) 0%, transparent 60%),
    var(--ss-surface);
}

.ss-pricing-card--highlight::before {
  content: "";
  position: absolute;
  top: -64px;
  right: -64px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(98, 121, 230, 0.15);
  pointer-events: none;
  z-index: 0;
}

/* Free trial pricing card — rotating gradient border only (screen.studio-style) */
@property --ss-free-trial-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes ss-free-trial-border-spin {
  to { --ss-free-trial-border-angle: 360deg; }
}

.free-trial-column {
  --ss-free-trial-border-angle: 0deg;
  position: relative;
  border: 1px solid rgba(98, 121, 230, 0.18) !important;
}

/* Paints ONLY the border ring via a masked conic gradient — card background stays intact */
.free-trial-column::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--ss-free-trial-border-angle),
    transparent 0deg,
    transparent 70deg,
    rgba(98, 121, 230, 0.85) 130deg,
    rgba(196, 205, 255, 1) 160deg,
    rgba(98, 121, 230, 0.85) 190deg,
    transparent 250deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: ss-free-trial-border-spin 6s linear infinite;
  pointer-events: none;
  z-index: 3;
}

.free-trial-column > .relative,
.free-trial-column > .ss-pricing-card__inner {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .free-trial-column {
    border-color: rgba(98, 121, 230, 0.5) !important;
  }

  .free-trial-column::after {
    display: none;
  }
}

.ss-pricing-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ss-pricing-card__head {
  min-height: 168px;
}

.ss-pricing-card__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 12px;
}

.ss-pricing-card__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px;
}

.ss-pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
}

.ss-pricing-card__price-unit {
  font-size: 0.42em;
  font-weight: 500;
  color: var(--ss-text-muted);
  letter-spacing: 0;
}

.ss-pricing-card__desc {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.ss-pricing-card__cta {
  margin-top: auto;
}

.ss-pricing-card__lifetime-wrap {
  text-align: center;
  margin-top: 16px;
  min-height: 22px;
}

.ss-pricing-card__lifetime-wrap--spacer {
  visibility: hidden;
  pointer-events: none;
}

.ss-pricing-card__lifetime-link {
  font-family: var(--ss-font);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.ss-poc .ss-pricing-card__lifetime-link {
  color: rgba(255, 255, 255, 0.55);
  background: none;
}

.ss-pricing-card__lifetime-link:hover,
.ss-poc .ss-pricing-card__lifetime-link:hover {
  color: rgba(255, 255, 255, 0.88);
}

.ss-pricing-card ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ss-pricing-card .space-y-4 > * + * {
  margin-top: 0;
}

.ss-pricing-card ul li,
.ss-pricing-card .pricing-feature-item {
  list-style: none;
  padding-left: 0;
}

.ss-pricing-card ul li::marker {
  content: none;
}

.ss-pricing-card .ss-btn-primary,
.ss-poc .ss-pricing-card a.ss-btn-primary {
  color: #fff;
  background: var(--ss-gradient);
  font-weight: 700;
}

.ss-pricing-card .ss-btn-primary--block {
  display: flex;
  width: 100%;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(98, 121, 230, 0.25);
}

.ss-pricing-card .ss-btn-primary--block:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .ss-poc .ss-parity #pricing .ss-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ss-poc .ss-parity #pricing .grid.max-w-5xl {
    max-width: none;
    width: 100%;
    gap: 20px;
  }

  .ss-pricing-card {
    padding: 24px 18px;
    border-radius: var(--ss-radius-sm);
  }

  .ss-poc .ss-parity .ss-pricing-card__head {
    min-height: 0;
    margin-bottom: 20px !important;
  }

  .ss-pricing-card__eyebrow {
    margin-bottom: 8px;
  }

  .ss-pricing-card__title {
    font-size: clamp(1.75rem, 7vw, 2.125rem);
    margin-bottom: 10px;
  }

  .ss-pricing-card__desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .ss-pricing-card ul {
    margin-bottom: 20px;
    gap: 8px;
  }

  .ss-poc .ss-parity .pricing-feature-header span.text-lg,
  .ss-poc .ss-parity .pricing-feature-header .font-bold {
    font-size: 1rem !important;
  }

  .ss-pricing-card__lifetime-wrap {
    margin-top: 12px;
  }
}

/* Product cards — tall bento with mock UI */
.ss-card--product .ss-card__product-name {
  display: block;
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #ffffff;
  text-transform: none;
}

.ss-card--product .ss-h3 {
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ss-text);
  margin: 0 0 12px;
}

.ss-card--product {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 36px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.ss-card--product:hover {
  color: inherit;
}

.ss-card--product .ss-card__mock {
  margin-top: auto;
  padding-top: 28px;
}

/* Screen Studio–style product card (video hero) */
.ss-card--product-studio {
  padding: 0;
  min-height: 0;
  cursor: default;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ss-card--product-studio:hover {
  background: var(--ss-surface);
  border-color: var(--ss-border-subtle);
}

.ss-card--product__copy {
  padding: 36px 36px 40px;
  flex-shrink: 0;
  box-sizing: border-box;
  height: var(--ss-product-card-copy-h, auto);
  overflow: hidden;
}

.ss-card--product .ss-card__mock--studio {
  margin-top: 0;
  padding-top: 0;
  width: 100%;
  line-height: 0;
  min-height: 0;
  overflow: hidden;
  display: block;
  border-radius: 0 0 var(--ss-radius) var(--ss-radius);
}

.ss-product-studio {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ss-product-video-ar, 1.6);
  padding: 0;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border-radius: 0 0 var(--ss-radius) var(--ss-radius);
}

.ss-product-studio__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0 0 var(--ss-radius) var(--ss-radius);
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.ss-product-studio[data-video-state="playing"] .ss-product-studio__poster {
  opacity: 0;
  visibility: hidden;
}

.ss-product-studio__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0 0 var(--ss-radius) var(--ss-radius);
  box-shadow: none;
  object-fit: cover;
  object-position: top center;
  background: transparent;
}

.ss-product-studio__control {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0 0 var(--ss-radius) var(--ss-radius);
}

.ss-product-studio[data-video-state="playing"] .ss-product-studio__control {
  display: none;
}

.ss-product-studio__control-glass {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.ss-product-studio__control-glass-media {
  position: absolute;
  z-index: 0;
  display: block;
  height: auto;
  pointer-events: none;
  object-fit: cover;
  transform: scale(1.04);
  filter: blur(6px) saturate(1.12);
}

.ss-product-studio__control-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(7px) saturate(1.22);
  -webkit-backdrop-filter: blur(7px) saturate(1.22);
  pointer-events: none;
}

.ss-product-studio__control:hover .ss-product-studio__control-glass,
.ss-product-studio__control:focus-visible .ss-product-studio__control-glass {
  transform: scale(1.05);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.ss-product-studio__control:hover .ss-product-studio__control-glass::after,
.ss-product-studio__control:focus-visible .ss-product-studio__control-glass::after {
  background: rgba(255, 255, 255, 0.105);
}

.ss-product-studio__control:focus-visible {
  outline: none;
}

.ss-product-studio__control:focus-visible .ss-product-studio__control-glass {
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 0 0 3px rgba(255, 255, 255, 0.18);
}

.ss-product-studio__control-glass > .ss-product-studio__control-icon {
  position: relative;
  z-index: 2;
}

.ss-product-studio__control-icon {
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.98);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.ss-product-studio__control-icon--play {
  width: 38px;
  height: 38px;
  transform: translateX(1px);
}

.ss-product-studio__control-icon--replay {
  display: none;
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.ss-product-studio[data-video-state="ended"] .ss-product-studio__control-icon--play {
  display: none;
}

.ss-product-studio[data-video-state="ended"] .ss-product-studio__control-icon--replay {
  display: block;
}

.ss-mock {
  margin-top: 0;
  border-radius: var(--ss-radius-sm);
  font-size: 11px;
  line-height: 1.5;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: #64748b;
}

.ss-mock--table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.6);
  padding: 0;
}

.ss-mock--table .ss-mock__row {
  display: grid;
  grid-template-columns: 2.5rem 2.5rem 1fr;
  gap: 8px;
  padding: 8px 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ss-mock--table .ss-mock__row span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ss-mock--table .ss-mock__row:last-child {
  border-bottom: none;
}

.ss-mock__row--head {
  color: #64748b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.ss-mock__row--hi {
  background: rgba(6, 78, 59, 0.35);
  color: #6ee7b7;
}

.ss-mock__row--dim {
  color: #475569;
}

.ss-mock--styles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
}

.ss-mock__style {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--ss-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.5);
  color: #cbd5e1;
}

.ss-mock__style--active {
  border-color: rgba(110, 231, 183, 0.55);
  box-shadow: 0 0 0 1px rgba(110, 231, 183, 0.28);
}

.ss-mock__badge {
  font-size: 9px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.ss-mock__badge--active {
  color: #6ee7b7;
}

.ss-mock__badge--avail {
  color: #64748b;
}

.ss-mock--terminal {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #020617;
  padding: 12px 14px;
  color: #64748b;
}

.ss-mock--terminal .ss-mock__log-line {
  margin: 4px 0;
}

.ss-mock--terminal .ss-mock__time {
  color: #475569;
  margin-right: 6px;
}

.ss-mock--terminal .ss-mock__ok {
  color: #34d399;
}

.ss-mock--terminal .ss-mock__warn {
  color: #fbbf24;
}

.ss-mock--terminal .ss-mock__dim {
  color: #64748b;
}

/* Mock stagger reveal (product cards on scroll) */
.ss-mock[data-ss-stagger-rows]:not(.is-mock-started) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ss-mock[data-ss-stagger-rows].is-mock-started {
  opacity: 1;
  visibility: visible;
}

.ss-mock[data-ss-stagger-rows].is-mock-started > * {
  opacity: 0;
  visibility: hidden;
}

.ss-mock[data-ss-stagger-rows].is-mock-started > *.is-mock-item-visible {
  opacity: 1;
  visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  .ss-mock[data-ss-stagger-rows].is-mock-started > * {
    opacity: 1;
    visibility: visible;
  }
}

/* Product cards — pinned horizontal scroll (desktop) */
.ss-products-suite {
  position: relative;
  background: var(--ss-bg);
  overflow-x: clip;
  max-width: 100%;
}

.ss-products-suite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(98, 121, 230, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ss-products-pin {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.ss-products-pin::before {
  display: none;
}

.ss-products-pin .ss-products {
  z-index: 1;
}

.ss-products {
  padding: 96px 0;
}

.ss-products.ss-products--pin {
  padding-top: 0;
}

.ss-products-intro {
  position: relative;
  z-index: 1;
  padding: 96px 0 48px;
  background: transparent;
}

.ss-products-intro .ss-section-head {
  margin-bottom: 24px;
}

.ss-products-intro .ss-lead {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .ss-products-intro {
    padding: 80px 0 48px;
  }
}

.ss-products__head {
  margin-bottom: 0;
}

.ss-products__head .ss-section-head {
  margin-bottom: 24px;
}

.ss-products__head .ss-lead {
  margin-bottom: 28px;
}

.ss-products__rails {
  width: 100%;
  margin-top: 0;
}

.ss-products__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ss-products__track {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  gap: 12px;
  will-change: transform;
}

@media (min-width: 1024px) {
  .ss-products-pin {
    height: var(--ss-products-pin-h, 480vh);
  }

  .ss-products--pin {
    position: sticky;
    top: var(--ss-nav-h);
    height: calc(100vh - var(--ss-nav-h));
    height: calc(100svh - var(--ss-nav-h));
    max-height: calc(100vh - var(--ss-nav-h));
    max-height: calc(100svh - var(--ss-nav-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .ss-products.ss-products--pin {
    padding-top: 0;
    padding-bottom: 0;
  }

  .ss-products__rails {
    flex: 0 0 auto;
    width: 100%;
    display: block;
    margin-top: calc(-1 * var(--ss-products-video-offset, 0px));
    padding-left: 0;
    padding-right: 0;
  }

  .ss-products__track {
    padding-left: clamp(12rem, calc(50vw - 17rem), 42rem);
    padding-right: clamp(12rem, calc(50vw - 17rem), 42rem);
    box-sizing: border-box;
    gap: 20px;
    align-items: stretch;
  }

  .ss-products__viewport {
    -webkit-mask-image: linear-gradient(
      to right,
      #000 0%,
      #000 calc(100% - 9rem),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      #000 0%,
      #000 calc(100% - 9rem),
      transparent 100%
    );
  }

  .ss-products-pin.is-revealed .ss-products__viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .ss-products__track .ss-card--product {
    flex: 0 0 clamp(34rem, 40vw, 54rem);
    width: clamp(34rem, 40vw, 54rem);
    max-width: 54rem;
    min-height: 0;
  }

  .ss-products__track .ss-card--product-studio {
    display: flex;
    flex-direction: column;
  }

  .ss-products__track .ss-card--product__copy {
    height: var(--ss-product-card-copy-h, 212px);
    padding: 40px 40px 48px;
    overflow: hidden;
  }

  .ss-products__track .ss-card__mock--studio {
    position: relative;
    flex: none;
    min-height: 0;
  }

  .ss-products__track .ss-product-studio {
    position: relative;
    width: 100%;
    aspect-ratio: var(--ss-product-video-ar, 1.6);
    max-height: var(--ss-products-video-max-h, 480px);
  }

  .ss-products__track .ss-card--product .ss-h3 {
    font-size: clamp(1.1875rem, 1.55vw, 1.5rem);
    line-height: 1.15;
    white-space: nowrap;
  }

  .ss-card--product__copy {
    padding: 40px 40px 48px;
  }
}

@media (min-width: 1536px) {
  .ss-products__track .ss-card--product {
    flex: 0 0 clamp(36rem, 42vw, 58rem);
    width: clamp(36rem, 42vw, 58rem);
    max-width: 58rem;
    min-height: 0;
  }

  .ss-products__track .ss-card--product .ss-h3 {
    font-size: clamp(1.75rem, 3.2vw, 2.375rem);
    line-height: 1.2;
    white-space: normal;
  }
}

@media (max-width: 1023px) {
  .ss-products-pin {
    height: auto;
  }

  .ss-products--pin {
    position: relative;
    top: auto;
    min-height: 0;
    display: block;
  }

  .ss-products__viewport {
    overflow: visible;
  }

  .ss-products__track {
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--ss-max);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .ss-products__track .ss-card--product {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }

  .ss-card--product-studio .ss-product-studio {
    flex: none;
    height: auto;
    aspect-ratio: var(--ss-product-video-ar, 1.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-products-pin {
    height: auto !important;
  }

  .ss-products--pin {
    position: relative !important;
    top: auto !important;
    min-height: 0 !important;
    display: block !important;
  }

  .ss-products__viewport {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

/* Media-only bento (text lives outside the card) */
.ss-media-card {
  border-radius: var(--ss-radius-xl);
  background: var(--ss-surface);
  border: 1px solid rgba(98, 121, 230, 0.18);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: 560px;
  box-shadow: 0 0 60px rgba(98, 121, 230, 0.1);
}

.ss-media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-split-section {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .ss-split-section {
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
  }
  .ss-split-section--reverse { direction: rtl; }
  .ss-split-section--reverse > * { direction: ltr; }
}

/* Logo carousel — full width, no bento box */
.ss-logos {
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--ss-border-subtle);
}

.ss-logos__label {
  text-align: center;
  font-size: 13px;
  color: var(--ss-text-soft);
  margin: 0 0 24px;
}

/* Logo carousel — pure white marks site-wide */
.logo-carousel-item {
  opacity: 1;
}

.logo-carousel-item img,
.logo-carousel-item svg {
  filter: brightness(0) invert(1);
}

.ss-logos .logo-carousel {
  overflow: hidden;
  position: relative;
}

.ss-logos .logo-carousel::before,
.ss-logos .logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ss-logos .logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.ss-logos .logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.ss-logos .logo-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.ss-logos .logo-carousel-track {
  display: flex;
  gap: 6rem;
  width: max-content;
  animation: ss-scroll-logos 60s linear infinite;
  will-change: transform;
}

.ss-logos .logo-carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 1rem;
  opacity: 1;
}

.ss-logos .logo-carousel-item img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

@media (max-width: 767px) {
  .ss-logos .logo-carousel-track { gap: 2rem; }
  .ss-logos .logo-carousel-item { height: 56px; padding: 0 0.5rem; }
  .ss-logos .logo-carousel-item img {
    max-height: 36px;
    max-width: 96px;
  }
}

/* Testimonial & text-only blocks */
.ss-quote__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  color: #facc15;
}

.ss-quote__stars svg {
  width: 20px;
  height: 20px;
  fill: #facc15;
  color: #facc15;
}

.ss-quote__stars svg path {
  fill: #facc15 !important;
}

.ss-section--featured-quote .ss-quote {
  max-width: min(92vw, 920px);
}

/* In-view fade-up (motion-primitives-style) */
[data-ss-in-view-item] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-ss-in-view-item].is-in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ss-quote__body {
  margin: 0 0 20px;
}

@media (prefers-reduced-motion: reduce) {
  [data-ss-in-view-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.ss-quote {
  text-align: center;
  max-width: min(92vw, 920px);
  margin: 0 auto;
  border: none;
  padding: 0;
}

.ss-quote__text {
  font-size: var(--ss-quote-text-size);
  font-weight: var(--ss-quote-text-weight);
  letter-spacing: var(--ss-quote-text-tracking);
  line-height: var(--ss-quote-text-line-height);
  margin: 0 0 20px;
}

/* Trial signup card — compact quote, not homepage featured size */
.ss-trial-page .ss-quote--trial .ss-quote__text {
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.55;
  margin: 0 0 0.875rem;
  color: var(--ss-text);
}

.ss-trial-page .ss-quote--trial .ss-quote__author {
  font-size: 0.8125rem;
}

.ss-quote__author {
  font-size: var(--ss-quote-author-size);
  color: var(--ss-text-muted);
}

.ss-quote__author-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ss-quote__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--ss-border);
  flex-shrink: 0;
}

/* Plain CTA — bold text, no box (matches index.html final CTA) */
.ss-cta-plain {
  text-align: center;
  padding: 96px 0 112px;
  position: relative;
}

.ss-cta-plain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(98, 121, 230, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ss-cta-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.5) 0%, rgba(24, 24, 27, 0.95) 100%);
  text-align: center;
}

.ss-cta-card .ss-h2,
.ss-cta-card .ss-h2--xl {
  margin-bottom: 0.5rem;
}

.ss-cta-card__text,
.ss-cta-card .ss-lead {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ss-text-soft);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.ss-cta-card .ss-hero__cta {
  margin-top: 0;
}

.ss-cta-card .ss-hero__microcopy {
  margin-top: 0.75rem;
}

.ss-cta-section {
  padding: 64px 24px 80px;
}

.ss-cta-section .ss-wrap {
  max-width: 42rem;
}

.ss-cta-plain .ss-wrap {
  position: relative;
  z-index: 1;
}

.ss-cta-plain .ss-h2--xl {
  margin-bottom: 16px;
}

.ss-cta-plain .ss-lead {
  margin-bottom: 32px;
}

/* CTA exit — circle expands from Get started button */
.ss-cta-exit {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
}

.ss-section--glow-top {
  position: relative;
  overflow: hidden;
}

.ss-section--glow-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(98, 121, 230, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ss-section--glow-top > .ss-wrap {
  position: relative;
  z-index: 1;
}

.ss-cta-exit__circle {
  position: fixed;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ss-gradient);
  transform: translate(-50%, -50%) scale(0);
  will-change: transform;
}

.ss-cta-exit.is-active .ss-cta-exit__circle {
  transition: transform var(--ss-cta-exit-duration) var(--ss-cta-exit-easing);
  transform: translate(-50%, -50%) scale(var(--ss-exit-scale, 1));
}

@media (prefers-reduced-motion: reduce) {
  .ss-cta-exit {
    display: none;
  }
}

.ss-section-head {
  margin-bottom: 48px;
  max-width: 640px;
}

.ss-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 800px;
}

.ss-section-head--center .ss-lead {
  max-width: 58ch;
}

.ss-section-head--wide {
  max-width: none;
}

@media (min-width: 768px) {
  .ss-hero--live .ss-h1 {
    white-space: nowrap;
  }

  #how-it-works .ss-h2--display,
  #how-rosters-work .ss-h2--display,
  #who-is-for .ss-h2--display {
    white-space: nowrap;
  }
}

/* Parity blocks: homepage content styled via sections.css */
.ss-parity {
  width: 100%;
}

.ss-poc .ss-parity > section,
.ss-poc .ss-parity .how-it-works-container > section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.ss-poc .ss-parity .ss-section-head {
  margin-bottom: 56px;
}

.ss-poc .ss-parity .how-it-works-container .ss-section-head,
.ss-poc .ss-parity #how-live-work .ss-section-head,
.ss-poc .ss-parity #how-local-work .ss-section-head,
.ss-poc .ss-parity #how-wire-work .ss-section-head {
  max-width: none;
}

.ss-poc .ss-parity .how-it-works-container .ss-lead,
.ss-poc .ss-parity #how-live-work .ss-lead,
.ss-poc .ss-parity #how-local-work .ss-lead,
.ss-poc .ss-parity #how-wire-work .ss-lead {
  max-width: 52ch;
}

.ss-poc .ss-parity .hiw-interactive-pin {
  margin-top: 16px;
}

.ss-poc .ss-parity .hiw-section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 1.5rem;
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .ss-poc .ss-parity .hiw-section-cta {
    gap: 16px;
  }
}

.ss-poc .ss-parity .hiw-section-cta .ss-btn-primary,
.ss-poc .ss-parity .hiw-section-cta .ss-btn-ghost {
  width: auto;
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .ss-poc .ss-parity .hiw-section-cta .ss-btn-ghost {
    display: none;
  }
}

.ss-poc .ss-parity .hiw-v2__gridfx {
  display: none;
}

.ss-poc .ss-parity .hiw-v2 {
  background: var(--ss-bg);
}

/* How it Works — click-to-switch (Screen Studio style), no scroll pin */
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"],
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] {
  min-height: 0;
  margin-top: 16px;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-interactive-sticky,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-interactive-sticky {
  position: relative;
  top: auto;
  min-height: 0;
  display: block;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-step,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step {
  border: none;
  border-bottom: none;
  border-radius: var(--ss-radius-sm);
  padding: 1.125rem 1.25rem;
  opacity: 1;
  background: transparent;
  transition: background 0.2s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-step-list,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step-list {
  gap: 6px;
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-step:not(.hiw-step--active),
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step:not(.hiw-step--active) {
  opacity: 1;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-step:not(.hiw-step--active):hover,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step:not(.hiw-step--active):hover {
  background: rgba(255, 255, 255, 0.06);
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-step--active,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step--active {
  background: rgba(255, 255, 255, 0.08);
  border: none;
}

/* Shared-media HIW (Live, Local, Wire) — plain steps + replay video */
.ss-poc .ss-parity .hiw-interactive-pin--shared-media[data-hiw-mode="sequence"] .hiw-step,
.ss-poc .ss-parity .hiw-interactive-pin--shared-media[data-hiw-mode="sequence"] .hiw-step:hover,
.ss-poc .ss-parity .hiw-interactive-pin--shared-media[data-hiw-mode="sequence"] .hiw-step:not(.hiw-step--active):hover,
.ss-poc .ss-parity .hiw-interactive-pin--shared-media[data-hiw-mode="sequence"] .hiw-step--active,
.ss-poc .ss-parity .hiw-interactive-pin--shared-media[data-hiw-mode="sequence"] .hiw-step--active:hover,
.ss-poc .ss-parity .hiw-interactive-pin--shared-media[data-hiw-mode="sequence"] .hiw-step:active,
.ss-poc .ss-parity .hiw-interactive-pin--shared-media[data-hiw-mode="sequence"] .hiw-step:focus {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transition: none !important;
  cursor: default !important;
  -webkit-tap-highlight-color: transparent;
}

.ss-poc .ss-parity .hiw-interactive-pin--shared-media .hiw-step__progress {
  display: none !important;
}

.ss-poc .ss-parity .hiw-interactive-pin--shared-media .hiw-code__app-crop--with-replay {
  position: relative;
}

.ss-poc .ss-parity .hiw-interactive-pin--shared-media .hiw-video-replay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(2, 6, 23, 0.35);
  cursor: pointer;
  border-radius: 0.75rem;
  transition: background 0.2s ease;
}

.ss-poc .ss-parity .hiw-interactive-pin--shared-media .hiw-video-replay[hidden] {
  display: none;
}

.ss-poc .ss-parity .hiw-interactive-pin--shared-media .hiw-video-replay svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.98);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.ss-poc .ss-parity .hiw-interactive-pin--shared-media .hiw-video-replay:hover {
  background: rgba(2, 6, 23, 0.45);
}

.ss-poc .ss-parity .hiw-interactive-pin--shared-media .hiw-video-replay:focus-visible {
  outline: 2px solid rgba(124, 138, 232, 0.6);
  outline-offset: 2px;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .grid.lg\:grid-cols-2,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .grid.lg\:grid-cols-2 {
  align-items: center;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-interactive-sticky[data-hiw-active-step="3"] .grid,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-interactive-sticky[data-hiw-active-step="3"] .grid {
  align-items: center;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-interactive-sticky[data-hiw-active-step="3"] .grid > .flex.flex-col,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-interactive-sticky[data-hiw-active-step="3"] .grid > .flex.flex-col {
  align-self: center;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step {
  position: relative;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step__progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #6279e6 0%, #3842ba 100%);
  transform-origin: top center;
  transform: scale3d(1, 0, 1);
  border-radius: 0;
  pointer-events: none;
  will-change: transform;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step:not(.hiw-step--active) .hiw-step__progress {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step__progress {
    display: none;
  }
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-step__kicker,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step__kicker,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-step__body,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-step__body {
  display: block;
}

/* How it Works — click mode: screenshots only, no mock window chrome */
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code.hiw-code--bleed,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code.hiw-code--bleed,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code.hiw-code--caption-text,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code.hiw-code--caption-text {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  width: 100%;
  aspect-ratio: auto;
  height: auto;
  position: relative;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code__chrome,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code__chrome {
  display: none !important;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code__pre,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code__pre,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code.hiw-code--bleed .hiw-code__pre,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code.hiw-code--bleed .hiw-code__pre {
  position: static;
  inset: auto;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow: visible;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code__app-crop,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code__app-crop,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code__review-crop,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code__review-crop {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0;
  aspect-ratio: auto;
  overflow: visible;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code__app-crop-image,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code__app-crop-image,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code__review-crop-image,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code__review-crop-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center center;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code__app-crop--video,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code__app-crop--video {
  --hiw-app-crop-visible: 1;
  aspect-ratio: 1560 / 1080;
  overflow: visible;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code__app-crop-video,
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code__app-crop-video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center center;
}

.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .hiw-code.hiw-code--caption-text .hiw-code__caption-demo:not([hidden]),
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .hiw-code.hiw-code--caption-text .hiw-code__caption-demo:not([hidden]) {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  overflow: visible;
}

@media (max-width: 767px) {
.ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="click"] .grid,
  .ss-poc .ss-parity .hiw-interactive-pin[data-hiw-mode="sequence"] .grid {
    gap: 24px;
  }

  .ss-poc .ss-parity .how-it-works-container .hiw-interactive-pin + .flex.justify-center {
    margin-top: 2.5rem;
    padding-top: 0.25rem;
  }
}

.ss-scroll-reveal__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding-bottom: 8px;
}

.ss-parity + .ss-parity,
.ss-products-suite + .ss-parity,
.ss-products-pin + .ss-parity,
.ss-parity + .ss-products-suite,
.ss-parity + .ss-products-pin {
  margin-top: 0;
}

/* Sports tags marquee */
.ss-poc .sports-tags-section {
  overflow: hidden;
  border-top: 1px solid var(--ss-border-subtle);
}

.ss-poc .sports-tags-row.mb-4 { margin-bottom: 16px; }
.ss-poc .sports-tags-row.mt-4 { margin-top: 16px; }

/* Screen Studio–style display type block */
.ss-type-block {
  padding: 96px 0 112px;
}

.ss-type-block__inner {
  max-width: none;
  width: 100%;
  text-align: left;
}

.ss-wrap.ss-type-block__inner {
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .ss-wrap.ss-type-block__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1024px) {
  .ss-wrap.ss-type-block__inner {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.ss-type-block__headline {
  margin: 0;
  max-width: none;
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ss-text);
}

.ss-type-block__body {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  max-width: 42em;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.ss-type-block__body--display {
  max-width: none;
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: hsla(0, 0%, 100%, 0.62);
}

.ss-type-block__body + .ss-type-block__body {
  margin-top: 1.4em;
}

.ss-type-block__body-strong {
  color: var(--ss-text);
}

.ss-type-block__body-muted {
  color: hsla(0, 0%, 100%, 0.45);
}

.ss-type-block__body--display .ss-type-block__body-strong {
  color: var(--ss-text);
}

/* Scroll reveal (matches homepage word-by-word fade) */
.ss-scroll-reveal {
  height: 300vh;
  position: relative;
}

.ss-scroll-reveal__section {
  position: sticky;
  top: var(--ss-nav-h);
  height: calc(100vh - var(--ss-nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ss-scroll-reveal__section.ss-type-block {
  padding: 0;
}

.ss-scroll-reveal__spacer {
  height: 200vh;
}

.ss-scroll-reveal__text .reveal-word {
  display: inline;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.ss-scroll-reveal__text .reveal-word.gradient-word {
  transition: none;
  font-weight: 700;
}

.ss-scroll-reveal__text .highlight {
  font-weight: 700;
}

.ss-scroll-reveal__text .ss-type-block__headline {
  color: inherit;
}

.ss-scroll-reveal__text .ss-type-block__body--display {
  color: inherit;
}

@media (max-width: 767px) {
  .ss-scroll-reveal {
    height: auto;
  }

  .ss-scroll-reveal__section {
    position: relative;
    top: 0;
    height: auto;
    min-height: auto;
    padding: 64px 0 80px;
    align-items: flex-start;
  }

  .ss-scroll-reveal__spacer {
    display: none;
    height: 0;
  }

  .ss-scroll-reveal__text .reveal-word {
    color: rgba(255, 255, 255, 0.96) !important;
    opacity: 1 !important;
    font-weight: 600 !important;
  }

  .ss-scroll-reveal__text .reveal-word.gradient-word {
    background: linear-gradient(135deg, #6279e6 0%, #3842ba 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    opacity: 1 !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 640px) {
  .ss-type-block {
    padding: 64px 0 80px;
  }

  .ss-type-block__headline {
    letter-spacing: -0.025em;
    line-height: 1.15;
  }
}

/* ── macOS section ── */
.ss-macos {
  text-align: center;
  color: var(--ss-text);
  background: url("/images/macos/golden-dark-wallpaper.png") center / cover no-repeat;
  border-top: none;
  min-height: min(72vh, 720px);
  padding: 96px 0 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.ss-macos__layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ss-macos .ss-h2,
.ss-macos .ss-lead {
  color: var(--ss-text);
}

.ss-macos .ss-section-head {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 32px;
}

.ss-macos .ss-dock-wrap {
  display: flex;
  justify-content: center;
  margin-top: auto;
  flex-shrink: 0;
  padding: 40px 0 24px;
  overflow: visible;
}

.ss-dock {
  --ss-dock-icon: 112px;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  padding: 28px 16px 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 40px rgba(0, 0, 0, 0.35);
  overflow: visible;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .ss-dock {
    background: rgba(24, 24, 28, 0.92);
  }
}

.ss-dock__item {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: var(--ss-dock-icon);
  height: var(--ss-dock-icon);
  padding: 0;
  border: none;
  background: transparent;
  cursor: default;
  overflow: visible;
}

.ss-dock__item--link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.ss-dock__item--active.ss-dock__item--link {
  z-index: 20;
}

.ss-dock__icon {
  display: block;
  width: var(--ss-dock-icon);
  height: var(--ss-dock-icon);
  flex-shrink: 0;
  transform: scale(1);
  transform-origin: 50% 100%;
  will-change: transform;
}

.ss-dock .ss-dock__icon img {
  display: block;
  box-sizing: border-box;
  width: var(--ss-dock-icon);
  height: var(--ss-dock-icon);
  max-width: none;
  max-height: none;
  padding: 0;
  border-radius: 22%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Sideline aperture logo reads small inside its white tile — zoom it in */
.ss-dock__item--active .ss-dock__icon {
  overflow: hidden;
  border-radius: 22%;
}

.ss-dock__item--active .ss-dock__icon img {
  transform: scale(1.32);
}

.ss-dock__dot {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.ss-dock__title {
  position: absolute;
  left: 50%;
  bottom: calc(var(--ss-dock-icon) * 1.55 + 10px);
  transform: translateX(-50%);
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: rgba(0, 0, 0, 0.82);
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.ss-dock__item--active.ss-dock__item--link:hover .ss-dock__title,
.ss-dock__item--active.ss-dock__item--link:focus-visible .ss-dock__title {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-2px);
}

.ss-dock__item.is-bouncing .ss-dock__icon {
  animation: ss-dock-bounce 0.52s ease;
}

@keyframes ss-dock-bounce {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.08) translateY(-8px); }
  65% { transform: scale(1.02) translateY(-2px); }
}

@media (max-width: 640px) {
  .ss-macos {
    min-height: min(68vh, 560px);
    padding-top: 64px;
    overflow-x: clip;
  }

  .ss-macos .ss-dock-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 12px 16px;
    box-sizing: border-box;
  }

  .ss-dock {
    /* Fit 5 icons + gaps + dock padding inside the viewport */
    --ss-dock-icon: clamp(44px, calc((100vw - 52px) / 5.65), 58px);
    gap: 2px;
    padding: 16px 10px 8px;
    border-radius: 20px;
    max-width: calc(100vw - 24px);
    margin: 0 auto;
    box-sizing: border-box;
  }

  .ss-dock__title {
    display: none;
  }
}

@media (max-width: 380px) {
  .ss-dock {
    --ss-dock-icon: clamp(40px, calc((100vw - 44px) / 5.65), 50px);
    gap: 1px;
    padding: 14px 8px 7px;
    border-radius: 18px;
  }

  .ss-dock .ss-dock__icon img {
    border-radius: 20%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-dock__item.is-bouncing .ss-dock__icon {
    animation: none;
  }
}

/* Footer */
.ss-footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--ss-border-subtle);
}

.ss-footer__grid {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 48px 72px;
  align-items: start;
}

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

.ss-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.ss-footer__brand img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.ss-footer__brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ss-text);
}

.ss-footer__tagline {
  margin: 0;
  max-width: 240px;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ss-text-muted);
}

.ss-footer__bottom .ss-footer__copy {
  margin: 0 0 12px;
  max-width: 720px;
  font-size: 11px;
  line-height: 1.65;
  color: var(--ss-text-faint);
}

.ss-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 12px;
  padding: 14px 28px;
  border-radius: var(--ss-btn-radius);
  background: var(--ss-gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(98, 121, 230, 0.25);
}

.ss-footer__cta:hover {
  transform: scale(1.02);
  opacity: 0.95;
  box-shadow: 0 6px 32px rgba(98, 121, 230, 0.35);
}

.ss-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 48px;
}

.ss-footer__heading {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.ss-footer__heading--spaced {
  margin-top: 22px;
}

.ss-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ss-footer__list a,
.ss-footer__list .ss-footer__link-btn {
  display: inline-block;
  color: var(--ss-text-soft);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.15s;
}

.ss-footer__list a:hover,
.ss-footer__list .ss-footer__link-btn:hover {
  color: var(--ss-text);
}

.ss-footer__social {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 18px;
}

.ss-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ss-surface);
  border: 1px solid var(--ss-border);
  color: var(--ss-text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ss-footer__social-link:hover {
  background: #fff;
  border-color: #fff;
  color: #0b0b0f;
}

.ss-footer__social-link svg {
  width: 18px;
  height: 18px;
}

.ss-footer__bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--ss-border-subtle);
}

.ss-footer__disclaimer {
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
  color: var(--ss-text-faint);
  max-width: 720px;
}

.ss-footer__disclaimer a,
.ss-footer__legal-link {
  color: var(--ss-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ss-footer__disclaimer a:hover,
.ss-footer__legal-link:hover {
  color: var(--ss-text);
}

@media (max-width: 900px) {
  .ss-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ss-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
}

@media (max-width: 540px) {
  .ss-footer {
    padding: 40px 0 32px;
  }

  .ss-footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ss-footer__heading--spaced {
    margin-top: 24px;
  }

  .ss-footer__bottom {
    margin-top: 36px;
    padding-top: 24px;
  }
}

/* ── Roster Manager (product page) ── */
.ss-hero--product {
  padding-bottom: 48px;
}

.ss-btn-ghost--lg {
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 600;
  gap: 8px;
}

.ss-hero__media--static img {
  width: 100%;
  height: auto;
  border-radius: var(--ss-radius);
  border: 1px solid var(--ss-border-subtle);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.ss-hero--live .ss-hero__media--static img {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.ss-hero__media--video {
  max-width: min(96vw, 1100px);
}

.ss-hero__media--video .ss-hero__video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
}

.ss-hero__stats {
  width: 100%;
  max-width: min(96vw, 1100px);
  margin: 28px auto 0;
}

.ss-hero__stats .ss-stats-row {
  width: 100%;
}

.ss-roster-calendar {
  position: relative;
}

.ss-roster-calendar__headline {
  text-align: left;
  max-width: none;
  margin: 0 0 48px;
}

.ss-roster-calendar__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .ss-roster-calendar__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
  }
}

.ss-roster-calendar__copy .ss-lead {
  text-align: left;
  margin-bottom: 24px;
}

.ss-roster-calendar__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ss-roster-calendar__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ss-text-muted);
}

.ss-roster-calendar__list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #4ade80;
}

.ss-roster-calendar__list a {
  color: var(--ss-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ss-roster-calendar__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Video modal */
html.is-video-modal-open {
  overflow: hidden;
}

.ss-video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ss-video-modal[hidden] {
  display: none;
}

.ss-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.ss-video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
}

.ss-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--ss-surface);
  color: var(--ss-text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.ss-video-modal__close:hover {
  background: var(--ss-surface-hover);
}

.ss-video-modal__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--ss-radius);
  overflow: hidden;
  border: 1px solid var(--ss-border);
  background: #000;
}

.ss-video-modal__frame iframe,
.ss-video-modal__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

.ss-btn__play-icon {
  flex-shrink: 0;
  transform: translateX(1px);
}

/* ── AI Captioning (product page) ── */
.ss-card__icon--step {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ss-card__desc a {
  color: var(--ss-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ss-card--stat-highlight {
  border-color: rgba(98, 121, 230, 0.45);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(98, 121, 230, 0.14) 0%, transparent 60%),
    var(--ss-surface);
}

.ss-sports-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}

.ss-sports-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: var(--ss-radius-sm);
  background: var(--ss-surface);
  border: 1px solid var(--ss-border-subtle);
  font-size: 14px;
  font-weight: 600;
  color: var(--ss-text);
}

/* ── Sideline Live (product page) ── */
.ss-live-intro {
  position: relative;
  overflow: hidden;
}

.ss-live-intro::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: url("/images/live.webp") center / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.03);
  z-index: 0;
}

.ss-live-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1;
}

.ss-live-intro .ss-wrap.ss-type-block__inner {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: left;
}

.ss-live-intro__cta {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.ss-live-daypass {
  margin-top: 32px;
  padding: 32px;
}

.ss-live-daypass__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .ss-live-daypass__grid {
    grid-template-columns: 2fr 1fr;
  }
}

.ss-live-daypass__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ss-live-daypass__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--ss-text-muted);
  line-height: 1.5;
}

.ss-live-daypass__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234ade80'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ss-live-daypass__cta {
  text-align: center;
}

@media (min-width: 768px) {
  .ss-live-daypass__cta {
    text-align: right;
  }
}

.ss-live-daypass__price {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.ss-live-daypass__note {
  font-size: 14px;
  color: var(--ss-text-muted);
  margin-bottom: 24px;
}

.ss-live-storage {
  margin-top: 48px;
}

.ss-live-storage__grid {
  margin-top: 32px;
}

.ss-live-storage__card {
  padding: 24px;
}

.ss-live-storage__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ss-live-storage__amount {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ss-live-storage__label {
  font-size: 13px;
  color: var(--ss-text-muted);
  margin: 0;
}

.ss-live-storage__price-col {
  text-align: right;
  flex-shrink: 0;
}

.ss-live-storage__price {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.ss-live-storage__period {
  font-size: 13px;
  color: var(--ss-text-muted);
  margin: 4px 0 0;
}

/* ── Sideline Local (product page) ── */
.ss-hero__platform-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 28px;
}

.ss-hero__platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ss-surface);
  border: 1px solid var(--ss-border-subtle);
  font-size: 13px;
  font-weight: 600;
  color: var(--ss-text-muted);
}

.ss-hero__platform-pill svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

.ss-pricing-card__details-link {
  margin-top: 16px;
  text-align: center;
}

.ss-pricing-card__details-link a {
  font-size: 14px;
  color: var(--ss-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ss-pricing-card__details-link a:hover {
  color: var(--ss-text);
}

@media (min-width: 768px) {
  .ss-hero--local .ss-h1 {
    white-space: nowrap;
  }

  .ss-hero--wire .ss-h1 {
    white-space: nowrap;
  }

  #how-it-works .ss-h2--display,
  #how-rosters-work .ss-h2--display {
    white-space: nowrap;
  }
}

/* Global keyboard focus — WCAG 2.4.7 */
.ss-poc :focus {
  outline: none;
}

.ss-poc :focus-visible {
  outline: 2px solid var(--ss-focus-ring);
  outline-offset: 2px;
}

.ss-nav__mobile-btn:focus-visible,
.ss-mega__trigger:focus-visible,
.ss-dropdown__trigger:focus-visible,
.ss-mobile-menu__accordion:focus-visible,
.ss-btn-primary:focus-visible,
.ss-btn-ghost:focus-visible,
.ss-nav__cta:focus-visible,
.ss-nav__login:focus-visible,
.ss-nav__plain-link:focus-visible,
.ss-footer__social-link:focus-visible,
.billing-toggle-btn:focus-visible {
  outline: 2px solid var(--ss-focus-ring);
  outline-offset: 2px;
}
