:root {
  color-scheme: dark;
  --bg: #060708;
  --bg-soft: #090a0c;
  --surface: #0e1014;
  --surface-raised: #12151a;
  --line: #20242c;
  --line-soft: #171a20;
  --text: #f2f3f5;
  --muted: #a7adb8;
  --faint: #737985;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --blue: #3b82f6;
  --blue-soft: rgba(59, 130, 246, 0.12);
  --discord: #5865f2;
  --discord-hover: #4752c4;
  --max: 1280px;
}

body.profile-theme-developer {
  --accent: var(--blue);
  --accent-hover: #2563eb;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 340px),
    var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI Variable", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

:target,
:focus {
  scroll-margin-top: 72px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 150ms ease;
}

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

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

::selection {
  background: rgba(245, 158, 11, 0.28);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--bg);
  border-radius: 999px;
  background: #2b3038;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(740px, calc(100% - 48px));
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
  padding: 0;
  contain: paint;
}

.hero-radial,
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-radial {
  background: radial-gradient(ellipse 70% 50% at 30% 50%, rgba(255, 106, 0, 0.035) 0%, transparent 70%);
}

.hero-noise {
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.hero-shell {
  position: relative;
  z-index: 50;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 20px;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 672px;
}

.section-header span,
.final-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

.brand-hero {
  color: #fffdfa;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 11vw, 132px);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.92;
  margin: 0 0 40px;
  max-width: 672px;
  white-space: nowrap;
}

.brand-hero > span {
  display: block;
}

.accent-text {
  color: var(--accent);
}

.lead {
  max-width: 576px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.beta-status {
  width: min(462px, 100%);
  display: flex;
  align-items: stretch;
  margin: 0 0 34px;
}

.beta-divider {
  flex: 0 0 1px;
  align-self: stretch;
  background: var(--line);
}

.beta-count strong {
  display: block;
  color: var(--accent);
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.84;
  transform: translateX(-5px);
}

.beta-count strong.is-loading {
  opacity: 0;
}

.beta-count {
  flex: 0 0 112px;
  padding-right: 20px;
  text-align: center;
}

.beta-copy {
  min-width: 0;
  margin-left: 22px;
  padding-top: 2px;
}

.beta-copy span {
  display: block;
  color: var(--accent);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.beta-copy strong {
  display: block;
  margin-top: 8px;
  color: #fffdfa;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.18;
}

.beta-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.beta-count span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hero-signup {
  width: min(462px, 100%);
  pointer-events: auto;
}

.hero-signup .signup-card {
  margin-top: 0;
  padding: 18px 20px;
}

.hero-signup .signup-head {
  margin-bottom: 16px;
}

.hero-signup .field-label {
  margin: 13px 0 8px;
}

.hero-signup .email-label {
  margin-top: 16px;
}

.hero-signup .profile-segment button {
  min-height: 42px;
}

.hero-signup input[name="email"] {
  min-height: 44px;
}

.hero-signup .field-error {
  min-height: 12px;
  margin-top: 6px;
  font-size: 11px;
}

.hero-signup .primary-action {
  min-height: 44px;
  margin-top: 6px;
}

.hero-signup .quiet-note {
  margin-top: 12px;
}

@media (min-width: 640px) {
  .hero-shell {
    padding: 64px 24px;
  }

  .lead {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .hero-shell {
    padding: 80px 40px;
  }

  .lead {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .hero-shell {
    padding: 0 64px;
  }
}

@media (min-width: 1280px) {
  .hero-shell {
    padding: 0 96px;
  }
}

.signup-card {
  width: min(462px, 100%);
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 16, 20, 0.88);
  padding: 20px;
}

.signup-card.success {
  display: grid;
  gap: 12px;
}

.role-card {
  padding-bottom: 18px;
}

.signup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.signup-head > span {
  flex: 0 0 auto;
}

.signup-head strong {
  color: var(--text);
  font-weight: 680;
}

.signup-head .waitlist-count {
  display: block;
  flex: 1 1 170px;
  min-width: 0;
  max-width: 250px;
  color: var(--text);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.35;
  text-align: right;
  overflow-wrap: anywhere;
}

.field-label {
  display: block;
  margin: 16px 0 8px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-label {
  margin-top: 18px;
}

.signup-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.profile-segment,
.audience-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.profile-segment button,
.audience-tabs button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #08090b;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.1;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.profile-segment button:hover {
  background: #08090b;
  color: var(--text);
}

.profile-segment button[data-profile="creative"]:hover {
  border-color: rgba(245, 158, 11, 0.76);
}

.profile-segment button[data-profile="developer"]:hover {
  border-color: rgba(59, 130, 246, 0.78);
}

.audience-tabs button:hover {
  border-color: rgba(245, 158, 11, 0.42);
  color: var(--text);
}

.audience-tabs button[data-audience="developers"]:hover {
  border-color: rgba(59, 130, 246, 0.42);
}

.profile-segment button.active,
.audience-tabs button.active {
  border-color: rgba(245, 158, 11, 0.74);
  background: rgba(245, 158, 11, 0.12);
  color: var(--text);
}

.profile-segment button.active.developer,
.audience-tabs button.active.developer {
  border-color: rgba(59, 130, 246, 0.78);
  background: var(--blue-soft);
}

input[name="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #08090b;
  color: var(--text);
  outline: none;
  padding: 0 14px;
  font-size: 15px;
}

input[name="email"]::placeholder {
  color: #777d88;
}

input[name="email"]:focus {
  border-color: rgba(245, 158, 11, 0.66);
}

input[name="email"][aria-invalid="true"] {
  border-color: rgba(252, 165, 165, 0.9);
}

input[name="email"]:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

.profile-creative input[name="email"] {
  border-color: rgba(245, 158, 11, 0.72);
}

.profile-creative input[name="email"]:focus {
  border-color: rgba(245, 158, 11, 0.9);
}

.profile-creative input[name="email"]:focus-visible {
  outline-color: var(--accent);
}

.profile-developer input[name="email"] {
  border-color: rgba(59, 130, 246, 0.76);
}

.profile-developer input[name="email"]:focus {
  border-color: rgba(59, 130, 246, 0.95);
}

.profile-developer input[name="email"]:focus-visible {
  outline-color: var(--blue);
}

.field-error {
  min-height: 18px;
  margin: 7px 0 0;
  color: #fca5a5;
  font-size: 12px;
  font-weight: 650;
}

.primary-action {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #060708;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.1;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.primary-action:hover {
  background: var(--accent-hover);
}

.discord-action {
  background: var(--discord);
  color: #ffffff;
}

.discord-action:hover {
  background: var(--discord-hover);
  color: #ffffff;
}

.discord-action:focus-visible {
  outline-color: color-mix(in srgb, var(--discord) 70%, #ffffff);
}

.discord-action .discord-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.primary-action:active {
  transform: translateY(1px);
}

.signup-card .primary-action {
  width: 100%;
  margin-top: 4px;
}

.quiet-note {
  margin: 13px 0 0;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.5;
}

.success h2 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-mosaic {
  position: absolute;
  inset-block: 0;
  left: 50%;
  right: -14vw;
  z-index: 10;
  height: 100%;
  min-height: 640px;
  display: flex;
  gap: 20px;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

.hero-mosaic-compact {
  position: relative;
  display: none;
  width: 100%;
  max-width: 576px;
  height: 520px;
  margin-top: 32px;
  gap: 12px;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 86%, transparent);
  mask-image: linear-gradient(180deg, #000 0%, #000 86%, transparent);
}

.hero-mosaic-scrim,
.hero-mosaic-fade,
.hero-mosaic-compact-scrim,
.hero-mosaic-compact-fade {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-mosaic-scrim {
  background: transparent;
}

.hero-mosaic-fade {
  background: transparent;
}

.hero-mosaic-compact-scrim {
  background: transparent;
}

.hero-mosaic-compact-fade {
  background: transparent;
}

.hero-marquee-column {
  display: flex;
  flex: 0 0 260px;
  flex-direction: column;
  gap: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  contain: layout;
}

.hero-marquee-column--compact {
  flex: 1 1 0;
  min-width: 0;
}

.hero-marquee-set {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

.hero-marquee-up {
  animation: hero-marquee-up 58s linear infinite;
}

.hero-marquee-down {
  animation: hero-marquee-down 58s linear infinite;
}


@media (prefers-reduced-motion: reduce) {
  .hero-marquee-up,
  .hero-marquee-down,
  .hero-marquee-force .hero-marquee-up,
  .hero-marquee-force .hero-marquee-down {
    animation: none !important;
    transform: none !important;
  }
}

.hero-marquee-force.is-js-marquee .hero-marquee-up,
.hero-marquee-force.is-js-marquee .hero-marquee-down {
  animation: none !important;
}

.hero-marquee-offset-lg {
  margin-top: -200px;
}

.hero-marquee-offset-sm {
  margin-top: -100px;
}

.hero-card {
  position: relative;
  width: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(52, 58, 68, 0.12);
  border-radius: 26px;
  background: none;
  box-shadow: none;
  transition: transform 500ms ease;
}

.hero-card:hover {
  transform: scale(1.015);
}

.hero-card--compact {
  width: 100%;
  border-radius: 18px;
}

.hero-card--compact .hero-card-overlay {
  display: none;
}

.hero-card-c0-0 {
  height: 340px;
}

.hero-card-c0-1 {
  height: 300px;
}

.hero-card-c0-2 {
  height: 370px;
}

.hero-card-c1-0 {
  height: 390px;
}

.hero-card-c1-1 {
  height: 330px;
}

.hero-card-c1-2 {
  height: 360px;
}

.hero-card-c2-0 {
  height: 230px;
}

.hero-card-c2-1 {
  height: 350px;
}

.hero-card-c2-2 {
  height: 310px;
}

.hero-card--compact.hero-card-c0-0 {
  height: 320px;
}

.hero-card--compact.hero-card-c0-1 {
  height: 270px;
}

.hero-card--compact.hero-card-c0-2 {
  height: 300px;
}

.hero-card--compact.hero-card-c1-0 {
  height: 300px;
}

.hero-card--compact.hero-card-c1-1 {
  height: 340px;
}

.hero-card--compact.hero-card-c1-2 {
  height: 270px;
}

.hero-card--compact.hero-card-c2-0 {
  height: 280px;
}

.hero-card--compact.hero-card-c2-1 {
  height: 315px;
}

.hero-card--compact.hero-card-c2-2 {
  height: 295px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  filter: brightness(0.58) saturate(0.82) contrast(0.96);
}

.hero-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(6,7,8,0.44), rgba(6,7,8,0.12), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.hero-card:hover .hero-card-overlay {
  opacity: 1;
}

.hero-card-title {
  margin: 0;
  color: #fffdfa;
  font-size: 14px;
  font-weight: 500;
}

.hero-card-artist {
  margin: 0;
  color: #a4abb6;
  font-size: 12px;
}

@keyframes hero-marquee-up {
  from {
    transform: translate3d(0, 0, 0);
  }

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

@keyframes hero-marquee-down {
  from {
    transform: translate3d(0, -50%, 0);
  }

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

.section {
  border-bottom: 1px solid var(--line-soft);
  padding: 104px 0;
}

.section.compact {
  padding: 92px 0;
}

.section-header {
  max-width: 760px;
  margin: 0 0 48px;
}

.section-header.centered {
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2 {
  margin: 14px 0 0;
  color: #fffdfa;
  font-size: 42px;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-header p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.012);
  padding: 24px;
  transition: border-color 150ms ease, background 150ms ease;
}

.service-grid article:hover {
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.profile-theme-developer .service-grid article:hover {
  border-color: rgba(59, 130, 246, 0.24);
}

.service-grid article > div {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.07);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.profile-theme-developer .service-grid article > div {
  border-color: rgba(59, 130, 246, 0.22);
  background: rgba(59, 130, 246, 0.08);
}

.service-grid h3 {
  margin: 28px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.25;
}

.service-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.audience-tabs {
  width: min(430px, 100%);
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 6px;
}

.audience-tabs button {
  border-color: transparent;
  background: transparent;
}

.audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  padding: 34px;
}

.audience-panel > div,
.audience-panel figure {
  min-width: 0;
}

.audience-panel h3 {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1.15;
}

.audience-panel ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.audience-panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.audience-panel li span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(245, 158, 11, 0.7);
  border-radius: 6px;
  color: #f59e0b;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.audience-panel li svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.6;
}

.audience-panel.developer li span {
  border-color: rgba(59, 130, 246, 0.7);
  color: var(--blue);
}

.audience-panel figure {
  aspect-ratio: 16 / 10;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #0a0c10;
}

.audience-panel img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.service-grid article {
  min-height: 244px;
}

.faq-section {
  padding-bottom: 88px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: border-color 150ms ease, background 150ms ease;
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.18);
  background: var(--surface-raised);
}

.profile-theme-developer .faq-item:hover {
  border-color: rgba(59, 130, 246, 0.22);
}

.profile-theme-developer .faq-item.open {
  border-color: rgba(59, 130, 246, 0.26);
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}

.faq-item button svg {
  color: var(--muted);
  transition: transform 150ms ease;
}

.faq-item.open button svg {
  transform: rotate(180deg);
}

.faq-item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 170ms ease;
}

.faq-item.open > div {
  grid-template-rows: 1fr;
}

.faq-item p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.open p {
  padding-bottom: 20px;
}

.final-cta {
  border-bottom: 1px solid var(--line-soft);
  padding: 64px 0 76px;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-grid h2 {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--text);
  font-size: 34px;
  line-height: 1.1;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
  color: var(--faint);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.site-footer a:hover {
  color: var(--accent);
}

.scroll-cue {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(14, 16, 20, 0.84);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.scroll-cue.to-top svg {
  transform: rotate(180deg);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(3, 4, 5, 0.72);
  padding: 24px;
}

.waitlist-modal {
  position: relative;
  width: min(460px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0d10;
  padding: 28px;
}

.waitlist-modal form {
  margin-top: 22px;
}

.waitlist-modal h2 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1.08;
}

.waitlist-modal p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.modal-kicker {
  color: var(--accent) !important;
  font-size: 11px !important;
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.modal-close:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.success-modal {
  display: grid;
  gap: 4px;
}

.success-modal .primary-action {
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 1023px) {
  .hero {
    align-items: flex-start;
    min-height: auto;
    padding: 64px 0 56px;
  }

  .hero-shell {
    width: min(var(--max), calc(100% - 48px));
    padding: 0;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-mosaic {
    display: none;
  }

  .hero-mosaic-compact {
    display: flex;
    height: clamp(560px, 72vh, 760px);
    max-width: none;
  }

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

  .audience-panel {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 721px) and (max-width: 1023px) {
  .hero-shell {
    display: grid;
    gap: 40px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-signup {
    width: min(520px, 100%);
  }
}

@media (max-width: 720px) {
  .container,
  .narrow,
  .site-footer {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero-shell {
    width: min(var(--max), calc(100% - 32px));
    max-width: 420px;
  }

  .brand-hero {
    margin-bottom: 32px;
  }

  .hero-kicker {
    margin-bottom: 22px;
    letter-spacing: 0.18em;
  }

  .lead {
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 342px;
  }

  .beta-status {
    max-width: 342px;
    margin-bottom: 28px;
  }

  .beta-count {
    flex-basis: 96px;
    padding-right: 14px;
  }

  .beta-copy {
    margin-left: 18px;
  }

  .beta-count strong {
    font-size: 50px;
    transform: translateX(-3px);
  }

  .beta-count span {
    margin-top: 9px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-signup,
  .signup-card {
    max-width: 342px;
  }

  .signup-card {
    padding: 16px;
  }

  .signup-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .signup-head .waitlist-count {
    flex: 0 1 auto;
    max-width: none;
    text-align: left;
  }

  .profile-segment,
  .audience-tabs,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-mosaic-compact {
    height: clamp(430px, 58vh, 520px);
    gap: 8px;
  }

  .hero-marquee-column--compact {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-marquee-set {
    gap: 8px;
    padding-bottom: 8px;
  }

  .hero-marquee-offset-lg {
    margin-top: -92px;
  }

  .hero-marquee-offset-sm {
    margin-top: -46px;
  }

  .hero-card--compact {
    width: 100%;
    border-radius: 18px;
  }

  .hero-card--compact.hero-card-c0-0 {
    height: 168px;
  }

  .hero-card--compact.hero-card-c0-1 {
    height: 138px;
  }

  .hero-card--compact.hero-card-c0-2 {
    height: 154px;
  }

  .hero-card--compact.hero-card-c1-0 {
    height: 156px;
  }

  .hero-card--compact.hero-card-c1-1 {
    height: 180px;
  }

  .hero-card--compact.hero-card-c1-2 {
    height: 136px;
  }

  .hero-card--compact.hero-card-c2-0 {
    height: 142px;
  }

  .hero-card--compact.hero-card-c2-1 {
    height: 166px;
  }

  .hero-card--compact.hero-card-c2-2 {
    height: 150px;
  }

  .section,
  .section.compact {
    padding: 72px 0;
  }

  .section-header,
  .section-header.centered {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-header h2 {
    font-size: 31px;
  }

  .audience-panel {
    padding: 18px;
  }

  .audience-panel figure {
    min-height: 220px;
  }

  .audience-panel h3 {
    font-size: 24px;
  }

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

  .final-grid .primary-action {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0 28px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .scroll-cue {
    right: 16px;
    bottom: 18px;
  }

  .modal-backdrop {
    padding: 16px;
    align-items: end;
  }

  .waitlist-modal {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .hero-shell {
    width: calc(100% - 32px);
    max-width: 358px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy,
  .hero-signup,
  .signup-card,
  .lead {
    width: 100%;
    max-width: 342px;
  }

  .hero-mosaic-compact {
    width: 342px;
    max-width: 100%;
  }

  .brand-hero {
    font-size: 64px;
  }

  .signup-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .signup-head .waitlist-count {
    max-width: none;
    text-align: left;
  }

}

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

  .hero-marquee-up,
  .hero-marquee-down,
  .hero-marquee-force .hero-marquee-up,
  .hero-marquee-force .hero-marquee-down {
    animation: none !important;
  }
}
