: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-creative {
  --accent: #ff751f;
  --accent-hover: #e85d04;
}

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;
}

#faq {
  scroll-margin-top: 0;
}

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(calc(-100% - 32px));
  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;
}

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

::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 > div > 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;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}

.hero-kicker-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  transform: translateY(-0.5px);
}

.brand-hero {
  color: #fffdfa;
  font-family: Syne, Outfit, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0 0 48px;
  max-width: 672px;
  white-space: nowrap;
}

.brand-hero > span {
  display: block;
}

.accent-text {
  color: var(--accent);
}

.lead {
  max-width: 520px;
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.48;
}

.beta-status {
  --hero-status-accent: 245, 158, 11;
  width: min(462px, 100%);
  display: flex;
  align-items: center;
  margin: 0 0 48px;
  padding: 0;
}

.beta-divider {
  flex: 0 0 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.14);
}

.beta-count strong {
  --count-offset-x: 0px;
  display: block;
  width: 100%;
  color: rgb(var(--hero-status-accent));
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 780;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  line-height: 0.84;
  transform: translate3d(var(--count-offset-x), 0, 0);
}

.beta-count strong.is-counting {
  will-change: transform, opacity;
}

.beta-count strong.is-ticking {
  animation: waitlist-count-tick 84ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.beta-count strong.is-loading {
  opacity: 1;
}

.beta-count {
  flex: 0 0 132px;
  display: grid;
  justify-items: center;
  padding-right: 24px;
  text-align: center;
}

.beta-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  min-height: 74px;
  margin-left: 24px;
  padding-top: 0;
}

.beta-copy span {
  display: block;
  color: rgb(var(--hero-status-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: 12px;
  color: rgba(244, 244, 245, 0.66);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

body.profile-theme-creative .beta-status {
  --hero-status-accent: 255, 117, 31;
}

body.profile-theme-developer .beta-status {
  --hero-status-accent: 59, 130, 246;
}

@keyframes waitlist-count-tick {
  0% {
    opacity: 0.82;
    transform: translate3d(var(--count-offset-x), 2px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--count-offset-x), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .beta-count strong.is-ticking {
    animation: none;
  }
}

.hero-signup {
  width: min(540px, 100%);
  pointer-events: auto;
}

.hero-signup .signup-card {
  margin-top: 0;
  width: 100%;
  padding: 24px 22px 22px;
}

.hero-signup .hero-email-card {
  --hero-email-accent: 245, 158, 11;
  --hero-email-border-opacity: 0.38;
  --hero-email-fill-opacity: 0.16;
  --hero-email-line-opacity: 0.72;
  position: relative;
  border-color: rgba(var(--hero-email-accent), var(--hero-email-border-opacity));
  background:
    linear-gradient(145deg, rgba(18, 20, 25, 0.96), rgba(9, 10, 13, 0.92)),
    radial-gradient(circle at 18% 0%, rgba(var(--hero-email-accent), var(--hero-email-fill-opacity)), transparent 42%);
  box-shadow: 0 0 0 1px rgba(var(--hero-email-accent), 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hero-signup .hero-email-card.profile-creative {
  --hero-email-accent: 255, 117, 31;
  --hero-email-border-opacity: 0.58;
  --hero-email-fill-opacity: 0.19;
  --hero-email-line-opacity: 0.86;
  box-shadow: 0 0 0 1px rgba(255, 117, 31, 0.12);
}

.hero-signup .hero-email-card.profile-developer {
  --hero-email-accent: 59, 130, 246;
  --hero-email-border-opacity: 0.6;
  --hero-email-fill-opacity: 0.17;
  --hero-email-line-opacity: 0.88;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.13);
}

.hero-signup .hero-email-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(var(--hero-email-accent), var(--hero-email-line-opacity)), transparent 34%, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  opacity: 0.7;
}

.hero-signup .signup-head {
  margin-bottom: 20px;
}

.hero-signup .hero-email-card .signup-head {
  color: var(--text);
  font-size: 16px;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-signup .field-label {
  margin: 16px 0 9px;
}

.hero-signup .email-label {
  margin-top: 24px;
  color: rgba(var(--hero-email-accent), 0.9);
}

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

.hero-signup input[name="email"] {
  min-height: 54px;
  border-color: rgba(var(--hero-email-accent), 0.5);
  background: rgba(2, 3, 5, 0.72);
  font-size: 16px;
}

.hero-signup .field-error {
  min-height: 14px;
  margin-top: 8px;
  font-size: 11px;
}

.hero-signup .primary-action {
  min-height: 50px;
  margin-top: 10px;
}

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

@media (min-width: 900px) {
  .hero-signup .hero-email-card {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 14px;
    row-gap: 0;
    padding: 22px 22px 20px;
  }

  .hero-signup .signup-head,
  .hero-signup .hero-email-card > .field-label:not(.email-label),
  .hero-signup .profile-segment,
  .hero-signup .email-label,
  .hero-signup .field-error,
  .hero-signup .quiet-note {
    grid-column: 1 / -1;
  }

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

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

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

  .hero-signup input[name="email"] {
    grid-column: 1 / -1;
  }

  .hero-signup .primary-action {
    grid-column: 1 / -1;
    grid-row: auto;
    align-self: auto;
    min-height: 54px;
    margin-top: 10px;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .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: 60px 64px 20px;
  }
}

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

@media (min-width: 1180px) and (max-width: 1440px) and (max-height: 760px) {
  .hero-shell {
    padding: 34px 72px 22px;
  }

  .hero-kicker {
    margin-bottom: 22px;
  }

  .brand-hero {
    font-size: clamp(68px, 7vw, 88px);
    margin-bottom: 32px;
  }

  .lead {
    max-width: 500px;
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.42;
  }

  .beta-status {
    width: min(430px, 100%);
    margin-bottom: 32px;
    padding: 0;
  }

  .beta-count strong {
    font-size: 54px;
  }

  .beta-count span {
    margin-top: 10px;
  }

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

  .beta-copy strong,
  .beta-copy p {
    margin-top: 6px;
  }

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

  .signup-card {
    margin-top: 24px;
  }

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

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

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

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

  .hero-signup .field-error {
    margin-top: 5px;
  }

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

  .hero-mosaic {
    min-height: 560px;
  }
}

@media (min-width: 1180px) and (max-width: 1440px) and (max-height: 620px) {
  .hero-shell {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .brand-hero {
    font-size: clamp(62px, 6.4vw, 82px);
    margin-bottom: 24px;
  }

  .lead {
    margin-bottom: 26px;
    line-height: 1.34;
  }

  .beta-status {
    margin-bottom: 24px;
    padding: 0;
  }

  .signup-card {
    margin-top: 18px;
  }

  .hero-signup .signup-card {
    padding: 16px;
  }
}

.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(255, 117, 31, 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[data-profile="creative"].active,
.audience-tabs button[data-audience="designers"].active,
body.profile-theme-creative .profile-segment button.active,
body.profile-theme-creative .audience-tabs button.active {
  border-color: rgba(255, 117, 31, 0.74);
  background: rgba(255, 117, 31, 0.12);
}

.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(255, 117, 31, 0.72);
}

.profile-creative input[name="email"]:focus {
  border-color: rgba(255, 117, 31, 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;
}

.turnstile-slot {
  width: 1px;
  height: 1px;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 0;
}

.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 94%, transparent);
  mask-image: linear-gradient(180deg, #000 0%, #000 94%, 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;
}

@media (min-width: 1180px) and (max-width: 1440px) {
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 35;
    height: clamp(120px, 15vh, 170px);
    background:
      linear-gradient(var(--line-soft), var(--line-soft)) bottom / 100% 1px no-repeat,
      linear-gradient(180deg, rgba(6, 7, 8, 0) 0%, rgba(6, 7, 8, 0.24) 34%, rgba(6, 7, 8, 0.76) 78%, var(--bg) 100%);
    pointer-events: none;
  }

  .hero-mosaic {
    left: 48%;
    right: 0;
    gap: 16px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 94%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 94%, transparent);
  }

  .hero-marquee-column {
    flex-basis: clamp(190px, 15vw, 210px);
  }

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

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

@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;
  contain: layout paint;
}

.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 {
  min-height: 244px;
}

.border-glow-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 28;
  --color-sensitivity: calc(var(--edge-sensitivity) + 20);
  --border-radius: 8px;
  --glow-padding: 18px;
  --cone-spread: 25;
  --fill-opacity: 0.08;
  --card-bg: rgba(255, 255, 255, 0.012);
  --glow-color: hsl(38deg 92% 56% / 100%);
  --glow-color-60: hsl(38deg 92% 56% / 60%);
  --glow-color-50: hsl(38deg 92% 56% / 50%);
  --glow-color-40: hsl(38deg 92% 56% / 40%);
  --glow-color-30: hsl(38deg 92% 56% / 30%);
  --glow-color-20: hsl(38deg 92% 56% / 20%);
  --glow-color-10: hsl(38deg 92% 56% / 10%);
  --gradient-one: radial-gradient(at 80% 55%, #f59e0b 0, transparent 50%);
  --gradient-two: radial-gradient(at 69% 34%, #d97706 0, transparent 50%);
  --gradient-three: radial-gradient(at 8% 6%, #fbbf24 0, transparent 50%);
  --gradient-four: radial-gradient(at 41% 38%, #f59e0b 0, transparent 50%);
  --gradient-five: radial-gradient(at 86% 85%, #92400e 0, transparent 50%);
  --gradient-six: radial-gradient(at 82% 18%, #f97316 0, transparent 50%);
  --gradient-seven: radial-gradient(at 51% 4%, #f59e0b 0, transparent 50%);
  position: relative;
  isolation: isolate;
  transform: translate3d(0, 0, 0.01px);
  display: grid;
  border: 1px solid var(--line-soft);
  border-radius: var(--border-radius);
  background: var(--card-bg);
  overflow: visible;
  transition: border-color 150ms ease, background 150ms ease;
}

.profile-theme-developer .border-glow-card {
  --glow-color: hsl(217deg 91% 60% / 100%);
  --glow-color-60: hsl(217deg 91% 60% / 60%);
  --glow-color-50: hsl(217deg 91% 60% / 50%);
  --glow-color-40: hsl(217deg 91% 60% / 40%);
  --glow-color-30: hsl(217deg 91% 60% / 30%);
  --glow-color-20: hsl(217deg 91% 60% / 20%);
  --glow-color-10: hsl(217deg 91% 60% / 10%);
  --gradient-one: radial-gradient(at 80% 55%, #3b82f6 0, transparent 50%);
  --gradient-two: radial-gradient(at 69% 34%, #2563eb 0, transparent 50%);
  --gradient-three: radial-gradient(at 8% 6%, #60a5fa 0, transparent 50%);
  --gradient-four: radial-gradient(at 41% 38%, #3b82f6 0, transparent 50%);
  --gradient-five: radial-gradient(at 86% 85%, #1d4ed8 0, transparent 50%);
  --gradient-six: radial-gradient(at 82% 18%, #38bdf8 0, transparent 50%);
  --gradient-seven: radial-gradient(at 51% 4%, #3b82f6 0, transparent 50%);
}

body.profile-theme-creative .border-glow-card {
  --glow-color: hsl(24deg 100% 56% / 100%);
  --glow-color-60: hsl(24deg 100% 56% / 60%);
  --glow-color-50: hsl(24deg 100% 56% / 50%);
  --glow-color-40: hsl(24deg 100% 56% / 40%);
  --glow-color-30: hsl(24deg 100% 56% / 30%);
  --glow-color-20: hsl(24deg 100% 56% / 20%);
  --glow-color-10: hsl(24deg 100% 56% / 10%);
  --gradient-one: radial-gradient(at 80% 55%, #ff751f 0, transparent 50%);
  --gradient-two: radial-gradient(at 69% 34%, #e85d04 0, transparent 50%);
  --gradient-three: radial-gradient(at 8% 6%, #ffb067 0, transparent 50%);
  --gradient-four: radial-gradient(at 41% 38%, #ff751f 0, transparent 50%);
  --gradient-five: radial-gradient(at 86% 85%, #8a2f0a 0, transparent 50%);
  --gradient-six: radial-gradient(at 82% 18%, #ff8a3d 0, transparent 50%);
  --gradient-seven: radial-gradient(at 51% 4%, #ff751f 0, transparent 50%);
}

.border-glow-card::before,
.border-glow-card::after,
.border-glow-card > .edge-light {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: opacity 250ms ease-out;
  z-index: -1;
}

.border-glow-card:not(:hover)::before,
.border-glow-card:not(:hover)::after,
.border-glow-card:not(:hover) > .edge-light {
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}

.border-glow-card::before {
  padding: 1px;
  background:
    conic-gradient(
      from var(--cursor-angle) at center,
      transparent 0%,
      transparent 34%,
      var(--glow-color-20) 42%,
      var(--glow-color) 50%,
      var(--glow-color-20) 58%,
      transparent 66%,
      transparent 100%
    );
  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.border-glow-card::after {
  display: none;
}

.border-glow-card > .edge-light {
  inset: calc(var(--glow-padding) * -1);
  pointer-events: none;
  z-index: 1;
  mask-image:
    conic-gradient(
      from var(--cursor-angle) at center,
      black 2.5%,
      transparent 10%,
      transparent 90%,
      black 97.5%
    );
  opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
  mix-blend-mode: plus-lighter;
}

.border-glow-card > .edge-light::before {
  content: "";
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px var(--glow-color),
    inset 0 0 1px 0 var(--glow-color-60),
    inset 0 0 3px 0 var(--glow-color-50),
    inset 0 0 6px 0 var(--glow-color-40),
    inset 0 0 15px 0 var(--glow-color-30),
    inset 0 0 25px 2px var(--glow-color-20),
    0 0 1px 0 var(--glow-color-60),
    0 0 3px 0 var(--glow-color-50),
    0 0 6px 0 var(--glow-color-40),
    0 0 15px 0 var(--glow-color-30),
    0 0 25px 2px var(--glow-color-20);
}

.border-glow-inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  overflow: hidden;
  border-radius: inherit;
  padding: 24px;
  background: rgba(255, 255, 255, 0.012);
}

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

body.profile-theme-creative .service-grid article:hover {
  border-color: rgba(255, 117, 31, 0.18);
}

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

@property --cursor-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 45deg;
}

@keyframes borderGlowTouchSweep {
  from {
    --cursor-angle: var(--touch-glow-start, 45deg);
  }

  to {
    --cursor-angle: calc(var(--touch-glow-start, 45deg) + 360deg);
  }
}

@keyframes borderGlowTouchReveal {
  0% {
    opacity: 0;
  }

  12%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (hover: none), (pointer: coarse) {
  .service-grid .border-glow-card.is-touch-glowing {
    animation: borderGlowTouchSweep 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1;
  }

  .service-grid .border-glow-card:not(:hover)::before,
  .service-grid .border-glow-card::before {
    opacity: 0;
  }

  .service-grid .border-glow-card.is-touch-glowing:not(:hover)::before,
  .service-grid .border-glow-card.is-touch-glowing::before {
    animation: borderGlowTouchReveal 1.4s ease-out 1;
    opacity: 1;
    will-change: opacity;
  }

  .service-grid .border-glow-card:not(:hover) > .edge-light,
  .service-grid .border-glow-card > .edge-light {
    display: none;
  }

  .service-grid .border-glow-card.is-touch-glowing:not(:hover) > .edge-light,
  .service-grid .border-glow-card.is-touch-glowing > .edge-light {
    display: block;
    animation: borderGlowTouchReveal 1.4s ease-out 1;
    opacity: 0.42;
    will-change: opacity;
  }
}

@media (hover: none) and (prefers-reduced-motion: reduce),
  (pointer: coarse) and (prefers-reduced-motion: reduce) {
  .service-grid .border-glow-card.is-touch-glowing,
  .service-grid .border-glow-card::before,
  .service-grid .border-glow-card > .edge-light {
    animation: none;
    opacity: 0;
    will-change: auto;
  }
}

.service-icon {
  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;
}

body.profile-theme-creative .service-icon {
  border-color: rgba(255, 117, 31, 0.18);
  background: rgba(255, 117, 31, 0.07);
}

.profile-theme-developer .service-icon {
  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 {
  --audience-visual-height: clamp(220px, 22.92vw, 330px);
  --audience-check-color: #f59e0b;
  position: relative;
  isolation: isolate;
  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.designer {
  min-height: calc(var(--audience-visual-height) + 68px);
}

.audience-panel.designer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 56% 70% at 78% 50%, transparent 0%, transparent 36%, rgba(14, 16, 20, 0.42) 64%, rgba(14, 16, 20, 0.72) 100%),
    linear-gradient(90deg, rgba(14, 16, 20, 0.98) 0%, rgba(14, 16, 20, 0.86) 42%, rgba(14, 16, 20, 0.34) 72%, rgba(14, 16, 20, 0.08) 100%);
}

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

.audience-panel > div:not(.audience-spline-layer) {
  position: relative;
  z-index: 2;
}

.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: 24px 1fr;
  gap: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.audience-panel li span {
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--audience-check-color);
  display: inline-grid;
  place-items: center;
  margin-top: 0;
}

.audience-panel li svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.85;
}

.audience-panel.designer {
  --audience-check-color: #ff751f;
}

.audience-panel.developer {
  --audience-check-color: var(--blue);
}

.audience-panel figure {
  width: 100%;
  max-width: 100%;
  height: var(--audience-visual-height);
  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;
}

.audience-spline-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000000;
}

.audience-spline-spotlight {
  position: absolute;
  top: -34%;
  right: 8%;
  width: min(520px, 46vw);
  height: min(520px, 46vw);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08) 34%, transparent 68%);
  filter: blur(16px);
  opacity: 0.85;
  pointer-events: none;
}

.audience-panel.designer .audience-spline-container {
  position: absolute;
  inset: 0 0 0 46%;
  width: auto;
  height: auto;
  transform-origin: center;
}

.audience-spline-container {
  --spline-robot-scale: 1.2;
  --spline-robot-offset-y: -16px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
  contain: layout paint style;
  isolation: isolate;
}

.audience-spline-container::before {
  content: none;
}

.audience-spline-container.is-unavailable {
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16), transparent 42%),
    radial-gradient(ellipse at center, rgba(255, 117, 31, 0.16), transparent 68%),
    #000000;
}

.audience-spline-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: translate3d(0, var(--spline-robot-offset-y), 0) scale(var(--spline-robot-scale));
  transform-origin: center top;
  transition: none;
  backface-visibility: hidden;
  will-change: transform;
}

.audience-spline-stage.is-loaded {
  opacity: 1;
}

.audience-spline-canvas,
.audience-spline-container canvas {
  width: 100%;
  height: 100%;
  display: block;
  contain: strict;
}

.audience-spline-loader {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.12), transparent 38%),
    #000000;
}

.audience-spline-loader span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  animation: splineLoaderSpin 0.9s linear infinite;
}

@keyframes splineLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.audience-code-figure {
  padding: 0;
}

.audience-code-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #101113;
  color: #f2f3f5;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
}

.audience-code-header {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #242529;
  color: #c6cbd3;
  padding: 0 14px;
  font-size: 13px;
  line-height: 1;
}

.audience-code-header .react-logo {
  width: 17px;
  height: 17px;
  color: #61dafb;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.audience-code-header .react-logo circle {
  fill: currentColor;
  stroke: none;
}

.audience-code-copy {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: #c6cbd3;
  opacity: 0.9;
}

.audience-code-copy svg {
  width: 17px;
  height: 17px;
}

.audience-code-body {
  position: relative;
  flex: 1;
  margin: 0;
  overflow: hidden;
  background: #111113;
  padding: 18px 18px 24px;
  color: #f2f3f5;
  font-size: clamp(10px, 0.9vw, 13px);
  line-height: 1.58;
  white-space: pre;
}

.audience-code-body code {
  display: block;
  min-height: 100%;
  max-width: 100%;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.audience-code-scroll {
  --scroll-bottom-gap: 14px;
  position: absolute;
  top: 38px;
  right: 8px;
  width: 8px;
  height: 64%;
  border-radius: 999px;
  background: #878b92;
  opacity: 0.78;
  transform: translate3d(0, var(--scroll-shift, 0), 0);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.audience-code-line {
  display: block;
  min-height: 1.58em;
  opacity: 1;
  transform: translateY(0);
}

.code-token-keyword {
  color: #ff6b78;
}

.code-token-string {
  color: #8bbcff;
}

.code-token-plain {
  color: #f2f3f5;
}

.audience-code-cursor {
  display: inline-block;
  color: #f2f3f5;
  transform: translateY(-1px);
  animation: audienceCodeCursor 0.9s steps(1, end) infinite;
}

@keyframes audienceCodeCursor {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article {
  min-height: 244px;
}

.faq-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  color: var(--text);
  padding: 92px 0;
  z-index: 1;
}

.faq-section::before {
  content: none;
}

.faq-grid {
  width: min(860px, calc(100% - 48px));
  display: block;
}

.faq-header {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.faq-header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1.08;
}

.faq-header p {
  max-width: 420px;
  margin: 16px auto 0;
}

.faq-component-shell {
  width: 100%;
  min-height: 226px;
  margin: 88px auto 0;
}

.faq-static {
  width: 100%;
  color: var(--text);
  font-family: Outfit, "Outfit Fallback", Inter, ui-sans-serif, system-ui, sans-serif;
}

.faq-static-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-static-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1.5px;
  left: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      rgba(245, 158, 11, 0),
      rgba(245, 158, 11, 0.95) 18%,
      rgba(245, 158, 11, 1) 82%,
      rgba(245, 158, 11, 0)
    );
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.faq-static-heading {
  margin: 0;
}

.faq-static-trigger {
  width: 100%;
  margin: 0;
  padding: 8px 0;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: Outfit, "Outfit Fallback", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 34px;
  outline: none;
  text-align: start;
  transition: color 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-static-title {
  min-width: 0;
}

.faq-static-indicator {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(244, 244, 245, 0.72);
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-static-indicator svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.faq-static-trigger[aria-expanded="true"] .faq-static-indicator {
  color: var(--accent);
  transform: rotate(180deg);
}

.faq-static-trigger:hover,
.faq-static-trigger[aria-expanded="true"] {
  color: var(--accent);
}

.faq-static-trigger:hover .faq-static-indicator,
.faq-static-trigger:focus-visible .faq-static-indicator {
  color: var(--accent);
}

.faq-static-item:hover::after,
.faq-static-item:has(.faq-static-trigger:hover)::after,
.faq-static-item:has(.faq-static-trigger:focus-visible)::after {
  opacity: 1;
  transform: scaleX(1);
}

.faq-static-trigger:hover:not([aria-expanded="true"]) {
  color: #fffdfa;
}

.faq-static-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.faq-static-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-static-content-inner {
  padding: 0 0 8px;
  color: rgba(244, 244, 245, 0.68);
  font-size: 15px;
  line-height: 25px;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.faq-static-content.is-open .faq-static-content-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 860px) {
  .faq-grid {
    width: min(860px, calc(100% - 32px));
  }

  .faq-header {
    max-width: 100%;
    margin-bottom: 42px;
  }

  .faq-component-shell {
    width: 100%;
    min-height: 330px;
  }
}

.final-cta {
  border-bottom: 1px solid var(--line-soft);
  padding: 72px 0 82px;
  contain: layout paint;
}

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

.cta-copy {
  min-width: 0;
}

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

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

.final-grid .cta-morphing-text {
  position: relative;
  min-height: 52px;
  width: 100%;
  max-width: 768px;
  margin-top: 12px;
  margin-bottom: 14px;
  overflow: visible;
  contain: layout paint style;
  isolation: isolate;
  font-family: Outfit, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 34pt;
  font-weight: 800;
  line-height: 1;
  text-rendering: geometricPrecision;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cta-support {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cta-action-stack {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.final-grid .cta-action-label {
  color: var(--faint);
  font-size: 11px;
}

.pivoid-liquid-text {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 52px;
  max-width: 768px;
  margin: 0;
  color: #fffdfa;
  font: inherit;
  line-height: 1;
  text-align: left;
  font-synthesis: none;
  filter: url(#threshold) blur(0.38px);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.pivoid-liquid-text span {
  position: absolute;
  inset-inline: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  margin: 0;
  text-align: left;
  will-change: filter, opacity;
}

.pivoid-liquid-text .hidden,
.pivoid-liquid-text svg#filters {
  display: none;
}

.cta-liquid-fallback {
  display: inline-block;
  color: var(--text);
}

@media (min-width: 1024px) {
  .final-grid .cta-morphing-text {
    min-height: 78px;
    font-size: 4.85rem;
  }

  .pivoid-liquid-text {
    height: 78px;
  }
}

@media (max-width: 680px) {
  .final-grid .cta-morphing-text {
    min-height: 48px;
    font-size: clamp(36px, 11vw, 48px);
  }

  .pivoid-liquid-text {
    height: 48px;
  }
}

.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;
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.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(620px, 78vh, 840px);
    max-width: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-panel {
    grid-template-columns: 1fr;
  }

  .audience-panel.designer {
    min-height: auto;
  }

  .audience-panel.designer::after {
    display: none;
  }

  .audience-spline-layer {
    position: relative;
    inset: auto;
    z-index: 2;
    width: 100%;
    height: var(--audience-visual-height);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
  }

  .audience-panel.designer .audience-spline-container {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) and (max-height: 900px) and (orientation: landscape),
  (min-width: 1024px) and (max-width: 1366px) and (max-height: 1024px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .hero {
    align-items: flex-start;
    min-height: auto;
    padding: 64px 0 56px;
  }

  .hero-shell {
    width: min(760px, calc(100% - 48px));
    display: grid;
    gap: 40px;
    padding: 0;
  }

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

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

  .hero-mosaic {
    display: none;
  }

  .hero-mosaic-compact {
    display: flex;
    height: clamp(430px, 58vh, 560px);
    max-width: none;
    margin-top: 0;
  }

  .audience-panel {
    --audience-visual-height: clamp(230px, 30vw, 330px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .audience-panel.designer {
    min-height: auto;
  }

  .audience-panel.designer::after {
    display: none;
  }

  .audience-spline-layer {
    position: relative;
    inset: auto;
    z-index: 2;
    width: 100%;
    height: var(--audience-visual-height);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
  }

  .audience-panel.designer .audience-spline-container {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }

  .audience-panel figure {
    height: var(--audience-visual-height);
  }

  .audience-code-body {
    padding-right: 48px;
  }

  .audience-code-scroll {
    --scroll-bottom-gap: 16px;
    top: 28px;
    right: 16px;
    width: 7px;
    height: 52%;
  }
}

@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: 40px;
  }

  .hero-kicker {
    width: 100%;
    flex-wrap: nowrap;
    gap: clamp(4px, 1.35vw, 7px);
    margin-bottom: 22px;
    font-size: clamp(9px, 2.28vw, 11px);
    letter-spacing: clamp(0.1em, 0.7vw, 0.16em);
    white-space: nowrap;
  }

  .hero-kicker svg {
    width: clamp(11px, 2.8vw, 13px);
    height: clamp(11px, 2.8vw, 13px);
  }

  .lead {
    font-size: 16px;
    margin-bottom: 38px;
    max-width: 342px;
    line-height: 1.5;
  }

  .beta-status {
    max-width: 342px;
    margin-bottom: 38px;
    padding: 0;
  }

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

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

  .beta-count strong {
    --count-offset-x: 0px;
    font-size: 50px;
  }

  .beta-count span {
    margin-top: 9px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-signup,
  .signup-card {
    max-width: 342px;
  }

  .signup-card {
    padding: 16px;
  }

  .hero-signup .signup-card {
    padding: 18px 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(500px, 66vh, 620px);
    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.designer {
    min-height: auto;
  }

  .audience-panel.designer::after {
    display: none;
  }

  .audience-spline-layer {
    position: relative;
    inset: auto;
    z-index: 2;
    width: 100%;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
  }

  .audience-panel.designer .audience-spline-container {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }

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

  .audience-code-body {
    padding-right: 48px;
  }

  .audience-code-scroll {
    --scroll-bottom-gap: 16px;
    top: 24px;
    right: 16px;
    width: 7px;
    height: 46%;
  }

  .audience-panel h3 {
    font-size: 24px;
  }

  .final-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .cta-action-stack {
    justify-items: stretch;
  }

  .final-grid .cta-action-label {
    justify-content: flex-start;
  }

  .final-grid .cta-support {
    font-size: 15px;
    line-height: 1.6;
  }

  .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: 52px;
  }

  .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;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-static-content {
    transition:
      height 520ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 320ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .faq-static-content-inner {
    transition:
      opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  }
}
