/* Feather Terminal — emerald light, liquid glass, and room to think. */
:root {
  --bg: #080d0d;
  --bg-deep: #050909;
  --surface: #111b1b;
  --surface-raised: #1b2726;
  --surface-soft: #0c1414;
  --line: rgba(200, 235, 226, 0.1);
  --line-strong: rgba(210, 245, 235, 0.2);
  --text: #f1f7f4;
  --text-soft: #d3e2dd;
  --muted: #9faeaa;
  --faint: #8b9c97;
  --accent: #9df3cf;
  --accent-strong: #65dbae;
  --accent-soft: rgba(125, 235, 187, 0.08);
  --accent-line: rgba(149, 245, 201, 0.25);
  --accent-ink: #08231b;
  --blue: #a0c5fa;
  --amber: #edc997;
  --violet: #c7b6ef;
  --red: #ee9a95;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Manrope", var(--sans);
  --mono: "JetBrains Mono", monospace;
  --shell: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 0 55%, #13272340, transparent 55%);
  pointer-events: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}
button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button,
input,
a,
summary {
  touch-action: manipulation;
}
img,
svg {
  max-width: 100%;
}
svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
::selection {
  color: #07231a;
  background: #b2f3d5;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: 28px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5fb8a1, #bcffe2);
  box-shadow: 0 0 12px #9df3cf66;
}
.live-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px #9df3cf88;
}
.eyebrow,
.kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.6;
  text-transform: uppercase;
}
.kicker {
  margin-bottom: 22px;
}
.kicker > span {
  padding-right: 10px;
  color: #6c8d81;
  font-family: var(--mono);
}
.glass-surface {
  background: linear-gradient(135deg, #e2fff308, #91dfbd03), #0e1919db;
  border: 1px solid var(--line-strong);
  box-shadow:
    inset 0 1px 0 #ffffff0a,
    0 24px 64px #00000026;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
[data-glow] {
  position: relative;
  isolation: isolate;
}
[data-glow]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 0%),
    #b9ffe20b,
    transparent 65%
  );
  transition: opacity 0.45s ease;
}
[data-glow]:hover::after {
  opacity: 1;
}

/* A floating, translucent navigation bar. */
.site-nav {
  position: sticky;
  top: 18px;
  z-index: 50;
  width: min(calc(100% - 56px), 1144px);
  margin: 18px auto 0;
  border: 1px solid #dbfff018;
  border-radius: 18px;
  background: #1b292654;
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow:
    inset 0 1px 0 #ffffff09,
    0 10px 30px #00000010;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.site-nav.scrolled {
  background: #111e1bea;
  box-shadow:
    inset 0 1px 0 #ffffff0a,
    0 12px 50px #00000038;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 66px;
  padding-inline: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.035em;
}
.brand img {
  width: 30px;
  height: 30px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-links a {
  border-radius: 8px;
  padding: 10px 12px;
  color: #bbc9c3;
  font-size: 12px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current] {
  color: #f1fff8;
  background: #d6fff009;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #d0ffee06;
}
.nav-toggle span {
  width: 17px;
  height: 1px;
  background: var(--text-soft);
  transition: transform 0.2s;
}
.menu-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.button svg {
  width: 16px;
  height: 16px;
}
.button-primary {
  color: var(--accent-ink);
  border-color: #d5ffedb3;
  background: linear-gradient(175deg, #c1f9dd, #83dfb7);
  box-shadow:
    inset 0 1px 0 #fff9,
    0 0 0 4px #90f2bd09,
    0 5px 30px #66dba919;
}
.button-primary:hover {
  box-shadow:
    inset 0 1px 0 #fff9,
    0 0 0 4px #90f2bd16,
    0 8px 36px #66dba935;
  background: linear-gradient(175deg, #ddffed, #97ebc5);
}
.button-glass {
  color: #e2eee8;
  border-color: #c9efdf26;
  background: linear-gradient(140deg, #e6fff012, #e6fff005);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 #ffffff08,
    0 4px 20px #0000000d;
}
.button-glass:hover {
  border-color: #d6ffec55;
  background: #d6ffec12;
}
.button-small {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 11px;
  border-radius: 10px;
}
.play-icon {
  fill: currentColor;
  stroke: none;
}

/* CSS glass forms remain visible when canvas or motion is unavailable. */
.hero {
  position: relative;
  isolation: isolate;
  padding: 85px 0 34px;
}
.hero-scene {
  position: absolute;
  z-index: -1;
  top: -104px;
  left: 0;
  width: 100%;
  height: min(1300px, 100%);
  overflow: hidden;
  pointer-events: none;
  contain: paint;
  mask-image: linear-gradient(#000 80%, transparent);
}
.scene-light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 74% 29%, #449e7732, transparent 39%),
    radial-gradient(ellipse at 12% 52%, #1a796a2b, transparent 34%),
    radial-gradient(ellipse at 50% 72%, #44845f30, transparent 50%);
}
#aurora-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}
.liquid-orbit {
  position: absolute;
  border: 1px solid #c5ffe741;
  border-radius: 50%;
  background: conic-gradient(
    from 20deg,
    #d9ffec08,
    #86f1c945 14%,
    #effff9ba 19%,
    #71e6bf18 25%,
    #082c2638 42%,
    #67c9a533 60%,
    #c9ffdd7a 75%,
    #639e9633 80%,
    #d9ffec08
  );
  box-shadow:
    inset 9px 9px 25px #d0ffee2e,
    inset -12px -18px 35px #001d1580,
    0 0 60px #87eec813,
    0 0 2px #c3ffe778;
}
.liquid-orbit::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid #b9fddd43;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at 36% 19%,
    #c8ffe318,
    #09221b54 48%,
    #050e0e63 65%
  );
  box-shadow:
    inset 10px 15px 30px #00140f96,
    inset -3px -6px 15px #beffe132,
    0 0 15px #c9ffde20;
}
.liquid-orbit::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid #effff328;
  mask-image: linear-gradient(
    145deg,
    #000 10%,
    transparent 38%,
    #000 70%,
    transparent 90%
  );
}
.liquid-orbit > div {
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  border-top: 2px solid #effff37a;
  border-bottom: 1px solid #96ffc04a;
  filter: blur(1px);
}
.orbit-one {
  width: 610px;
  height: 490px;
  left: calc(50% + 255px);
  top: 46px;
  transform: rotate(-32deg);
  animation: orbit-drift 18s ease-in-out infinite;
}
.orbit-two {
  width: 470px;
  height: 310px;
  right: calc(50% + 380px);
  top: 430px;
  opacity: 0.8;
  transform: rotate(33deg);
  animation: orbit-drift-small 22s ease-in-out infinite;
}
.scene-grid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 520px;
  opacity: 0.23;
  background-image:
    linear-gradient(#aaffda12 1px, transparent 1px),
    linear-gradient(90deg, #aaffda12 1px, transparent 1px);
  background-size: 74px 74px;
  transform: perspective(500px) rotateX(50deg) scale(1.5);
  transform-origin: bottom;
  mask-image: radial-gradient(ellipse, #000, transparent 70%);
}
.hero-content {
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}
.announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid #c4f7dc26;
  border-radius: 100px;
  color: #c3d5cc;
  background: linear-gradient(120deg, #d4ffe712, #d4ffe703);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 #ffffff08;
  font-size: 10px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.announcement:hover {
  border-color: #c4f7dc55;
  background: #d4ffe712;
}
.announcement-divider {
  height: 11px;
  width: 1px;
  margin-inline: 2px;
  background: #d4ffe72e;
}
.announcement > span:last-child {
  color: var(--accent);
  margin-left: 4px;
}
.hero h1 {
  margin: 27px auto 0;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 94px);
  line-height: 1.055;
  font-weight: 600;
  letter-spacing: -0.067em;
}
.hero h1 > span {
  display: inline-block;
  padding: 0 0.07em 0.07em 0;
  color: #abdec9;
  background: linear-gradient(110deg, #e6fff2 7%, #adddc9 45%, #6b9e8b 96%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lede {
  max-width: 630px;
  margin: 23px auto 0;
  color: #abbbb3;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.015em;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  color: #8daba0;
  font-size: 10px;
}
.hero-proof span {
  color: #95cbb1;
  margin-right: 5px;
}
.workspace-preview {
  position: relative;
  margin-top: 72px;
  scroll-margin-top: 106px;
}
.workspace-preview::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20% 10% 0;
  border-radius: 50%;
  background: #76e8b626;
  filter: blur(80px);
}
.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
  padding-inline: 4px;
}
.preview-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a4bfb2;
  font-size: 10px;
  letter-spacing: 0.03em;
}
.tour-tabs {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #bdffde08;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.tour-tabs button {
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #a7bfb4;
  background: transparent;
  font-size: 10px;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.tour-tabs button:hover {
  color: #ecfff6;
  background: #d7ffe609;
}
.tour-tabs button[aria-selected="true"] {
  color: #e2fff0;
  background: linear-gradient(150deg, #d2ffe91a, #eafff106);
  border-color: #dbfff11f;
  box-shadow:
    0 2px 7px #0003,
    inset 0 1px 0 #ffffff0a;
}
.preview-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 49px;
  color: #8a9e95;
  font-size: 9px;
  padding-inline: 5px;
}
.preview-caption > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.preview-caption i {
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background: #7a8f84;
}
.motion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #a0b7ab;
  font-size: 9px;
}
.motion-toggle svg {
  width: 12px;
  height: 12px;
}
.motion-toggle:hover {
  background: #b4ffdb09;
  border-color: var(--line);
}

/* Three small, working product demonstrations. */
.tour-panel {
  min-height: 478px;
}
.tour-panel:focus-visible {
  outline-offset: -5px;
  border-radius: 0 0 20px 20px;
}
.tour-scene {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  align-items: center;
  min-height: 478px;
  padding: 44px 56px;
  background: radial-gradient(ellipse at 75% 40%, #589e7930, transparent 65%);
}
.tour-aside h3 {
  margin-top: 17px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.045em;
}
.tour-aside > p {
  max-width: 275px;
  margin-top: 15px;
  color: #a7b8b0;
  font-size: 12px;
  line-height: 1.85;
}
.shortcut-note,
.tour-tip {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 23px;
  color: #92b29f;
  font-size: 9px;
}
kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 2px 4px;
  border: 1px solid #aee5c82e;
  border-radius: 5px;
  color: #c3dace;
  background: #c2ffdf08;
  font-family: var(--mono);
  font-size: 10px;
}
.shortcut-note kbd:last-of-type {
  margin-right: 7px;
}
.finder-demo,
.organize-demo {
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background-color: #0c1815d9;
  box-shadow:
    0 25px 80px #0005,
    inset 0 1px 0 #d8ffe71a;
}
.finder-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 19px 18px;
  border-bottom: 1px solid var(--line);
}
.finder-input > svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--accent);
}
.finder-input input {
  width: 100%;
  min-width: 0;
  height: 28px;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 12px;
}
.finder-input input::placeholder {
  color: #9bb4a7;
}
.finder-input input:focus-visible {
  outline-offset: 4px;
  border-radius: 2px;
}
.finder-input kbd {
  flex-shrink: 0;
}
.finder-label {
  padding: 18px 19px 10px;
  color: #8aa794;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}
.finder-results {
  padding: 0 8px 10px;
}
.finder-result {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 70px;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  text-align: left;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.finder-result:hover,
.finder-result[aria-current="true"] {
  background: #c1ffdf0a;
  border-color: #c1ffdf14;
}
.finder-result > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}
.finder-result b {
  display: block;
  color: #d6e9df;
  font-size: 12px;
  font-weight: 500;
}
.finder-result small {
  display: block;
  margin-top: 5px;
  color: #92aa9d;
  font-size: 9px;
}
.finder-result small > span {
  padding-inline: 4px;
}
.task-demo-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid #d6ffeb14;
  border-radius: 10px;
  font-size: 16px;
}
.task-demo-icon.mint {
  color: #adf5cf;
  background: #94f2ba0d;
}
.task-demo-icon.amber {
  color: #f0d1a3;
  background: #ecc88a0d;
}
.task-demo-icon.lilac {
  color: #c6b8f0;
  background: #b59fe90d;
}
.result-hint {
  color: #a8c5b5;
  font-size: 9px;
}
.finder-footer,
.organize-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  color: #89a293;
  background: #e4fff103;
  font-size: 8px;
}
.finder-empty,
.organize-empty {
  display: grid;
  align-content: center;
  min-height: 218px;
  padding: 22px;
  color: #a9bdb1;
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}
.finder-demo.has-selection > :not(.finder-selection) {
  display: none;
}
.finder-selection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 364px;
  padding: 25px;
  background: radial-gradient(ellipse at 100% 0, #b9ffd015, transparent 70%);
}
.finder-selection > button {
  min-height: 34px;
  padding: 5px 0;
  border: 0;
  background: none;
  color: #a8c6b4;
  font-size: 10px;
}
.finder-selection .eyebrow {
  margin-top: 30px;
  font-size: 8px;
}
.finder-selection h4 {
  margin: 10px 0 0;
  color: #e2f5e7;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.selection-branch {
  max-width: 100%;
  margin-top: 8px;
  overflow-wrap: anywhere;
  color: #9bbca7;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.7;
}
.selection-state {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #c5f2d1;
  font-size: 10px;
}
#selection-summary {
  margin-top: 12px;
  color: #aac7b4;
  font-size: 12px;
  line-height: 1.8;
}
.selection-note {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #8fae9a;
  font-size: 9px;
  line-height: 1.8;
}
.organize-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.organize-head > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 500;
}
.example-badge {
  color: #90aa9c;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}
.organize-filters {
  display: flex;
  gap: 5px;
  padding: 15px 18px 8px;
}
.organize-filters button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #9bb4a5;
  background: transparent;
  font-size: 10px;
}
.organize-filters button[aria-pressed="true"] {
  border-color: var(--accent-line);
  color: #cbf5dc;
  background: #acffc50c;
}
.organize-filters button span {
  font-family: var(--mono);
  font-size: 8px;
  opacity: 0.7;
}
.organize-tasks {
  padding: 2px 18px 12px;
  min-height: 222px;
}
.organize-tasks:empty {
  display: none;
}
.organize-row {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 70px;
  border-bottom: 1px solid #d8ffeb0a;
}
.organize-row:last-child {
  border: 0;
}
.organize-row > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}
.organize-row b {
  display: block;
  color: #d0e6d9;
  font-size: 11px;
  font-weight: 500;
}
.organize-row small {
  display: block;
  color: #8ea899;
  margin-top: 5px;
  font-size: 9px;
}
.organize-row button,
.organize-footer button {
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid #c3ffdd18;
  border-radius: 7px;
  background: #d5ffe909;
  color: #b9dac6;
  font-size: 9px;
}
.organize-row button:hover,
.organize-footer button:hover {
  border-color: #c3ffdd5a;
  background: #d5ffe918;
}
.organize-row button > span {
  padding-left: 5px;
}
.organize-footer {
  min-height: 52px;
}
.organize-empty {
  min-height: 222px;
}
.tour-tip {
  line-height: 1.7;
}
.tour-tip > span {
  margin-right: 4px;
  color: var(--accent);
}

/* Supported agents and chapter headings. */
.agent-strip {
  position: relative;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, #d6ffe905, transparent);
}
.agent-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding-block: 32px 37px;
}
.agent-strip p {
  color: #bdcfc3;
  font-size: 11px;
}
.agent-strip p > span {
  color: #859d8e;
  margin-left: 4px;
}
.agent-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 23px;
  width: 100%;
  max-width: 1010px;
}
.agent-list > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c7d6cc;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.agent-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.agent-dot.claude {
  background: #d9ac94;
}
.agent-dot.codex {
  border-radius: 50%;
  background: #d8e9df;
}
.agent-dot.gemini {
  background: #a0c5ee;
  transform: rotate(45deg);
}
.agent-dot.open {
  background: #abd9be;
}
.agent-dot.cursor {
  background: #c6b4e4;
  transform: rotate(30deg);
}
.agent-dot.copilot {
  border: 2px solid #a7bcae;
}
.section {
  position: relative;
  padding-block: 120px;
}
.section-heading.centered {
  max-width: 735px;
  margin: 0 auto 62px;
  text-align: center;
}
h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.7vw, 57px);
  line-height: 1.12;
  letter-spacing: -0.053em;
  font-weight: 500;
}
h2 > span {
  color: #8ba99a;
}
.section-heading > p:last-child {
  max-width: 600px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 45px;
}
.split-heading > p {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.section-lede {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.collaborate-section {
  overflow: hidden;
}
.collaborate-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 50%;
  height: 560px;
  top: 220px;
  right: 0;
  background: radial-gradient(ellipse, #63b68e12, transparent 68%);
}
.workflow-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 55px;
  align-items: center;
}

/* The desktop preview uses the same visual vocabulary as the app. */
.product-frame,
.demo-frame {
  overflow: hidden;
  border: 1px solid #c9ffe332;
  border-radius: 20px;
  background: linear-gradient(135deg, #baffdc0d, #baffdc02), #101f17a6;
  box-shadow:
    0 0 0 6px #b5ffdb03,
    0 45px 110px -35px #000b,
    inset 0 1px 0 #ffffff14;
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
}
.hero-frame {
  position: relative;
}
.window-bar {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #0a1813a6;
}
.traffic {
  display: flex;
  gap: 6px;
}
.traffic i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8f6d936;
}
.traffic i:nth-child(1) {
  background: #e86e67;
}
.traffic i:nth-child(2) {
  background: #d9aa55;
}
.traffic i:nth-child(3) {
  background: #5bc983;
}
.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--faint);
  font-size: 11.2px;
  font-weight: 600;
}
.command-key {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 3px 7px;
  border: 0;
  color: #9bc8ac;
  font-family: var(--mono);
  font-size: 10.1px;
}
.app-layout {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  min-height: 478px;
}
.app-rail {
  padding: 14px 10px;
  border-right: 1px solid var(--line);
  background: #0a1813a6;
}
.rail-actions {
  display: grid;
  gap: 3px;
  margin-bottom: 24px;
}
.rail-action {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 7px;
  color: var(--faint);
  font-size: 11.2px;
}
.rail-action > span {
  width: 15px;
  color: var(--muted);
  font-size: 14.6px;
}
.rail-action-primary {
  color: var(--text-soft);
  background: var(--surface-raised);
  border: 1px solid var(--line);
}
.rail-label {
  margin: 0 9px 9px;
  color: #86a895;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.workspace-row {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 7px;
}
.workspace-row.second {
  margin-top: 18px;
}
.workspace-mark {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  color: #07140d;
  background: #74d89b;
  font-size: 9px;
  font-weight: 800;
}
.workspace-mark.violet {
  background: var(--violet);
  color: #151021;
}
.workspace-row b {
  overflow: hidden;
  flex: 1;
  color: var(--text-soft);
  font-size: 11.2px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.workspace-row em {
  color: var(--faint);
  font-size: 9px;
  font-style: normal;
}
.task-row,
.worker-row {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 8px;
  border-radius: 7px;
  color: var(--faint);
  font-size: 10.1px;
}
.task-row.active {
  color: var(--text-soft);
  background: #c9ffdf0c;
}
.task-row > span,
.worker-row > span {
  min-width: 0;
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.worker-row {
  margin-left: 12px;
  padding-left: 8px;
  border-left: 1px solid #c9ffdf16;
  border-radius: 0 7px 7px 0;
}
.worker-row small {
  color: #86a895;
  font-size: 9px;
}
.status {
  display: inline-block;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #50565c;
}
.status.running {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(102, 227, 154, 0.5);
  animation: status-pulse 2.2s ease-in-out infinite;
}
.status.done {
  background: #61c98b;
}
.status.waiting {
  background: var(--amber);
}
.status.idle {
  background: #50565c;
}

.app-main {
  min-width: 0;
  background: #0a1612b3;
}
.task-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 65px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}
.task-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13.4px;
  font-weight: 650;
}
.branch-name {
  margin: 4px 0 0 14px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
}
.agent-badge {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text-soft);
  background: #d1ffdf08;
  font-size: 10.1px;
}
.agent-badge span {
  margin-left: 5px;
  color: var(--faint);
}
.app-tabs {
  display: flex;
  align-items: center;
  min-height: 39px;
  padding: 0 17px;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.app-tabs span {
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--faint);
  font-size: 10.1px;
  white-space: nowrap;
}
.app-tabs span.active {
  color: var(--text-soft);
  background: var(--surface-raised);
}
.app-tabs b {
  margin-left: 3px;
  color: var(--accent);
  font-size: 9px;
}
.chat-pane {
  max-width: 760px;
  margin-inline: auto;
  padding: 26px 26px 20px;
}
.user-message {
  width: fit-content;
  max-width: 70%;
  margin-left: auto;
  padding: 10px 13px;
  border: 1px solid #baffd420;
  border-radius: 12px 12px 4px 12px;
  color: var(--text-soft);
  background: #c3f7d20b;
  font-size: 11.2px;
  line-height: 1.5;
}
.agent-line {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 11.2px;
  line-height: 1.55;
}
.agent-star {
  color: var(--accent);
  font-size: 13.4px;
}
.collaboration-card {
  margin-top: 18px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #c5ffe906;
}
.collab-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.collab-head > div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.collab-icon {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid var(--accent-line);
  border-radius: 6px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 10.1px;
}
.collab-head b {
  font-size: 11.2px;
}
.collab-head small {
  color: var(--faint);
  font-size: 9px;
}
.safe-badge {
  padding: 3px 7px;
  border: 1px solid var(--accent-line);
  border-radius: 99px;
  color: var(--accent);
  background: var(--accent-soft);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}
.phase-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}
.phase-track li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--faint);
  font-size: 9px;
}
.phase-track li::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 7px;
  left: 21px;
  right: 5px;
  height: 1px;
  background: var(--line-strong);
}
.phase-track li:last-child::after {
  display: none;
}
.phase-track i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #111416;
  color: var(--faint);
  font-size: 9px;
  font-style: normal;
}
.phase-track .complete {
  color: var(--text-soft);
}
.phase-track .complete i {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
}
.phase-track .complete::after {
  background: var(--accent-line);
}
.phase-track .current {
  color: var(--accent);
}
.phase-track .current i {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.worker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}
.worker-card {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 8px;
  border: 1px solid #c9ffdf16;
  border-radius: 8px;
  background: #09170f80;
}
.worker-card > div {
  min-width: 0;
  flex: 1;
}
.worker-card b,
.worker-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.worker-card b {
  color: var(--text-soft);
  font-size: 9px;
}
.worker-card small {
  margin-top: 2px;
  color: var(--faint);
  font-size: 9px;
}
.worker-card > i {
  color: var(--accent);
  font-size: 10.1px;
  font-style: normal;
}
.worker-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  border-radius: 6px;
  color: #0a1612b3;
  font-size: 9px;
  font-weight: 800;
}
.worker-avatar.blue {
  background: var(--blue);
}
.worker-avatar.green {
  background: var(--accent);
}
.worker-avatar.amber {
  background: var(--amber);
}
.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}
.result-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.result-row span i {
  color: var(--accent);
  font-style: normal;
}
.result-row strong {
  color: var(--accent);
  font-weight: 600;
}
.composer-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  min-height: 48px;
  padding: 9px 10px 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--faint);
  background: #dcffea07;
  font-size: 10.1px;
}
.composer-preview > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.composer-preview b {
  padding: 5px 7px;
  border: 1px solid var(--accent-line);
  border-radius: 6px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 9px;
}
.composer-preview i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  color: var(--accent-ink);
  background: var(--accent);
  font-style: normal;
}

/* Collaboration, review, and the remote companion. */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.workflow-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  min-height: 94px;
  padding: 0 12px 24px 0;
}
.workflow-steps li::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 14px;
  width: 1px;
  background: var(--line);
}
.workflow-steps li:last-child {
  min-height: auto;
  padding-bottom: 0;
}
.workflow-steps li:last-child::after {
  display: none;
}
.workflow-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--faint);
  background: var(--bg);
  font-family: var(--mono);
  font-size: 9.3px;
}
.workflow-steps li.active > span {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-soft);
}
.workflow-steps b {
  display: block;
  margin: 3px 0 5px;
  color: var(--text-soft);
  font-size: 16.2px;
}
.workflow-steps p {
  color: var(--faint);
  font-size: 12px;
  line-height: 1.55;
}
.orchestration-canvas {
  position: relative;
  min-width: 0;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 50% 12%,
      rgba(102, 227, 154, 0.055),
      transparent 34%
    ),
    #0c1913;
}
.orchestration-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 92%);
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  pointer-events: none;
}
.goal-chip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ccffe008;
}
.goal-chip small {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}
.goal-chip span {
  overflow: hidden;
  color: var(--text-soft);
  font-size: 11.6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.flow-line.vertical.top {
  width: 1px;
  height: 24px;
  margin-inline: auto;
  background: linear-gradient(var(--accent-line), var(--line-strong));
}
.lead-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 450px;
  margin-inline: auto;
  padding: 13px;
  border: 1px solid var(--accent-line);
  border-radius: 11px;
  background: #142e2099;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.node-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent-line);
  border-radius: 9px;
  background: var(--accent-soft);
}
.node-mark img {
  width: 22px;
  height: 22px;
}
.lead-node > div {
  min-width: 0;
  flex: 1;
}
.lead-node small,
.canvas-worker > small {
  display: block;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}
.lead-node b {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: 11.6px;
}
.lead-node p {
  margin-top: 2px;
  color: var(--faint);
  font-size: 9px;
}
.node-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border: 1px solid var(--accent-line);
  border-radius: 99px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 9px;
}
.node-state::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.branch-lines {
  position: relative;
  z-index: 0;
  width: 68%;
  height: 42px;
  margin-inline: auto;
  border-top: 1px solid var(--line-strong);
  transform: translateY(27px);
}
.branch-lines::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -27px;
  width: 1px;
  height: 27px;
  background: var(--line-strong);
}
.branch-lines i {
  position: absolute;
  top: 0;
  width: 1px;
  height: 16px;
  background: var(--line-strong);
}
.branch-lines i:nth-child(1) {
  left: 0;
}
.branch-lines i:nth-child(2) {
  left: 50%;
}
.branch-lines i:nth-child(3) {
  right: 0;
}
.canvas-workers {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.canvas-worker {
  position: relative;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #12251990;
}
.canvas-worker .worker-avatar {
  margin-bottom: 12px;
}
.canvas-worker b {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 10.4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.canvas-worker p {
  margin-top: 3px;
  overflow: hidden;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.canvas-worker em {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 13px;
  color: var(--accent);
  font-size: 9px;
  font-style: normal;
}
.canvas-worker em i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.merge-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--accent-line);
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(102, 227, 154, 0.09),
    rgba(102, 227, 154, 0.025)
  );
}
.merge-bar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.merge-bar > div > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 11.6px;
  font-weight: 800;
}
.merge-bar b,
.merge-bar small {
  display: block;
}
.merge-bar b {
  color: var(--text-soft);
  font-size: 10.4px;
}
.merge-bar small {
  margin-top: 2px;
  color: var(--faint);
  font-size: 9px;
}
.merge-bar strong {
  color: var(--accent);
  font-size: 9.3px;
  font-weight: 600;
}
.guardrail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}
.guardrail-row article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: #caffda04;
}
.guardrail-row article.guardrail-wide {
  grid-column: 1 / -1;
  align-items: center;
}
.guardrail-row article.guardrail-wide > div {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 16px;
}
.guardrail-row article.guardrail-wide p {
  margin-top: 0;
}
.guardrail-row article > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11.6px;
}
.guardrail-row b {
  display: block;
  color: var(--text-soft);
  font-size: 11.6px;
}
.guardrail-row p {
  margin-top: 4px;
  color: var(--faint);
  font-size: 10.4px;
  line-height: 1.5;
}

/* Product tour */
.product-section {
  background: #0b1410;
}
.demo-frame {
  position: relative;
}
.demo-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 8%;
  right: 8%;
  bottom: -50px;
  height: 90px;
  background: radial-gradient(
    ellipse,
    rgba(102, 227, 154, 0.13),
    transparent 70%
  );
  filter: blur(26px);
}
.video-toggle {
  min-height: 30px;
  margin-left: auto;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--faint);
  background: var(--surface);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9.3px;
}
.video-toggle:hover {
  color: var(--text-soft);
  border-color: var(--line-strong);
}
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #070809;
}
.video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  background:
    radial-gradient(circle, rgba(102, 227, 154, 0.07), transparent 48%), #090a0b;
}
.video-fallback img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
}
.video-fallback b {
  color: var(--text-soft);
  font-size: 16.2px;
}
.video-fallback span {
  font-size: 12.8px;
}
.video-wrap.video-failed video {
  visibility: hidden;
}
.video-wrap.video-failed .video-fallback {
  display: flex;
}
.capability-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
}
.capability-row article {
  min-height: 180px;
  padding: 8px 34px 8px 0;
}
.capability-row article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}
.cap-number {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10.4px;
}
.capability-row h3 {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 20.9px;
  letter-spacing: -0.02em;
}
.capability-row p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15.1px;
  line-height: 1.65;
}

/* Review */
.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 76px;
  align-items: center;
}
.diff-window {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #0c1913;
  box-shadow: 0 30px 75px -40px #000;
}
.diff-top,
.file-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.diff-top {
  min-height: 50px;
  padding: 0 16px;
  background: #caffdb07;
}
.diff-top > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.diff-top b {
  color: var(--text-soft);
  font-size: 11.6px;
}
.diff-top small {
  color: var(--faint);
  font-size: 9.3px;
}
.diff-stats {
  display: flex;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9.3px;
}
.diff-stats i {
  color: var(--accent);
  font-style: normal;
}
.diff-stats em {
  color: var(--red);
  font-style: normal;
}
.file-head {
  justify-content: flex-start;
  min-height: 38px;
  padding: 0 13px;
  color: var(--faint);
  background: #caffda04;
  font-size: 9.3px;
}
.file-head b {
  flex: 1;
  color: var(--text-soft);
  font-family: var(--mono);
  font-weight: 500;
}
.code-line {
  display: grid;
  grid-template-columns: 34px 34px minmax(0, 1fr);
  min-height: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.018);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.4px;
}
.code-line i {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.035);
  color: #91a99a;
  font-style: normal;
}
.code-line code {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.code-line.remove {
  background: rgba(238, 129, 121, 0.07);
}
.code-line.remove code {
  color: #dba29f;
}
.code-line.add {
  background: rgba(102, 227, 154, 0.07);
}
.code-line.add code {
  color: #a4dcb9;
}
.review-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px;
  padding: 12px;
  border: 1px solid var(--accent-line);
  border-radius: 10px;
  background: var(--accent-soft);
}
.review-note > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 9.3px;
  font-weight: 800;
}
.review-note p {
  flex: 1;
}
.review-note b,
.review-note small {
  display: block;
}
.review-note b {
  color: var(--text-soft);
  font-size: 10.4px;
}
.review-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}
.review-note strong {
  color: var(--accent);
  font-size: 12px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.feature-list li > span {
  margin-top: 2px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10.4px;
}
.feature-list b {
  display: block;
  color: var(--text-soft);
  font-size: 15.1px;
}
.feature-list p {
  margin-top: 5px;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.55;
}

/* Remote */
.remote-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 52%,
      rgba(102, 227, 154, 0.065),
      transparent 34%
    ),
    #0b1410;
}
.remote-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: center;
}
.remote-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.remote-points li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.remote-points li > span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--accent);
  font-size: 12px;
}
.remote-points b {
  display: block;
  color: var(--text-soft);
  font-size: 15.1px;
}
.remote-points p {
  margin-top: 4px;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.55;
}
.remote-stage {
  position: relative;
  min-height: 620px;
}
.remote-stage::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border-radius: 50%;
  background: rgba(102, 227, 154, 0.065);
  filter: blur(80px);
}
.share-popover {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: absolute;
  z-index: 1;
  left: 0;
  top: 90px;
  width: 270px;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(28, 49, 37, 0.82);
  box-shadow: 0 30px 80px -32px #000;
}
.share-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 12.8px;
  font-weight: 650;
}
.share-title i {
  color: var(--faint);
  font-size: 16.2px;
  font-style: normal;
}
.scope-choice {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}
.scope-choice > span {
  display: grid;
  grid-template-columns: 18px 1fr;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.scope-choice > span > i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  align-self: center;
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-ink);
  font-size: 9px;
  font-style: normal;
}
.scope-choice > span.selected {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}
.scope-choice > span.selected > i {
  border-color: var(--accent);
  background: var(--accent);
}
.scope-choice b {
  color: var(--text-soft);
  font-size: 9.3px;
}
.scope-choice small {
  margin-top: 1px;
  color: var(--faint);
  font-size: 9px;
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  width: 136px;
  height: 136px;
  margin: 16px auto 0;
  padding: 10px;
  border-radius: 10px;
  background: #f5f7f5;
  overflow: hidden;
}
.qr-grid i {
  display: block;
  aspect-ratio: 1;
}
.share-popover > p {
  margin-top: 10px;
  color: var(--text-soft);
  text-align: center;
  font-size: 10.4px;
}
.share-popover > small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 5px;
  color: var(--faint);
  font-size: 9px;
}
.share-popover > small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.phone {
  isolation: isolate;
  position: absolute;
  z-index: 2;
  right: 2%;
  top: 0;
  width: 310px;
  height: 620px;
  padding: 9px;
  border: 1px solid #c7ffdd4f;
  border-radius: 43px;
  background: linear-gradient(145deg, #526e5c, #0f2117);
  box-shadow:
    0 45px 110px -38px #000,
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(1.5deg);
}
.phone-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #09160f;
}
.phone-island {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: 50%;
  width: 91px;
  height: 24px;
  border-radius: 14px;
  background: #030405;
  transform: translateX(-50%);
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 73px;
  padding: 28px 16px 10px;
  border-bottom: 1px solid var(--line);
}
.phone-header > img {
  width: 24px;
  height: 24px;
}
.phone-header > div {
  min-width: 0;
  flex: 1;
}
.phone-header b {
  display: block;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 11.6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-header small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  color: var(--faint);
  font-size: 9px;
}
.phone-header small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.phone-header > span {
  color: var(--faint);
  font-size: 11.6px;
  letter-spacing: 2px;
}
.phone-tabs {
  display: flex;
  gap: 3px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
}
.phone-tabs span {
  flex: 1;
  padding: 6px 4px;
  border-radius: 6px;
  color: var(--faint);
  text-align: center;
  font-size: 9.3px;
}
.phone-tabs span.active {
  color: var(--text-soft);
  background: var(--surface-raised);
}
.phone-chat {
  flex: 1;
  padding: 16px 14px;
  overflow: hidden;
}
.phone-agent {
  display: flex;
  gap: 8px;
  color: var(--text-soft);
  font-size: 10.4px;
  line-height: 1.55;
}
.phone-agent > span {
  color: var(--accent);
}
.phone-event {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #12251990;
}
.phone-event > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--accent-line);
  border-radius: 6px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 9.3px;
}
.phone-event b,
.phone-event small {
  display: block;
}
.phone-event b {
  color: var(--text-soft);
  font-size: 9.3px;
}
.phone-event small {
  margin-top: 2px;
  color: var(--faint);
  font-size: 9px;
}
.phone-question {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #c2ffdb2e;
  border-radius: 10px;
  background: #ccffe008;
}
.phone-question p {
  color: var(--text-soft);
  font-size: 10.4px;
  line-height: 1.5;
}
.phone-question > div {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}
.phone-question span,
.phone-question b {
  flex: 1;
  padding: 7px;
  border-radius: 7px;
  text-align: center;
  font-size: 9px;
}
.phone-question span {
  border: 1px solid var(--line);
  color: var(--muted);
}
.phone-question b {
  color: var(--accent-ink);
  background: var(--accent);
}
.phone-composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  margin: 0 12px 14px;
  padding: 0 7px 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--faint);
  background: var(--surface);
  font-size: 9.3px;
}
.phone-composer i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  color: var(--accent-ink);
  background: var(--accent);
  font-style: normal;
}
.phone-home {
  width: 100px;
  height: 4px;
  margin: 0 auto 8px;
  border-radius: 3px;
  background: #4a5055;
}

/* Quiet detail, generous spacing, and surfaces that catch the light. */
.video-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  color: #adc9b9;
  font-size: 10px;
}
.video-caption > span:last-child {
  margin-left: auto;
  color: #8caa9b;
  font-size: 9px;
}
.features-section {
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at 80% 95%, #4f957b13, transparent 60%);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-grid article {
  position: relative;
  min-height: 260px;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid #d2ffe917;
  border-radius: 19px;
  background: linear-gradient(140deg, #d6fff20b, #d6fff202);
  box-shadow: inset 0 1px 0 #ffffff06;
  transition:
    border-color 0.35s,
    transform 0.35s var(--ease),
    background 0.35s;
}
.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: #c5ffdc40;
  background: linear-gradient(140deg, #d6fff214, #d6fff204);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #c8ffdd30;
  border-radius: 13px;
  background: linear-gradient(150deg, #d1fff419, #d1fff405);
  box-shadow:
    inset 0 1px 0 #ffffff10,
    0 4px 15px #0002;
  color: #b1e7c9;
}
.feature-icon svg {
  width: 21px;
  height: 21px;
}
.feature-grid h3 {
  margin-top: 27px;
  color: #e0ede5;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.feature-grid p {
  margin-top: 11px;
  color: #9eb5a8;
  font-size: 12px;
  line-height: 1.85;
}
.feature-grid small {
  display: block;
  margin-top: 23px;
  color: #83a492;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}
.local-section {
  padding-block: 0 90px;
}
.local-panel {
  display: grid;
  grid-template-columns: 70px 1fr 195px;
  gap: 30px;
  align-items: center;
  width: min(calc(100% - 56px), 1144px);
  padding: 43px;
  border: 1px solid #d2ffe922;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 0 0, #95efb714, transparent 65%),
    linear-gradient(125deg, #172921, #0c1713);
  box-shadow: inset 0 1px 0 #ffffff09;
}
.local-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid #c8ffdd30;
  border-radius: 20px;
  background: linear-gradient(135deg, #d1fff417, #d1fff402);
  box-shadow:
    inset 0 1px 0 #ffffff10,
    0 10px 30px #0004;
  transform: rotate(-6deg);
}
.local-mark img {
  width: 41px;
  height: 41px;
}
.local-copy .kicker {
  font-size: 9px;
  margin-bottom: 11px;
}
.local-copy h2 {
  font-size: 32px;
}
.local-copy > p:last-child {
  margin-top: 15px;
  color: #a8bfb0;
  font-size: 12px;
  line-height: 1.8;
}
.local-facts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 25px;
  border-left: 1px solid var(--line);
}
.local-facts span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bcd5c5;
  font-size: 10px;
}
.local-facts i {
  color: var(--accent);
  font-size: 9px;
  font-style: normal;
}
.faq-section {
  padding-top: 75px;
  border-top: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 90px;
}
.faq-heading {
  position: sticky;
  top: 126px;
}
.faq-heading h2 {
  font-size: 45px;
}
.faq-heading > p:last-of-type {
  max-width: 300px;
  margin-top: 21px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}
.availability-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #9bb8a7;
  font-size: 9px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 75px;
  padding-block: 20px;
  color: #d1e2d7;
  font-size: 12px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid #b6f4d324;
  border-radius: 50%;
  color: #9ebdab;
  background: #d8ffe905;
  font-size: 16px;
  font-weight: 400;
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
}
.faq-list details[open] summary span {
  color: #c1ffdb;
  background: #d8ffe915;
  transform: rotate(45deg);
}
.faq-list details p {
  max-width: 590px;
  padding: 0 45px 24px 0;
  color: #9eb6a7;
  font-size: 12px;
  line-height: 1.85;
}
.final-section {
  padding: 0 28px 100px;
}
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1144px;
  padding: 76px 24px 60px;
  border: 1px solid #c5ffdf32;
  border-radius: 26px;
  background: linear-gradient(130deg, #c3ffe509, #c3ffe503), #0b1914;
  box-shadow:
    inset 0 1px 0 #ffffff10,
    0 30px 70px #0003;
  text-align: center;
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 580px;
  height: 580px;
  border: 1px solid #b1ffd429;
  border-radius: 50%;
  box-shadow:
    0 0 1px #dbffe762,
    inset 10px 10px 25px #afffd320,
    inset -10px -10px 40px #62dca714;
  background: conic-gradient(
    from 45deg,
    #afffd306,
    #afffd320,
    #afffd301,
    #afffd340,
    #afffd306
  );
  pointer-events: none;
}
.final-cta::before {
  top: -150px;
  left: -360px;
  transform: rotate(-35deg);
}
.final-cta::after {
  bottom: -355px;
  right: -190px;
  transform: rotate(45deg);
}
.cta-light {
  position: absolute;
  z-index: -1;
  width: 700px;
  height: 400px;
  top: -210px;
  left: calc(50% - 350px);
  background: radial-gradient(ellipse, #79e2aa3b, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}
.final-cta > img {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}
.final-cta .kicker {
  font-size: 9px;
  margin-bottom: 20px;
}
.final-cta h2 {
  font-size: clamp(38px, 5vw, 60px);
}
.final-cta h2 > span {
  color: #a7d4ba;
}
.final-cta > p:not(.kicker, .release-status) {
  margin-top: 21px;
  color: #adc3b4;
  font-size: 13px;
}
.final-cta .release-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #8eb49e;
  font-size: 9px;
}
.footer {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #060c09;
}
.footer-wordmark {
  padding-top: 32px;
  color: #63816c;
  font-family: var(--display);
  font-size: clamp(65px, 14vw, 192px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 1.4;
  user-select: none;
}
.footer-wordmark > span {
  color: #56735f;
  font-weight: 400;
}
.footer-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 35px;
  padding-block: 18px 44px;
}
.footer-brand p {
  margin-top: 12px;
  color: #8ca795;
  font-size: 10px;
}
.footer-main nav {
  display: flex;
  gap: 23px;
}
.footer-main nav a {
  padding-block: 8px;
  color: #a6bfad;
  font-size: 10px;
}
.footer-main nav a:hover {
  color: #e2ffeb;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px 28px;
  border-top: 1px solid var(--line);
  color: #819e8b;
  font-size: 9px;
}

/* Content stays visible if scripting fails; JS opts into reveal effects. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.reveal-ready [data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] {
  transition-delay: 90ms !important;
}
[data-reveal-delay="2"] {
  transition-delay: 180ms !important;
}
@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes orbit-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-32deg);
  }
  50% {
    transform: translate3d(-14px, 24px, 0) rotate(-24deg);
  }
}
@keyframes orbit-drift-small {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(33deg);
  }
  50% {
    transform: translate3d(15px, -25px, 0) rotate(24deg);
  }
}
@keyframes line-flow {
  to {
    background-position: 0 100%;
  }
}
.flow-line.vertical.top,
.branch-lines::before,
.branch-lines i {
  background: linear-gradient(180deg, #99ffbc12, #adffdbaa, #99ffbc12);
  background-size: 100% 200%;
  animation: line-flow 3s linear infinite;
}
.motion-paused *,
.motion-paused *::before,
.motion-paused *::after,
.effects-offscreen .hero-scene * {
  animation-play-state: paused !important;
}
.motion-paused {
  scroll-behavior: auto;
}
.motion-paused [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.motion-paused [data-glow]::after {
  display: none;
}

@media (min-width: 1600px) {
  .hero {
    padding-top: 104px;
  }
  .hero h1 {
    font-size: 104px;
  }
  .orbit-one {
    left: calc(50% + 280px);
    width: 710px;
    height: 550px;
  }
}
@media (max-width: 1100px) {
  .nav-inner {
    gap: 15px;
  }
  .nav-links {
    gap: 0;
  }
  .nav-links a {
    padding-inline: 10px;
  }
  .tour-scene {
    padding: 36px;
    gap: 35px;
  }
  .tour-aside h3 {
    font-size: 29px;
  }
  .agent-list {
    justify-content: center;
    column-gap: 37px;
  }
  .workflow-layout {
    grid-template-columns: 260px 1fr;
    gap: 30px;
  }
  .orchestration-canvas {
    padding: 25px;
  }
  .review-grid {
    gap: 45px;
  }
  .remote-grid {
    gap: 30px;
  }
  .remote-stage {
    min-height: 610px;
  }
  .share-popover {
    width: 240px;
    left: 0;
    top: 130px;
  }
  .phone {
    right: 0;
    width: 280px;
    height: 570px;
  }
  .local-panel {
    padding: 32px;
    gap: 25px;
    grid-template-columns: 60px 1fr 185px;
  }
  .local-mark {
    width: 58px;
    height: 58px;
  }
}
@media (max-width: 900px) {
  .site-nav {
    top: 12px;
    width: calc(100% - 40px);
    margin-top: 12px;
  }
  .nav-inner {
    min-height: 62px;
    padding-inline: 16px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 9px;
    border: 1px solid #c9f8dd2e;
    border-radius: 16px;
    background: #11231ef7;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 45px #0005;
  }
  .menu-open .nav-links {
    display: flex;
  }
  .nav-links a {
    padding: 14px;
    font-size: 13px;
  }
  .hero {
    padding-top: 80px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .orbit-one {
    left: calc(50% + 175px);
    top: 130px;
    width: 450px;
    height: 390px;
  }
  .orbit-two {
    right: calc(50% + 235px);
    top: 390px;
    width: 400px;
    height: 300px;
  }
  .preview-label {
    display: none;
  }
  .preview-toolbar {
    justify-content: center;
  }
  .app-layout {
    grid-template-columns: 175px minmax(0, 1fr);
  }
  .app-rail {
    padding-inline: 7px;
  }
  .task-head {
    padding-inline: 15px;
  }
  .chat-pane {
    padding-inline: 18px;
  }
  .worker-grid {
    gap: 5px;
  }
  .worker-card {
    flex-wrap: wrap;
  }
  .worker-card > div {
    flex: 1 1 calc(100% - 25px);
  }
  .worker-card > i {
    display: none;
  }
  .worker-card small {
    font-size: 8px;
  }
  .section {
    padding-block: 90px;
  }
  .workflow-layout,
  .review-grid,
  .remote-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .workflow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .workflow-steps li {
    display: block;
    padding: 0;
    min-height: 0;
  }
  .workflow-steps li::after {
    display: none;
  }
  .workflow-steps li > span {
    margin-bottom: 14px;
  }
  .workflow-steps b {
    font-size: 13px;
  }
  .workflow-steps p {
    font-size: 10px;
  }
  .guardrail-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .orchestration-canvas {
    padding: 36px;
  }
  .split-heading {
    gap: 36px;
    grid-template-columns: 1.2fr 0.8fr;
  }
  .review-copy {
    order: -1;
    max-width: 620px;
  }
  .diff-window {
    max-width: 720px;
  }
  .remote-copy {
    max-width: 620px;
  }
  .remote-stage {
    width: min(100%, 620px);
    margin-inline: auto;
    min-height: 600px;
  }
  .phone {
    width: 300px;
    height: 600px;
    right: 8%;
  }
  .share-popover {
    left: 5%;
    width: 270px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .local-section {
    padding-top: 0;
  }
  .local-panel {
    grid-template-columns: 60px 1fr;
    width: calc(100% - 56px);
  }
  .local-facts {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    gap: 20px;
  }
  .faq-heading {
    position: static;
  }
  .faq-heading > p:last-of-type {
    max-width: 470px;
  }
  .final-section {
    padding-top: 0;
  }
  .footer-main {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .shell {
    padding-inline: 22px;
  }
  .nav-inner {
    padding-inline: 12px;
  }
  .hero {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: clamp(44px, 9.2vw, 66px);
  }
  .hero-lede {
    max-width: 420px;
    font-size: 14px;
  }
  .desktop-break {
    display: none;
  }
  .hero-proof {
    gap: 15px;
    font-size: 9px;
  }
  .orbit-one {
    width: 380px;
    height: 330px;
    top: 150px;
    left: calc(50% + 120px);
    opacity: 0.7;
  }
  .orbit-two {
    width: 330px;
    height: 280px;
    right: calc(50% + 140px);
    top: 430px;
    opacity: 0.55;
  }
  .workspace-preview {
    margin-top: 52px;
  }
  .app-layout {
    display: block;
    min-height: 0;
  }
  .app-rail {
    display: none;
  }
  .command-key {
    display: none;
  }
  .tour-panel {
    min-height: 500px;
  }
  .tour-scene {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 28px;
    min-height: 500px;
  }
  .tour-aside h3 {
    font-size: 28px;
  }
  .tour-aside h3 br {
    display: none;
  }
  .tour-aside > p {
    max-width: 100%;
    margin-top: 10px;
    font-size: 11px;
  }
  .shortcut-note,
  .tour-tip {
    margin-top: 14px;
  }
  .finder-demo,
  .organize-demo {
    width: 100%;
  }
  .preview-caption {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 15px;
    padding-top: 10px;
  }
  .agent-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
  }
  .agent-list > span {
    justify-content: center;
    font-size: 12px;
  }
  .section {
    padding-block: 75px;
  }
  .section-heading.centered {
    margin-bottom: 40px;
  }
  .section-heading > p:last-child {
    font-size: 13px;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .split-heading > p {
    max-width: 500px;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .workflow-steps li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 15px;
  }
  .workflow-steps li > span {
    margin: 0;
  }
  .workflow-steps b {
    margin-top: 0;
  }
  .workflow-steps p {
    max-width: 450px;
    font-size: 12px;
  }
  .orchestration-canvas {
    padding: 24px;
  }
  .canvas-worker {
    padding: 12px;
  }
  .canvas-worker b {
    font-size: 10px;
  }
  .canvas-worker p {
    font-size: 8px;
  }
  .canvas-worker em {
    font-size: 9px;
  }
  .capability-row {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .capability-row article {
    min-height: 0;
    padding: 23px 0;
  }
  .capability-row article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .capability-row h3 {
    margin-top: 10px;
  }
  .capability-row p {
    font-size: 12px;
  }
  .video-caption {
    flex-wrap: wrap;
    font-size: 9px;
  }
  .video-caption > span:last-child {
    flex-basis: 100%;
    margin: 0;
  }
  .video-toggle {
    min-height: 32px;
    font-size: 9px;
  }
  .demo-frame .window-title {
    display: none;
  }
  .feature-grid article {
    padding: 24px;
  }
  .local-section {
    padding-top: 0;
  }
  .local-panel {
    width: calc(100% - 44px);
    padding: 28px;
    grid-template-columns: 1fr;
  }
  .local-facts {
    gap: 17px;
  }
  .final-section {
    padding: 0 22px 65px;
  }
  .final-cta {
    padding-block: 54px 44px;
  }
  .final-cta .release-status {
    font-size: 8px;
    flex-wrap: wrap;
    line-height: 1.8;
  }
  .footer-wordmark {
    padding-top: 35px;
    font-size: 13.5vw;
  }
  .footer-main {
    padding-block: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 8px;
  }
}
@media (max-width: 450px) {
  html {
    scroll-padding-top: 105px;
  }
  .shell {
    padding-inline: 18px;
  }
  .site-nav {
    width: calc(100% - 28px);
    border-radius: 15px;
  }
  .brand {
    font-size: 13px;
    gap: 8px;
  }
  .brand img {
    width: 27px;
    height: 27px;
  }
  .nav-actions > .button {
    display: none;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
  }
  .announcement {
    gap: 7px;
    padding-inline: 11px;
    font-size: 8px;
  }
  .hero {
    padding-top: 55px;
  }
  .hero h1 {
    margin-top: 28px;
    font-size: 44px;
  }
  .hero-lede {
    max-width: 310px;
    margin-top: 20px;
    font-size: 13px;
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-actions .button {
    padding-inline: 14px;
    min-height: 47px;
    font-size: 10px;
    gap: 8px;
  }
  .hero-actions .button svg {
    width: 13px;
    height: 13px;
  }
  .hero-proof {
    column-gap: 13px;
    row-gap: 10px;
    max-width: 310px;
    margin-inline: auto;
    line-height: 1.5;
  }
  .orbit-one {
    left: calc(50% + 70px);
    top: 185px;
    opacity: 0.45;
  }
  .orbit-two {
    right: calc(50% + 105px);
  }
  .tour-tabs {
    width: 100%;
  }
  .tour-tabs button {
    flex: 1;
    min-height: 37px;
    padding-inline: 7px;
    font-size: 10px;
  }
  .product-frame,
  .demo-frame {
    border-radius: 14px;
  }
  .window-bar {
    height: 40px;
  }
  .window-title {
    font-size: 9px;
  }
  .task-head {
    min-height: 66px;
  }
  .task-title {
    font-size: 11px;
  }
  .branch-name {
    font-size: 8px;
  }
  .agent-badge {
    font-size: 8px;
  }
  .agent-badge > span {
    display: none;
  }
  .app-tabs {
    padding-inline: 9px;
    gap: 0;
  }
  .app-tabs span {
    font-size: 9px;
    padding-inline: 9px;
  }
  .chat-pane {
    padding: 20px 14px;
  }
  .user-message {
    max-width: 91%;
    font-size: 10px;
  }
  .agent-line {
    font-size: 10px;
    gap: 8px;
    margin-top: 18px;
  }
  .collaboration-card {
    padding: 12px;
    margin-top: 15px;
  }
  .collab-head b {
    font-size: 10px;
  }
  .collab-head small {
    display: none;
  }
  .safe-badge {
    font-size: 7px;
  }
  .phase-track li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 9px;
  }
  .phase-track li::after {
    left: 18px;
  }
  .worker-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .worker-card {
    padding: 7px 9px;
    gap: 9px;
  }
  .worker-card > div {
    flex: 1;
  }
  .worker-card > i {
    display: block;
  }
  .worker-card b {
    font-size: 10px;
  }
  .worker-card small {
    font-size: 8px;
  }
  .worker-avatar {
    width: 23px;
    height: 23px;
  }
  .result-row {
    font-size: 8px;
    flex-wrap: wrap;
    gap: 7px;
  }
  .composer-preview {
    min-height: 46px;
    padding-left: 10px;
  }
  .composer-preview > span {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 9px;
  }
  .composer-preview > div {
    flex-shrink: 0;
    gap: 6px;
  }
  .composer-preview b {
    font-size: 7px;
  }
  .tour-scene {
    padding: 24px 14px;
    gap: 20px;
  }
  .tour-aside {
    padding-inline: 7px;
  }
  .tour-aside h3 {
    font-size: 26px;
  }
  .tour-aside .eyebrow {
    font-size: 8px;
  }
  .finder-input {
    padding: 15px 13px;
    gap: 8px;
  }
  .finder-input input {
    font-size: 11px;
  }
  .finder-input kbd {
    display: none;
  }
  .finder-result {
    gap: 9px;
  }
  .finder-result b {
    font-size: 10px;
  }
  .finder-result small {
    font-size: 8px;
  }
  .result-hint {
    font-size: 8px;
  }
  .finder-footer {
    font-size: 7px;
    padding-inline: 14px;
  }
  .organize-head {
    padding: 17px 14px;
  }
  .organize-tasks {
    padding-inline: 13px;
  }
  .organize-row {
    gap: 8px;
  }
  .organize-row b {
    font-size: 10px;
  }
  .organize-row small {
    font-size: 8px;
  }
  .organize-row button {
    padding-inline: 8px;
  }
  .organize-row button span {
    display: none;
  }
  .organize-footer {
    padding-inline: 13px;
    font-size: 8px;
  }
  .agent-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
    max-width: 280px;
  }
  .agent-list > span {
    justify-content: flex-start;
    font-size: 13px;
  }
  .agent-strip p {
    font-size: 10px;
  }
  h2,
  .faq-heading h2 {
    font-size: 35px;
  }
  .kicker {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .section-heading.centered {
    text-align: left;
  }
  .orchestration-canvas {
    padding: 18px;
  }
  .goal-chip {
    padding: 10px;
    gap: 9px;
  }
  .goal-chip span {
    font-size: 8px;
  }
  .lead-node {
    padding: 12px;
    gap: 10px;
  }
  .lead-node b {
    font-size: 11px;
  }
  .lead-node p {
    font-size: 8px;
  }
  .node-state {
    display: none;
  }
  .canvas-workers {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .canvas-worker {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    gap: 3px 10px;
  }
  .canvas-worker .worker-avatar {
    grid-row: span 3;
    align-self: center;
    margin-bottom: 0;
  }
  .canvas-worker small {
    font-size: 7px;
  }
  .canvas-worker b,
  .canvas-worker p {
    grid-column: 2;
    margin-top: 0;
  }
  .canvas-worker em {
    grid-column: 3;
    grid-row: 1 / 4;
    align-self: center;
    margin-top: 0;
    font-size: 8px;
  }
  .branch-lines {
    height: 29px;
    width: 1px;
    transform: none;
    border: 0;
    background: var(--accent-line);
  }
  .branch-lines::before,
  .branch-lines i {
    display: none;
  }
  .merge-bar {
    padding: 12px;
  }
  .merge-bar b {
    font-size: 10px;
  }
  .merge-bar small {
    font-size: 8px;
  }
  .merge-bar strong {
    display: none;
  }
  .guardrail-row {
    gap: 10px;
    border: 0;
    border-radius: 0;
    background: none;
  }
  .guardrail-row article {
    display: block;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .guardrail-row b {
    margin-top: 11px;
    font-size: 10px;
  }
  .guardrail-row p {
    font-size: 9px;
  }
  .code-line {
    grid-template-columns: 24px 24px minmax(0, 1fr);
    min-height: 29px;
    font-size: 7px;
  }
  .code-line code {
    padding-inline: 8px;
  }
  .file-head {
    font-size: 8px;
  }
  .diff-top b {
    font-size: 10px;
  }
  .review-note {
    margin: 12px;
  }
  .review-note small {
    font-size: 8px;
  }
  .feature-list p,
  .remote-points p {
    font-size: 12px;
  }
  .remote-stage {
    min-height: 555px;
  }
  .phone {
    width: 250px;
    height: 535px;
    right: 0;
    top: 0;
    padding: 7px;
    border-radius: 36px;
  }
  .phone-frame {
    border-radius: 29px;
  }
  .phone-header {
    padding-inline: 12px;
  }
  .phone-header b {
    font-size: 10px;
  }
  .phone-chat {
    padding-inline: 12px;
  }
  .phone-agent {
    font-size: 10px;
  }
  .phone-event {
    padding: 9px;
    gap: 8px;
  }
  .phone-event b {
    font-size: 9px;
  }
  .phone-event small {
    font-size: 8px;
  }
  .phone-question {
    padding: 10px;
  }
  .phone-question p {
    font-size: 10px;
  }
  .share-popover {
    width: 172px;
    top: 200px;
    left: -4px;
    padding: 12px;
    z-index: 3;
    transform: rotate(-5deg);
    box-shadow: 0 15px 60px #0009;
  }
  .share-title {
    font-size: 10px;
  }
  .scope-choice {
    gap: 5px;
    margin-top: 10px;
  }
  .scope-choice > span {
    padding: 6px;
  }
  .scope-choice b {
    font-size: 8px;
  }
  .scope-choice small {
    font-size: 7px;
  }
  .share-popover > small {
    font-size: 6px;
  }
  .share-popover > p {
    font-size: 8px;
  }
  .qr-grid {
    width: 92px;
    height: 92px;
    margin-top: 12px;
    padding: 8px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid article {
    min-height: 240px;
    padding: 27px;
  }
  .local-panel {
    width: calc(100% - 36px);
    padding: 25px;
  }
  .local-facts {
    display: grid;
    grid-template-columns: 1fr;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .faq-list details p {
    padding-right: 20px;
  }
  .final-section {
    padding-inline: 18px;
  }
  .final-cta h2 {
    font-size: 34px;
  }
  .final-cta > p:not(.kicker, .release-status) {
    font-size: 12px;
    line-height: 1.8;
  }
  .footer-main nav {
    flex-wrap: wrap;
    gap: 10px 22px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 39px;
  }
  .hero-actions {
    flex-direction: column;
    padding-inline: 16px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-proof {
    font-size: 8px;
    gap: 10px;
  }
  .phone {
    right: -1px;
    width: 237px;
  }
  .share-popover {
    left: -3px;
    width: 155px;
  }
  .organize-row b {
    font-size: 9px;
  }
  .finder-result {
    padding-inline: 6px;
  }
}
@media (pointer: coarse) {
  .tour-tabs button,
  .organize-filters button,
  .organize-row button,
  .organize-footer button,
  .motion-toggle,
  .video-toggle,
  .nav-toggle {
    min-height: 44px;
  }
  .feature-grid article:hover,
  .button:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .feature-grid article:hover,
  .button:hover {
    transform: none;
  }
}
@supports not (backdrop-filter: blur(1px)) {
  .glass-surface,
  .site-nav {
    background-color: #12231d;
  }
}
