:root {
  color-scheme: light;
  --site-header-offset: 70px;
  --site-top-button-size: 52px;
  --site-header-control-size: 34px;
  --site-header-control-height: 34px;
  --site-header-control-radius: 12px;
  --site-header-locale-width: clamp(96px, 9vw, 112px);
  --site-header-action-width: clamp(108px, 11vw, 132px);
  --site-ink: #09111f;
  --site-muted: #5f6b7a;
  --site-muted-strong: #334155;
  --site-surface: rgba(255, 255, 255, 0.82);
  --site-surface-strong: rgba(255, 255, 255, 0.94);
  --site-surface-soft: rgba(248, 250, 252, 0.9);
  --site-line: rgba(148, 163, 184, 0.22);
  --site-line-strong: rgba(148, 163, 184, 0.34);
  --site-accent: #2f6dff;
  --site-accent-soft: rgba(47, 109, 255, 0.08);
  --site-success: #0f9f6e;
  --site-success-soft: rgba(15, 159, 110, 0.12);
  --site-warning: #d97706;
  --site-warning-soft: rgba(245, 158, 11, 0.14);
  --site-danger: #dc2626;
  --site-danger-soft: rgba(239, 68, 68, 0.12);
  --site-dark: #020617;
  --site-dark-soft: #0f172a;
  --site-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --site-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
  border-color: rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(102, 155, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(15, 159, 110, 0.09), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #eff4fa 42%, #edf2f7 100%);
  color: var(--site-ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 78%);
  opacity: 0.35;
}

body.page-one_more_thing {
  background:
    radial-gradient(circle at top left, rgba(102, 155, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.11), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fb 42%, #ebf1f8 100%);
}

::selection {
  background: rgba(47, 109, 255, 0.16);
  color: var(--site-ink);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.site-page {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  padding-top: var(--site-header-offset);
}

.site-orb {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  filter: blur(72px);
}

.site-orb-primary {
  top: -10rem;
  left: 50%;
  width: min(78rem, calc(100% - 3rem));
  height: 34rem;
  transform: translateX(-50%);
  border-radius: 999px;
}

.site-orb-secondary {
  top: 38rem;
  left: 50%;
  width: min(72rem, calc(100% - 5rem));
  height: 28rem;
  transform: translateX(-50%);
}

.page-home .site-orb-primary {
  background: radial-gradient(circle, rgba(47, 109, 255, 0.16) 0%, rgba(47, 109, 255, 0.07) 28%, transparent 72%);
}

.page-home .site-orb-secondary {
  background: radial-gradient(circle, rgba(15, 159, 110, 0.12) 0%, transparent 68%);
}

.page-docs .site-orb-primary {
  height: 32rem;
  max-width: 76rem;
  background: radial-gradient(circle, rgba(47, 109, 255, 0.12) 0%, rgba(47, 109, 255, 0.05) 28%, transparent 72%);
}

.page-docs .site-orb-secondary {
  display: none;
}

.page-one_more_thing .site-orb-primary {
  background: radial-gradient(circle, rgba(47, 109, 255, 0.14) 0%, rgba(47, 109, 255, 0.06) 26%, transparent 72%);
}

.page-one_more_thing .site-orb-secondary {
  right: 0;
  left: auto;
  top: 22rem;
  width: 40rem;
  transform: none;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.11) 0%, transparent 72%);
}

.site-header-wrap {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  padding: 8px 12px 0;
  transition:
    transform 220ms ease,
    opacity 180ms ease;
  will-change: transform, opacity;
}

body.site-header-hidden .site-header-wrap {
  transform: translateY(calc(-100% - 12px));
  opacity: 0;
  pointer-events: none;
}

.site-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

body.site-header-scrolled .site-header-shell {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(226, 232, 240, 0.86);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.desktop-brand-link {
  display: inline-flex;
}

.mobile-brand-button,
.mobile-side-panel,
.mobile-panel-overlay {
  display: none;
}

.brand-icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 2px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.09);
  flex: 0 0 auto;
}

.brand-icon {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--site-ink);
}

.brand-subtitle {
  margin-top: 1px;
  font-size: 10px;
  color: #64748b;
}

.site-header-center {
  display: none;
  flex: 1 1 auto;
  justify-content: center;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--site-header-control-height);
  padding: 0 13px;
  border-radius: var(--site-header-control-radius);
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.nav-icon {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.nav-label {
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--site-ink);
}

.nav-link-active {
  background: var(--site-dark);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

.nav-link-special {
  gap: 6px;
  border: 1px solid #ffd5b5;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 236, 220, 0.92));
  color: #1e293b;
  box-shadow: 0 10px 24px rgba(255, 97, 84, 0.12);
}

.nav-link-special .nav-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: #ff7b2f;
}

.nav-link-special:hover {
  border-color: #ffbf94;
  box-shadow: 0 16px 32px rgba(255, 97, 84, 0.18);
  transform: translateY(-1px);
}

.nav-link-special.nav-link-active {
  border-color: #ffc69a;
  background: linear-gradient(135deg, #fff7ef, #ffe7d3);
  color: var(--site-ink);
  box-shadow: 0 12px 28px rgba(255, 97, 84, 0.16);
}

.nav-star {
  font-size: 12px;
  color: #ff7b2f;
}

.site-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-left: auto;
  justify-content: flex-end;
}

.header-group {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-group-label {
  display: none;
}

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

.locale-group {
  min-width: 0;
}

.locale-picker {
  position: relative;
}

.locale-picker[open] {
  z-index: 60;
}

.locale-picker summary {
  list-style: none;
}

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

.locale-picker-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: var(--site-header-locale-width);
  min-width: var(--site-header-locale-width);
  max-width: var(--site-header-locale-width);
  min-height: var(--site-header-control-height);
  padding: 0 10px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--site-header-control-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.95));
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
  cursor: pointer;
  user-select: none;
}

.locale-picker-trigger:focus-visible {
  outline: 2px solid rgba(47, 109, 255, 0.32);
  outline-offset: 2px;
}

.locale-picker[open] .locale-picker-trigger {
  border-color: rgba(47, 109, 255, 0.28);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.locale-flag,
.locale-option-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
  font-size: 15px;
  flex: 0 0 auto;
}

.locale-trigger-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
}

.locale-trigger-value {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--site-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.locale-trigger-note {
  display: none;
}

.locale-trigger-chevron {
  color: #64748b;
  font-size: 12px;
  transition: transform 160ms ease;
}

.locale-picker[open] .locale-trigger-chevron {
  transform: rotate(180deg);
}

.locale-picker-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 6px;
  min-width: min(20rem, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(20px);
}

.locale-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  transition:
    background 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.locale-option:hover {
  background: rgba(47, 109, 255, 0.08);
  transform: translateY(-1px);
}

.locale-option-selected {
  background: rgba(47, 109, 255, 0.1);
}

.locale-option-copy {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
}

.locale-option-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--site-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.locale-option-meta {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
}

.locale-option-check {
  color: var(--site-accent);
  font-size: 15px;
  font-weight: 700;
}

.launch-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  flex: 0 1 auto;
  min-height: var(--site-header-control-height);
  padding: 0 12px;
  border-radius: var(--site-header-control-radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.launch-actions .button-link {
  width: var(--site-header-action-width);
  min-width: var(--site-header-action-width);
  max-width: var(--site-header-action-width);
}

.button-link:hover {
  transform: translateY(-1px);
}

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

.button-primary {
  background: var(--site-dark);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.button-primary:hover {
  background: var(--site-dark-soft);
}

.button-secondary {
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.88);
  color: var(--site-ink);
}

.button-secondary:hover {
  border-color: rgba(148, 163, 184, 0.45);
  background: #f8fafc;
}

.button-full {
  width: 100%;
  max-width: none;
}

.button-link svg {
  flex: 0 0 auto;
}

.site-top-button {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--site-top-button-size);
  height: var(--site-top-button-size);
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #09111f, #1e293b);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

body.site-panel-open {
  overflow: hidden;
}

.mobile-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(6px);
}

.mobile-panel-overlay[hidden] {
  display: none;
}

.mobile-side-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 45;
  width: min(86vw, 22rem);
  padding: 18px 16px calc(16px + env(safe-area-inset-bottom));
  border-right: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(22px);
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.mobile-side-panel[aria-hidden="true"] {
  pointer-events: none;
}

body.site-panel-open .mobile-side-panel {
  transform: translateX(0);
}

.mobile-side-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-side-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mobile-side-panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--site-header-control-size);
  height: var(--site-header-control-size);
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(241, 245, 249, 0.95);
  color: var(--site-ink);
  cursor: pointer;
  flex: 0 0 auto;
}

.mobile-side-nav {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mobile-side-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.9);
  font-size: 15px;
  font-weight: 700;
  color: var(--site-ink);
}

.mobile-side-link-active {
  border-color: rgba(47, 109, 255, 0.18);
  background: rgba(47, 109, 255, 0.08);
  color: var(--site-accent);
}

.mobile-side-link-special {
  border-color: #ffd8bc;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(255, 240, 227, 0.9));
}

.mobile-side-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #ff7b2f;
  flex: 0 0 auto;
}

.mobile-side-link-icon svg {
  width: 20px;
  height: 20px;
}

.mobile-side-legal {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.84);
}

.mobile-side-legal-link {
  font-size: 14px;
  color: #64748b;
}

.site-top-button:hover {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.22);
}

.site-top-button:focus-visible {
  outline: 2px solid rgba(47, 109, 255, 0.38);
  outline-offset: 3px;
}

body.site-top-button-visible .site-top-button {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.button-text,
.button-label {
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.button-label {
  display: inline-block;
}

.site-main {
  position: relative;
}

.page-section {
  padding: 24px 16px 0;
}

.page-section:first-of-type {
  padding-top: 24px;
}

.section-shell {
  max-width: 80rem;
  margin: 0 auto;
}

.section-shell-narrow {
  max-width: 68rem;
}

.panel-surface {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--site-shadow-soft);
  backdrop-filter: blur(16px);
}

.panel-dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: var(--site-dark);
  box-shadow: var(--site-shadow);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 6px 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 48rem;
}

.section-heading.is-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  margin: 20px 0 0;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.02;
  color: var(--site-ink);
}

.section-description {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}

.hero-section {
  padding-top: 24px;
  padding-bottom: 64px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-copy-wrap {
  max-width: 42rem;
}

.hero-title {
  margin: 24px 0 0;
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.95;
  color: var(--site-ink);
}

.hero-lede {
  margin: 24px 0 0;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
}

.hero-note {
  margin: 20px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .button-link {
  min-height: 48px;
  max-width: min(100%, 18rem);
  border-radius: 18px;
  padding: 0 20px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 32px;
  font-size: 14px;
  color: #475569;
}

.trust-point {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: min(100%, 20rem);
}

.trust-point span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-point::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--site-accent);
  box-shadow: 0 0 0 6px rgba(47, 109, 255, 0.12);
}

.plugin-console {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.plugin-console-glow {
  position: absolute;
  top: 20%;
  right: 6%;
  width: 44%;
  height: 74%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 159, 110, 0.2) 0%, rgba(47, 109, 255, 0.14) 42%, transparent 78%);
  filter: blur(48px);
}

.mock-chip {
  position: absolute;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--site-shadow-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mock-chip-muted {
  top: 56px;
  left: 4%;
  border: 1px solid rgba(226, 232, 240, 0.92);
  color: #64748b;
}

.mock-chip-success {
  top: 12px;
  right: 7%;
  border: 1px solid rgba(110, 231, 183, 0.5);
  color: var(--site-ink);
}

.phone-screen {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 12px;
}

.phone-screen-broken {
  top: 96px;
  left: -1%;
  z-index: 10;
  width: min(46%, 310px);
  min-width: 255px;
  transform: rotate(-6deg);
  background: #08101d;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  opacity: 0.88;
}

.phone-screen-safe {
  top: 32px;
  right: -1%;
  z-index: 20;
  width: min(52%, 370px);
  min-width: 300px;
  border-color: rgba(110, 231, 183, 0.3);
  background: #071120;
  box-shadow: 0 42px 110px rgba(15, 23, 42, 0.28);
}

.phone-logo-float {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.phone-logo-float img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.phone-notch {
  width: 96px;
  height: 24px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-screen-safe .phone-body {
  background: linear-gradient(180deg, #fcfeff 0%, #eef7f4 100%);
}

.phone-screen-broken .phone-body {
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.phone-body {
  overflow: hidden;
  padding: 16px;
  border-radius: 30px;
}

.phone-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #64748b;
}

.phone-card {
  margin-top: 20px;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.phone-screen-safe .phone-card {
  border: 1px solid rgba(167, 243, 208, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 247, 0.98));
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.phone-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
}

.phone-title {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: var(--site-ink);
}

.phone-copy {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
}

.rewrite-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(167, 243, 208, 0.9);
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.92);
  color: #047857;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.rewrite-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--site-success);
}

.cta-risk-shell {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(252, 165, 165, 0.8);
  background: rgba(254, 242, 242, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.phone-screen-safe .cta-risk-shell {
  border-color: rgba(110, 231, 183, 0.85);
  background: linear-gradient(180deg, rgba(237, 253, 245, 0.96), rgba(228, 248, 239, 0.9));
  box-shadow: 0 14px 32px rgba(15, 159, 110, 0.12);
}

.cta-risk-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-badge-tone-danger {
  color: var(--site-danger);
}

.mini-badge-tone-success {
  color: var(--site-success);
}

.rewrite-map {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.rewrite-map-del {
  color: #f87171;
  text-decoration: line-through;
  text-decoration-color: #fca5a5;
}

.rewrite-map-arrow {
  color: var(--site-success);
}

.rewrite-map-add {
  color: #047857;
}

.cta-button-preview {
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(252, 165, 165, 0.8);
  background: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.33;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.phone-screen-broken .cta-button-preview {
  color: var(--site-danger);
}

.phone-screen-safe .cta-button-preview {
  border-color: rgba(110, 231, 183, 0.85);
  color: var(--site-ink);
}

.cta-note {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.6;
}

.phone-screen-broken .cta-note {
  color: var(--site-danger);
}

.phone-screen-safe .cta-note {
  color: #059669;
}

.phone-input-stack {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  opacity: 0.92;
}

.phone-input-ghost,
.phone-helper {
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.92);
  font-size: 14px;
  color: #94a3b8;
}

.hero-bottom-label {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 30;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--site-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.feature-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.feature-card,
.proof-card {
  height: 100%;
  padding: 20px;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card-head > :first-child {
  min-width: 0;
}

.card-head.is-centered {
  align-items: center;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--site-ink);
}

.card-copy {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  flex: 0 0 auto;
  max-width: min(100%, 14rem);
  min-width: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-badge-neutral {
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.9);
  color: #64748b;
}

.card-badge-warning {
  background: rgba(255, 251, 235, 0.95);
  color: var(--site-warning);
}

.card-badge-success {
  background: rgba(236, 253, 245, 0.95);
  color: var(--site-success);
}

.card-badge-accent {
  background: rgba(239, 246, 255, 0.95);
  color: var(--site-accent);
}

.role-grid,
.proof-tiles,
.context-grid,
.launch-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.role-tile,
.info-tile,
.proof-tile,
.mini-panel {
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 24px;
  background: rgba(248, 250, 252, 0.82);
}

.role-label,
.info-label,
.panel-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}

.role-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}

.role-source {
  margin-top: 16px;
  font-size: 14px;
  color: #64748b;
}

.role-output,
.info-value {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--site-ink);
}

.role-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(226, 232, 240, 0.9);
  font-size: 12px;
  line-height: 1.7;
  color: #64748b;
}

.dark-meter {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 28px;
  background: #020617;
  color: #ffffff;
}

.dark-meter-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94a3b8;
}

.meter-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.meter-value {
  text-align: right;
}

.meter-number {
  font-size: 32px;
  font-weight: 700;
}

.meter-number-danger {
  color: #fb7185;
}

.meter-number-success {
  color: #34d399;
}

.meter-caption {
  margin-top: 4px;
  font-size: 12px;
  color: #94a3b8;
}

.meter-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: 999px;
}

.meter-fill-danger {
  width: 88%;
  background: #fb7185;
}

.meter-fill-success {
  width: 64%;
  background: #34d399;
}

.meter-note {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.7;
}

.compare-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.compare-panel {
  padding: 16px;
  border: 1px solid rgba(252, 165, 165, 0.4);
  border-radius: 24px;
}

.compare-panel-success {
  border-color: rgba(167, 243, 208, 0.5);
  background: rgba(236, 253, 245, 0.86);
}

.compare-panel-danger {
  background: rgba(254, 242, 242, 0.88);
}

.compare-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #64748b;
}

.compare-card {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.ghost-line {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #e2e8f0;
}

.ghost-line.short {
  width: 6rem;
}

.ghost-line.medium {
  width: 8rem;
  margin-top: 12px;
}

.compare-button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  flex: 0 0 auto;
  max-width: min(100%, 11rem);
  min-width: 0;
  margin-top: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-state {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.step-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--site-dark);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  flex: 0 0 auto;
}

.step-label {
  flex: 1 1 auto;
  padding: 12px 16px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.82);
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.flow-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.flow-column {
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 24px;
  background: rgba(248, 250, 252, 0.82);
}

.flow-stack {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.flow-box,
.launch-point,
.chip-item,
.signal-chip {
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  color: #475569;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.flow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 10px 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}

.pricing-shell {
  margin-top: 48px;
  padding: 20px;
}

.pricing-intro-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--site-ink);
}

.pricing-intro-copy {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.pricing-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.pricing-tier {
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 28px;
  background: rgba(248, 250, 252, 0.82);
}

.pricing-tier-highlight {
  border-color: rgba(147, 197, 253, 0.8);
  background: linear-gradient(180deg, rgba(47, 109, 255, 0.09), rgba(255, 255, 255, 0.92));
}

.tier-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tier-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--site-ink);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 700;
}

.tier-price {
  margin-top: 12px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--site-ink);
}

.tier-description {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.tier-callout {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(191, 219, 254, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.tier-callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.tier-callout-title {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--site-ink);
}

.tier-callout-copy {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.tier-callout-note {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
}

.tier-bullets {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.tier-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #334155;
}

.tier-bullet::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--site-accent);
  flex: 0 0 auto;
}

.tier-emphasis {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.launch-grid {
  display: grid;
  gap: 20px;
}

.launch-card {
  padding: 20px;
  overflow: hidden;
}

.launch-card-inner {
  padding: 20px;
  border-radius: 28px;
}

.launch-card-figma .launch-card-inner {
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: linear-gradient(145deg, rgba(47, 109, 255, 0.08), rgba(15, 159, 110, 0.05));
}

.launch-card-product .launch-card-inner {
  border: 1px solid #ffd6b3;
  background: linear-gradient(135deg, rgba(255, 156, 66, 0.12), rgba(255, 255, 255, 0.96));
}

.launch-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.launch-top > :first-child {
  min-width: 0;
}

.launch-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.launch-card-figma .launch-kicker {
  color: #64748b;
}

.launch-card-product .launch-kicker {
  color: #b8611f;
}

.launch-title {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--site-ink);
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  flex: 0 0 auto;
  max-width: min(100%, 12rem);
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.launch-preview {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.launch-preview-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.launch-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 4px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.launch-logo img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.launch-preview-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--site-ink);
}

.launch-preview-copy {
  margin-top: 4px;
  font-size: 12px;
  color: #64748b;
}

.launch-points {
  margin-top: 16px;
}

.launch-card-product .launch-point {
  background: #ffffff;
}

.final-cta-shell {
  overflow: hidden;
  padding: 32px 20px;
  color: #ffffff;
}

.final-cta-grid {
  display: grid;
  gap: 40px;
  align-items: end;
}

.final-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.final-title {
  margin-top: 20px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.final-copy {
  margin-top: 16px;
  max-width: 38rem;
  font-size: 16px;
  line-height: 1.75;
  color: #cbd5e1;
}

.final-form-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.final-form-copy {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
}

.final-form-shell {
  margin-top: 20px;
}

.final-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 14px;
  color: #94a3b8;
  transition: color 160ms ease;
}

.final-link:hover {
  color: #ffffff;
}

.docs-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.docs-card {
  padding: 20px;
}

.docs-card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--site-ink);
}

.docs-card-copy {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.docs-card-actions {
  margin-top: 24px;
}

.docs-notice {
  margin-top: 18px;
}

.doc-article {
  margin-top: 40px;
  padding: 24px;
}

.doc-header {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.doc-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}

.doc-title {
  margin-top: 12px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--site-ink);
}

.doc-updated {
  margin-top: 12px;
  font-size: 14px;
  color: #64748b;
}

.doc-sections {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.doc-section-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--site-ink);
}

.doc-body {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.doc-body p,
.doc-body li {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
}

.doc-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.doc-list li {
  display: flex;
  gap: 12px;
}

.doc-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--site-accent);
  flex: 0 0 auto;
}

.related-block {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.92);
  font-size: 14px;
  color: #475569;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.related-link:hover {
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.95);
  color: var(--site-ink);
}

.waitlist-form-shell {
  width: 100%;
}

.waitlist-frame {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--site-shadow-soft);
  backdrop-filter: blur(16px);
}

.waitlist-frame.is-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.waitlist-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-input,
.site-textarea {
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--site-ink);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.site-input {
  min-height: 56px;
  padding: 0 16px;
  font-size: 16px;
}

.site-textarea {
  min-height: 136px;
  padding: 14px 16px;
  resize: vertical;
  font-size: 14px;
  line-height: 1.7;
}

.waitlist-frame.is-dark .site-input,
.waitlist-frame.is-dark .site-textarea {
  background: #ffffff;
}

.site-input::placeholder,
.site-textarea::placeholder {
  color: #94a3b8;
}

.site-input:focus,
.site-textarea:focus {
  border-color: rgba(147, 197, 253, 0.95);
  box-shadow: 0 0 0 4px rgba(191, 219, 254, 0.7);
  background: #ffffff;
}

.site-input:disabled,
.site-textarea:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.field-label {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.field {
  display: block;
}

.field-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-error {
  margin-top: 8px;
  font-size: 12px;
  color: var(--site-danger);
}

.form-caption {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

.form-caption.is-dark {
  color: #cbd5e1;
}

.form-caption.is-success {
  color: #059669;
}

.form-caption.is-warning {
  color: var(--site-warning);
}

.form-caption.is-error {
  color: var(--site-danger);
}

.security-section {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.security-form-title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--site-ink);
}

.security-form-copy {
  margin-top: 12px;
  max-width: 40rem;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.security-submit {
  margin-top: 4px;
}

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

.website-preview {
  overflow: hidden;
  padding: 0;
}

.website-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.preview-title-row {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 12px;
}

.preview-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  flex: 0 0 auto;
  max-width: min(100%, 11rem);
  min-width: 0;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-pill-success {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  font-weight: 700;
}

.website-preview-grid {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.website-canvas {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #0f172a;
}

.website-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.website-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
}

.route-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  flex: 0 0 auto;
  max-width: min(100%, 9rem);
  min-width: 0;
  padding: 4px 8px;
  border: 1px solid rgba(252, 165, 165, 0.8);
  border-radius: 10px;
  background: rgba(254, 242, 242, 0.92);
  color: var(--site-danger);
  font-size: 10px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.website-hero-card {
  margin-top: 20px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.92);
}

.website-risk-button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  flex: 0 0 auto;
  max-width: min(100%, 220px);
  min-width: 0;
  margin-top: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(252, 165, 165, 0.85);
  border-radius: 16px;
  background: #ffffff;
  color: var(--site-danger);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.website-risk-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--site-danger);
}

.website-meta-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.meta-box {
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.88);
}

.meta-box .panel-label {
  color: #94a3b8;
}

.meta-box .launch-point {
  margin-top: 12px;
  padding: 10px 12px;
}

.queue-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.queue-panel-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.queue-panel-copy {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
}

.finding-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.finding-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.finding-head > :first-child {
  min-width: 0;
}

.finding-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.finding-copy {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
  color: #94a3b8;
}

.severity-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  flex: 0 0 auto;
  max-width: min(100%, 8rem);
  min-width: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.severity-critical {
  border: 1px solid rgba(252, 165, 165, 0.9);
  background: rgba(254, 242, 242, 0.92);
  color: var(--site-danger);
}

.severity-high {
  border: 1px solid rgba(253, 230, 138, 0.92);
  background: rgba(255, 251, 235, 0.95);
  color: var(--site-warning);
}

.severity-medium {
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.92);
  color: #64748b;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer-wrap {
  padding: 32px 16px 48px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 80rem;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--site-shadow-soft);
  backdrop-filter: blur(18px);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-link,
.footer-legal-link,
.footer-action {
  font-size: 14px;
  color: #64748b;
  transition: color 160ms ease;
}

.footer-link:hover,
.footer-legal-link:hover,
.footer-action:hover {
  color: var(--site-ink);
}

.footer-legal {
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 14px;
  color: #64748b;
}

@media (min-width: 640px) {
  .site-header-center {
    display: flex;
  }

  .hero-section,
  .page-section:first-of-type {
    padding-top: 40px;
  }

  .page-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
  }

  .plugin-console {
    height: 580px;
  }

  .role-grid,
  .proof-tiles,
  .docs-grid,
  .compare-grid,
  .pricing-list,
  .launch-grid,
  .website-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .tier-bullets,
  .website-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waitlist-row {
    flex-direction: row;
  }

  .waitlist-row .site-input {
    flex: 1 1 auto;
  }

  .waitlist-row .button-link {
    flex: 0 0 auto;
  }

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

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .role-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .feature-grid,
  .launch-grid,
  .website-preview-grid,
  .flow-grid,
  .final-cta-grid {
    align-items: center;
  }

  .feature-grid,
  .proof-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .grid-span-4 {
    grid-column: span 4 / span 4;
  }

  .grid-span-5 {
    grid-column: span 5 / span 5;
  }

  .grid-span-7 {
    grid-column: span 7 / span 7;
  }

  .grid-span-8 {
    grid-column: span 8 / span 8;
  }

  .pricing-shell,
  .docs-card,
  .launch-card,
  .feature-card,
  .proof-card,
  .doc-article {
    padding: 24px;
  }

  .flow-grid {
    grid-template-columns: 0.82fr auto 1.18fr;
  }

  .final-cta-grid {
    grid-template-columns: 1.06fr 0.94fr;
  }

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

  .website-preview-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
}

@media (max-width: 639px) {
  :root {
    --site-header-offset: 56px;
    --site-top-button-size: 46px;
    --site-header-control-size: 34px;
    --site-header-control-height: 34px;
  }

  .site-header-shell {
    display: grid;
    grid-template-columns: repeat(4, var(--site-header-control-size));
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    padding: 5px 8px;
  }

  .desktop-brand-link,
  .site-header-center {
    display: none;
  }

  .mobile-brand-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--site-header-control-size);
    height: var(--site-header-control-size);
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
  }

  .mobile-brand-button .brand-icon-shell {
    width: var(--site-header-control-size);
    height: var(--site-header-control-size);
    border-radius: 12px;
  }

  .site-actions {
    display: contents;
    margin-left: 0;
    flex-wrap: nowrap;
  }

  .locale-group,
  .launch-group {
    display: contents;
  }

  .locale-picker {
    min-width: 0;
  }

  .locale-picker-trigger {
    width: var(--site-header-control-size);
    max-width: none;
    min-width: var(--site-header-control-size);
    min-height: var(--site-header-control-size);
    padding: 0;
    gap: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }

  .locale-trigger-copy {
    display: none;
  }

  .locale-flag {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    font-size: 16px;
  }

  .locale-trigger-chevron {
    display: none;
  }

  .locale-picker-menu {
    left: auto;
    right: 0;
    min-width: 11.5rem;
  }

  .launch-actions {
    display: contents;
  }

  .launch-actions .button-link {
    flex: 0 0 auto;
    width: var(--site-header-control-size);
    min-width: var(--site-header-control-size);
    min-height: var(--site-header-control-size);
    padding: 0;
    border-radius: 12px;
  }

  .launch-actions .button-text,
  .launch-actions .button-label {
    display: none;
  }

  .launch-actions .button-link svg {
    width: 18px;
    height: 18px;
  }

  .launch-actions .button-link:first-of-type svg {
    width: 19px;
    height: 19px;
  }

  .mobile-panel-overlay,
  .mobile-side-panel {
    display: block;
  }

  .site-top-button {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .card-head,
  .launch-top,
  .website-preview-head,
  .finding-head {
    flex-wrap: wrap;
  }

  .card-badge,
  .launch-pill,
  .severity-pill {
    max-width: 100%;
  }

  .preview-title-row {
    width: 100%;
    justify-content: space-between;
  }

  .hero-title {
    max-width: none;
  }

  .phone-screen-broken {
    min-width: 215px;
  }

  .phone-screen-safe {
    min-width: 250px;
  }

  .hero-bottom-label {
    bottom: 20px;
  }
}

@media (max-width: 359px) {
  .site-header-shell {
    gap: 6px;
  }
}
