:root {
  color-scheme: dark;
  --bg: #0b0f17;
  --bg-soft: #111827;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #eef2ff;
  --muted: rgba(255, 255, 255, 0.62);
  --accent: #f97316;
  --accent-2: #14b8a6;
  --accent-soft: rgba(249, 115, 22, 0.15);
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #14b8a6;
  --shadow: rgba(0, 0, 0, 0.35);
  --select-arrow-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.25 5.25L7 9L10.75 5.25' stroke='rgba(238,242,255,0.92)' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --select-arrow-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.25 5.25L7 9L10.75 5.25' stroke='rgba(31,41,55,0.9)' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --light-surface: #f4f7fd;
  --light-surface-2: #eaf1fc;
  --light-card: #ffffff;
  --light-border: rgba(51, 65, 85, 0.18);
  --light-text: #1f2937;
  --light-muted: rgba(31, 41, 55, 0.7);
  --light-shadow: rgba(15, 23, 42, 0.12);
  --container: min(1180px, calc(100% - 3rem));
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #2d3c55, #0f1726 56%);
  color: var(--text);
  font: 400 1rem/1.55 "Space Grotesk", "Segoe UI", sans-serif;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2.5rem;
  bottom: 2.5rem;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.36), transparent);
  pointer-events: none;
  opacity: 0.45;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 99, 235, 0.1), transparent 36%),
    radial-gradient(circle at 82% 8%, rgba(20, 184, 166, 0.08), transparent 32%);
  opacity: 0.7;
  z-index: 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 90;
  pointer-events: none;
  background: transparent;
}

.scroll-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.95), rgba(14, 165, 233, 0.95), rgba(20, 184, 166, 0.96));
  box-shadow: 0 0 14px rgba(14, 165, 233, 0.38);
  transition: width 0.08s linear;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.7rem);
}

h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.04rem, 2.2vw, 1.35rem);
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(2.45rem, 6.6vw, 5.2rem) 0;
}

.section.tone-light {
  position: relative;
}

.section.tone-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f7fafe;
  z-index: 0;
}

.section.tone-light > .container {
  color: var(--light-text);
}

.section.tone-light .eyebrow {
  color: #0f766e;
}

.section.tone-light .brand-lockup-thrift {
  color: var(--light-text);
}

.section.tone-light .brand-lockup-erp {
  color: #c9892c;
}

.section.tone-light .lead,
.section.tone-light .muted,
.section.tone-light .pricing-card ul,
.section.tone-light .catalog-list,
.section.tone-light .timeline p,
.section.tone-light .video-slot,
.section.tone-light .reg-price,
.section.tone-light .price-period,
.section.tone-light .stat-label,
.section.tone-light .stat-note {
  color: var(--light-muted);
}

.section.tone-light .card,
.section.tone-light .pricing-card,
.section.tone-light .route-panel,
.section.tone-light .lab-card,
.section.tone-light .stat-card {
  background: #ffffff;
  border-color: var(--light-border);
  box-shadow: 0 10px 22px var(--light-shadow);
}

.section.tone-light .badge,
.section.tone-light .seat-pill {
  background: #ffffff;
  border-color: var(--light-border);
  color: var(--light-text);
}

.section.tone-light .video-slot {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--light-border);
}

.section.tone-light .pill {
  background: #ffffff;
  border-color: var(--light-border);
  color: var(--light-muted);
}

.section.tone-light .pill.active,
.section.tone-light .pill:hover,
.section.tone-light .pill:focus-visible {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(14, 165, 233, 0.16));
  color: var(--light-text);
  border-color: rgba(37, 99, 235, 0.45);
}

.section.tone-light .table th {
  color: var(--light-muted);
}

.section.tone-light .table td {
  color: var(--light-text);
  border-bottom: 1px solid rgba(51, 65, 85, 0.12);
}

.section.tone-light .table tr {
  background: #ffffff;
}

.section.tone-light .input,
.section.tone-light .select,
.section.tone-light textarea {
  background-color: #ffffff;
  color: var(--light-text);
  border-color: var(--light-border);
}

.section.tone-light .select {
  background-image: var(--select-arrow-light);
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 14px 14px;
}

.section.tone-light .select option {
  color: var(--light-text);
  background: #ffffff;
}

.section.tone-light .input:focus,
.section.tone-light .select:focus,
.section.tone-light textarea:focus {
  border-color: rgba(24, 119, 242, 0.52);
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.14);
}

.section.tone-light .btn-ghost,
.section.tone-light .button.secondary {
  color: var(--light-text);
  background: #ffffff;
  border-color: var(--light-border);
}

.section.tone-light .timeline li {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--light-border);
}

.section.tone-light .live-core-shell {
  color: var(--text);
}

.section.tone-light .live-core-shell .card,
.section.tone-light .live-core-shell .stat-card {
  background: var(--panel);
  border-color: var(--panel-border);
  box-shadow: 0 10px 30px var(--shadow);
}

.section.tone-light .live-core-shell .muted,
.section.tone-light .live-core-shell .stat-label,
.section.tone-light .live-core-shell .stat-note {
  color: var(--muted);
}

.section.tone-light .live-core-shell .input,
.section.tone-light .live-core-shell .select,
.section.tone-light .live-core-shell textarea {
  background-color: rgba(12, 18, 30, 0.9);
  color: var(--text);
  border-color: var(--panel-border);
}

.section.tone-light .live-core-shell .select {
  background-image: var(--select-arrow-dark);
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 14px 14px;
}

.section.tone-light .live-core-shell .table th {
  color: var(--muted);
}

.section.tone-light .live-core-shell .table td {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section.tone-light .live-core-shell .table tr {
  background: transparent;
}

.compact-hero {
  padding-top: clamp(2.2rem, 6vw, 4.2rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.15rem;
  height: 1px;
  background: currentColor;
}

.lead {
  max-width: 72ch;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.66;
  letter-spacing: 0.002em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(11, 15, 23, 0.9), rgba(11, 15, 23, 0.72));
  border-bottom: 1px solid var(--panel-border);
}

.header-wrap {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.site-brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), 0 10px 20px rgba(0, 0, 0, 0.35);
}

.site-brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-brand-text {
  display: grid;
  line-height: 1;
  gap: 0.13rem;
}

.site-brand-main {
  display: inline-flex;
  align-items: baseline;
  gap: 0.03em;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-brand-text small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 700;
}

.brand-lockup-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.02em;
  white-space: nowrap;
}

.brand-lockup-thrift {
  color: #ffffff;
}

.brand-lockup-erp {
  color: #f6bb5e;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.site-nav .nav-dropdown {
  position: relative;
}

.site-nav .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  padding: 0.52rem 0.82rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 500 0.94rem/1 "Space Grotesk", sans-serif;
  cursor: pointer;
  transition: 0.2s ease;
}

.site-nav .nav-dropdown-toggle::after {
  content: "▾";
  font-size: 0.72rem;
  line-height: 1;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav .nav-dropdown-toggle:hover,
.site-nav .nav-dropdown-toggle:focus-visible,
.site-nav .nav-dropdown-toggle.active,
.site-nav .nav-dropdown.has-active .nav-dropdown-toggle {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.site-nav .nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.site-nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.48rem);
  left: 0;
  min-width: 220px;
  display: none;
  padding: 0.38rem;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  background: rgba(11, 15, 23, 0.98);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
  z-index: 65;
}

.site-nav .nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 0.2rem;
}

.site-nav .nav-dropdown-menu a {
  display: block;
  border-radius: 9px;
  padding: 0.52rem 0.64rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
}

.site-nav .nav-dropdown-menu a:hover,
.site-nav .nav-dropdown-menu a:focus-visible,
.site-nav .nav-dropdown-menu a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  background: var(--panel);
  color: var(--text);
  padding: 0.48rem 0.82rem;
  font: 600 0.86rem/1 "Space Grotesk", sans-serif;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  inset: -25% auto auto -12%;
  width: min(620px, 66vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.26), transparent 72%);
}

.hero::after {
  inset: auto -16% -34% auto;
  width: min(760px, 72vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 74%);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(1.2rem, 4vw, 2.6rem);
  align-items: start;
}

.hero-story {
  max-width: 58ch;
}

.hero-story h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
}

.hero-story .lead {
  max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
}

.nav-cta {
  margin-left: 0.4rem;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 40px;
  padding: 10px 16px;
  font: 600 0.94rem/1 "Space Grotesk", sans-serif;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary,
.button {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.34);
}

.btn-ghost,
.button.secondary {
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.42);
  background: rgba(15, 23, 42, 0.46);
}

.button.danger {
  background: linear-gradient(135deg, var(--danger), #f97316);
  color: #fff;
}

.button:disabled,
.button[disabled] {
  opacity: 0.56;
  cursor: not-allowed;
}

.hero-stage {
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: clamp(1rem, 2.1vw, 1.35rem);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(37, 99, 235, 0.16), transparent 58%),
    radial-gradient(120% 140% at 100% 0%, rgba(20, 184, 166, 0.14), transparent 62%),
    rgba(8, 12, 20, 0.9);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 0.95rem;
}

.hero-stage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-stage-eyebrow {
  margin: 0 0 0.28rem;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
}

.hero-stage-head h3 {
  font-size: clamp(1.12rem, 2.1vw, 1.44rem);
}

.hero-stage .badge {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
}

.hero-route-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero-route-row .pill {
  cursor: default;
  padding: 6px 10px;
  font-size: 11px;
}

.hero-stage-main {
  display: grid;
  gap: 0.78rem;
}

.hero-inline-card {
  background: rgba(10, 15, 26, 0.74);
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: none;
  padding: 0.88rem;
}

.hero-inline-card .section-title {
  margin-bottom: 10px;
}

.hero-inline-card .section-title h3 {
  font-size: 0.98rem;
}

.hero-inline-toolbar {
  margin-bottom: 10px;
}

.hero-inline-toolbar .input,
.hero-inline-toolbar .select {
  min-width: 135px;
}

.hero-stage-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.hero-stage-stats .stat-card {
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.78);
}

.hero-stage-stats .stat-value {
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-stage-note {
  margin: 0;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  font-size: 0.82rem;
  color: var(--muted);
}

.launch-hero-replacement {
  --launch-brand-thrift: #ffffff;
  --launch-brand-erp: #f6bb5e;
  --launch-accent-deep: #cc8f2f;
  --launch-panel-strong: rgba(17, 26, 38, 0.94);
}

.launch-hero-replacement.hero {
  padding-top: clamp(1.05rem, 3.4vw, 2.15rem);
  padding-bottom: clamp(2.1rem, 5.5vw, 4.3rem);
  overflow: visible;
}

.launch-hero-replacement.hero::before,
.launch-hero-replacement.hero::after {
  display: none;
}

.launch-hero-replacement-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(1.2rem, 3.8vw, 2.6rem);
  align-items: start;
}

.launch-hero-replacement .hero-copy {
  align-self: start;
}

.launch-hero-replacement .kicker,
.launch-brand-slider .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 800;
}

.launch-hero-replacement .kicker::before,
.launch-brand-slider .kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(67, 210, 201, 0.2), rgba(67, 210, 201, 0.95));
}

.launch-hero-replacement h1,
.launch-hero-replacement h2 {
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.022em;
  line-height: 1.08;
}

.launch-hero-replacement h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.7rem);
}

.launch-hero-replacement h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

.launch-hero-replacement .hero-word-rotator {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
  color: var(--launch-brand-erp);
  white-space: nowrap;
  transition: width 0.2s ease;
}

.launch-hero-replacement .hero-word-text {
  display: inline-block;
  padding-right: 0.1em;
  border-right: 2px solid rgba(246, 187, 94, 0.9);
  animation: launch-caret-blink 0.95s steps(1, end) infinite;
}

.launch-hero-replacement .hero-word-rotator.reduced-motion .hero-word-text {
  border-right-color: transparent;
  animation: none;
}

.launch-hero-replacement .hero-proofline {
  margin-top: 0.75rem;
  max-width: 54ch;
  color: rgba(237, 244, 255, 0.9);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.launch-hero-replacement .hero-lead {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.launch-hero-replacement .hero-windows-compat {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: max-content;
  padding: 0.38rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.5);
  background: rgba(37, 99, 235, 0.14);
  color: rgba(237, 244, 255, 0.96);
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launch-hero-replacement .hero-windows-logo {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.launch-hero-replacement .hero-windows-logo svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #53b0ff;
}

.launch-hero-replacement .brand-lockup-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.02em;
  white-space: nowrap;
}

.launch-hero-replacement .brand-lockup-thrift {
  color: var(--launch-brand-thrift);
}

.launch-hero-replacement .brand-lockup-erp {
  color: var(--launch-brand-erp);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.launch-hero-replacement .cta-row {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.launch-hero-replacement .hero-meta {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: rgba(237, 244, 255, 0.64);
}

.launch-hero-replacement .btn {
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: auto;
  padding: 0.64rem 1rem;
  font: 700 0.83rem/1.2 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-hero-replacement .btn-primary {
  color: #30200c;
  background: linear-gradient(145deg, #ffd48f 0%, var(--launch-brand-erp) 52%, var(--launch-accent-deep) 100%);
  box-shadow: 0 14px 28px rgba(204, 143, 47, 0.35);
}

.launch-hero-replacement .btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
}

.launch-hero-replacement .hero-console {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(246, 187, 94, 0.36);
  background:
    linear-gradient(180deg, rgba(246, 187, 94, 0.07), transparent 35%),
    linear-gradient(140deg, var(--launch-panel-strong), var(--panel));
  padding: 1.2rem;
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 215, 145, 0.12);
}

.launch-hero-replacement .hero-console::before {
  content: "";
  position: absolute;
  top: -94px;
  right: -78px;
  width: 216px;
  height: 216px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 128, 0.28), rgba(255, 208, 128, 0));
  pointer-events: none;
}

.launch-hero-replacement .console-kicker {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(246, 187, 94, 0.92);
  margin-bottom: 0.4rem;
}

.launch-hero-replacement .hero-console h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.42rem, 2.7vw, 1.92rem);
  line-height: 1.14;
  color: rgba(255, 247, 232, 0.98);
}

.launch-hero-replacement .trial-highlight {
  position: relative;
  z-index: 1;
  margin-top: 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 215, 145, 0.42);
  background:
    linear-gradient(142deg, rgba(255, 190, 95, 0.23), rgba(255, 190, 95, 0.09) 50%, rgba(24, 119, 242, 0.15)),
    rgba(16, 25, 37, 0.88);
  padding: 0.72rem 0.78rem;
  box-shadow: inset 0 1px 0 rgba(255, 244, 216, 0.15);
}

.launch-hero-replacement .trial-highlight-title {
  margin: 0;
  color: #ffdca8;
  font: 800 0.97rem/1.15 "Rajdhani", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-hero-replacement .trial-highlight-sub {
  margin: 0.26rem 0 0;
  color: rgba(244, 248, 255, 0.9);
  font-size: 0.8rem;
}

.launch-hero-replacement .trial-highlight-chips {
  margin-top: 0.44rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.launch-hero-replacement .trial-highlight-chips span {
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 145, 0.36);
  background: rgba(10, 16, 25, 0.56);
  color: rgba(246, 250, 255, 0.92);
  font: 700 0.64rem/1 "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.24rem 0.48rem;
}

.launch-hero-replacement .countdown {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
}

.launch-hero-replacement .countdown-intro {
  margin-top: 0.72rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 250, 255, 0.84);
}

.launch-hero-replacement .time-cell {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 215, 145, 0.32);
  background:
    linear-gradient(170deg, rgba(255, 204, 120, 0.14), rgba(24, 119, 242, 0.08)),
    rgba(255, 255, 255, 0.03);
  text-align: center;
  padding: 0.72rem 0.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.launch-hero-replacement .time-cell span {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.45rem, 3.3vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 224, 173, 0.97);
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.launch-hero-replacement .time-cell small {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 244, 255, 0.74);
}

.launch-hero-replacement .countdown-note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: rgba(237, 244, 255, 0.82);
}

.launch-hero-replacement .launch-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.62rem;
}

.launch-hero-replacement .launch-form label {
  display: grid;
  gap: 0.26rem;
  font-size: 0.79rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(237, 244, 255, 0.88);
}

.launch-hero-replacement .launch-form input,
.launch-hero-replacement .launch-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 10, 15, 0.88);
  color: var(--text);
  font: 600 0.9rem/1.2 "Plus Jakarta Sans", sans-serif;
  padding: 0.6rem 0.64rem;
}

.launch-hero-replacement .launch-form input:focus,
.launch-hero-replacement .launch-form select:focus {
  outline: none;
  border-color: rgba(67, 210, 201, 0.9);
  box-shadow: 0 0 0 3px rgba(67, 210, 201, 0.14);
}

.launch-hero-replacement .inline-check {
  display: flex;
  align-items: flex-start;
  gap: 0.56rem;
  font-size: 0.76rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
}

.launch-hero-replacement .inline-check input {
  width: 16px;
  min-height: 16px;
  margin-top: 0.13rem;
  padding: 0;
}

.launch-hero-replacement .form-status {
  min-height: 1.14rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.launch-hero-replacement .form-status.error {
  color: var(--danger);
}

.launch-hero-replacement .form-status.success {
  color: var(--accent-2);
}

.launch-hero-replacement .launch-form .btn-primary {
  width: 100%;
  margin-top: 0.12rem;
  padding: 0.78rem 1rem;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  box-shadow:
    0 18px 30px rgba(204, 143, 47, 0.46),
    0 0 0 1px rgba(255, 213, 138, 0.25);
}

.launch-hero-replacement .launch-form .btn-primary:hover,
.launch-hero-replacement .launch-form .btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 22px 34px rgba(204, 143, 47, 0.52),
    0 0 0 1px rgba(255, 213, 138, 0.34);
}

.launch-hero-replacement .launch-form-note {
  margin: 0.06rem 0 0;
  text-align: center;
  color: rgba(237, 244, 255, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.launch-brand-slider {
  padding-top: clamp(0.7rem, 2vw, 1.2rem);
  padding-bottom: clamp(1rem, 2.4vw, 1.5rem);
}

.launch-brand-slider .section-head p {
  margin-top: 0.55rem;
  color: var(--muted);
  max-width: 64ch;
}

.launch-brand-slider .section-head h2 {
  margin-top: 0.28rem;
  font-family: "Rajdhani", "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.launch-brand-slider .compat-marquee {
  margin-top: 0.62rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(229, 50, 56, 0.1), rgba(24, 119, 242, 0.1), rgba(241, 100, 30, 0.1), rgba(92, 138, 60, 0.1)),
    rgba(9, 14, 21, 0.74);
  overflow: hidden;
  padding: 0.8rem 0;
}

.launch-brand-slider .compat-track {
  display: flex;
  width: max-content;
  gap: 0.7rem;
  animation: launch-compat-scroll 30s linear infinite;
}

.launch-brand-slider .compat-marquee:focus-within .compat-track {
  animation-play-state: paused;
}

.launch-brand-slider .compat-list {
  list-style: none;
  margin: 0;
  padding: 0 0.55rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.launch-brand-slider .compat-logo {
  --tile-tint: rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
  min-width: 220px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(145deg, var(--tile-tint), rgba(255, 255, 255, 0.08));
  padding: 0.72rem 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  opacity: 0.96;
  transition: opacity 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.launch-brand-slider .compat-logo:hover,
.launch-brand-slider .compat-logo:focus-within {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
}

.launch-brand-slider .compat-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.84);
  position: relative;
  flex-shrink: 0;
}

.launch-brand-slider .compat-icon {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.launch-brand-slider .compat-badge::after {
  content: attr(data-fallback);
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  font: 800 0.95rem/1 "Plus Jakarta Sans", sans-serif;
  color: #ffffff;
}

.launch-brand-slider .compat-badge.compat-missing .compat-icon {
  display: none;
}

.launch-brand-slider .compat-badge.compat-missing::after {
  display: grid;
}

.launch-brand-slider .compat-name {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(237, 244, 255, 0.9);
  white-space: nowrap;
}

.launch-brand-slider .compat-ebay {
  --tile-tint: rgba(0, 100, 210, 0.22);
}

.launch-brand-slider .compat-ebay .compat-badge {
  background: linear-gradient(135deg, #e53238 0%, #e53238 25%, #0064d2 25%, #0064d2 50%, #f5af02 50%, #f5af02 75%, #86b817 75%, #86b817 100%);
}

.launch-brand-slider .compat-mercari {
  --tile-tint: rgba(47, 109, 246, 0.22);
}

.launch-brand-slider .compat-mercari .compat-badge {
  background: linear-gradient(135deg, #2f6df6 0%, #4ea1ff 58%, #ff0211 100%);
}

.launch-brand-slider .compat-poshmark {
  --tile-tint: rgba(109, 63, 91, 0.2);
}

.launch-brand-slider .compat-poshmark .compat-badge {
  background: #6d3f5b;
}

.launch-brand-slider .compat-facebook {
  --tile-tint: rgba(24, 119, 242, 0.2);
}

.launch-brand-slider .compat-facebook .compat-badge {
  background: #1877f2;
}

.launch-brand-slider .compat-etsy {
  --tile-tint: rgba(241, 100, 30, 0.2);
}

.launch-brand-slider .compat-etsy .compat-badge {
  background: #f1641e;
}

.launch-brand-slider .compat-whatnot {
  --tile-tint: rgba(255, 233, 92, 0.2);
}

.launch-brand-slider .compat-whatnot .compat-badge {
  background: #ffe95c;
}

.launch-brand-slider .compat-tcgplayer {
  --tile-tint: rgba(47, 109, 179, 0.22);
}

.launch-brand-slider .compat-tcgplayer .compat-badge {
  background: #2f6db3;
}

.launch-brand-slider .compat-cardmarket {
  --tile-tint: rgba(35, 55, 91, 0.22);
}

.launch-brand-slider .compat-cardmarket .compat-badge {
  background: #23375b;
}

.launch-brand-slider .compat-comc {
  --tile-tint: rgba(240, 90, 40, 0.22);
}

.launch-brand-slider .compat-comc .compat-badge {
  background: #f05a28;
}

.launch-brand-slider .compat-pwcc {
  --tile-tint: rgba(29, 53, 87, 0.22);
}

.launch-brand-slider .compat-pwcc .compat-badge {
  background: #1d3557;
}

.launch-brand-slider .compat-goldin {
  --tile-tint: rgba(200, 161, 74, 0.22);
}

.launch-brand-slider .compat-goldin .compat-badge {
  background: #c8a14a;
}

.launch-brand-slider .compat-discogs {
  --tile-tint: rgba(51, 51, 51, 0.22);
}

.launch-brand-slider .compat-discogs .compat-badge {
  background: #333333;
}

.launch-brand-slider .compat-depop {
  --tile-tint: rgba(239, 43, 45, 0.2);
}

.launch-brand-slider .compat-depop .compat-badge {
  background: #ef2b2d;
}

.launch-brand-slider .compat-offerup {
  --tile-tint: rgba(0, 169, 224, 0.2);
}

.launch-brand-slider .compat-offerup .compat-badge {
  background: #00a9e0;
}

.launch-brand-slider .compat-stockx {
  --tile-tint: rgba(0, 175, 102, 0.2);
}

.launch-brand-slider .compat-stockx .compat-badge {
  background: #00af66;
}

.launch-brand-slider .compat-goat {
  --tile-tint: rgba(95, 100, 112, 0.2);
}

.launch-brand-slider .compat-goat .compat-badge {
  background: #5f6470;
}

.launch-brand-slider .compat-grailed {
  --tile-tint: rgba(46, 58, 77, 0.2);
}

.launch-brand-slider .compat-grailed .compat-badge {
  background: #2e3a4d;
}

.launch-brand-slider .compat-shopify {
  --tile-tint: rgba(92, 138, 60, 0.2);
}

.launch-brand-slider .compat-shopify .compat-badge {
  background: #5c8a3c;
}

@keyframes launch-caret-blink {
  0%,
  46% {
    border-right-color: rgba(246, 187, 94, 0.9);
  }
  47%,
  100% {
    border-right-color: transparent;
  }
}

@keyframes launch-compat-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.35rem));
  }
}

.purchase-tax-centerpoint-wrap {
  margin: 0.2rem 0 1rem;
  display: grid;
  justify-items: center;
  gap: 0.28rem;
}

.purchase-tax-centerpoint {
  display: flex;
  justify-content: center;
}

.purchase-tax-centerpoint span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.44);
  background: linear-gradient(130deg, rgba(20, 184, 166, 0.16), rgba(37, 99, 235, 0.12));
  color: #0f172a;
  padding: 0.44rem 0.86rem;
  font: 800 0.84rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.purchase-tax-footnote {
  margin: 0.38rem 0 0;
  text-align: center;
  color: var(--light-muted);
  font-size: 0.8rem;
}

.billing-toggle {
  margin: 0.8rem auto 0;
  max-width: 760px;
  border: 1px solid rgba(51, 65, 85, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(240, 249, 255, 0.92));
  padding: 0.8rem 0.9rem;
  display: grid;
  gap: 0.5rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.billing-toggle-label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--light-muted);
}

.billing-toggle-controls {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.36rem;
  padding: 0.28rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.billing-toggle-option {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #0f172a;
  font: 700 0.8rem/1.2 "Plus Jakarta Sans", sans-serif;
  padding: 0.48rem 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.billing-toggle-option:hover,
.billing-toggle-option:focus-visible {
  border-color: rgba(59, 130, 246, 0.38);
  background: rgba(59, 130, 246, 0.08);
}

.billing-toggle-option.is-active {
  border-color: rgba(14, 165, 233, 0.45);
  background: linear-gradient(130deg, rgba(14, 165, 233, 0.2), rgba(20, 184, 166, 0.18));
  color: #0c4a6e;
}

.billing-toggle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.13);
  color: #b45309;
  font: 700 0.63rem/1 "JetBrains Mono", monospace;
  letter-spacing: 0.03em;
  padding: 0.16rem 0.38rem;
}

.billing-toggle-promo {
  margin: 0;
  font-size: 0.79rem;
  color: var(--light-muted);
}

[data-current-billing="annual"] .billing-toggle-promo {
  color: #0f766e;
  font-weight: 600;
}

.section-head {
  max-width: 78ch;
}

.card,
.pricing-card,
.route-panel,
.lab-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: clamp(1rem, 2.3vw, 1.3rem);
  box-shadow: 0 10px 30px var(--shadow);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.compact-grid .stat-card {
  min-height: 100%;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.field-group {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.field-group label {
  font-size: 12px;
  color: var(--muted);
}

.field-group .input,
.field-group .select,
.field-group textarea {
  width: 100%;
  min-width: 0;
}

.section.tone-light .field-group label {
  color: var(--light-muted);
}

.feature-grid,
.catalog-grid,
.pricing-grid {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.purchase-pricing-grid {
  margin-top: 1rem;
  align-items: stretch;
}

.purchase-pricing-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tiered-pricing-shell {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.price-mode-inline {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 220px);
  margin-top: -0.02rem;
  padding: 0.2rem;
  border-radius: 11px;
  border: 1px solid rgba(71, 85, 105, 0.34);
  background:
    linear-gradient(150deg, rgba(15, 23, 42, 0.06), rgba(2, 6, 23, 0.1)),
    rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 5px 12px rgba(15, 23, 42, 0.08);
}

.price-mode-inline::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  left: 0.2rem;
  width: calc(50% - 0.2rem);
  border-radius: 8px;
  background: linear-gradient(136deg, rgba(3, 105, 161, 0.95), rgba(14, 165, 233, 0.9));
  box-shadow:
    0 7px 14px rgba(14, 165, 233, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateX(0);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
  z-index: 0;
}

[data-pricing-mode="team"] .price-mode-inline::before {
  transform: translateX(100%);
  background: linear-gradient(136deg, rgba(234, 88, 12, 0.96), rgba(249, 115, 22, 0.9));
  box-shadow:
    0 7px 14px rgba(249, 115, 22, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.price-mode-option {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  color: #334155;
  font: 700 0.72rem/1.2 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0.5rem 0.38rem;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.price-mode-option:hover,
.price-mode-option:focus-visible {
  transform: translateY(-1px);
  color: #0f172a;
}

.price-mode-option:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.55);
  outline-offset: 2px;
}

.price-mode-option.is-active {
  color: #f8fafc;
  text-shadow: 0 1px 0 rgba(2, 6, 23, 0.4);
}

.team-seat-adjust {
  margin-top: -0.12rem;
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.36rem;
  width: min(100%, 280px);
}

.team-seat-adjust[hidden] {
  display: none !important;
}

.team-seat-btn {
  border: 1px solid rgba(71, 85, 105, 0.34);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.86);
  color: #0f172a;
  font: 700 0.72rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.42rem 0.58rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.team-seat-btn:hover,
.team-seat-btn:focus-visible {
  border-color: rgba(14, 165, 233, 0.54);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(14, 165, 233, 0.18);
}

[data-pricing-mode="team"] .team-seat-btn:hover,
[data-pricing-mode="team"] .team-seat-btn:focus-visible {
  border-color: rgba(249, 115, 22, 0.58);
  box-shadow: 0 6px 12px rgba(249, 115, 22, 0.18);
}

.team-seat-count {
  border: 1px solid rgba(71, 85, 105, 0.26);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  color: #1e293b;
  font: 700 0.72rem/1 "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.48rem 0.46rem 0.44rem;
}

.tiered-pricing-grid {
  margin-top: 0.05rem;
}

.pricing-availability-list {
  margin-top: 0.15rem;
  gap: 0.36rem;
}

.pricing-availability-list li {
  padding: 0.44rem 0.52rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.48rem;
  border: 1px solid rgba(51, 65, 85, 0.14);
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.76);
}

.pricing-availability-list li::before {
  content: none !important;
}

.availability-flag {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 0.12rem;
}

.availability-flag.is-included {
  border: 1px solid rgba(22, 163, 74, 0.72);
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

.availability-flag.is-excluded {
  border: 1px solid rgba(220, 38, 38, 0.64);
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.availability-copy {
  display: grid;
  gap: 0.12rem;
}

.availability-copy strong {
  font-size: 0.81rem;
  color: #0f172a;
}

.availability-copy span {
  font-size: 0.74rem;
  color: #475569;
  line-height: 1.35;
}

[data-pricing-mode="team"] .tiered-pricing-grid .pricing-card.featured {
  border-color: rgba(249, 115, 22, 0.58);
}

.purchase-detail-link {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
}

.purchase-detail-cta {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.42);
  background: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 54%, #22c55e 100%);
  color: #f8fafc;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-inline: 1.05rem;
  box-shadow:
    0 12px 26px rgba(14, 165, 233, 0.26),
    0 0 0 2px rgba(14, 165, 233, 0.11);
}

.purchase-detail-cta::after {
  content: "  ->";
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 0.84em;
}

.purchase-detail-cta:hover,
.purchase-detail-cta:focus-visible {
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow:
    0 16px 30px rgba(20, 184, 166, 0.32),
    0 0 0 3px rgba(20, 184, 166, 0.15);
}

.pricing-compare-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(51, 65, 85, 0.18);
}

.pricing-compare-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.9), rgba(37, 99, 235, 0.82));
}

.pricing-compare-card.featured::before {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.95), rgba(20, 184, 166, 0.9));
}

.pricing-plan-cta {
  margin-top: 0.12rem;
  width: 100%;
}

.pricing-list-title {
  margin: 0.52rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--light-muted);
}

.pricing-card ul.pricing-feature-list {
  margin: 0.22rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.pricing-card ul.pricing-feature-list li {
  position: relative;
  padding: 0.48rem 0.58rem 0.5rem 1.65rem;
  border: 1px solid rgba(51, 65, 85, 0.15);
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.7);
  display: grid;
  gap: 0.14rem;
  color: var(--light-text);
  line-height: 1.35;
}

.pricing-card ul.pricing-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 163, 74, 0.65);
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 800;
}

.pricing-card ul.pricing-feature-list li strong {
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  color: #0f172a;
}

.pricing-card ul.pricing-feature-list li span {
  font-size: 0.77rem;
  color: var(--light-muted);
}

.pricing-difference {
  margin: 0.5rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(51, 65, 85, 0.14);
  color: var(--light-muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.pricing-difference strong {
  color: var(--light-text);
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured {
  background:
    linear-gradient(160deg, #fffaf1 0%, #fff1d9 54%, #ffe9c0 100%);
  border-color: rgba(194, 138, 57, 0.45);
  box-shadow: 0 22px 42px rgba(180, 120, 36, 0.22);
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured::before {
  background: linear-gradient(90deg, rgba(230, 138, 46, 0.95), rgba(212, 161, 84, 0.92));
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .tier {
  color: #b45309;
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured h2,
.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .plan-tagline,
.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .pricing-list-title,
.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .pricing-difference strong {
  color: #402510;
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .pricing-micro,
.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .pricing-difference {
  color: #6b4d2f;
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .pricing-meta-band {
  border-color: rgba(194, 138, 57, 0.36);
  background:
    radial-gradient(circle at 85% 15%, rgba(230, 138, 46, 0.2), transparent 62%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 218, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 20px rgba(166, 96, 29, 0.14);
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .seat-pill {
  border-color: rgba(180, 130, 60, 0.46);
  background: rgba(255, 255, 255, 0.74);
  color: #5c432a;
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .seat-pill::before {
  color: #7a5a39;
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .price-period {
  color: #7a5a39;
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured ul.pricing-feature-list li {
  border-color: rgba(194, 138, 57, 0.24);
  background: rgba(255, 255, 255, 0.84);
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured ul.pricing-feature-list li strong {
  color: #3f2a18;
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured ul.pricing-feature-list li span {
  color: #6b4d2f;
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .pricing-difference {
  border-top-color: rgba(180, 130, 60, 0.28);
}

.purchase-pricing-grid .pricing-card.pricing-compare-card.featured .btn-primary {
  color: #2d1d0f;
  background: linear-gradient(140deg, #ffd58a 0%, #f6b453 54%, #e68a2e 100%);
  border: 1px solid rgba(166, 96, 29, 0.4);
  box-shadow: 0 12px 24px rgba(230, 138, 46, 0.32);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.66rem;
}

.pricing-card.featured {
  border-color: rgba(249, 115, 22, 0.65);
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.2);
}

.tier {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-2);
}

.pricing-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-family: "JetBrains Mono", monospace;
}

.plan-tagline {
  font-size: 0.95rem;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.pricing-meta-band {
  position: relative;
  margin-top: 0.02rem;
  display: grid;
  gap: 0.42rem;
  padding: 0.56rem 0.62rem 0.58rem;
  border: 1px solid rgba(37, 99, 235, 0.23);
  border-radius: 13px;
  background:
    radial-gradient(circle at 86% 18%, rgba(14, 165, 233, 0.18), transparent 62%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 9px 20px rgba(15, 23, 42, 0.08);
}

[data-pricing-mode="team"] .pricing-meta-band {
  border-color: rgba(249, 115, 22, 0.34);
  background:
    radial-gradient(circle at 84% 16%, rgba(249, 115, 22, 0.2), transparent 60%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 9px 20px rgba(154, 52, 18, 0.11);
}

.pricing-micro {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.42;
  color: #475569;
}

.price-period {
  font-size: 0.9rem;
  margin-left: 0.3rem;
  color: var(--muted);
}

.reg-price {
  color: var(--muted);
  text-decoration: line-through;
}

.tiered-pricing-grid .seat-pill {
  position: relative;
  border: 1px solid rgba(51, 65, 85, 0.2);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 0.42rem 0.7rem 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0f172a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 4px 10px rgba(15, 23, 42, 0.06);
}

.tiered-pricing-grid .seat-pill::before {
  content: "Coverage";
  display: inline-block;
  margin-right: 0.4rem;
  color: #64748b;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-card ul,
.catalog-list {
  margin: 0.2rem 0 0;
  padding-left: 1.08rem;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.catalog-list.compact {
  gap: 0.28rem;
}

.catalog-card {
  display: grid;
  gap: 0.55rem;
}

.video-slot {
  margin-top: 0.65rem;
  border: 1px dashed var(--panel-border);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.timeline {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.timeline li {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.92rem 0.95rem 0.92rem 1.1rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.timeline p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.workflow-ops {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(0, 1.35fr);
  gap: 0.95rem;
  align-items: start;
}

.workflow-ops-nav {
  display: grid;
  gap: 0.55rem;
}

.workflow-ops-tab {
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.58);
  color: var(--text);
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 0.62rem;
  text-align: left;
  padding: 0.64rem 0.68rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.workflow-ops-tab:hover,
.workflow-ops-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(249, 115, 22, 0.5);
  outline: none;
}

.workflow-ops-tab.active {
  border-color: rgba(249, 115, 22, 0.62);
  background: linear-gradient(140deg, rgba(249, 115, 22, 0.2), rgba(20, 184, 166, 0.14));
}

.workflow-ops-tab > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(249, 115, 22, 0.58);
  display: grid;
  place-items: center;
  font: 600 0.74rem/1 "JetBrains Mono", monospace;
  color: #fff;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.58), rgba(20, 184, 166, 0.44));
}

.workflow-ops-tab div {
  display: grid;
  gap: 0.1rem;
}

.workflow-ops-tab strong {
  font-size: 0.9rem;
}

.workflow-ops-tab small {
  font-size: 0.72rem;
  color: var(--muted);
}

.workflow-ops-stage {
  padding: clamp(0.95rem, 2vw, 1.2rem);
}

.workflow-ops-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.72rem;
  flex-wrap: wrap;
}

.workflow-ops-route {
  margin: 0 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--accent-2);
}

.workflow-ops-head h3 {
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.workflow-ops-copy {
  margin: 0.25rem 0 0;
}

.workflow-ops-canvas {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.7rem;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.workflow-ops-stage.is-updating .workflow-ops-canvas {
  opacity: 0;
  transform: translateY(6px);
}

.ops-surface {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  background: rgba(11, 17, 30, 0.82);
  padding: 0.72rem;
}

.ops-surface .section-title {
  margin-bottom: 10px;
}

.ops-surface .toolbar {
  margin-bottom: 0;
}

.ops-surface .field-group {
  display: grid;
  gap: 6px;
}

.ops-surface .field-group label {
  font-size: 12px;
  color: var(--muted);
}

.ops-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.workflow-ops-footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.workflow-ops-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.workflow-ops-footer strong {
  color: var(--text);
}

.workflow-ops-controls {
  display: flex;
  gap: 0.5rem;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--panel-border);
}

.muted {
  color: var(--muted);
}

.stat-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 12px 14px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
}

.stat-value {
  font-size: 22px;
  font-weight: 600;
  margin-top: 4px;
}

.stat-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.table-wrap {
  width: 100%;
  overflow: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.table th {
  color: var(--muted);
  font-weight: 600;
}

.parity-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.65);
  background: rgba(16, 185, 129, 0.14);
  color: #34d399;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.14);
}

.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.input,
.select,
textarea {
  background: rgba(12, 18, 30, 0.9);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 8px 12px;
  color: var(--text);
  min-height: 40px;
  font: inherit;
}

.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: normal;
  background-image: var(--select-arrow-dark);
  background-position: right 11px center;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  padding-right: 34px;
  box-shadow: none;
}

.select option {
  background: #0f172a;
  color: var(--text);
}

.input:focus,
.select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.status-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: capitalize;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--panel-border);
}

.status-pill.in_stock {
  background: rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.6);
}

.status-pill.listed {
  background: rgba(249, 115, 22, 0.2);
  border-color: rgba(249, 115, 22, 0.6);
}

.status-pill.sold {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.6);
}

.status-pill.archived {
  background: rgba(148, 163, 184, 0.2);
  border-color: rgba(148, 163, 184, 0.6);
}

.route-demo {
  display: grid;
  gap: 1rem;
}

.route-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill.active,
.pill:hover,
.pill:focus-visible {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(14, 165, 233, 0.2));
  color: var(--text);
  border-color: rgba(37, 99, 235, 0.6);
  outline: none;
}

.form-status {
  min-height: 1.35rem;
  font-size: 0.92rem;
}

.form-status.ok {
  color: var(--success);
}

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

.status-good {
  color: var(--success);
}

.status-warn {
  color: var(--warning);
}

.status-bad {
  color: var(--danger);
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.45);
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.18), rgba(20, 184, 166, 0.14));
  padding: clamp(1.05rem, 2.2vw, 1.65rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--panel-border);
  padding: 1.3rem 0;
  margin-top: clamp(1rem, 3vw, 2.2rem);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-wrap div {
  display: flex;
  gap: 0.6rem;
}

.footer-wrap a {
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
}

.footer-wrap a:hover,
.footer-wrap a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.live-core-shell {
  margin-top: 1.35rem;
  position: relative;
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(8, 12, 20, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.live-core-shell .app-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 610px;
}

.live-core-shell .sidebar {
  background: var(--bg-soft);
  border-right: 1px solid var(--panel-border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: grid;
  gap: 4px;
}

.app-brand small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.live-core-shell .nav {
  display: grid;
  gap: 10px;
}

.live-core-shell .nav-section {
  display: grid;
  gap: 6px;
}

.live-core-shell .nav-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
}

.live-nav-item {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  text-align: left;
  border-radius: 12px;
  padding: 8px 10px;
  font: 500 13px/1.2 "Space Grotesk", sans-serif;
  cursor: pointer;
  transition: 0.2s ease;
}

.live-nav-item:hover,
.live-nav-item:focus-visible,
.live-nav-item.active {
  background: var(--panel);
  border-color: var(--panel-border);
  color: var(--text);
  outline: none;
}

.live-core-shell .content {
  padding: 18px 18px 20px;
  overflow: auto;
  max-height: 610px;
}

.live-core-shell .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.live-core-shell .topbar h1 {
  font-size: clamp(20px, 2.2vw, 28px);
}

.live-core-shell .scan-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 30;
}

.live-core-shell .scan-overlay[hidden] {
  display: none;
}

.live-core-shell .scan-panel {
  width: min(560px, 92%);
  max-height: calc(100% - 30px);
  overflow: auto;
  padding: 20px;
  border-radius: 18px;
  background: #0f172a;
  border: 1px solid var(--panel-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.live-core-shell .modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.live-core-shell .field-group {
  display: grid;
  gap: 6px;
}

.live-core-shell .field-group label {
  font-size: 12px;
  color: var(--muted);
}

.live-core-shell .table td[data-label="Actions"] {
  min-width: 170px;
}

.live-core-shell .table td .button {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
}

.preview-disclaimer {
  margin: 10px 2px 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.section.tone-light .preview-disclaimer {
  color: var(--light-muted);
}

/* Landing overhaul */
.launch-hero {
  padding-top: clamp(2.4rem, 6vw, 4.8rem);
}

.launch-hero-grid {
  align-items: stretch;
  gap: clamp(1rem, 3.2vw, 2.2rem);
}

.launch-hero .hero-story h1 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.launch-hero .hero-story .lead {
  max-width: 54ch;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
}

.launch-hero-signals {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.launch-signal {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.55);
  padding: 7px 11px;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.launch-hero-stage {
  gap: 0.82rem;
}

.launch-workspace-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.launch-work-tab {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(12, 18, 30, 0.66);
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.01em;
}

.launch-work-tab.active {
  color: var(--text);
  border-color: rgba(249, 115, 22, 0.58);
  background: linear-gradient(140deg, rgba(249, 115, 22, 0.25), rgba(20, 184, 166, 0.2));
}

.launch-stage-frame {
  display: grid;
  grid-template-columns: minmax(182px, 0.8fr) minmax(0, 1.2fr);
  gap: 0.7rem;
}

.launch-mini-sidebar {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(9, 14, 24, 0.84);
  padding: 0.72rem;
  display: grid;
  gap: 0.52rem;
}

.launch-mini-sidebar div {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 10px;
  padding: 0.46rem 0.54rem;
  background: rgba(255, 255, 255, 0.02);
}

.launch-mini-sidebar h4 {
  margin: 0 0 0.12rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
}

.launch-mini-sidebar p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.launch-mini-main {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(10, 15, 26, 0.72);
  padding: 0.72rem;
}

.launch-mini-main .toolbar {
  margin-bottom: 10px;
}

.launch-mini-main .table th,
.launch-mini-main .table td {
  padding: 9px;
}

.story-flow {
  display: grid;
  gap: 1rem;
}

.value-strip-section {
  padding-top: clamp(1.4rem, 4vw, 2.4rem);
  padding-bottom: clamp(1.7rem, 4.5vw, 2.8rem);
}

.value-strip {
  border: 1px solid rgba(71, 85, 105, 0.25);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.15), rgba(14, 165, 233, 0.06) 34%, rgba(20, 184, 166, 0.14) 100%),
    #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  padding: clamp(1rem, 2.8vw, 1.65rem);
  display: grid;
  gap: 1rem;
}

.value-strip-head h2 {
  color: var(--light-text);
  font-size: clamp(1.45rem, 3.4vw, 2.4rem);
  max-width: 24ch;
}

.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.value-tile {
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.74rem 0.78rem;
  display: grid;
  gap: 0.2rem;
}

.value-num {
  margin: 0;
  font: 700 clamp(1.55rem, 3.2vw, 2.2rem) / 1 "JetBrains Mono", monospace;
  color: #0f172a;
}

.value-num small {
  margin-left: 0.2rem;
  font-size: 0.88rem;
  color: #0f766e;
}

.value-label {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(31, 41, 55, 0.78);
}

.section-divider-band {
  padding: clamp(0.45rem, 1.8vw, 0.9rem) 0;
}

.flow-divider {
  position: relative;
  height: 36px;
  display: grid;
  place-items: center;
}

.flow-divider::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.56), transparent);
}

.flow-divider span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(14, 165, 233, 0.75);
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.1);
  animation: dividerPulse 4.6s ease-in-out infinite;
}

.flow-divider span:nth-child(1) {
  left: 14%;
  animation-delay: 0s;
}

.flow-divider span:nth-child(2) {
  left: 50%;
  animation-delay: 0.55s;
}

.flow-divider span:nth-child(3) {
  left: 86%;
  animation-delay: 1.1s;
}

.section-divider-band-light .flow-divider::before {
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.35), transparent);
}

.section-divider-band-light .flow-divider span {
  border-color: rgba(71, 85, 105, 0.32);
  background: rgba(15, 118, 110, 0.65);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.12);
}

@keyframes dividerPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translateY(-5px) scale(1.08);
    opacity: 1;
  }
}

.compare-section {
  padding-top: clamp(1.8rem, 5.2vw, 3.2rem);
  padding-bottom: clamp(1.8rem, 5.2vw, 3.2rem);
}

.compare-shell {
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(11, 15, 23, 0.92), rgba(15, 23, 42, 0.88));
  box-shadow: 0 20px 42px rgba(2, 6, 23, 0.35);
  padding: clamp(1.02rem, 2.8vw, 1.6rem);
  display: grid;
  gap: 0.95rem;
}

.compare-head .lead {
  max-width: 62ch;
}

.compare-table {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.72rem 0.8rem;
}

.compare-row + .compare-row {
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.compare-row-head {
  background: rgba(15, 23, 42, 0.66);
}

.compare-row-head > div {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.67rem;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.95);
}

.compare-row:not(.compare-row-head) {
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.compare-row:not(.compare-row-head):hover,
.compare-row:not(.compare-row-head).is-active {
  background: rgba(14, 165, 233, 0.12);
  transform: translateX(2px);
}

.compare-row:not(.compare-row-head):focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.55);
  outline-offset: -2px;
}

.compare-row:not(.compare-row-head) > div {
  position: relative;
  min-width: 0;
  line-height: 1.35;
}

.compare-row:not(.compare-row-head) > div:first-child {
  font-weight: 600;
  color: #f8fafc;
}

.compare-row:not(.compare-row-head) > div:nth-child(2),
.compare-row:not(.compare-row-head) > div:nth-child(3) {
  padding-left: 1.22rem;
}

.compare-row:not(.compare-row-head) > div:nth-child(2) {
  color: rgba(248, 250, 252, 0.7);
}

.compare-row:not(.compare-row-head) > div:nth-child(3) {
  color: rgba(236, 253, 245, 0.98);
}

.compare-row:not(.compare-row-head) > div:nth-child(2)::before,
.compare-row:not(.compare-row-head) > div:nth-child(3)::before {
  position: absolute;
  left: 0;
  top: 0.02rem;
  font-weight: 700;
}

.compare-row:not(.compare-row-head) > div:nth-child(2)::before {
  content: "×";
  color: #f97316;
}

.compare-row:not(.compare-row-head) > div:nth-child(3)::before {
  content: "✓";
  color: #14b8a6;
}

.section-break {
  padding: clamp(1.1rem, 2.8vw, 1.8rem) 0;
}

.section-break .container {
  width: min(1520px, calc(100% - 2rem));
}

.section + .section-break {
  padding-top: clamp(0.9rem, 2.6vw, 1.5rem);
}

.section-break + .section {
  padding-top: clamp(1.9rem, 5vw, 3.9rem);
}

.break-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(56, 189, 248, 0.48);
  border-radius: 24px;
  background:
    linear-gradient(112deg, rgba(2, 16, 44, 0.98) 0%, rgba(4, 24, 56, 0.95) 38%, rgba(7, 52, 66, 0.93) 100%);
  box-shadow:
    0 24px 50px rgba(2, 6, 23, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  padding: clamp(1.2rem, 3.3vw, 2.2rem);
  display: grid;
  gap: 1rem;
}

.break-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.98), rgba(14, 165, 233, 0.95), rgba(20, 184, 166, 0.98));
  opacity: 1;
}

.break-shell::after {
  content: "";
  position: absolute;
  inset: auto -16% -120% auto;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3), rgba(20, 184, 166, 0));
  z-index: -1;
}

.break-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #2dd4bf;
}

.break-shell h3 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(1.55rem, 3.7vw, 2.85rem);
  line-height: 1.08;
  max-width: 23ch;
}

.break-line-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.break-line-grid p {
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 14px;
  padding: 0.76rem 0.82rem;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.4;
  color: rgba(241, 245, 249, 0.96);
  background: rgba(2, 6, 23, 0.22);
}

.break-footnote {
  margin: 0.08rem 0 0;
  font-size: 0.8rem;
  color: rgba(203, 213, 225, 0.95);
}

.section-break-light .break-shell {
  border-color: rgba(59, 130, 246, 0.28);
  background:
    linear-gradient(110deg, #fdfefe 0%, #f3f8ff 42%, #ecfdf9 100%);
  box-shadow:
    0 16px 30px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.section-break-light .break-kicker {
  color: #0f766e;
}

.section-break-light .break-shell h3 {
  color: #0f172a;
}

.section-break-light .break-line-grid p {
  color: rgba(30, 41, 59, 0.88);
  border-color: rgba(71, 85, 105, 0.2);
  background: rgba(255, 255, 255, 0.75);
}

.section-break-light .break-footnote {
  color: rgba(71, 85, 105, 0.9);
}

.feature-segment {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: center;
}

.feature-copy,
.feature-card-shell {
  will-change: transform, opacity, filter;
}

body.js-enhanced .feature-segment .feature-copy,
body.js-enhanced .feature-segment .feature-card-shell {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-enhanced .feature-segment .feature-copy {
  transform: translate3d(0, 26px, 0);
}

body.js-enhanced .feature-segment .feature-card-shell {
  transform: translate3d(0, calc(var(--card-shift, 0px) + 30px), 0) scale(0.986);
  transition-delay: 0.08s;
}

body.js-enhanced .feature-segment.is-visible .feature-copy {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enhanced .feature-segment.is-visible .feature-card-shell {
  opacity: var(--card-fade, 1);
  filter: blur(0);
  transform: translate3d(0, var(--card-shift, 0px), 0) scale(1);
}

.feature-segment.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.feature-segment.reverse .feature-copy {
  order: 2;
}

.feature-segment.reverse .feature-card-shell {
  order: 1;
}

.feature-copy h2 {
  font-size: clamp(1.68rem, 3.25vw, 2.72rem);
  line-height: 1.11;
}

.feature-copy .lead {
  max-width: 58ch;
}

.feature-copy {
  display: grid;
  align-content: start;
  gap: 0.22rem;
}

.feature-list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.46rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #2563eb, #0ea5e9);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.section.tone-light .feature-list li {
  color: var(--light-muted);
}

.feature-card-shell {
  border-radius: 18px;
  padding: clamp(0.92rem, 2vw, 1.15rem);
  background: rgba(10, 15, 26, 0.78);
}

.section.tone-light .feature-card-shell {
  background: #ffffff;
}

.feature-card-shell .field-group {
  display: grid;
  gap: 6px;
}

.feature-card-shell .field-group label {
  font-size: 12px;
  color: var(--muted);
}

.section.tone-light .feature-card-shell .field-group label {
  color: var(--light-muted);
}

.feature-card-shell .table td .button {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
}

.oversell-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.section.tone-light .oversell-flow {
  color: var(--light-muted);
}

.oversell-flow > span {
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  background: rgba(255, 255, 255, 0.06);
}

.section.tone-light .oversell-flow > span {
  border-color: var(--light-border);
  background: #ffffff;
}

.oversell-flow > .oversell-arrow {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.92rem;
}

.launch-insight-band {
  overflow: hidden;
}

.launch-insight-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.82rem;
}

.launch-insight-tile {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.launch-insight-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 58%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.launch-insight-metric {
  margin-top: 0.32rem;
  font: 700 clamp(1.7rem, 4vw, 2.35rem) / 1 "JetBrains Mono", monospace;
  letter-spacing: -0.03em;
}

.launch-insight-tile h3 {
  font-size: 1.02rem;
}

.launch-insight-copy {
  color: var(--muted);
  font-size: 0.92rem;
}

.section.tone-light .launch-insight-copy {
  color: var(--light-muted);
}

.launch-operations {
  position: relative;
}

.launch-operations::before {
  content: none;
}

.launch-operations > .container {
  position: relative;
  z-index: 1;
}

.launch-workflow {
  margin-top: 1.35rem;
}

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

.launch-workflow-nav .workflow-ops-tab {
  min-height: 90px;
  align-content: center;
}

.launch-workflow-stage {
  background: rgba(8, 12, 20, 0.9);
}

.launch-command-deck {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.92rem;
}

.launch-command-chips {
  gap: 0.58rem;
}

.launch-command-chips .pill {
  padding: 8px 14px;
  font-size: 0.78rem;
  border-radius: 999px;
}

.launch-command-panel {
  display: grid;
  gap: 0.7rem;
}

.launch-command-panel p {
  margin: 0;
}

.launch-snippet {
  margin: 0;
  border: 1px solid rgba(51, 65, 85, 0.2);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  padding: 0.82rem 0.92rem;
  color: #0f172a;
  white-space: pre-wrap;
  font: 500 0.82rem/1.56 "JetBrains Mono", monospace;
}

.launch-command-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.launch-live-section {
  position: relative;
}

.launch-live-section::before {
  content: none;
}

.launch-live-section > .container {
  position: relative;
  z-index: 1;
}

.launch-live-shell {
  margin-top: 1.35rem;
}

.launch-live-shell .app-shell {
  min-height: 570px;
}

.launch-live-shell .content {
  max-height: 570px;
}

.launch-atlas-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.launch-atlas-card {
  display: grid;
  gap: 0.66rem;
}

.atlas-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.69rem;
  font-weight: 700;
  color: var(--accent-2);
}

.launch-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.launch-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(15, 23, 42, 0.5);
  padding: 0.36rem 0.62rem;
  font-size: 0.75rem;
  color: var(--text);
}

.section.tone-light .launch-tag {
  border-color: var(--light-border);
  background: #ffffff;
  color: var(--light-text);
}

/* Launch feature explorer transplant */
#full-features .section-head {
  text-align: center;
}

#full-features .section-head .eyebrow {
  justify-content: center;
}

#full-features .section-head .lead {
  margin-inline: auto;
  max-width: 72ch;
}

.feature-explorer {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.feature-nav {
  position: sticky;
  top: 84px;
  border-radius: 16px;
  border: 1px solid rgba(71, 85, 105, 0.24);
  background:
    linear-gradient(150deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.05) 45%, rgba(20, 184, 166, 0.08)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  padding: 0.86rem;
}

.feature-nav-toggle {
  display: none;
  width: 100%;
  border: 1px solid rgba(71, 85, 105, 0.26);
  border-radius: 10px;
  background: #ffffff;
  color: var(--light-text);
  font: 700 0.76rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 38px;
  padding: 0.54rem 0.68rem;
  justify-content: space-between;
  align-items: center;
}

.feature-nav-title {
  margin: 0;
  font: 700 0.78rem/1 "Rajdhani", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.78);
}

.feature-topic-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.44rem;
}

.feature-topic {
  border: 1px solid rgba(71, 85, 105, 0.22);
  border-radius: 10px;
  background: #ffffff;
  color: rgba(15, 23, 42, 0.86);
  padding: 0.52rem 0.62rem;
  text-align: left;
  font: 700 0.74rem/1.2 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.feature-topic.active,
.feature-topic:hover,
.feature-topic:focus-visible {
  border-color: rgba(37, 99, 235, 0.45);
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.16), rgba(20, 184, 166, 0.12));
  color: var(--light-text);
  transform: translateY(-1px);
  outline: none;
}

.feature-nav-note {
  margin-top: 0.72rem;
  padding-top: 0.62rem;
  border-top: 1px dashed rgba(71, 85, 105, 0.32);
  color: var(--light-muted);
  font-size: 0.82rem;
}

.feature-main {
  border-radius: 16px;
  border: 1px solid rgba(71, 85, 105, 0.24);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.94)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  padding: 0.9rem;
}

.feature-query-panel {
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.74rem;
}

.feature-query-panel label {
  display: block;
  margin-bottom: 0.5rem;
  font: 700 0.78rem/1 "Rajdhani", sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.78);
}

.feature-query-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.feature-query-row input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(71, 85, 105, 0.24);
  background: #ffffff;
  color: var(--light-text);
  font: 600 0.92rem/1.2 "Plus Jakarta Sans", sans-serif;
  padding: 0.64rem 0.72rem;
}

.feature-query-row input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.feature-prompt-row {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.feature-prompt {
  border: 1px solid rgba(71, 85, 105, 0.24);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(15, 23, 42, 0.86);
  padding: 0.36rem 0.58rem;
  font: 700 0.72rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.feature-prompt:hover,
.feature-prompt:focus-visible {
  border-color: rgba(37, 99, 235, 0.42);
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.13), rgba(20, 184, 166, 0.1));
  outline: none;
}

.feature-results-head {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.feature-results-head p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.88rem;
}

.feature-reset {
  border: 1px dashed rgba(71, 85, 105, 0.45);
  border-radius: 999px;
  background: #ffffff;
  color: var(--light-text);
  padding: 0.34rem 0.64rem;
  font: 700 0.72rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.feature-results-grid {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  align-content: start;
}

.feature-hit {
  border-radius: 12px;
  border: 1px solid rgba(71, 85, 105, 0.2);
  background: #ffffff;
  padding: 0.75rem;
  display: grid;
  gap: 0.42rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-hit:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.feature-hit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.62rem;
}

.feature-hit h3 {
  margin: 0;
  font: 700 1rem/1.2 "Plus Jakarta Sans", sans-serif;
  color: var(--light-text);
}

.feature-hit-category {
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  color: rgba(37, 99, 235, 0.88);
  font: 700 0.66rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.feature-hit p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.87rem;
}

.feature-hit strong {
  color: var(--light-text);
}

.feature-hit ul {
  margin: 0.06rem 0 0;
  padding-left: 1rem;
  color: var(--light-muted);
  font-size: 0.84rem;
  display: grid;
  gap: 0.24rem;
}

.feature-hit mark {
  background: transparent;
  color: inherit;
  border-bottom: 1px solid rgba(37, 99, 235, 0.6);
  padding: 0;
}

.feature-empty {
  border-radius: 12px;
  border: 1px dashed rgba(71, 85, 105, 0.35);
  background: rgba(255, 255, 255, 0.75);
  color: var(--light-muted);
  padding: 1rem;
  grid-column: 1 / -1;
}

.feature-pagination {
  margin-top: 0.74rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.56rem;
}

.feature-page-button {
  border: 1px solid rgba(71, 85, 105, 0.26);
  border-radius: 999px;
  background: #ffffff;
  color: var(--light-text);
  padding: 0.36rem 0.72rem;
  font: 700 0.74rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.feature-page-button:hover:not(:disabled),
.feature-page-button:focus-visible:not(:disabled) {
  border-color: rgba(37, 99, 235, 0.44);
  background: rgba(37, 99, 235, 0.08);
  outline: none;
}

.feature-page-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.feature-page-status {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.83rem;
}

.launch-convert {
  position: relative;
  overflow: hidden;
}

.launch-convert::before {
  content: none;
}

.launch-convert-shell {
  position: relative;
  z-index: 1;
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  background: rgba(10, 14, 24, 0.82);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
  padding: clamp(1rem, 2.8vw, 1.65rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 0.95rem;
  align-items: center;
}

.launch-convert-copy .lead {
  margin-top: 0.82rem;
  font-size: 1rem;
}

.launch-plan-stack {
  display: grid;
  gap: 0.65rem;
}

.launch-plan-card {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.7);
  padding: 0.82rem 0.9rem;
  display: grid;
  gap: 0.22rem;
}

.launch-plan-card.featured {
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.2);
}

.launch-plan-price {
  margin: 0.15rem 0 0;
  font: 700 clamp(1.7rem, 3.5vw, 2.3rem) / 1 "JetBrains Mono", monospace;
}

.launch-plan-price span {
  margin-left: 0.24rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.launch-plan-meta {
  margin: 0.12rem 0 0;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.84rem;
}

.launch-seats {
  margin: 0.35rem 0 0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.8rem;
  display: inline-flex;
  width: fit-content;
}

/* Download page */
.download-hero .lead {
  max-width: 72ch;
}

.download-breadcrumbs {
  margin: -0.25rem 0 0.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.38rem;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.84);
}

.download-breadcrumbs a {
  color: rgba(226, 232, 240, 0.9);
}

.download-breadcrumbs a[aria-current="page"] {
  color: #ffffff;
}

.download-classic-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  gap: 1rem;
  align-items: start;
}

.download-hero .card {
  background: #ffffff;
  border-color: rgba(51, 65, 85, 0.2);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
  color: var(--light-text);
}

.download-primary-card {
  display: grid;
  gap: 0.72rem;
  border-top: 4px solid #22c55e;
}

.download-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.7rem;
}

.download-channel {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  color: #0f766e;
}

.download-primary-card h2 {
  font-size: clamp(1.24rem, 2.3vw, 1.62rem);
}

.download-score {
  margin: 0;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  padding: 0.34rem 0.6rem;
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
  font-size: 0.78rem;
  white-space: nowrap;
}

.download-score strong {
  font-size: 0.98rem;
}

.download-score span {
  color: rgba(22, 101, 52, 0.88);
}

.download-primary-button {
  width: fit-content;
  min-width: min(100%, 430px);
  min-height: 48px;
  background: linear-gradient(140deg, #22c55e, #16a34a);
  box-shadow: 0 14px 24px rgba(22, 163, 74, 0.28);
}

.download-primary-button:hover,
.download-primary-button:focus-visible {
  box-shadow: 0 16px 28px rgba(22, 163, 74, 0.34);
}

.download-primary-note {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.86rem;
}

.download-file-stats {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.82rem;
}

.download-primary-card .table {
  margin-top: 0.2rem;
}

.download-primary-card .table td {
  color: var(--light-text);
  border-bottom: 1px solid rgba(51, 65, 85, 0.12);
}

.download-primary-card .table td:first-child {
  width: 34%;
  color: var(--light-muted);
  font-weight: 600;
}

.download-primary-card code,
.download-steps code {
  background: rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(51, 65, 85, 0.2);
  border-radius: 8px;
  padding: 0.15rem 0.38rem;
  font: 600 0.77rem/1.2 "JetBrains Mono", monospace;
  color: #1f2937;
}

.download-side-card {
  display: grid;
  gap: 0.9rem;
}

.download-side-card h3 {
  font-size: 1.08rem;
  margin: 0;
}

.download-link-list {
  display: grid;
  gap: 0.45rem;
}

.download-link-list a {
  display: block;
  border: 1px solid rgba(51, 65, 85, 0.18);
  border-radius: 10px;
  padding: 0.58rem 0.7rem;
  color: #1f2937;
  background: #f8fafc;
  font-size: 0.88rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.download-link-list a:hover,
.download-link-list a:focus-visible {
  border-color: rgba(37, 99, 235, 0.56);
  background: rgba(37, 99, 235, 0.08);
  color: #1e40af;
  outline: none;
}

.download-side-meta {
  display: grid;
  gap: 0.34rem;
  border-top: 1px solid rgba(51, 65, 85, 0.14);
  padding-top: 0.55rem;
}

.download-side-meta p {
  margin: 0;
  color: #334155;
  font-size: 0.82rem;
}

.download-inline-note {
  border: 1px solid rgba(51, 65, 85, 0.2);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  background: #f8fafc;
}

.download-inline-note p {
  margin: 0;
  color: #334155;
  font-size: 0.84rem;
  line-height: 1.5;
}

.download-inline-note a {
  color: #1e40af;
  text-decoration: underline;
}

.download-activation-note {
  border-color: rgba(37, 99, 235, 0.26);
  background: rgba(37, 99, 235, 0.07);
}

.download-link-list-compact a {
  padding: 0.52rem 0.66rem;
  font-size: 0.86rem;
}

.download-release-grid,
.download-requirements-grid,
.download-utility-grid {
  margin-top: 1.25rem;
}

.download-release-grid .card,
.download-utility-grid .card {
  display: grid;
  gap: 0.65rem;
}

.download-release-grid .table th,
.download-release-grid .table td {
  white-space: nowrap;
}

.download-requirements-grid .table td:first-child {
  width: 36%;
}

.download-steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.56rem;
  color: var(--light-text);
}

.download-steps-tight {
  gap: 0.42rem;
  padding-left: 1.08rem;
}

.download-steps a {
  color: #2563eb;
  text-decoration: underline;
}

.download-utility-grid .hero-actions {
  margin-top: 0.35rem;
}

.section.tone-light .download-steps code {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(51, 65, 85, 0.2);
  color: #1f2937;
}

.section.tone-light .download-utility-grid .catalog-list,
.section.tone-light .download-utility-grid .download-steps {
  color: var(--light-text);
}

@media (max-width: 980px) {
  .download-heading-row {
    flex-direction: column;
  }

  .download-classic-grid {
    grid-template-columns: 1fr;
  }

  .download-primary-button {
    width: 100%;
    min-width: 0;
  }

  .download-release-grid .table th,
  .download-release-grid .table td {
    white-space: normal;
  }
}

/* Download page light shell override */
body[data-page="download"] {
  color-scheme: light;
  background: #f6f8fc;
  color: var(--light-text);
}

body[data-page="download"] .site-bg {
  background:
    radial-gradient(circle at 16% 10%, rgba(14, 165, 233, 0.11), transparent 40%),
    radial-gradient(circle at 82% 2%, rgba(37, 99, 235, 0.09), transparent 34%);
  opacity: 0.55;
}

body[data-page="download"] main::before {
  display: none;
}

body[data-page="download"] .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(51, 65, 85, 0.16);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

body[data-page="download"] .site-brand-mark {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(51, 65, 85, 0.18), 0 8px 16px rgba(15, 23, 42, 0.08);
}

body[data-page="download"] .site-brand-text small {
  color: var(--light-muted);
}

body[data-page="download"] .brand-lockup-thrift {
  color: #0f172a;
}

body[data-page="download"] .brand-lockup-erp {
  color: #b7791f;
}

body[data-page="download"] .site-nav a,
body[data-page="download"] .site-nav .nav-dropdown-toggle {
  color: #334155;
}

body[data-page="download"] .site-nav a:hover,
body[data-page="download"] .site-nav a:focus-visible,
body[data-page="download"] .site-nav a.active,
body[data-page="download"] .site-nav .nav-dropdown-toggle:hover,
body[data-page="download"] .site-nav .nav-dropdown-toggle:focus-visible,
body[data-page="download"] .site-nav .nav-dropdown-toggle.active,
body[data-page="download"] .site-nav .nav-dropdown.has-active .nav-dropdown-toggle {
  color: #0f172a;
  background: rgba(37, 99, 235, 0.12);
}

body[data-page="download"] .site-nav .nav-dropdown-menu {
  border-color: rgba(51, 65, 85, 0.2);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

body[data-page="download"] .site-nav .nav-dropdown-menu a {
  color: #334155;
}

body[data-page="download"] .site-nav .nav-dropdown-menu a:hover,
body[data-page="download"] .site-nav .nav-dropdown-menu a:focus-visible,
body[data-page="download"] .site-nav .nav-dropdown-menu a.active {
  color: #0f172a;
  background: rgba(37, 99, 235, 0.1);
}

body[data-page="download"] .menu-toggle {
  border-color: rgba(51, 65, 85, 0.22);
  background: #ffffff;
  color: #0f172a;
}

body[data-page="download"] .download-hero .lead {
  color: var(--light-muted);
}

body[data-page="download"] .download-hero h1,
body[data-page="download"] .download-hero h2,
body[data-page="download"] .download-hero h3 {
  color: var(--light-text);
}

body[data-page="download"] .download-breadcrumbs {
  color: var(--light-muted);
}

body[data-page="download"] .download-breadcrumbs a {
  color: #334155;
}

body[data-page="download"] .download-breadcrumbs a[aria-current="page"] {
  color: #0f172a;
}

body[data-page="download"] .cta-panel {
  border: 1px solid rgba(51, 65, 85, 0.18);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body[data-page="download"] .cta-panel h2 {
  color: var(--light-text);
}

body[data-page="download"] .site-footer {
  border-top-color: rgba(51, 65, 85, 0.16);
}

body[data-page="download"] .footer-wrap {
  color: var(--light-muted);
}

body[data-page="download"] .footer-wrap a:hover,
body[data-page="download"] .footer-wrap a:focus-visible {
  background: rgba(37, 99, 235, 0.1);
}

@media (max-width: 760px) {
  body[data-page="download"] .site-nav {
    border-color: rgba(51, 65, 85, 0.2);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  }

  body[data-page="download"] .site-nav .nav-dropdown-menu {
    background: #f8fafc;
    border-color: rgba(51, 65, 85, 0.16);
  }
}

/* Documentation page */
.docs-hero {
  padding-bottom: clamp(1.5rem, 4.2vw, 2.4rem);
}

.docs-hero .lead {
  max-width: 74ch;
}

.docs-hero-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.docs-hero-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  background: rgba(2, 6, 23, 0.34);
  font: 700 0.74rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.04em;
  color: rgba(226, 232, 240, 0.95);
}

.docs-page {
  padding-top: clamp(1.45rem, 4vw, 2.3rem);
}

.docs-workspace {
  display: grid;
  grid-template-columns: minmax(248px, 292px) minmax(0, 1fr);
  gap: clamp(0.9rem, 2vw, 1.45rem);
  align-items: start;
}

.docs-aside {
  position: sticky;
  top: 88px;
  border: 1px solid rgba(71, 85, 105, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.04) 45%, rgba(20, 184, 166, 0.08)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  padding: 0.9rem;
  display: grid;
  gap: 0.64rem;
}

.docs-aside-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.75);
}

.docs-aside-subtitle {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.docs-nav-group {
  display: grid;
  gap: 0.44rem;
}

.docs-nav-group + .docs-nav-group {
  border-top: 1px solid rgba(71, 85, 105, 0.18);
  padding-top: 0.62rem;
}

.docs-nav-group-title {
  margin: 0;
  font: 700 0.7rem/1 "Rajdhani", sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.68);
}

.docs-nav {
  display: grid;
  gap: 0.34rem;
}

.docs-nav-link {
  display: block;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.42rem 0.56rem;
  color: rgba(15, 23, 42, 0.82);
  font: 600 0.86rem/1.25 "Space Grotesk", sans-serif;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.docs-nav-link:hover,
.docs-nav-link:focus-visible {
  border-color: rgba(37, 99, 235, 0.38);
  background: linear-gradient(130deg, rgba(37, 99, 235, 0.11), rgba(20, 184, 166, 0.09));
  color: #0f172a;
  transform: translateX(1px);
  outline: none;
}

.docs-nav-link.is-active,
.docs-nav-link[aria-current="true"] {
  border-color: rgba(15, 118, 110, 0.44);
  background: linear-gradient(130deg, rgba(15, 118, 110, 0.14), rgba(37, 99, 235, 0.12));
  color: #0f172a;
  transform: translateX(2px);
  box-shadow: inset 2px 0 0 rgba(15, 118, 110, 0.72);
}

.docs-aside-card {
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0.74rem;
  display: grid;
  gap: 0.46rem;
}

.docs-aside-card h3 {
  margin: 0;
  color: var(--light-text);
  font-size: 1rem;
}

.docs-aside-card p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.86rem;
}

.docs-aside-card .btn {
  width: 100%;
  justify-content: center;
}

.docs-article {
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  padding: clamp(1rem, 2.7vw, 1.85rem);
  display: grid;
  gap: clamp(1.45rem, 2.9vw, 2.15rem);
}

.docs-section {
  display: grid;
  gap: 0.66rem;
  scroll-margin-top: 96px;
}

.docs-section + .docs-section {
  border-top: 1px solid rgba(71, 85, 105, 0.16);
  padding-top: clamp(1.18rem, 2.8vw, 1.75rem);
}

.docs-section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f766e;
}

.docs-intro {
  max-width: 72ch;
  color: var(--light-muted);
}

.docs-callout {
  border: 1px solid rgba(37, 99, 235, 0.26);
  border-left: 4px solid rgba(37, 99, 235, 0.62);
  border-radius: 12px;
  background:
    linear-gradient(130deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.07) 68%),
    #f8fbff;
  padding: 0.64rem 0.74rem;
  color: rgba(30, 41, 59, 0.86);
}

.docs-checklist,
.docs-ordered-list {
  margin: 0;
  padding-left: 1.06rem;
  display: grid;
  gap: 0.3rem;
  color: var(--light-muted);
  line-height: 1.5;
}

.docs-two-col {
  margin-top: 0.22rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.docs-panel {
  border: 1px solid rgba(71, 85, 105, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.92)),
    #ffffff;
  padding: 0.82rem 0.88rem;
  display: grid;
  gap: 0.54rem;
}

.docs-panel h3 {
  margin: 0;
  color: var(--light-text);
  font-size: 1.02rem;
}

.docs-process-grid {
  margin-top: 0.28rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.docs-process-card {
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 9px 20px rgba(15, 23, 42, 0.07);
  padding: 0.8rem 0.84rem;
  display: grid;
  gap: 0.44rem;
}

.docs-step-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.69rem;
  font-weight: 700;
  color: #0f766e;
}

.docs-process-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--light-text);
}

.docs-process-card ul,
.docs-module-card ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.24rem;
  color: var(--light-muted);
  font-size: 0.88rem;
}

.docs-module-grid {
  margin-top: 0.24rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.docs-module-card {
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.92)),
    #ffffff;
  padding: 0.82rem 0.88rem;
  display: grid;
  gap: 0.46rem;
}

.docs-module-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.52rem;
  flex-wrap: wrap;
}

.docs-module-card h3 {
  margin: 0;
  color: var(--light-text);
  font-size: 1.05rem;
}

.docs-module-card p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.9rem;
}

.docs-module-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.09);
  padding: 0.2rem 0.48rem;
  font: 700 0.66rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(29, 78, 216, 0.9);
}

.docs-playbook-grid {
  margin-top: 0.24rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.docs-playbook-card {
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 14px;
  background: #ffffff;
  padding: 0.78rem 0.84rem;
  display: grid;
  gap: 0.44rem;
}

.docs-playbook-card h3 {
  margin: 0;
  color: var(--light-text);
  font-size: 1.01rem;
}

.docs-note-grid {
  margin-top: 0.22rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.68rem;
}

.docs-note-card {
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.72rem 0.8rem;
  display: grid;
  gap: 0.24rem;
}

.docs-note-card h3 {
  margin: 0;
  color: var(--light-text);
  font-size: 0.96rem;
}

.docs-note-card p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.88rem;
}

.docs-nav-map {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: minmax(245px, 280px) minmax(0, 1fr);
  border: 1px solid rgba(71, 85, 105, 0.22);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

.docs-nav-map-sidebar {
  padding: 0.86rem 0.82rem;
  border-right: 1px solid rgba(71, 85, 105, 0.18);
  background:
    linear-gradient(150deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.06) 60%, rgba(255, 255, 255, 0.95)),
    #ffffff;
}

.docs-nav-map-brand {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.72rem;
  font: 700 0.96rem/1.22 "Space Grotesk", sans-serif;
  color: #0f172a;
}

.docs-nav-map-brand small {
  font: 600 0.67rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(51, 65, 85, 0.8);
}

.docs-app-nav {
  display: grid;
  gap: 0.58rem;
}

.docs-app-nav-section {
  display: grid;
  gap: 0.26rem;
}

.docs-app-nav-section + .docs-app-nav-section {
  border-top: 1px solid rgba(71, 85, 105, 0.17);
  padding-top: 0.52rem;
}

.docs-app-nav-section-title {
  margin: 0;
  font: 700 0.67rem/1 "Rajdhani", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(51, 65, 85, 0.82);
}

.docs-app-nav-item {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(30, 41, 59, 0.9);
  text-align: left;
  padding: 0.38rem 0.5rem;
  font: 600 0.86rem/1.28 "Space Grotesk", sans-serif;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.docs-app-nav-item:hover,
.docs-app-nav-item:focus-visible {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.34);
  color: #0f172a;
  outline: none;
}

.docs-app-nav-item.is-active {
  background: linear-gradient(130deg, rgba(15, 118, 110, 0.16), rgba(37, 99, 235, 0.14));
  border-color: rgba(15, 118, 110, 0.42);
  color: #0f172a;
  box-shadow: inset 2px 0 0 rgba(15, 118, 110, 0.7);
}

.docs-nav-map-detail {
  padding: 0.94rem 1rem;
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.docs-nav-map-detail h3 {
  margin: 0;
  font-size: 1.18rem;
}

.docs-nav-map-route {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(71, 85, 105, 0.9);
}

.docs-nav-map-route code {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(71, 85, 105, 0.24);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.9);
  padding: 0.16rem 0.44rem;
  font: 600 0.76rem/1.15 "JetBrains Mono", monospace;
  color: #0f172a;
}

.docs-nav-map-copy {
  margin: 0;
  color: rgba(51, 65, 85, 0.95);
  max-width: 68ch;
}

.docs-nav-map-features {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.38rem;
  color: rgba(51, 65, 85, 0.95);
  line-height: 1.62;
}

.docs-faq-item {
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 12px;
  background: #ffffff;
  padding: 0.12rem 0.72rem;
}

.docs-faq-item + .docs-faq-item {
  margin-top: 0.48rem;
}

.docs-faq-item summary {
  cursor: pointer;
  padding: 0.54rem 0.08rem;
  font-weight: 600;
  color: var(--light-text);
}

.docs-faq-item p {
  padding: 0 0.08rem 0.62rem;
  color: var(--light-muted);
  font-size: 0.9rem;
}

.docs-support-panel {
  border: 1px solid rgba(15, 118, 110, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(132deg, rgba(20, 184, 166, 0.1), rgba(37, 99, 235, 0.08) 60%, rgba(255, 255, 255, 0.88)),
    #ffffff;
  padding: 0.96rem 1rem;
}

.docs-support-panel p {
  color: var(--light-muted);
}

.docs-support-panel .hero-actions {
  margin-top: 0.5rem;
}

/* Documentation readability refresh: linear narrative layout over card grids */
.docs-workspace {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.8vw, 2rem);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.docs-aside {
  position: sticky;
  top: 92px;
  border: 1px solid rgba(71, 85, 105, 0.22);
  border-left: 4px solid rgba(15, 118, 110, 0.72);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
  padding: 0.95rem 1rem;
  margin-bottom: 0;
  max-height: calc(100vh - 112px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 118, 110, 0.6) rgba(148, 163, 184, 0.22);
  scrollbar-gutter: stable;
}

.docs-aside::-webkit-scrollbar {
  width: 12px;
}

.docs-aside::-webkit-scrollbar-track {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.2), rgba(148, 163, 184, 0.1));
}

.docs-aside::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.72), rgba(37, 99, 235, 0.62));
}

.docs-aside::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.82), rgba(29, 78, 216, 0.76));
}

.docs-aside::-webkit-scrollbar-corner {
  background: transparent;
}

.docs-search {
  display: grid;
  gap: 0.4rem;
  padding-bottom: 0.74rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.docs-search-label {
  margin: 0;
  font: 700 0.68rem/1 "Rajdhani", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(51, 65, 85, 0.82);
}

.docs-search-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.docs-search-input {
  width: 100%;
  border: 1px solid rgba(71, 85, 105, 0.28);
  border-radius: 8px;
  background: #ffffff;
  color: var(--light-text);
  font: 600 0.83rem/1.35 "Plus Jakarta Sans", sans-serif;
  padding: 0.42rem 0.52rem;
}

.docs-search-input::placeholder {
  color: rgba(100, 116, 139, 0.9);
}

.docs-search-input:focus-visible {
  outline: none;
  border-color: rgba(15, 118, 110, 0.44);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.docs-search-clear {
  border: 1px solid rgba(71, 85, 105, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: rgba(51, 65, 85, 0.92);
  font: 700 0.72rem/1 "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.42rem 0.56rem;
  cursor: pointer;
}

.docs-search-clear:hover,
.docs-search-clear:focus-visible {
  border-color: rgba(15, 118, 110, 0.36);
  color: #0f172a;
  outline: none;
}

.docs-search-status {
  margin: 0;
  min-height: 1.1em;
  color: rgba(51, 65, 85, 0.86);
  font-size: 0.78rem;
}

.docs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.docs-meta-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.9);
  color: rgba(30, 41, 59, 0.86);
  padding: 0.2rem 0.48rem;
  font: 700 0.66rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.docs-progress {
  border: 1px solid rgba(15, 118, 110, 0.26);
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(20, 184, 166, 0.09), rgba(37, 99, 235, 0.08) 68%);
  padding: 0.58rem 0.66rem;
  display: grid;
  gap: 0.24rem;
}

.docs-progress-title {
  margin: 0;
  font: 700 0.7rem/1 "Rajdhani", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.76);
}

.docs-progress-status {
  margin: 0;
  color: rgba(15, 23, 42, 0.92);
  font: 700 0.78rem/1.3 "Plus Jakarta Sans", sans-serif;
}

.docs-progress-resume {
  color: rgba(15, 118, 110, 0.95);
  font: 700 0.78rem/1.3 "Plus Jakarta Sans", sans-serif;
}

.docs-progress-resume:hover,
.docs-progress-resume:focus-visible {
  color: #0f172a;
  text-decoration: underline;
  outline: none;
}

.docs-aside-subtitle {
  font-size: 0.91rem;
  line-height: 1.6;
}

.docs-nav-group-toggle {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  text-align: left;
  cursor: pointer;
  font: 700 0.7rem/1 "Rajdhani", sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.68);
}

.docs-nav-group-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(51, 65, 85, 0.86);
  border-bottom: 1.5px solid rgba(51, 65, 85, 0.86);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.docs-nav-group-toggle:hover::after,
.docs-nav-group-toggle:focus-visible::after {
  border-color: rgba(15, 118, 110, 0.9);
}

.docs-nav-group-toggle:hover,
.docs-nav-group-toggle:focus-visible {
  color: rgba(15, 23, 42, 0.92);
  outline: none;
}

.docs-nav-group.is-collapsed .docs-nav-group-toggle::after {
  transform: rotate(-45deg);
}

.docs-nav-group.is-empty {
  display: none;
}

.docs-nav-link {
  border-radius: 8px;
  padding: 0.36rem 0.45rem;
  font: 600 0.9rem/1.45 "Plus Jakarta Sans", sans-serif;
}

.docs-nav-link.is-filtered {
  display: none;
}

.docs-nav-link.is-complete:not(.is-active):not([aria-current="true"]) {
  border-color: rgba(22, 163, 74, 0.28);
  background: linear-gradient(130deg, rgba(34, 197, 94, 0.1), rgba(20, 184, 166, 0.1));
}

.docs-nav-link.is-complete::after {
  content: "✓";
  float: right;
  color: rgba(21, 128, 61, 0.92);
  font-weight: 700;
  font-size: 0.74rem;
}

.docs-nav-link:hover,
.docs-nav-link:focus-visible,
.docs-nav-link.is-active,
.docs-nav-link[aria-current="true"] {
  transform: none;
}

.docs-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.56rem;
}

.docs-heading-row > h2,
.docs-heading-row > h3 {
  flex: 1 1 auto;
  min-width: 0;
}

.docs-heading-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.docs-copy-link,
.docs-section-complete {
  border: 1px solid rgba(71, 85, 105, 0.26);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(51, 65, 85, 0.88);
  font: 700 0.67rem/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.34rem 0.56rem;
  cursor: pointer;
}

.docs-copy-link:hover,
.docs-copy-link:focus-visible,
.docs-section-complete:hover,
.docs-section-complete:focus-visible {
  border-color: rgba(15, 118, 110, 0.38);
  color: #0f172a;
  outline: none;
}

.docs-copy-link[data-copied="true"] {
  border-color: rgba(14, 116, 144, 0.42);
  color: rgba(14, 116, 144, 0.94);
}

.docs-section-complete[aria-pressed="true"] {
  border-color: rgba(22, 163, 74, 0.42);
  background: linear-gradient(130deg, rgba(34, 197, 94, 0.12), rgba(20, 184, 166, 0.12));
  color: rgba(21, 128, 61, 0.95);
}

.docs-aside-card {
  border: 0;
  border-top: 1px solid rgba(71, 85, 105, 0.22);
  border-radius: 0;
  background: transparent;
  padding: 0.86rem 0 0;
}

.docs-aside-card .btn {
  width: auto;
}

.docs-article {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: block;
  color: rgba(30, 41, 59, 0.9);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.03rem;
  line-height: 1.75;
}

.docs-article h2 {
  margin: 0;
  font: 800 clamp(1.45rem, 2.8vw, 1.95rem) / 1.22 "Space Grotesk", sans-serif;
  letter-spacing: -0.015em;
  color: var(--light-text);
}

.docs-article h3 {
  margin: 0;
  font: 700 1.08rem/1.35 "Space Grotesk", sans-serif;
  color: var(--light-text);
}

.docs-section {
  display: block;
  scroll-margin-top: 108px;
}

.docs-panel[id] {
  scroll-margin-top: 108px;
}

.docs-section + .docs-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.docs-section > * + * {
  margin-top: 0.92rem;
}

.docs-section-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.docs-intro {
  max-width: 72ch;
  color: rgba(51, 65, 85, 0.95);
}

.docs-callout {
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
}

.docs-checklist,
.docs-ordered-list {
  max-width: 72ch;
  padding-left: 1.24rem;
  gap: 0.42rem;
  line-height: 1.7;
  font-size: 0.98rem;
  color: rgba(51, 65, 85, 0.95);
}

.docs-two-col,
.docs-process-grid,
.docs-module-grid,
.docs-playbook-grid,
.docs-note-grid {
  display: block;
  margin-top: 0.86rem;
}

.docs-two-col > *,
.docs-process-grid > *,
.docs-module-grid > *,
.docs-playbook-grid > *,
.docs-note-grid > * {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.docs-two-col > * + *,
.docs-process-grid > * + *,
.docs-module-grid > * + *,
.docs-playbook-grid > * + *,
.docs-note-grid > * + * {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.16);
}

.docs-process-card ul,
.docs-module-card ul {
  padding-left: 1.15rem;
  gap: 0.34rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(51, 65, 85, 0.95);
}

.docs-module-card header {
  display: block;
}

.docs-module-pill {
  margin-top: 0.34rem;
}

.docs-note-card p,
.docs-module-card p,
.docs-panel p {
  font-size: 0.98rem;
  line-height: 1.66;
  color: rgba(51, 65, 85, 0.95);
}

.docs-ui-gallery {
  margin-top: 0.92rem;
}

.docs-ui-card + .docs-ui-card {
  margin-top: 1rem;
}

.docs-ui-card h3 {
  margin: 0 0 0.46rem;
  font-size: 0.98rem;
}

.docs-ui-shell.live-core-shell {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.docs-ui-shell.live-core-shell .app-shell {
  display: none;
}

.docs-ui-shell.live-core-shell .scan-overlay {
  position: static;
  inset: auto;
  background: transparent;
  padding: 0;
}

.docs-ui-shell.live-core-shell .scan-panel {
  width: min(680px, 100%);
  max-height: none;
  margin: 0;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(71, 85, 105, 0.24);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  color: var(--light-text);
}

.section.tone-light .docs-ui-shell .scan-panel .button {
  min-height: 34px;
}

.section.tone-light .docs-ui-shell .scan-panel .section-title h3 {
  color: var(--light-text);
}

.section.tone-light .docs-ui-shell .scan-panel .field-group label {
  color: var(--light-muted);
}

.section.tone-light .docs-ui-shell .scan-panel .input,
.section.tone-light .docs-ui-shell .scan-panel .select,
.section.tone-light .docs-ui-shell .scan-panel textarea {
  background: #ffffff !important;
  color: var(--light-text) !important;
  border-color: var(--light-border) !important;
}

.section.tone-light .docs-ui-shell .scan-panel .select {
  background-image: var(--select-arrow-light) !important;
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 14px 14px;
}

.section.tone-light .docs-ui-shell .scan-panel .select option {
  background: #ffffff;
  color: var(--light-text);
}

.section.tone-light .docs-ui-shell .scan-panel .input::placeholder,
.section.tone-light .docs-ui-shell .scan-panel textarea::placeholder {
  color: rgba(100, 116, 139, 0.9);
}

.section.tone-light .docs-ui-shell .scan-panel .badge {
  background: #ffffff;
  color: var(--light-text);
  border: 1px solid var(--light-border);
  font-size: 0.75rem;
}

.section.tone-light .docs-ui-shell .scan-panel .muted {
  color: var(--light-muted);
  line-height: 1.5;
}

.section.tone-light .docs-ui-shell .scan-panel .button.secondary {
  background: #ffffff;
  color: var(--light-text);
  border-color: var(--light-border);
}

.docs-faq-item {
  border: 0;
  border-bottom: 1px solid rgba(71, 85, 105, 0.22);
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.docs-faq-item + .docs-faq-item {
  margin-top: 0;
}

.docs-faq-item summary {
  padding: 0.74rem 0;
  font-size: 1rem;
}

.docs-faq-item summary:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.55);
  outline-offset: 2px;
}

.docs-faq-item p {
  padding: 0 0 0.85rem;
  font-size: 0.97rem;
}

.docs-support-panel {
  border: 1px solid rgba(15, 118, 110, 0.26);
  border-left: 4px solid rgba(15, 118, 110, 0.62);
  border-radius: 10px;
  background: rgba(20, 184, 166, 0.06);
  padding: 0.95rem 1rem;
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #ffffff !important;
    color: #111827 !important;
    font: 400 11pt/1.5 "Plus Jakarta Sans", "Segoe UI", sans-serif;
  }

  .site-bg,
  .scroll-progress,
  .site-header,
  .site-footer,
  .docs-aside,
  .menu-toggle,
  .docs-heading-actions,
  main::before {
    display: none !important;
  }

  .section,
  .docs-page,
  .docs-hero {
    padding: 0 !important;
  }

  .section.tone-light::before {
    display: none !important;
  }

  .container,
  .docs-workspace {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .docs-article {
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 10.5pt;
    line-height: 1.55;
  }

  .docs-section {
    break-inside: avoid-page;
    page-break-inside: avoid;
    scroll-margin-top: 0;
  }

  .docs-section + .docs-section {
    margin-top: 1rem !important;
    padding-top: 1rem !important;
  }

  .docs-faq-item {
    border: 1px solid rgba(17, 24, 39, 0.2);
    padding: 0.2rem 0.52rem;
  }

  .docs-faq-item summary {
    padding: 0.52rem 0;
  }

  a {
    color: #111827 !important;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.js-enhanced .feature-segment .feature-copy,
  body.js-enhanced .feature-segment .feature-card-shell {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .pricing-grid.two-up,
  .feature-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    margin-left: 0;
  }

  .live-core-shell .app-shell {
    grid-template-columns: 1fr;
  }

  .live-core-shell .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--panel-border);
  }

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

  .launch-hero-replacement-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage-stats {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .launch-stage-frame,
  .launch-convert-shell {
    grid-template-columns: 1fr;
  }

  main::before {
    opacity: 0.24;
  }

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

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

  .feature-segment,
  .feature-segment.reverse {
    grid-template-columns: 1fr;
  }

  .feature-segment.reverse .feature-copy,
  .feature-segment.reverse .feature-card-shell {
    order: initial;
  }

  .feature-explorer {
    grid-template-columns: 1fr;
  }

  .feature-nav {
    position: static;
    top: auto;
  }

  .docs-workspace {
    grid-template-columns: 1fr;
  }

  .docs-aside {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }

  .docs-aside-card .btn {
    width: auto;
  }

  .docs-nav-map {
    grid-template-columns: 1fr;
  }

  .docs-nav-map-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(71, 85, 105, 0.18);
  }

  .docs-module-grid,
  .docs-playbook-grid,
  .docs-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .workflow-ops {
    grid-template-columns: 1fr;
  }

  .workflow-ops-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
  }
}

@media (max-width: 860px) {
  .purchase-pricing-grid.three-up {
    grid-template-columns: 1fr;
  }

  .price-mode-inline {
    width: 100%;
  }

  .team-seat-adjust {
    width: 100%;
  }
}

@media (max-width: 760px) {
  main::before {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.5rem;
    left: 1.5rem;
    padding: 0.9rem;
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    background: rgba(11, 15, 23, 0.98);
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .site-nav .nav-dropdown {
    width: 100%;
  }

  .site-nav .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
  }

  .site-nav .nav-dropdown-menu {
    position: static;
    margin-top: 0.4rem;
    min-width: 0;
    width: 100%;
    padding: 0.34rem;
    border-radius: 10px;
    box-shadow: none;
    background: rgba(15, 23, 42, 0.48);
  }

  .site-nav .nav-dropdown-menu a {
    text-align: center;
  }

  .site-nav .btn {
    width: 100%;
  }

  .billing-toggle-controls {
    width: 100%;
  }

  .billing-toggle-option {
    padding: 0.46rem 0.62rem;
    font-size: 0.76rem;
  }

  .billing-toggle-badge {
    display: none;
  }

  .launch-hero-replacement .countdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .launch-brand-slider .compat-marquee {
    margin-left: -0.65rem;
    margin-right: -0.65rem;
    width: calc(100% + 1.3rem);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 0.55rem 0;
  }

  .launch-brand-slider .compat-list {
    padding: 0 0.28rem;
  }

  .launch-brand-slider .compat-logo {
    min-width: 172px;
    padding: 0.5rem 0.62rem;
    gap: 0.45rem;
  }

  .launch-brand-slider .compat-badge {
    width: 26px;
    height: 26px;
  }

  .launch-brand-slider .compat-icon {
    width: 13px;
    height: 13px;
  }

  .launch-brand-slider .compat-badge::after {
    font-size: 0.8rem;
  }

  .launch-brand-slider .compat-name {
    font-size: 0.82rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stage {
    padding: 0.95rem;
  }

  .hero-route-row .pill {
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero-stage-stats {
    grid-template-columns: 1fr;
  }

  .launch-hero-signals {
    flex-direction: column;
    align-items: flex-start;
  }

  .launch-signal {
    width: 100%;
    justify-content: center;
  }

  .launch-workspace-tabs {
    gap: 0.36rem;
  }

  .launch-work-tab {
    flex: 1 1 calc(50% - 0.36rem);
    text-align: center;
    justify-content: center;
  }

  .launch-mini-sidebar {
    grid-template-columns: 1fr;
  }

  .feature-list li {
    font-size: 0.93rem;
  }

  .docs-hero-meta {
    gap: 0.4rem;
  }

  .docs-hero-chip {
    font-size: 0.7rem;
  }

  .docs-workspace {
    gap: 0.8rem;
  }

  .docs-aside {
    padding: 0.78rem;
    max-height: none;
    overflow: visible;
  }

  .docs-search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .docs-search-clear {
    width: 100%;
  }

  .docs-heading-row {
    flex-wrap: wrap;
  }

  .docs-heading-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .docs-nav-link {
    font-size: 0.88rem;
  }

  .docs-article {
    border-radius: 0;
    padding: 0;
    gap: 0;
  }

  .docs-nav-map-sidebar {
    padding: 0.78rem;
  }

  .docs-nav-map-detail {
    padding: 0.8rem 0.82rem 0.88rem;
  }

  .docs-app-nav-item {
    font-size: 0.84rem;
  }

  .docs-two-col,
  .docs-process-grid,
  .docs-module-grid,
  .docs-playbook-grid,
  .docs-note-grid {
    grid-template-columns: 1fr;
  }

  .docs-aside-card .btn {
    width: 100%;
  }

  .value-strip {
    border-radius: 16px;
    padding: 0.92rem;
  }

  .value-strip-grid {
    grid-template-columns: 1fr;
  }

  .value-num {
    font-size: clamp(1.4rem, 8vw, 1.86rem);
  }

  .pricing-plan-cta {
    width: 100%;
  }

  .purchase-detail-link {
    width: 100%;
  }

  .purchase-detail-cta {
    width: 100%;
    justify-content: center;
  }

  .pricing-list-title {
    font-size: 0.67rem;
  }

  .pricing-card ul.pricing-feature-list li {
    padding: 0.44rem 0.52rem 0.46rem 1.55rem;
  }

  .pricing-card ul.pricing-feature-list li strong {
    font-size: 0.81rem;
  }

  .pricing-card ul.pricing-feature-list li span {
    font-size: 0.74rem;
  }

  .pricing-difference {
    font-size: 0.78rem;
  }

  .price-mode-option {
    font-size: 0.69rem;
    letter-spacing: 0.06em;
  }

  .feature-nav-toggle {
    display: inline-flex;
  }

  .feature-nav-title {
    display: none;
  }

  .feature-nav-body[hidden] {
    display: none;
  }

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

  .feature-results-grid {
    grid-template-columns: 1fr;
  }

  .feature-results-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-hit-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .compare-shell {
    border-radius: 16px;
    padding: 0.88rem;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .compare-row-head {
    display: none;
  }

  .compare-row:not(.compare-row-head) > div:first-child {
    color: #ffffff;
    font-size: 0.95rem;
    padding-left: 0;
  }

  .compare-row:not(.compare-row-head) > div:nth-child(2),
  .compare-row:not(.compare-row-head) > div:nth-child(3) {
    padding-left: 1.15rem;
  }

  .section-break .container {
    width: calc(100% - 1rem);
  }

  .break-shell {
    border-radius: 18px;
    padding: 1rem;
  }

  .break-shell h3 {
    max-width: none;
    font-size: clamp(1.34rem, 8vw, 2rem);
  }

  .break-line-grid {
    grid-template-columns: 1fr;
  }

  .oversell-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .oversell-flow > .oversell-arrow {
    justify-self: center;
  }

  .launch-insight-grid,
  .launch-atlas-grid {
    grid-template-columns: 1fr;
  }

  .launch-command-links .btn {
    width: 100%;
  }

  .launch-convert-shell {
    padding: 0.95rem;
  }

  .hero-inline-toolbar .input,
  .hero-inline-toolbar .select {
    min-width: 100%;
  }

  .workflow-ops-nav {
    grid-template-columns: 1fr;
  }

  .workflow-ops-tab {
    padding: 0.56rem 0.62rem;
  }

  .workflow-ops-tab strong {
    font-size: 0.82rem;
  }

  .workflow-ops-tab small {
    font-size: 0.67rem;
  }

  .workflow-ops-stage {
    padding: 0.78rem;
  }

  .ops-mini-stats {
    grid-template-columns: 1fr;
  }

  .workflow-ops-footer {
    align-items: flex-start;
  }

  .workflow-ops-controls {
    flex-direction: column;
    width: 100%;
  }

  .workflow-ops-controls .button {
    width: 100%;
  }

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

  .table thead {
    display: none;
  }

  .table tr {
    display: block;
    margin-bottom: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
  }

  .table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .table td:last-child {
    border-bottom: none;
  }

  .section.tone-light .table tr {
    background: #ffffff;
    border-color: var(--light-border);
  }

  .section.tone-light .table td {
    border-bottom: 1px solid rgba(51, 65, 85, 0.14);
  }

  .section.tone-light .table td::before {
    color: var(--light-muted);
  }
}

@media (max-width: 560px) {
  .launch-hero-replacement.hero {
    padding-top: 0.78rem;
    padding-bottom: 1.9rem;
    gap: 1rem;
  }

  .launch-hero-replacement h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.65rem);
  }

  .launch-hero-replacement .hero-proofline {
    font-size: 0.93rem;
  }

  .launch-hero-replacement .hero-lead {
    font-size: 0.96rem;
  }

  .launch-hero-replacement .hero-windows-compat {
    width: 100%;
    justify-content: center;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
  }

  .launch-hero-replacement .hero-word-rotator {
    min-width: 0;
  }

  .launch-hero-replacement .hero-console {
    padding: 0.94rem;
  }

  .launch-hero-replacement .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .launch-hero-replacement .cta-row .btn {
    width: 100%;
  }

  .launch-hero-replacement .btn {
    padding: 0.56rem 0.78rem;
    font-size: 0.76rem;
  }
}
