:root {
  --bg: #06070A;
  --bg-soft: #0B0D12;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-strong: rgba(255,255,255,0.05);

  --text: #F7F9FC;
  --text-soft: #D9E0EA;
  --text-muted: #9AA6B2;
  --text-dim: #6B7683;

  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.14);

  --blue: #66B3FF;
  --blue-soft: rgba(102, 179, 255, 0.14);
  --violet: #8B7CFF;
  --violet-soft: rgba(139, 124, 255, 0.12);

  --success: #93E0A9;

  --shadow-lg: 0 24px 80px rgba(0,0,0,0.42);
  --shadow-md: 0 14px 44px rgba(0,0,0,0.28);

  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;

  --max: 1180px;
  --panel-max: 980px;
  --panel-max-tablet: 860px;
  --panel-max-mobile: 520px;

  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 18% 0%, rgba(102,179,255,0.10), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(139,124,255,0.10), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

p {
  color: var(--text-soft);
}

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

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 88px 0;
}

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 920px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 18px rgba(102,179,255,0.45);
  flex: 0 0 auto;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 0.97rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  width: 220px;
  margin: 0 auto;
}

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

.btn-primary {
  color: #071019;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  box-shadow: 0 10px 32px rgba(255,255,255,0.12);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(102,179,255,0.24);
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6,7,10,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav .btn {
  margin: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.logo-img {
  height: auto;
  max-width: 220px;
}

.hero {
  padding: 104px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 44px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
  max-width: 16ch;
  margin: 20px 0 30px;
}

.hero-line-nowrap {
  white-space: nowrap;
}

.hero-copy p {
  max-width: 700px;
  font-size: 1.13rem;
  color: var(--text-soft);
}

.hero-points {
  display: grid;
  gap: 14px;
  margin: 42px 0 34px;
}

.hero-copy .btn-row {
  justify-content: flex-start;
  margin-top: 10px;
}

.hero-copy .btn {
  margin: 0;
}

.hero-points li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-points svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue);
}

.hero-visual {
  padding: 20px;
  overflow: hidden;
  position: relative;
  align-self: stretch;
  min-height: 100%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102,179,255,0.9), rgba(139,124,255,0.9), transparent);
}

.mockup {
  --mock-fit: 1;
  --mock-step: calc(1px * var(--mock-fit));
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(180deg, #0D1017, #090B10);
  min-height: 470px;
  height: 100%;
  position: relative;
}

.mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: calc(14px * var(--mock-fit)) calc(16px * var(--mock-fit));
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: calc(8px * var(--mock-fit));
  height: calc(8px * var(--mock-fit));
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.mockup-dots:hover span:nth-child(1) {
  background: #ff5f57;
  box-shadow: 0 0 10px rgba(255,95,87,0.35);
}

.mockup-dots:hover span:nth-child(2) {
  background: #febc2e;
  box-shadow: 0 0 10px rgba(254,188,46,0.35);
}

.mockup-dots:hover span:nth-child(3) {
  background: #28c840;
  box-shadow: 0 0 10px rgba(40,200,64,0.35);
}

.mockup-label {
  color: var(--text-muted);
  font-size: calc(0.86rem * var(--mock-fit));
}

.mockup-body {
  padding: calc(16px * var(--mock-fit));
  display: grid;
  gap: calc(12px * var(--mock-fit));
  min-height: calc(100% - 58px);
}

.mockup-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  padding: calc(14px * var(--mock-fit));
}

.mockup-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(10px * var(--mock-fit));
  margin-bottom: calc(14px * var(--mock-fit));
}

.mockup-title strong {
  font-size: calc(0.96rem * var(--mock-fit));
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: calc(6px * var(--mock-fit)) calc(10px * var(--mock-fit));
  border-radius: 999px;
  font-size: calc(0.78rem * var(--mock-fit));
  background: var(--blue-soft);
  color: #BFE2FF;
  border: 1px solid rgba(102,179,255,0.18);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(16px * var(--mock-fit));
}

.project-map {
  display: grid;
  gap: calc(8px * var(--mock-fit));
  overflow: hidden;
}

.project-flow {
  display: flex;
  align-items: flex-start;
  gap: calc(10px * var(--mock-fit));
}

.project-column {
  display: grid;
  gap: calc(8px * var(--mock-fit));
  flex: 1 1 0;
  justify-items: start;
  position: relative;
}

.project-column.blur {
  opacity: 0.34;
  filter: blur(1.3px);
}

.project-column.blur .project-node.project {
  justify-self: start;
}

.project-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(34px * var(--mock-fit));
  padding: 0 calc(12px * var(--mock-fit));
  border-radius: 999px;
  border: 1px solid rgba(102,179,255,0.22);
  background: rgba(102,179,255,0.10);
  color: #D9EEFF;
  font-size: calc(0.8rem * var(--mock-fit));
  font-weight: 600;
  letter-spacing: -0.01em;
  width: fit-content;
}

.project-node.project {
  min-height: calc(32px * var(--mock-fit));
  min-width: calc(104px * var(--mock-fit));
  font-size: calc(0.76rem * var(--mock-fit));
}

.project-node.branch {
  min-height: calc(28px * var(--mock-fit));
  min-width: calc(94px * var(--mock-fit));
  font-size: calc(0.7rem * var(--mock-fit));
  padding: 0 calc(10px * var(--mock-fit));
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.10);
  color: var(--text-soft);
}

.project-tree {
  position: relative;
  width: calc(220px * var(--mock-fit));
  max-width: calc(220px * var(--mock-fit));
  margin-top: calc(-8px * var(--mock-fit));
  padding-top: calc(8px * var(--mock-fit));
  justify-self: start;
}

.project-connector-vertical {
  position: absolute;
  top: 0;
  left: calc(52px * var(--mock-fit));
  width: 1px;
  height: calc(10px * var(--mock-fit));
  background: rgba(102,179,255,0.34);
}

.project-connector-horizontal {
  position: absolute;
  top: calc(9px * var(--mock-fit));
  left: calc(52px * var(--mock-fit));
  width: calc(116px * var(--mock-fit));
  height: 1px;
  background: linear-gradient(90deg, rgba(102,179,255,0.30), rgba(139,124,255,0.16));
}

.project-columns {
  display: grid;
  grid-template-columns: repeat(2, calc(104px * var(--mock-fit)));
  gap: calc(10px * var(--mock-fit));
  align-items: start;
  justify-content: start;
}

.project-branch-stack {
  display: grid;
  gap: calc(8px * var(--mock-fit));
  position: relative;
  justify-items: center;
  padding-top: calc(10px * var(--mock-fit));
  width: calc(104px * var(--mock-fit));
}

.project-branch-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(52px * var(--mock-fit));
  width: 1px;
  height: calc(10px * var(--mock-fit));
  background: rgba(102,179,255,0.35);
}

.file-stack {
  display: grid;
  gap: 8px;
}

.file-row {
  display: grid;
  grid-template-columns: calc(26px * var(--mock-fit)) minmax(0, 1fr) auto;
  align-items: center;
  gap: calc(10px * var(--mock-fit));
  min-height: calc(34px * var(--mock-fit));
  padding: 0 calc(10px * var(--mock-fit));
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.file-icon {
  width: calc(16px * var(--mock-fit));
  height: calc(18px * var(--mock-fit));
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  position: relative;
}

.file-icon::before,
.file-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  height: 1px;
  background: rgba(255,255,255,0.42);
}

.file-icon::before { top: 5px; }
.file-icon::after { top: 9px; }

.file-line {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
}

.file-line.w-92 { width: 92%; }
.file-line.w-76 { width: 76%; }
.file-line.w-68 { width: 68%; }

.file-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(22px * var(--mock-fit));
  padding: 0 calc(8px * var(--mock-fit));
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: calc(0.64rem * var(--mock-fit));
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source-icons {
  display: flex;
  gap: calc(6px * var(--mock-fit));
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 14px;
  width: 100%;
}

.mockup-card.wide {
  min-height: calc(132px * var(--mock-fit));
}

.mockup-card.output-card {
  min-height: calc(126px * var(--mock-fit));
}

.mockup-grid .mockup-card {
  min-height: calc(154px * var(--mock-fit));
}

.mockup-card.report-focus {
  background:
    radial-gradient(circle at top right, rgba(102,179,255,0.16), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border-color: rgba(102,179,255,0.18);
  box-shadow: 0 16px 44px rgba(102,179,255,0.10);
}

.mockup-card.report-focus .report-preview {
  display: grid;
  align-content: start;
}

.report-sheet {
  background:
    radial-gradient(circle at top, rgba(102,179,255,0.16), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border-color: rgba(102,179,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 10px 30px rgba(102,179,255,0.10);
  min-height: calc(116px * var(--mock-fit));
  padding: calc(14px * var(--mock-fit)) calc(12px * var(--mock-fit)) calc(12px * var(--mock-fit));
}

.report-line {
  background: linear-gradient(90deg, rgba(255,255,255,0.30), rgba(102,179,255,0.10));
}

.source-icons {
  gap: calc(6px * var(--mock-fit));
}

.source-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(5px * var(--mock-fit));
  min-height: calc(30px * var(--mock-fit));
  padding: 0 calc(6px * var(--mock-fit));
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
  font-size: calc(0.72rem * var(--mock-fit));
  font-weight: 500;
  flex: 0 0 auto;
}

.source-chip span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(0.5px);
  white-space: nowrap;
}

.source-chip img {
  width: calc(13px * var(--mock-fit));
  height: calc(13px * var(--mock-fit));
  display: block;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.4);
  flex: 0 0 auto;
}

.mockup-card,
.project-node,
.source-chip,
.file-row,
.named-file,
.pill {
  animation: premiumPulse 6.5s ease-in-out infinite;
}

.project-column.blur .project-node {
  animation: none;
}

.mockup-card.report-focus {
  overflow: hidden;
  position: relative;
  --report-progress: 0;
}

.mockup-card.report-focus::before {
  content: "";
  position: absolute;
  inset: -44% auto -34% -235%;
  width: 110%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), rgba(255,255,255,0.32), rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg) translateX(calc(var(--report-progress) * 280%));
  opacity: calc(var(--report-progress) * 1.15);
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 2;
}

.source-chip:nth-child(2),
.file-row:nth-child(2),
.named-file:nth-child(2) {
  animation-delay: 0.8s;
}

.source-chip:nth-child(3),
.file-row:nth-child(3),
.named-file:nth-child(3) {
  animation-delay: 1.4s;
}

.source-chip:nth-child(4) {
  animation-delay: 2s;
}

.source-chip:nth-child(5) {
  animation-delay: 2.6s;
}

@keyframes premiumPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(102,179,255,0);
    border-color: rgba(255,255,255,0.10);
  }
  50% {
    box-shadow: 0 0 18px rgba(102,179,255,0.08);
    border-color: rgba(102,179,255,0.18);
  }
}

.report-sheet {
  position: relative;
  min-height: 108px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  padding: 14px 12px 12px;
  overflow: hidden;
}

.report-sheet::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, rgba(102,179,255,0.30), rgba(255,255,255,0.08));
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.report-lines {
  display: grid;
  gap: 8px;
}

.report-names {
  display: grid;
  gap: calc(8px * var(--mock-fit));
  margin-bottom: calc(10px * var(--mock-fit));
}

.project-column.blur {
  justify-items: start;
}

.project-column.blur .project-tree {
  justify-self: start;
}

.report-names .named-file {
  border-color: rgba(102,179,255,0.22);
  background: linear-gradient(180deg, rgba(102,179,255,0.14), rgba(102,179,255,0.08));
  color: #E8F5FF;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.report-names .named-file .file-icon {
  width: 14px;
  height: 16px;
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.report-names .named-file .file-icon::before,
.report-names .named-file .file-icon::after {
  background: rgba(255,255,255,0.48);
}

.report-line.w-80 { width: 80%; }
.report-line.w-64 { width: 64%; }

.named-files {
  display: grid;
  gap: 8px;
}

.named-file {
  display: grid;
  grid-template-columns: calc(26px * var(--mock-fit)) minmax(0, 1fr);
  align-items: center;
  gap: calc(10px * var(--mock-fit));
  min-height: calc(34px * var(--mock-fit));
  padding: 0 calc(10px * var(--mock-fit));
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  color: var(--text-soft);
  font-size: calc(0.78rem * var(--mock-fit));
  letter-spacing: -0.01em;
}

.named-file span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 720px) {
  .mockup {
    min-height: 450px;
  }

  .project-flow {
    gap: 0;
  }

  .project-tree {
    max-width: 236px;
  }
}

.project-map.single-project .project-flow {
  justify-content: center;
}

.project-map.single-project .project-column:not(.blur) {
  justify-items: center;
}

.project-map.single-project .project-column:not(.blur) .project-tree {
  justify-self: center;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .mono {
  color: var(--blue);
  display: inline-block;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 14px;
}

.section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
}

.why-now-shell {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.why-now-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: stretch;
  width: min(100%, var(--panel-max));
  max-width: var(--panel-max);
}

.why-variant {
  width: 100%;
  max-width: var(--panel-max);
  margin: 0 auto;
}

.why-step-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(102,179,255,0.18);
  background: rgba(102,179,255,0.10);
  color: #BFE2FF;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.why-rail {
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02)),
    radial-gradient(circle at 18% 50%, rgba(102,179,255,0.12), transparent 26%),
    radial-gradient(circle at 82% 50%, rgba(139,124,255,0.08), transparent 24%);
  position: relative;
  overflow: hidden;
}

.why-rail::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 79px;
  height: 1px;
  background: linear-gradient(90deg, rgba(102,179,255,0.16), rgba(102,179,255,0.85), rgba(139,124,255,0.24));
}

.why-rail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.why-rail-stop {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.why-rail-dot {
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #9fd4ff);
  box-shadow: 0 0 18px rgba(102,179,255,0.28);
  border: 3px solid rgba(6,7,10,0.92);
}

.why-rail-stop .why-step-kicker {
  min-height: 30px;
}

.why-rail-stop h3 {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.persona-shell {
  display: grid;
  gap: 20px;
}

.persona-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.persona-tab {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(102,179,255,0.35);
  background: rgba(102,179,255,0.1);
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 16px rgba(102,179,255,0.15);
}

.persona-tab:hover,
.persona-tab.active {
  color: var(--text);
  border-color: rgba(102,179,255,0.6);
  background: rgba(102,179,255,0.25);
  box-shadow: 0 0 20px rgba(102,179,255,0.4), inset 0 0 0 1px rgba(102,179,255,0.3);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--panel-max));
  max-width: var(--panel-max);
  margin: 0 auto;
  align-items: stretch;
}

.benefit {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(102,179,255,0.16);
  background: rgba(102,179,255,0.045);
  color: var(--text-dim);
  opacity: 0.58;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 0 8px rgba(102,179,255,0.08);
}

.benefit strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.benefit.active {
  opacity: 1;
  color: var(--text-soft);
  border-color: rgba(102,179,255,0.44);
  background:
    linear-gradient(180deg, rgba(102,179,255,0.13), rgba(139,124,255,0.09)),
    rgba(255,255,255,0.03);
  box-shadow: 0 8px 28px rgba(102,179,255,0.20), inset 0 0 0 1px rgba(102,179,255,0.16);
  transform: translateY(-1px);
}

.economy-editorial {
  width: min(100%, var(--panel-max));
  max-width: var(--panel-max);
  margin: 14px auto 0;
  display: grid;
  justify-items: center;
}

.economy-section .section-head {
  margin-bottom: 34px;
}

.economy-section .section-head p {
  max-width: 28ch;
  color: var(--text-soft);
  font-size: clamp(1.2rem, 2.35vw, 1.56rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.economy-panel {
  --halo-x: 50%;
  --halo-y: 50%;
  --cursor-ratio-x: 0.5;
  position: relative;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at 14% 8%, rgba(102,179,255,0.1), transparent 40%),
    linear-gradient(180deg, rgba(16,20,30,0.95), rgba(10,13,21,0.95));
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0,0,0,0.34),
    inset 0 0 0 1px rgba(102,179,255,0.05);
}

.economy-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102,179,255,0.72), rgba(139,124,255,0.46), transparent);
  pointer-events: none;
  z-index: 5;
}

.economy-panel::after {
  content: "";
  position: absolute;
  inset: -35% -12%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  mix-blend-mode: screen;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 38%,
    rgba(177,226,255,0.14) 49%,
    rgba(153,188,255,0.08) 54%,
    rgba(255,255,255,0) 63%
  );
  transform: translateX(calc((var(--cursor-ratio-x) - 0.5) * 10%));
  transition: opacity 0.28s ease;
}

.economy-panel.is-hovered::after {
  opacity: 0.14;
}

.economy-hover-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  mix-blend-mode: screen;
  background:
    radial-gradient(184px 146px at var(--halo-x) var(--halo-y), rgba(178,230,255,0.1), rgba(154,206,255,0.045) 36%, rgba(122,108,255,0.03) 58%, rgba(102,179,255,0) 78%),
    radial-gradient(276px 206px at calc(var(--halo-x) + 8%) calc(var(--halo-y) - 6%), rgba(109,165,255,0.06), rgba(102,179,255,0) 72%);
  transition: opacity 0.28s ease;
  animation: economy-halo-breathe 3.8s ease-in-out infinite;
}

.economy-hover-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.economy-panel.is-hovered .economy-hover-aurora {
  opacity: 0.32;
}

.economy-panel.is-hovered .economy-hover-canvas {
  opacity: 0.64;
}

.economy-principles {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.economy-principle {
  --near: 0;
  position: relative;
  min-height: 82px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.04rem;
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.economy-principle-text {
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 calc(var(--near) * 9px) rgba(182, 236, 255, 0.38),
    0 0 calc(var(--near) * 3px) rgba(160, 196, 255, 0.26);
  transition: text-shadow 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.economy-principle-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 84%;
  height: 12px;
  border-radius: 999px;
  transform: translateX(-50%) scaleX(calc(0.68 + var(--near) * 0.46));
  transform-origin: center;
  opacity: calc(var(--near) * 1.35);
  background: radial-gradient(
    ellipse at center,
    rgba(170, 229, 255, calc(var(--near) * 0.68)) 0%,
    rgba(150, 132, 255, calc(var(--near) * 0.34)) 44%,
    rgba(102, 179, 255, 0) 76%
  );
  filter: blur(calc(0.8px + (1 - var(--near)) * 0.8px));
  transition: opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1), transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.economy-principle:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(102,179,255,0), rgba(102,179,255,0.28), rgba(102,179,255,0));
}

.economy-cta {
  margin-top: 46px;
  display: grid;
  justify-items: center;
}

@keyframes economy-halo-breathe {
  0%, 100% {
    filter: saturate(1) blur(0px);
  }
  50% {
    filter: saturate(1.04) blur(0.14px);
  }
}

.reliability-editorial {
  margin-top: 24px;
  width: min(100%, var(--panel-max));
  max-width: var(--panel-max);
  margin-inline: auto;
}

.reliability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reliability-column {
  border-radius: 18px;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 20px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.reliability-column::before {
  display: none;
}

.reliability-column h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  letter-spacing: -0.02em;
  color: var(--text-soft);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(102,179,255,0.16);
}

.reliability-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.reliability-heading-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(102,179,255,0.32);
  background:
    radial-gradient(circle at 30% 30%, rgba(170,225,255,0.22), rgba(170,225,255,0) 56%),
    rgba(102,179,255,0.08);
  box-shadow: 0 0 14px rgba(102,179,255,0.2);
  color: rgba(178, 231, 255, 0.95);
}

.reliability-heading-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.reliability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
  overflow: visible;
}

.reliability-item {
  height: 92px;
  border-radius: 14px;
  border: 1px solid rgba(102,179,255,0.14);
  background:
    radial-gradient(circle at 14% 16%, rgba(102,179,255,0.12), transparent 58%),
    radial-gradient(circle at 82% 20%, rgba(139,124,255,0.09), transparent 56%),
    linear-gradient(180deg, rgba(13,17,29,0.9), rgba(8,11,20,0.9));
  box-shadow:
    inset 0 0 0 1px rgba(102,179,255,0.06),
    0 10px 24px rgba(2, 6, 18, 0.26);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  will-change: transform;
  cursor: pointer;
  visibility: visible;
  transition-property: border-color, background, box-shadow, opacity, filter, transform, visibility;
  transition-duration: 0.38s, 0.38s, 0.38s, 0.38s, 0.38s, 0.38s, 0s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0.22, 1, 0.36, 1), linear;
  transition-delay: 0s, 0s, 0s, 0s, 0s, 0s, 0s;
}

.reliability-item:hover {
  border-color: rgba(102,179,255,0.34);
  background:
    radial-gradient(circle at 12% 14%, rgba(102,179,255,0.16), transparent 56%),
    radial-gradient(circle at 82% 18%, rgba(139,124,255,0.13), transparent 54%),
    linear-gradient(180deg, rgba(16,21,36,0.94), rgba(10,13,24,0.94));
  box-shadow: inset 0 0 0 1px rgba(102,179,255,0.08);
  transform: translateY(-2px);
}

.reliability-trigger {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0 16px 0 28px;
  border-radius: 14px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font: inherit;
  position: relative;
}

.reliability-title {
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: -0.012em;
  max-width: calc(100% - 42px);
  text-align: left;
}

.reliability-plus {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(102,179,255,0.18);
  color: var(--text-dim);
  font-size: 0.86rem;
  line-height: 1;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), color 0.34s ease, border-color 0.34s ease;
}

.reliability-item .reliability-plus {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.reliability-column.has-overlay .reliability-item {
  opacity: 0.24;
  transform: scale(0.985);
  pointer-events: none;
  filter: blur(1.2px) saturate(0.74);
}

.reliability-column.has-overlay .reliability-item.is-open {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  filter: blur(2px) saturate(0.6);
}

.reliability-overlay {
  position: absolute;
  top: var(--overlay-cy, 50%);
  left: var(--overlay-cx, 50%);
  width: var(--overlay-w, min(86%, 540px));
  height: var(--overlay-h, 204px);
  border-radius: 14px;
  border: 1px solid rgba(102,179,255,0.34);
  background:
    radial-gradient(circle at 14% 18%, rgba(102,179,255,0.11), transparent 52%),
    radial-gradient(circle at 82% 18%, rgba(139,124,255,0.09), transparent 48%),
    linear-gradient(180deg, rgba(15,20,33,0.84), rgba(9,12,22,0.84));
  box-shadow:
    inset 0 0 0 1px rgba(102,179,255,0.1),
    0 18px 32px rgba(8,13,30,0.4);
  padding: 12px 14px 14px;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 20px)) scale(0.92);
  filter: blur(6px);
  pointer-events: none;
  z-index: 5;
  visibility: hidden;
  transition:
    opacity 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.56s;
}

.reliability-column.has-overlay .reliability-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
  visibility: visible;
  transition-delay: 0s;
}

.reliability-overlay > .reliability-plus {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.reliability-item.is-open .reliability-plus {
  transform: translateY(-50%) rotate(45deg);
  color: var(--blue);
  border-color: rgba(102,179,255,0.38);
}

.reliability-overlay.is-open > .reliability-plus {
  transform: rotate(45deg);
  color: var(--blue);
  border-color: rgba(102,179,255,0.38);
}

.reliability-overlay-content {
  height: 100%;
  width: min(92%, 360px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.reliability-overlay-title {
  margin: 0;
  font-size: 1.01rem;
  letter-spacing: -0.014em;
  color: var(--text-soft);
  line-height: 1.3;
}

.reliability-overlay-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  min-height: calc(1.5em * 3);
  max-width: 42ch;
}

.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
}

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 760px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  margin-top: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
  border-color: rgba(102,179,255,0.24);
}

.cta-box {
  padding: 54px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102,179,255,0.9), rgba(139,124,255,0.9), transparent);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 14px;
}

.cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--text-muted);
}

.footer {
  padding: 36px 0 52px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--text-soft);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(102,179,255,0.2);
  background: rgba(255,255,255,0.02);
  color: var(--text-soft);
  display: inline-grid;
  place-items: center;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  border-color: rgba(102,179,255,0.45);
  background: rgba(102,179,255,0.08);
  color: #dff1ff;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

.mobile-cta {
  display: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .why-rail-grid {
    grid-template-columns: 1fr;
  }

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

  .why-now-track,
  .why-variant,
  .benefits-grid,
  .economy-editorial,
  .reliability-editorial {
    width: min(92%, var(--panel-max-tablet));
    max-width: var(--panel-max-tablet);
    margin-inline: auto;
  }

  .reliability-editorial {
    margin-top: 24px;
  }

  .reliability-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reliability-column + .reliability-column {
    margin-top: 0;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-line-nowrap {
    white-space: normal;
  }

  .why-rail::before {
    display: none;
  }

  .why-rail {
    padding: 28px 22px;
  }

  .why-rail-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    width: fit-content;
    margin: 0 auto;
    justify-items: start;
  }

  .why-rail-grid::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, rgba(102,179,255,0.16), rgba(102,179,255,0.85), rgba(139,124,255,0.24));
  }

  .why-rail-stop {
    grid-template-columns: 20px auto;
    grid-template-areas:
      "dot kicker"
      "dot title";
    column-gap: 14px;
    row-gap: 8px;
    align-items: start;
    justify-items: start;
    text-align: left;
    width: fit-content;
  }

  .why-rail-stop .why-step-kicker {
    grid-area: kicker;
    min-height: 30px;
    justify-self: start;
  }

  .why-rail-dot {
    grid-area: dot;
    margin-top: 8px;
    justify-self: center;
  }

  .why-rail-stop h3 {
    grid-area: title;
    max-width: 22ch;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .persona-tab {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .benefit {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .benefit strong {
    font-size: 0.96rem;
    margin-bottom: 5px;
  }

  .why-rail {
    padding: 26px 18px;
  }

  .why-rail-grid {
    gap: 20px;
  }

  .why-rail-stop {
    column-gap: 12px;
  }

  .why-rail-stop .why-step-kicker,
  .why-rail-stop h3 {
    justify-self: start;
  }

}

@media (max-width: 720px) {
  .why-now-track,
  .why-variant,
  .benefits-grid,
  .economy-editorial,
  .reliability-editorial {
    width: min(90%, var(--panel-max-mobile));
    max-width: var(--panel-max-mobile);
    margin-inline: auto;
  }

  .economy-editorial {
    margin-top: 10px;
  }

  .economy-section .section-head {
    margin-bottom: 26px;
  }

  .economy-section .section-head p {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .economy-panel {
    width: 100%;
    border-radius: 14px;
  }

  .economy-panel::after,
  .economy-hover-aurora,
  .economy-hover-canvas {
    display: none;
  }

  .economy-principles {
    grid-template-columns: 1fr;
  }

  .economy-principle {
    min-height: 64px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .economy-principle:not(:last-child)::after {
    right: auto;
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(102,179,255,0), rgba(102,179,255,0.35), rgba(102,179,255,0));
  }

  .economy-cta {
    margin-top: 30px;
  }

  .reliability-column {
    padding: 16px 14px 12px;
    border-radius: 16px;
    gap: 8px;
  }

  .reliability-column h3 {
    font-size: 1.02rem;
    padding-bottom: 7px;
  }

  .reliability-heading {
    gap: 8px;
  }

  .reliability-heading-icon {
    width: 24px;
    height: 24px;
  }

  .reliability-heading-icon svg {
    width: 14px;
    height: 14px;
  }

  .reliability-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .reliability-item {
    height: 76px;
    border-radius: 12px;
  }

  .reliability-trigger {
    padding: 0 12px 0 14px;
  }

  .reliability-title {
    font-size: 0.96rem;
    line-height: 1.22;
    max-width: calc(100% - 28px);
  }

  .reliability-item .reliability-plus {
    right: 8px;
    width: 18px;
    height: 18px;
    font-size: 0.78rem;
  }

  .reliability-overlay {
    width: var(--overlay-w, min(90%, 420px));
    height: var(--overlay-h, 176px);
    padding: 11px 11px 13px;
  }

  .reliability-overlay-content {
    width: min(94%, 304px);
  }

  .reliability-overlay-text {
    max-width: none;
    font-size: 0.86rem;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 84px 0;
  }

  .section-tight {
    padding: 72px 0;
  }

  .nav-inner {
    min-height: 76px;
  }

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

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .hero-visual {
    padding: 0;
    order: 2;
  }

  .mockup {
    min-height: 430px;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: auto;
    max-width: 200px;
    margin: 0 auto;
  }

  .footer {
    padding-bottom: 100px;
  }
}

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

  .fade-up,
  .faq-answer,
  .faq-icon,
  .benefit,
  .btn,
  .persona-tab {
    transition: none !important;
  }
}

.workflow-showcase {
  display: grid;
  grid-template-columns: minmax(90px, 108px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.workflow-nav {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
}

.workflow-tablist {
  display: grid;
  gap: 10px;
}

.workflow-toggle {
  justify-self: start;
  margin-top: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(102,179,255,0.22);
  background: rgba(102,179,255,0.08);
  color: #BFE2FF;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.workflow-toggle-play {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #BFE2FF;
  margin-left: 2px;
}

.workflow-toggle-pause {
  position: relative;
  width: 10px;
  height: 12px;
  display: none;
}

.workflow-toggle-pause::before,
.workflow-toggle-pause::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: #BFE2FF;
}

.workflow-toggle-pause::before {
  left: 0;
}

.workflow-toggle-pause::after {
  right: 0;
}

.workflow-toggle[aria-pressed="false"] .workflow-toggle-play {
  display: none;
}

.workflow-toggle[aria-pressed="false"] .workflow-toggle-pause {
  display: block;
}

.workflow-toggle:hover {
  background: rgba(102,179,255,0.14);
  border-color: rgba(102,179,255,0.36);
}

.workflow-toggle[aria-pressed="true"] {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  color: var(--text-soft);
}

.workflow-tab {
  --tab-progress: 0;
  width: 92px;
  height: 56px;
  text-align: center;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  color: var(--text-soft);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.workflow-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(102,179,255,0.9), rgba(139,124,255,0.8));
  transform-origin: left center;
  transform: scaleX(var(--tab-progress));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.workflow-tab:hover {
  border-color: rgba(102,179,255,0.18);
  background: rgba(255,255,255,0.04);
}

.workflow-tab.active {
  border-color: rgba(102,179,255,0.3);
  background:
linear-gradient(180deg, rgba(102,179,255,0.12), rgba(139,124,255,0.06)),
rgba(255,255,255,0.045);
  box-shadow: 0 10px 34px rgba(0,0,0,0.22);
  transform: none;
}

.workflow-tab.active::after {
  opacity: 1;
}

.workflow-tab-index {
  font-family: var(--font-mono);
  font-size: 0.96rem;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workflow-stage {
  position: relative;
  min-height: 0;
  perspective: 1400px;
  isolation: isolate;
}

.workflow-stage::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 80px;
  border-radius: 999px;
  background: radial-gradient(
ellipse at center,
rgba(102,179,255,0.16) 0%,
rgba(139,124,255,0.10) 28%,
rgba(0,0,0,0) 72%
  );
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.workflow-stack-card {
  position: absolute;
  inset: 0;
  transition:
transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
opacity 0.42s ease,
filter 0.42s ease,
box-shadow 0.42s ease;
  will-change: transform, opacity;
  pointer-events: none;
  transform-style: preserve-3d;
}

.workflow-stack-card.is-active {
  pointer-events: auto;
}

.workflow-stack-inner {
  height: auto;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(15,18,26,0.98), rgba(10,12,18,0.98));
  box-shadow:
0 28px 80px rgba(0,0,0,0.45),
0 8px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  backface-visibility: hidden;
}

.workflow-stack-inner.is-measuring::after {
  content: none;
}

.workflow-stack-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
90deg,
transparent,
rgba(102,179,255,0.75),
rgba(139,124,255,0.55),
transparent
  );
}

.workflow-stack-inner::after {
  content: "";
  position: absolute;
  top: -55%;
  left: -38%;
  width: 58%;
  height: 210%;
  background: linear-gradient(
112deg,
rgba(255,255,255,0),
rgba(167,220,255,0.23),
rgba(255,255,255,0)
  );
  transform: translateX(-130%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
}

@keyframes workflowCardSweep {
  0% {
transform: translateX(-130%) rotate(8deg);
opacity: 0;
  }
  35% {
opacity: 0.56;
  }
  100% {
transform: translateX(240%) rotate(8deg);
opacity: 0;
  }
}

.workflow-stack-head {
  margin-bottom: 24px;
}

.workflow-stack-head .mono {
  color: var(--blue);
  display: inline-block;
  margin-bottom: 12px;
}

.workflow-stack-head h3 {
  font-size: 1.52rem;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.workflow-stack-head p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.58;
  max-width: 34ch;
}

.workflow-ingest-layout {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  height: 100%;
}

.workflow-ingest-layout .workflow-stack-head {
  margin-bottom: 0;
}

.workflow-ingest-visual {
  display: grid;
  gap: 14px;
}

.workflow-ingest-drop {
  position: relative;
  min-height: 82px;
  border-radius: 12px;
  border: 1px dashed rgba(102,179,255,0.34);
  background:
radial-gradient(circle at 50% 24%, rgba(102,179,255,0.18), transparent 54%),
rgba(255,255,255,0.02);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-ingest-drop-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(102,179,255,0.32);
  background: rgba(102,179,255,0.10);
  position: relative;
}

.workflow-ingest-drop-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 12px;
  background: rgba(191,226,255,0.95);
  transform: translate(-50%, -50%);
}

.workflow-ingest-drop-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: rgba(191,226,255,0.95);
  transform: translate(-50%, -50%);
}

.workflow-ingest-float {
  position: absolute;
  top: 6px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0;
  animation: workflowDropHint 9.6s linear infinite;
}

.workflow-ingest-float.f1 { --x-start: -150px; --x-end: -6px; animation-delay: 0s; }
.workflow-ingest-float.f2 { --x-start: 138px; --x-end: 5px; animation-delay: 2.4s; }
.workflow-ingest-float.f3 { --x-start: -128px; --x-end: 9px; animation-delay: 4.8s; }
.workflow-ingest-float.f4 { --x-start: 120px; --x-end: -7px; animation-delay: 7.2s; }

@keyframes workflowDropHint {
  0% {
transform: translate(calc(-50% + var(--x-start)), -14px) scale(0.92);
opacity: 0;
  }
  8% {
opacity: 0.85;
  }
  22% {
opacity: 0.85;
  }
  34% {
transform: translate(calc(-50% + var(--x-end)), 18px) scale(1);
opacity: 0;
  }
  100% {
transform: translate(calc(-50% + var(--x-end)), 18px) scale(1);
opacity: 0;
  }
}

.workflow-ingest-files {
  display: grid;
  gap: 11px;
}

.workflow-ingest-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.workflow-ingest-icon {
  width: 14px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  position: relative;
}

.workflow-ingest-icon::before,
.workflow-ingest-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 1px;
  background: rgba(255,255,255,0.42);
}

.workflow-ingest-icon::before { top: 4px; }
.workflow-ingest-icon::after { top: 8px; }

.workflow-ingest-line {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
}

.workflow-ingest-line.w-92 { width: 92%; }
.workflow-ingest-line.w-76 { width: 76%; }

.workflow-ingest-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workflow-ingest-sources {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.workflow-ingest-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 9px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  flex: 0 0 auto;
}

.workflow-ingest-chip span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(0.5px);
}

.workflow-ingest-chip img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.4);
}

.workflow-ingest-chip.is-connected {
  border-color: rgba(102,179,255,0.28);
  background: rgba(102,179,255,0.11);
  box-shadow: inset 0 0 0 1px rgba(102,179,255,0.06);
  color: #d9edff;
}

.workflow-ingest-chip.is-connected img {
  filter: none;
}

.workflow-ingest-chip.is-off {
  opacity: 0.55;
}

.workflow-cartography-layout {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  flex: 1;
  height: 100%;
}

.workflow-cartography-layout .workflow-stack-head {
  margin-bottom: 0;
}

.workflow-cartography-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.workflow-cartography-visual {
  --mock-fit: 1.3;
  --project-anchor-x: calc(52px * var(--mock-fit));
  --ai-reflect-progress: 0;
  --ai-reflect-strength: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  align-self: auto;
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
  margin-top: 0;
}

.workflow-cartography-visual .project-map {
  width: 100%;
  justify-items: center;
  gap: calc(6px * var(--mock-fit));
  overflow: visible;
}

.workflow-cartography-visual .project-flow {
  width: max-content;
  gap: calc(4px * var(--mock-fit));
}

.workflow-cartography-visual .project-column {
  flex: 0 0 auto;
}

.workflow-cartography-visual .project-connector-vertical,
.workflow-cartography-visual .project-connector-horizontal,
.workflow-cartography-visual .project-branch-stack::before {
  left: var(--project-anchor-x);
}

.workflow-cartography-visual .project-column.blur {
  opacity: 0.34;
  filter: blur(1.5px);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.42) 62%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.42) 62%, rgba(0,0,0,0) 100%);
}

.workflow-cartography-visual .project-node.ai-node {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(150,164,255,0.32);
  background:
radial-gradient(circle at 18% 18%, rgba(117,145,248,0.12), transparent 60%),
radial-gradient(circle at 80% 20%, rgba(145,118,232,0.10), transparent 58%),
linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.03));
  box-shadow:
inset 0 1px 0 rgba(255,255,255,0.08),
0 10px 24px rgba(61,73,132,0.16);
}

.workflow-cartography-visual .project-node.ai-node::before {
  content: "";
  position: absolute;
  top: -64%;
  left: -235%;
  width: 92%;
  height: 224%;
  background: linear-gradient(
112deg,
rgba(255,255,255,0) 0%,
rgba(255,255,255,0.02) 18%,
rgba(187,215,255,0.16) 42%,
rgba(187,215,255,0.30) 52%,
rgba(187,215,255,0.16) 62%,
rgba(255,255,255,0.02) 82%,
rgba(255,255,255,0) 100%
  );
  transform: skewX(-18deg) translateX(calc(var(--ai-reflect-progress) * 332%));
  opacity: calc(var(--ai-reflect-strength) * 1.02);
  filter: blur(1.6px);
  mix-blend-mode: screen;
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 1;
}

.workflow-cartography-visual .project-node.ai-node::after {
  content: "✦";
  position: absolute;
  top: calc(-6px * var(--mock-fit));
  right: calc(-2px * var(--mock-fit));
  font-size: calc(9px * var(--mock-fit));
  line-height: 1;
  color: rgba(225,233,255,0.82);
  text-shadow: 0 0 7px rgba(137,135,236,0.28);
  pointer-events: none;
  z-index: 3;
}

.workflow-cartography-visual .project-node,
.workflow-cartography-visual .project-node.project,
.workflow-cartography-visual .project-node.branch {
  animation: none;
}

.workflow-report-layout {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  height: 100%;
}

.workflow-report-layout .workflow-stack-head {
  margin-bottom: 0;
}

.workflow-copy-col {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
}

@media (min-width: 901px) {
  .workflow-stack-head p {
min-height: calc(1.58em * 3);
  }
}

.workflow-report-visual {
  --workflow-report-progress: 0;
  --workflow-report-strength: 0;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 11px;
}

.workflow-report-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
}

.workflow-report-folder {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  gap: 9px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(102,179,255,0.18);
  background:
radial-gradient(circle at 16% 10%, rgba(102,179,255,0.12), transparent 55%),
rgba(102,179,255,0.04);
}

.workflow-report-folder::before {
  content: "";
  position: absolute;
  top: -58%;
  left: -235%;
  width: 96%;
  height: 220%;
  background: linear-gradient(
112deg,
rgba(255,255,255,0) 0%,
rgba(255,255,255,0.02) 16%,
rgba(195,226,255,0.14) 40%,
rgba(195,226,255,0.28) 52%,
rgba(195,226,255,0.14) 64%,
rgba(255,255,255,0.02) 84%,
rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg) translateX(calc(var(--workflow-report-progress) * 336%));
  opacity: calc(var(--workflow-report-strength) * 1.08);
  filter: blur(1.8px);
  mix-blend-mode: screen;
  transition: opacity 0.18s ease;
  pointer-events: none;
  z-index: 1;
}

.workflow-report-folder-title {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(102,179,255,0.24);
  background: rgba(102,179,255,0.11);
  color: #d8ebff;
  font-family: var(--font-mono);
  font-size: 0.69rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workflow-report-folder .workflow-report-row {
  min-height: 40px;
  background: rgba(255,255,255,0.035);
}

.workflow-report-icon {
  width: 14px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  position: relative;
}

.workflow-report-icon::before,
.workflow-report-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 1px;
  background: rgba(255,255,255,0.42);
}

.workflow-report-icon::before { top: 4px; }
.workflow-report-icon::after { top: 8px; }

.workflow-report-label {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.workflow-stack-card.is-active {
  z-index: 3;
  opacity: 1;
  transform:
translate3d(0, 0, 0)
rotateX(0deg)
rotateY(0deg)
scale(1);
  filter: none;
}

.workflow-stack-card.is-active .workflow-stack-inner {
  box-shadow:
0 34px 90px rgba(0,0,0,0.50),
0 12px 30px rgba(102,179,255,0.08);
}

.workflow-stack-card.is-active .workflow-stack-inner::after {
  animation: workflowCardSweep 980ms cubic-bezier(0.19, 1, 0.22, 1);
}

.workflow-stack-card.is-next {
  z-index: 2;
  opacity: 0.82;
  transform:
translate3d(34px, 22px, -70px)
rotateX(2deg)
rotateY(-4deg)
scale(0.972);
}

.workflow-stack-card.is-next .workflow-stack-inner {
  border-color: rgba(255,255,255,0.08);
  box-shadow:
0 18px 46px rgba(0,0,0,0.34),
0 6px 16px rgba(0,0,0,0.15);
}

.workflow-stack-card.is-last {
  z-index: 1;
  opacity: 0.52;
  transform:
translate3d(68px, 42px, -140px)
rotateX(3deg)
rotateY(-7deg)
scale(0.94);
}

.workflow-stack-card.is-last .workflow-stack-inner {
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.workflow-stack-card.is-next .workflow-stack-inner > * {
  filter: blur(0.8px);
}

.workflow-stack-card.is-last .workflow-stack-inner > * {
  filter: blur(1.8px);
}

.workflow-stack-card.is-active .workflow-stack-inner > * {
  filter: none;
}

@media (max-width: 1080px) {
  .workflow-showcase {
grid-template-columns: 1fr;
gap: 20px;
  }

  .workflow-nav {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
flex-wrap: nowrap;
overflow-x: auto;
padding-bottom: 2px;
scrollbar-width: none;
  }

  .workflow-nav::-webkit-scrollbar {
display: none;
  }

  .workflow-tablist {
display: flex;
justify-content: center;
gap: 10px;
flex: 0 0 auto;
grid-template-columns: none;
  }

  .workflow-toggle,
  .workflow-tab {
flex: 0 0 auto;
  }
}

@media (max-width: 720px) {
  .workflow-showcase {
gap: 16px;
  }

  .workflow-nav {
justify-content: center;
gap: 8px;
  }

  .workflow-tablist {
justify-content: center;
gap: 8px;
  }

  .workflow-tab {
width: 76px;
height: 48px;
  }

  .workflow-stack-card.is-next {
transform:
  translate3d(12px, 16px, -60px)
  rotateX(1deg)
  rotateY(-2deg)
  scale(0.98);
  }

  .workflow-stack-card.is-last {
transform:
  translate3d(24px, 30px, -120px)
  rotateX(2deg)
  rotateY(-4deg)
  scale(0.955);
  }

  .workflow-stack-inner {
padding: 24px;
  }

  .workflow-ingest-layout {
grid-template-columns: 1fr;
gap: 12px;
  }

  .workflow-cartography-layout {
grid-template-columns: 1fr;
grid-template-rows: auto 1fr;
gap: 12px;
  }

  .workflow-report-layout {
grid-template-columns: 1fr;
gap: 12px;
  }

  .workflow-report-visual {
padding: 0;
gap: 9px;
  }

  .workflow-report-row {
min-height: 40px;
padding: 0 10px;
gap: 10px;
  }

  .workflow-ingest-drop {
min-height: 50px;
  }

  .workflow-ingest-sources {
flex-wrap: wrap;
gap: 6px;
  }

  .workflow-toggle {
justify-self: auto;
  }
}

@media (max-width: 900px) {
  .workflow-cartography-layout {
grid-template-columns: 1fr;
grid-template-rows: auto 1fr;
gap: 12px;
flex: 1;
height: 100%;
  }

  .workflow-cartography-visual {
--mock-fit: 1.24;
  }

  .workflow-cartography-panel {
justify-content: center;
height: 100%;
  }

  .workflow-cartography-visual .project-column.blur {
display: grid;
-webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.34) 56%, rgba(0,0,0,0) 100%);
mask-image: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.34) 56%, rgba(0,0,0,0) 100%);
  }

  .workflow-cartography-visual .project-flow {
width: max-content;
justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .workflow-cartography-visual .project-column.blur {
display: none;
-webkit-mask-image: none;
mask-image: none;
  }

  .workflow-cartography-visual .project-flow {
width: 100%;
justify-content: center;
  }
}

