:root {
  --bg: #070812;
  --bg-raised: #0b1120;
  --surface: #0f172a;
  --card: #111c33;
  --card-alt: #172554;
  --text: #f6f8ff;
  --muted: rgba(230, 236, 255, 0.74);
  --faint: rgba(230, 236, 255, 0.62);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --blue: #2563eb;
  --blue-light: #bfdbfe;
  --cyan: #22d3ee;
  --pink: #f472b6;
  --green: #4ade80;
  --amber: #fbbf24;
  --fire-yellow: #fff25a;
  --fire-amber: #ffb800;
  --fire-orange: #ff7900;
  --fire-red-orange: #ff3500;
  --fire-red: #f00000;
  --danger: #fda4af;
  --shell: 1160px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  color-scheme: dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

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

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -10%, rgba(37, 99, 235, 0.13), transparent 34rem),
    linear-gradient(180deg, #070812 0%, #080a16 62%, #070812 100%);
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  content: "";
  pointer-events: none;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

[hidden] {
  display: none !important;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  display: inline-flex;
  min-height: 44px;
  top: 12px;
  left: 12px;
  align-items: center;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  color: #080a16;
  background: var(--cyan);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.page-glow {
  position: fixed;
  z-index: -1;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}

.page-glow--blue {
  top: 8rem;
  left: -23rem;
  background: var(--blue);
}

.page-glow--cyan {
  top: 24rem;
  right: -28rem;
  background: var(--cyan);
}

.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(7, 8, 18, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.brand-mark,
.brand-wordmark {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.brand-wordmark {
  width: 122px;
  height: auto;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.075);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.09), 0 0 14px rgba(34, 211, 238, 0.8);
}

.hero {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: start;
  gap: clamp(40px, 5vw, 68px);
  padding-block: clamp(48px, 5vw, 72px) clamp(62px, 6vw, 88px);
}

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

.eyebrow,
.section-kicker {
  margin: 0;
  color: #a5f3fc;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.065);
}

h1 {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(3.15rem, 5vw, 4.65rem);
  font-weight: 950;
  letter-spacing: -0.067em;
  line-height: 0.95;
}

h1 span {
  color: transparent;
  background: linear-gradient(
    105deg,
    var(--fire-yellow) 0%,
    var(--fire-amber) 18%,
    var(--fire-orange) 48%,
    var(--fire-red-orange) 72%,
    var(--fire-red) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 span.hero-accent--new-line {
  display: block;
}

.hero-lede {
  max-width: 650px;
  margin: 23px 0 0;
  color: rgba(236, 240, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.58;
}

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 23px;
}

.benefit-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(246, 248, 255, 0.8);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 760;
}

.benefit-row svg {
  width: 15px;
  color: var(--green);
}

.signup-card {
  position: relative;
  max-width: 650px;
  margin-top: 24px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(23, 37, 84, 0.92), rgba(15, 23, 42, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.signup-card::before {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
  filter: blur(54px);
  content: "";
  pointer-events: none;
}

.social-proof-strip {
  position: relative;
  display: grid;
  max-width: 650px;
  min-height: 52px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 17px;
  background:
    linear-gradient(110deg, rgba(34, 211, 238, 0.06), transparent 38%),
    rgba(13, 16, 32, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  isolation: isolate;
}

.social-proof-strip::before {
  position: absolute;
  z-index: -1;
  width: 90px;
  height: 90px;
  right: -38px;
  bottom: -58px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.13);
  filter: blur(24px);
  content: "";
  pointer-events: none;
}

.social-proof-message {
  min-width: 0;
}

.social-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(165, 243, 252, 0.88);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.social-proof-kicker > span {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.08), 0 0 12px rgba(74, 222, 128, 0.5);
  animation: launch-list-pulse 2.8s ease-in-out infinite;
}

.social-proof-strip p {
  margin: 3px 0 0;
  color: rgba(236, 240, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.45;
}

.social-proof-strip p strong {
  color: rgba(246, 248, 255, 0.95);
  font-weight: 900;
}

.social-proof-counter {
  position: relative;
  display: flex;
  min-width: 218px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 13px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(34, 211, 238, 0.09)),
    rgba(8, 17, 38, 0.48);
  box-shadow:
    0 10px 28px rgba(2, 8, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.social-proof-counter::before {
  position: absolute;
  z-index: -1;
  width: 64px;
  height: 64px;
  right: -30px;
  bottom: -38px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.2);
  filter: blur(18px);
  content: "";
  pointer-events: none;
}

.social-proof-counter-avatars {
  display: flex;
  flex: 0 0 auto;
  padding-left: 5px;
}

.social-proof-counter-avatars i {
  display: grid;
  width: 25px;
  height: 25px;
  margin-left: -5px;
  place-items: center;
  border: 2px solid #10204a;
  border-radius: 50%;
  color: #fff;
  background: #2563eb;
  box-shadow: 0 4px 10px rgba(2, 8, 23, 0.24);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 950;
}

.social-proof-counter-avatars i:nth-child(2) {
  background: #0891b2;
}

.social-proof-counter-avatars i:nth-child(3) {
  background: #db2777;
}

.social-proof-counter-stat {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.social-proof-counter strong {
  color: #ecfeff;
  font-size: 1.24rem;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.social-proof-counter sup {
  position: relative;
  top: -0.22em;
  margin-left: 1px;
  color: var(--cyan);
  font-size: 0.58em;
}

.social-proof-counter-stat > span {
  color: rgba(224, 252, 255, 0.8);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.social-proof-counter.is-updating {
  animation: social-proof-count-rise 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.signup-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.signup-heading > div:not(.social-proof-counter) {
  min-width: 0;
}

.signup-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 13px;
  color: var(--blue-light);
  background: rgba(37, 99, 235, 0.15);
  font-size: 1.1rem;
}

.signup-heading h2,
.success-panel h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.signup-heading p,
.success-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.template-intent-note {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(147, 197, 253, 0.3);
  border-radius: 12px;
  color: rgba(238, 242, 255, 0.88);
  background: rgba(37, 99, 235, 0.14);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-label {
  display: block;
  margin: 15px 2px 0;
  color: rgba(246, 248, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 7px;
}

.form-row input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 15px;
  color: var(--text);
  background: rgba(7, 8, 18, 0.68);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-row input::placeholder {
  color: rgba(230, 236, 255, 0.58);
}

.form-row input:hover {
  border-color: rgba(255, 255, 255, 0.21);
}

.form-row input:focus {
  border-color: rgba(34, 211, 238, 0.72);
  background: rgba(7, 8, 18, 0.88);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.11);
}

.form-row input[aria-invalid="true"] {
  border-color: rgba(253, 164, 175, 0.7);
  box-shadow: 0 0 0 4px rgba(253, 164, 175, 0.08);
}

.form-row button,
.share-button,
.copy-button {
  display: inline-flex;
  min-height: 54px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-inline: 18px;
  border-radius: 15px;
  font-weight: 900;
  transition: transform 150ms ease, filter 150ms ease, border-color 150ms ease, background 150ms ease;
}

.form-row button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  background: linear-gradient(110deg, #1e40af, #2563eb 54%, #1e40af);
  background-size: 170% auto;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.3);
}

.form-row button svg,
.share-button svg,
.copy-button svg,
.text-link svg {
  width: 19px;
  height: 19px;
}

.form-row button:hover,
.share-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.form-row button:active,
.share-button:active,
.copy-button:active {
  transform: translateY(1px);
}

.form-row button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.form-row button.is-loading {
  cursor: wait;
}

.form-row button.is-loading svg {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.form-row button.is-loading svg path {
  display: none;
}

.anti-spam-guard {
  display: flex;
  width: 100%;
  min-height: 22px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 2px 0;
}

.turnstile-widget {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.turnstile-widget:empty {
  display: none;
}

.turnstile-widget iframe {
  max-width: 100%;
}

.anti-spam-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: rgba(214, 226, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.4;
}

.anti-spam-note::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 1px solid rgba(147, 197, 253, 0.7);
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.28);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
  content: "";
}

.anti-spam-guard[data-state="verified"] .anti-spam-note::before {
  border-color: rgba(134, 239, 172, 0.85);
  background: rgba(74, 222, 128, 0.8);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.anti-spam-guard[data-state="error"] .anti-spam-note {
  color: var(--danger);
}

.anti-spam-guard[data-state="error"] .anti-spam-note::before {
  border-color: rgba(248, 113, 113, 0.85);
  background: rgba(248, 113, 113, 0.7);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}

.form-note,
.form-status,
.share-status {
  display: flex;
  min-height: 20px;
  align-items: center;
  gap: 6px;
  margin: 10px 2px 0;
  color: var(--faint);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
}

.form-note svg {
  width: 14px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.form-note-copy {
  min-width: 0;
}

.form-note a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 4px;
  color: rgba(230, 236, 255, 0.7);
  text-underline-offset: 3px;
  white-space: nowrap;
}

.form-status {
  min-height: 0;
  color: var(--danger);
}

.form-status[data-state="progress"] {
  color: #a5f3fc;
}

.form-status:empty,
.share-status:empty {
  display: none;
}

.form-status--error {
  display: block;
  color: var(--danger);
}

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

.honeypot input {
  position: absolute;
  width: 1px;
  height: 1px;
}

.success-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  outline: none;
}

.success-panel h2:focus {
  outline: 3px solid rgba(34, 211, 238, 0.8);
  outline-offset: 4px;
}

.success-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.23);
  border-radius: 50%;
  color: var(--green);
  background: rgba(74, 222, 128, 0.12);
  font-weight: 950;
}

.success-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 6px;
}

.share-prompt {
  grid-column: 1 / -1;
  margin-top: 5px;
  padding-top: 13px;
  border-top: 1px solid var(--border);
}

.share-prompt h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: -0.012em;
}

.share-prompt p {
  max-width: 540px;
}

.share-button,
.copy-button {
  min-height: 46px;
  padding-inline: 15px;
  border: 1px solid var(--border-strong);
  font-size: 0.82rem;
}

.share-button {
  color: white;
  background: var(--blue);
}

.copy-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.copy-button:hover {
  border-color: rgba(34, 211, 238, 0.33);
  background: rgba(34, 211, 238, 0.075);
}

.share-status {
  min-height: 0;
  grid-column: 1 / -1;
  margin-top: 0;
  color: #bbf7d0;
}

.share-status[data-state="neutral"] {
  color: var(--muted);
}

.manual-link-panel {
  display: grid;
  min-width: 0;
  grid-column: 1 / -1;
  gap: 6px;
}

.manual-link-panel label {
  color: rgba(246, 248, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 800;
}

.manual-link-panel input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--text);
  background: rgba(7, 8, 18, 0.68);
  font-size: 0.78rem;
}

.manual-link-panel p {
  margin: 0;
  color: var(--faint);
  font-size: 0.72rem;
  line-height: 1.45;
}

.moment-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 470px;
  justify-self: end;
}

.claim-picker {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  padding-inline: 2px;
}

.claim-picker .section-kicker {
  color: #bfdbfe;
  font-size: 0.73rem;
}

.claim-context {
  margin: 6px 2px 0;
  color: rgba(230, 236, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 720;
  line-height: 1.45;
}

.claim-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.claim-option {
  display: flex;
  min-width: 0;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  color: rgba(246, 248, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  transition: transform 150ms ease, border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.claim-selected-marker {
  display: none;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  place-items: center;
  border-radius: 50%;
  color: #07110b;
  background: var(--green);
  font-size: 0.68rem;
  font-weight: 950;
}

.claim-option:hover {
  transform: translateY(-1px);
  border-color: rgba(147, 197, 253, 0.34);
  color: var(--text);
  background: rgba(37, 99, 235, 0.09);
}

.claim-option.is-selected {
  border-color: rgba(34, 211, 238, 0.42);
  color: white;
  background: linear-gradient(115deg, rgba(37, 99, 235, 0.24), rgba(34, 211, 238, 0.11));
  box-shadow: inset 0 0 0 1px rgba(165, 243, 252, 0.08);
}

.claim-option.is-selected .claim-selected-marker {
  display: grid;
}

.claim-picker-note {
  margin: 5px 0 0;
  color: rgba(230, 236, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 680;
  line-height: 1.4;
}

.claim-picker-note strong {
  color: rgba(246, 248, 255, 0.9);
}

.moment-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 8% -8% -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.24), rgba(34, 211, 238, 0.06) 44%, transparent 70%);
  filter: blur(16px);
  content: "";
}

.moment-card {
  position: relative;
  padding: 18px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(23, 37, 84, 0.96), rgba(13, 16, 32, 0.98) 58%);
  box-shadow: var(--shadow);
}

.moment-card::after {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.11);
  filter: blur(50px);
  content: "";
  pointer-events: none;
}

.demo-disclosure {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0 0 10px;
  border: 1px solid rgba(141, 234, 210, 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  color: #bff8e8;
  background: rgba(33, 202, 160, 0.1);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.moment-topline {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.challenge-heading,
.challenge-audience {
  min-width: 0;
}

.challenge-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.challenge-state,
.privacy-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: rgba(187, 247, 208, 0.82);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.challenge-state > span {
  color: var(--green);
  font-size: 0.48rem;
}

.challenge-audience {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 9px;
}

.privacy-state {
  margin-top: 0;
  color: #a5f3fc;
}

.participant-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(230, 236, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 820;
  line-height: 1.3;
}

.participant-avatars {
  display: flex;
  padding-left: 8px;
}

.participant-avatars i {
  display: grid;
  width: 22px;
  height: 22px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid #0f172a;
  border-radius: 50%;
  color: white;
  background: #1e40af;
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 950;
}

.participant-avatars i:nth-child(2) {
  background: #0891b2;
}

.participant-avatars i:nth-child(3) {
  background: #db2777;
}

.chat-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 19px;
  background: rgba(7, 8, 18, 0.45);
}

.surface-context-label,
.reaction-context-label {
  margin: 0;
  color: rgba(165, 243, 252, 0.7);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.chat-bubble {
  width: fit-content;
  max-width: 90%;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px 14px 14px 4px;
  color: rgba(246, 248, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.4;
}

.chat-bubble small,
.chat-bubble span {
  display: block;
}

.chat-bubble small {
  margin-bottom: 2px;
  color: rgba(191, 219, 254, 0.75);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chat-bubble--reply {
  align-self: flex-end;
  border-color: rgba(37, 99, 235, 0.22);
  border-radius: 14px 14px 4px 14px;
  background: rgba(37, 99, 235, 0.16);
}

.chat-bubble--reply small {
  color: rgba(165, 243, 252, 0.78);
}

.chat-bubble--reaction {
  margin-left: 24px;
  padding-block: 8px;
  color: rgba(230, 236, 255, 0.78);
  background: rgba(34, 211, 238, 0.06);
  font-size: 0.83rem;
}

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

.challenge-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-stage {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 9px 2px 14px;
}

.flow-stage::after {
  position: absolute;
  z-index: 0;
  top: 36px;
  bottom: -4px;
  left: 16px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.flow-stage:last-child::after {
  display: none;
}

.flow-content {
  min-width: 0;
}

.flow-stage--verdict {
  padding-bottom: 0;
}

.flow-stage--verdict .flow-content {
  padding: 12px;
  border-color: rgba(74, 222, 128, 0.24);
  border-style: solid;
  border-width: 1px;
  border-radius: 16px;
  background: linear-gradient(110deg, rgba(74, 222, 128, 0.13), rgba(37, 99, 235, 0.07));
}

.verdict-label {
  width: fit-content;
  padding: 3px 7px;
  border: 1px solid rgba(74, 222, 128, 0.24);
  border-radius: 999px;
  color: #bbf7d0 !important;
  background: rgba(74, 222, 128, 0.1);
}

.rematch-button {
  display: inline-flex;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(147, 197, 253, 0.32);
  border-radius: 999px;
  color: #eff6ff;
  background: rgba(37, 99, 235, 0.2);
  font-size: 0.72rem;
  font-weight: 900;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.rematch-button:hover {
  transform: translateY(-1px);
  border-color: rgba(147, 197, 253, 0.55);
  background: rgba(37, 99, 235, 0.32);
}

.rematch-button #rematch-icon {
  font-size: 0.9rem;
}

.moment-card.is-replaying .challenge-heading,
.moment-card.is-replaying .chat-bubble--claim,
.moment-card.is-replaying .chat-bubble--reply,
.moment-card.is-replaying .chat-bubble--reaction,
.moment-card.is-replaying .flow-content {
  animation: moment-arrive 280ms ease both;
}

.moment-card.is-replaying .chat-bubble--reply { animation-delay: 40ms; }
.moment-card.is-replaying .chat-bubble--reaction { animation-delay: 80ms; }
.moment-card.is-replaying .flow-stage--claim .flow-content { animation-delay: 120ms; }
.moment-card.is-replaying .flow-stage--proof .flow-content { animation-delay: 160ms; }
.moment-card.is-replaying .flow-stage--verdict .flow-content { animation-delay: 200ms; }

.flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 50%;
  color: var(--blue-light);
  background: #172554;
  font-size: 0.66rem;
  font-weight: 950;
}

.flow-stage--proof .flow-node {
  border-color: rgba(34, 211, 238, 0.26);
  color: #a5f3fc;
  background: #12303b;
}

.flow-stage--verdict .flow-node {
  border-color: var(--green);
  color: #052e16;
  background: var(--green);
}

.flow-content > small,
.flow-content > strong {
  display: block;
  min-width: 0;
}

.flow-content > small {
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.flow-content > strong {
  margin-top: 3px;
  color: rgba(246, 248, 255, 0.9);
  font-size: 0.86rem;
  line-height: 1.42;
}

.flow-deadline {
  display: block;
  margin-top: 3px;
  color: rgba(230, 236, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 760;
  line-height: 1.35;
}

.proof-statuses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.proof-status {
  display: grid;
  min-width: 0;
  gap: 2px;
  padding: 8px 9px;
  border-radius: 10px;
  color: rgba(230, 236, 255, 0.76);
  background: rgba(34, 211, 238, 0.075);
  font-size: 0.76rem;
  line-height: 1.35;
}

.proof-status b {
  color: rgba(246, 248, 255, 0.94);
  font-size: 0.78rem;
}

.proof-status i {
  color: var(--green);
  font-style: normal;
  font-weight: 950;
}

.vote-state {
  display: flex !important;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  padding: 5px 8px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  color: #cffafe;
  background: rgba(34, 211, 238, 0.08);
  font-size: 0.76rem;
  font-weight: 820;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.vote-state > span {
  color: var(--cyan);
  font-size: 0.58rem;
}

.verdict-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.reaction-context-label {
  display: block;
  margin-top: 10px;
  color: rgba(230, 236, 255, 0.6) !important;
}

.verdict-reactions li {
  padding: 5px 8px;
  border-radius: 999px;
  color: rgba(246, 248, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.76rem;
  font-weight: 780;
  line-height: 1.3;
}

.demo-stage-controls {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 14px;
}

.demo-stage-control {
  display: grid;
  min-width: 0;
  min-height: 52px;
  cursor: pointer;
  align-content: center;
  gap: 2px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(230, 236, 255, 0.6);
  background: rgba(7, 8, 18, 0.34);
  text-align: left;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease, transform 150ms ease;
}

.demo-stage-control:hover {
  transform: translateY(-1px);
  border-color: rgba(165, 243, 252, 0.28);
  color: rgba(246, 248, 255, 0.9);
}

.demo-stage-control span {
  color: rgba(165, 243, 252, 0.7);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.demo-stage-control strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.demo-stage-control[aria-pressed="true"] {
  border-color: rgba(34, 211, 238, 0.38);
  color: white;
  background: linear-gradient(115deg, rgba(37, 99, 235, 0.2), rgba(34, 211, 238, 0.1));
  box-shadow: inset 0 0 0 1px rgba(165, 243, 252, 0.06);
}

.demo-stage-control[data-demo-stage-target="verdict"][aria-pressed="true"] {
  border-color: rgba(74, 222, 128, 0.36);
  background: linear-gradient(115deg, rgba(74, 222, 128, 0.13), rgba(37, 99, 235, 0.1));
}

.demo-stage-deck {
  position: relative;
  z-index: 1;
  min-height: 410px;
  margin-top: 9px;
}

.demo-stage-panel {
  min-height: 410px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  background: rgba(7, 8, 18, 0.46);
}

.demo-stage-panel.is-active {
  animation: trailer-stage-arrive 260ms ease both;
}

.trailer-stage-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #bfdbfe;
  font-size: 0.67rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.trailer-stage-kicker > span {
  color: var(--blue-light);
  font-size: 0.52rem;
}

.claim-spotlight {
  margin-top: 15px;
  padding: 20px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 18px;
  background: linear-gradient(130deg, rgba(37, 99, 235, 0.18), rgba(255, 255, 255, 0.035));
}

.claim-spotlight small,
.proof-preview-copy small,
.rule-lockup small {
  display: block;
  color: rgba(191, 219, 254, 0.75);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.claim-spotlight blockquote {
  margin: 8px 0 0;
  color: white;
  font-size: clamp(1.4rem, 4.5vw, 1.82rem);
  font-weight: 930;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.claim-replies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.claim-replies p {
  min-width: 0;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(34, 211, 238, 0.11);
  border-radius: 12px;
  color: rgba(246, 248, 255, 0.86);
  background: rgba(34, 211, 238, 0.055);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.claim-replies small,
.claim-replies span {
  display: block;
}

.claim-replies small {
  margin-bottom: 2px;
  color: rgba(165, 243, 252, 0.68);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rule-lockup {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(120px, 0.65fr);
  gap: 9px;
  margin-top: 10px;
}

.rule-lockup > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.rule-lockup strong {
  display: block;
  margin-top: 4px;
  color: rgba(246, 248, 255, 0.92);
  font-size: 0.8rem;
  line-height: 1.35;
}

.deadline-clock {
  border-color: rgba(251, 122, 0, 0.22) !important;
  background: rgba(251, 89, 0, 0.055) !important;
}

.deadline-clock small {
  color: rgba(255, 176, 0, 0.78);
}

.deadline-clock strong {
  color: #ffb000;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.proof-preview {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: center;
  margin-top: 15px;
  padding: 12px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 18px;
  background: rgba(34, 211, 238, 0.055);
}

.proof-preview-visual {
  position: relative;
  display: grid;
  min-height: 160px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 176, 0, 0.34), transparent 8%),
    linear-gradient(155deg, rgba(37, 99, 235, 0.42), rgba(34, 211, 238, 0.14) 60%, rgba(7, 8, 18, 0.9));
}

.proof-preview-visual::before,
.proof-preview-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
}

.proof-preview-visual::before {
  width: 118px;
  height: 118px;
  border-radius: 50%;
}

.proof-preview-visual::after {
  right: 14px;
  bottom: 14px;
  left: 14px;
  height: 34px;
  border-width: 1px 0 0;
}

.proof-preview-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  background: rgba(7, 8, 18, 0.7);
  color: #bbf7d0;
  font-size: 1.2rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.moment-card[data-proof-kind="score"] .proof-preview-mark,
.moment-card[data-proof-kind="result"] .proof-preview-mark {
  font-size: 0;
}

.moment-card[data-proof-kind="score"] .proof-preview-mark::before {
  content: "#1";
  font-size: 1rem;
  font-weight: 950;
}

.moment-card[data-proof-kind="result"] .proof-preview-mark::before {
  color: var(--green);
  content: "✓";
  font-size: 1.35rem;
  font-weight: 950;
}

.proof-preview-line {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) 62%, rgba(255, 255, 255, 0.16) 62%);
}

.proof-preview-copy {
  min-width: 0;
}

.proof-preview-copy small {
  color: rgba(165, 243, 252, 0.76);
}

.proof-preview-copy strong,
.proof-preview-copy > span {
  display: block;
}

.proof-preview-copy strong {
  margin-top: 6px;
  color: white;
  font-size: 1.02rem;
  line-height: 1.25;
}

.proof-preview-copy > span {
  margin-top: 5px;
  color: rgba(230, 236, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.4;
}

.proof-description {
  margin: 12px 2px 0;
  color: rgba(230, 236, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.48;
}

.vote-build {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 14px;
}

.vote-build span,
.vote-build strong {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(230, 236, 255, 0.58);
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
  font-weight: 930;
  letter-spacing: 0;
  white-space: nowrap;
}

.vote-build strong {
  border-color: rgba(74, 222, 128, 0.28);
  color: #bbf7d0;
  background: rgba(74, 222, 128, 0.09);
  font-size: 1.25rem;
}

.vote-build-status {
  margin: 8px 1px 0;
  color: rgba(230, 236, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 760;
}

.vote-build-status > span:first-child {
  color: var(--green);
  font-weight: 950;
}

.demo-stage-panel--verdict {
  border-color: rgba(74, 222, 128, 0.24);
  background:
    radial-gradient(circle at 50% 12%, rgba(74, 222, 128, 0.12), transparent 35%),
    linear-gradient(150deg, rgba(15, 35, 30, 0.8), rgba(15, 23, 42, 0.94));
  text-align: center;
}

.moment-card[data-verdict-tone="not-proven"] .demo-stage-panel--verdict {
  border-color: rgba(251, 89, 0, 0.32);
  background:
    radial-gradient(circle at 50% 12%, rgba(251, 89, 0, 0.14), transparent 35%),
    linear-gradient(150deg, rgba(43, 24, 23, 0.84), rgba(15, 23, 42, 0.94));
}

.moment-card[data-verdict-tone="not-proven"] .verdict-climax #demo-verdict {
  color: #ffd2bf;
}

.moment-card[data-verdict-tone="not-proven"] .verdict-vote {
  border-top-color: rgba(251, 89, 0, 0.34);
}

.moment-card[data-verdict-tone="not-proven"] .verdict-vote small {
  color: rgba(255, 210, 191, 0.84);
}

.moment-card[data-verdict-tone="not-proven"] .verdict-climax #demo-verdict-score {
  color: #ff8a52;
}

.verdict-claim {
  max-width: 30ch;
  margin: 0 auto;
  color: rgba(246, 248, 255, 0.92);
  font-size: clamp(1.02rem, 3vw, 1.24rem);
  font-weight: 830;
  letter-spacing: -0.018em;
  line-height: 1.32;
}

.verdict-climax {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  margin-top: 18px;
}

.verdict-climax #demo-verdict,
.verdict-climax #demo-verdict-score {
  display: block;
  line-height: 0.9;
}

.verdict-climax #demo-verdict {
  align-self: center;
  max-width: 9ch;
  color: #d9ffe6;
  font-size: clamp(2.75rem, 9vw, 3.7rem);
  font-weight: 1000;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.verdict-climax #demo-verdict[data-fit="compact"] {
  max-width: 12ch;
  font-size: clamp(2rem, 5.7vw, 2.75rem);
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.verdict-vote {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 11px 0 0;
  border-top: 1px solid rgba(74, 222, 128, 0.28);
  text-align: center;
}

.verdict-vote small {
  color: rgba(187, 247, 208, 0.78);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.verdict-climax #demo-verdict-score {
  color: var(--green);
  font-size: clamp(2.65rem, 4.5vw, 3.1rem);
  font-variant-numeric: tabular-nums;
  font-weight: 1000;
  letter-spacing: 0;
  white-space: nowrap;
}

.verdict-line {
  margin: 17px 0 0;
  color: white;
  font-size: 1.02rem;
  font-weight: 850;
}

.bragging-rights {
  width: fit-content;
  margin: 16px auto 0;
  padding: 8px 11px;
  border: 1px solid rgba(255, 176, 0, 0.28);
  border-radius: 999px;
  color: #ffd166;
  background: rgba(251, 122, 0, 0.08);
  font-size: 0.69rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.demo-stage-panel--verdict .reaction-context-label {
  margin-top: 17px;
}

.demo-stage-panel--verdict .verdict-reactions {
  justify-content: center;
}

.demo-stage-panel--verdict .rematch-button {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  margin-top: 14px;
  border-color: rgba(34, 211, 238, 0.28);
  border-radius: 13px;
  color: #cffafe;
  background: rgba(34, 211, 238, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  font-size: 0.8rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.demo-stage-panel--verdict .rematch-button:hover {
  border-color: rgba(165, 243, 252, 0.52);
  background: rgba(34, 211, 238, 0.13);
}

.demo-signup-bridge {
  display: flex;
  min-height: 44px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 9px;
  padding: 8px 10px;
  color: rgba(230, 236, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.demo-signup-bridge strong,
.demo-signup-bridge > span:last-child {
  color: #a5f3fc;
}

.demo-signup-bridge:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.how-it-works {
  padding-block: clamp(60px, 7vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.closing-conversion {
  padding-block: 12px clamp(58px, 7vw, 88px);
}

.closing-signup-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(34, 211, 238, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(15, 23, 42, 0.88));
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.34);
}

.closing-signup-copy {
  position: relative;
  z-index: 1;
}

.closing-signup-copy h2 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.closing-signup-copy > p:last-child {
  max-width: 440px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

#waitlist-form-secondary {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.closing-form-note,
.closing-signup-complete {
  margin: 10px 2px 0;
  color: var(--faint);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.5;
}

.closing-signup-complete {
  color: #bbf7d0;
  font-size: 0.88rem;
  font-weight: 800;
}

#closing-signup-card > .success-panel {
  grid-column: 2;
}

.how-it-works > h2,
.privacy-card h2 {
  max-width: 760px;
  margin: 11px 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.steps-grid article {
  min-height: 184px;
  padding: 21px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(23, 37, 84, 0.56), rgba(15, 23, 42, 0.72));
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  font-size: 0.76rem;
  font-weight: 950;
}

.step-number--blue {
  color: var(--blue-light);
  background: rgba(37, 99, 235, 0.14);
}

.step-number--cyan {
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.11);
}

.step-number--pink {
  color: #fbcfe8;
  background: rgba(244, 114, 182, 0.12);
}

.steps-grid h3 {
  margin: 22px 0 0;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.steps-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.62;
}

.text-link {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 14px 19px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  color: white;
  background: linear-gradient(110deg, #1e40af, #2563eb 54%, #1e40af);
  background-size: 170% auto;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.3);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 150ms ease, filter 150ms ease, background-position 150ms ease;
}

.text-link:hover {
  transform: translateY(-1px);
  background-position: 100% center;
  filter: brightness(1.04);
}

.mechanism-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.resource-hub {
  padding-block: clamp(54px, 7vw, 84px);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.resource-hub-heading {
  max-width: 780px;
}

.resource-hub-heading h2 {
  margin: 11px 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.resource-hub-heading > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.resource-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(23, 37, 84, 0.58), rgba(15, 23, 42, 0.78));
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.resource-card::before {
  position: absolute;
  width: 130px;
  height: 130px;
  top: -68px;
  right: -44px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.17);
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

.resource-card--templates::before {
  background: rgba(34, 211, 238, 0.14);
}

.resource-card--community::before {
  background: rgba(244, 114, 182, 0.14);
}

.resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(165, 243, 252, 0.28);
  background: linear-gradient(150deg, rgba(30, 64, 175, 0.28), rgba(15, 23, 42, 0.86));
}

.resource-card-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(165, 243, 252, 0.18);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.07);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 24px 0 0;
  font-size: 1.22rem;
  font-weight: 920;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.resource-card p {
  margin: 11px 0 24px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

.resource-card strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #a5f3fc;
  font-size: 0.84rem;
  font-weight: 900;
}

.privacy-section {
  padding-block: 46px;
}

.privacy-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.62);
}

.privacy-card h2 {
  margin-top: 0;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.privacy-card p {
  max-width: 900px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.privacy-summary {
  max-width: 960px !important;
  font-size: 0.88rem !important;
}

.privacy-details {
  max-width: 960px;
  margin-top: 13px;
  border-top: 1px solid var(--border);
}

.privacy-details summary {
  display: flex;
  min-height: 46px;
  cursor: pointer;
  align-items: center;
  width: fit-content;
  color: #a5f3fc;
  font-size: 0.8rem;
  font-weight: 850;
  list-style: none;
}

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

.privacy-details summary::after {
  margin-left: 8px;
  content: "+";
  font-size: 1rem;
}

.privacy-details[open] summary::after {
  content: "−";
}

.privacy-details > div {
  padding: 0 0 4px;
}

.privacy-card a {
  color: #a5f3fc;
  text-underline-offset: 3px;
}

footer {
  background: rgba(7, 8, 18, 0.86);
}

.unlock-page {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  padding: 24px;
}

.unlock-shell {
  width: min(100%, 520px);
}

.unlock-brand {
  width: fit-content;
  margin: 0 auto 22px;
}

.unlock-card {
  position: relative;
  padding: clamp(28px, 7vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(23, 37, 84, 0.94), rgba(15, 23, 42, 0.97));
  box-shadow: var(--shadow);
  text-align: center;
}

.unlock-card::before {
  position: absolute;
  top: -120px;
  left: 50%;
  width: 300px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
  filter: blur(55px);
  content: "";
  pointer-events: none;
}

.unlock-mark {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid rgba(147, 197, 253, 0.25);
  border-radius: 17px;
  color: var(--blue-light);
  background: rgba(37, 99, 235, 0.15);
  font-size: 1.35rem;
}

.unlock-card h1 {
  margin-top: 12px;
  font-size: clamp(2rem, 8vw, 2.8rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.unlock-message,
.unlock-help p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.unlock-loader {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 25px;
}

.unlock-loader span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: unlock-pulse 1.1s ease-in-out infinite;
}

.unlock-loader span:nth-child(2) {
  animation-delay: 130ms;
}

.unlock-loader span:nth-child(3) {
  animation-delay: 260ms;
}

.unlock-help {
  margin-top: 20px;
  padding-top: 19px;
  border-top: 1px solid var(--border);
}

.unlock-help a {
  display: inline-flex;
  margin-top: 15px;
  padding: 11px 14px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 12px;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.07);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding-block: 30px;
}

.brand--footer .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.brand--footer .brand-wordmark {
  width: 108px;
}

.footer-inner > p {
  margin: 0;
  color: var(--faint);
  font-size: 0.77rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-inner nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 720;
  text-decoration: none;
}

.clipboard-helper {
  position: fixed;
  top: 0;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer-inner nav a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.8);
  outline-offset: 3px;
}

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

@keyframes moment-arrive {
  from { opacity: 0.72; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes trailer-stage-arrive {
  from { opacity: 0.55; transform: translateY(7px) scale(0.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes unlock-pulse {
  0%, 100% { opacity: 0.28; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}

@keyframes launch-list-pulse {
  0%, 100% { opacity: 0.68; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes social-proof-count-rise {
  0% { opacity: 0.7; transform: translateY(4px) scale(0.98); }
  55% { opacity: 1; transform: translateY(-2px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .benefit-row {
    justify-content: center;
  }

  h1,
  .hero-lede,
  .signup-card {
    margin-inline: auto;
  }

  .social-proof-strip {
    margin-inline: auto;
    text-align: left;
  }

  .signup-card,
  .signup-heading,
  .form-label,
  .form-note,
  .form-status,
  .success-panel {
    text-align: left;
  }

  .moment-wrap {
    max-width: 490px;
    justify-self: center;
  }

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

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

  .closing-signup-card {
    grid-template-columns: 1fr;
  }

  #closing-signup-card > .success-panel {
    grid-column: 1;
  }

  .resource-card {
    min-height: 0;
  }

  .steps-grid article {
    min-height: 0;
  }

  .steps-grid h3 {
    margin-top: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .signup-heading {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .social-proof-counter {
    width: 100%;
    min-width: 0;
    grid-column: 1 / -1;
    justify-self: stretch;
    margin-top: 2px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .nav-shell {
    min-height: 66px;
  }

  .site-header .brand,
  .unlock-brand {
    gap: 6px;
  }

  .site-header .brand-mark,
  .unlock-brand .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .site-header .brand-wordmark,
  .unlock-brand .brand-wordmark {
    width: 104px;
  }

  .launch-pill {
    padding: 7px 9px;
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 52px;
  }

  h1 {
    margin-top: 14px;
    font-size: clamp(2.5rem, 11.5vw, 3.15rem);
    letter-spacing: -0.058em;
    line-height: 0.96;
  }

  .hero-lede {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .benefit-row {
    display: none;
  }

  .signup-card {
    margin-top: 20px;
    padding: 16px;
    border-radius: 21px;
  }

  .social-proof-strip {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
    padding: 10px 12px;
  }

  .social-proof-counter {
    width: 100%;
    min-width: 0;
    grid-column: 1 / -1;
    justify-self: stretch;
    margin-top: 2px;
  }

  .signup-heading {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row button {
    width: 100%;
  }

  .form-note {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .form-note a {
    grid-column: 2;
    width: fit-content;
  }

  .claim-picker {
    margin-bottom: 14px;
    padding-inline: 0;
  }

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

  .moment-card {
    padding: 14px;
    border-radius: 23px;
  }

  .demo-stage-controls {
    gap: 5px;
  }

  .demo-stage-control {
    min-height: 50px;
    padding-inline: 6px;
  }

  .demo-stage-control strong {
    font-size: 0.68rem;
  }

  .demo-stage-deck,
  .demo-stage-panel {
    min-height: 400px;
  }

  .demo-stage-panel {
    padding: 15px;
  }

  .claim-spotlight {
    padding: 16px;
  }

  .proof-preview {
    gap: 10px;
  }

  .proof-preview-visual {
    min-height: 145px;
  }

  .verdict-climax {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
  }

  .verdict-vote {
    justify-items: center;
    padding: 11px 0 0;
    border-top: 1px solid rgba(74, 222, 128, 0.28);
    border-left: 0;
    text-align: center;
  }

  .flow-stage {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    padding-inline: 0;
  }

  .flow-node {
    width: 28px;
    height: 28px;
  }

  .flow-stage::after {
    top: 34px;
    left: 14px;
  }

  .flow-content > strong {
    font-size: 0.84rem;
  }

  .how-it-works {
    padding-block: 58px;
  }

  .closing-conversion {
    padding-block: 4px 58px;
  }

  .closing-signup-card {
    gap: 22px;
    padding: 20px;
    border-radius: 22px;
  }

  .steps-grid {
    margin-top: 22px;
  }

  .privacy-card {
    padding: 19px;
  }

  .footer-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }

}

@media (max-width: 340px) {
  .site-header .brand {
    gap: 5px;
  }

  .site-header .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .site-header .brand-wordmark {
    width: 92px;
  }

  .launch-pill {
    padding-inline: 8px;
    font-size: 0.58rem;
  }

  .social-proof-counter-avatars {
    display: none;
  }

  .claim-options,
  .proof-statuses {
    grid-template-columns: 1fr;
  }

  .claim-replies,
  .rule-lockup,
  .proof-preview {
    grid-template-columns: 1fr;
  }

  .proof-preview-visual {
    min-height: 120px;
  }

  .demo-stage-deck,
  .demo-stage-panel {
    min-height: 0;
  }

  .moment-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .challenge-audience {
    justify-content: flex-start;
  }

  .chat-bubble,
  .flow-content,
  .proof-status,
  .verdict-reactions li {
    overflow-wrap: anywhere;
  }

  .demo-signup-bridge {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .moment-card.is-replaying .challenge-heading,
  .moment-card.is-replaying .chat-bubble--claim,
  .moment-card.is-replaying .chat-bubble--reply,
  .moment-card.is-replaying .chat-bubble--reaction,
  .moment-card.is-replaying .flow-content {
    animation: none !important;
  }

  .demo-stage-panel.is-active {
    animation: none !important;
  }
}

@media (forced-colors: active) {
  h1 span {
    color: CanvasText;
    background: none;
    -webkit-text-fill-color: CanvasText;
  }

  .launch-pill span {
    forced-color-adjust: none;
  }

  .flow-node {
    border-color: ButtonText;
    color: ButtonText;
    background: ButtonFace;
    forced-color-adjust: auto;
  }

  .claim-option[aria-pressed="true"],
  .demo-stage-control[aria-pressed="true"],
  .proof-status,
  .flow-stage--verdict .flow-content,
  .demo-stage-panel--verdict {
    border: 1px solid CanvasText;
  }
}
