:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --surface: #111111;
  --text: #f5f5f5;
  --text-soft: #b8b8b8;
  --accent: #ff8a00;
  --accent-strong: #ff6a00;
  --accent-warm: #ffb347;
  --line: #2a2a2a;
  --ok: #ff9f1c;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  --glow-1: rgba(255, 138, 0, 0.24);
  --glow-2: rgba(255, 106, 0, 0.16);
  --header-bg: rgba(5, 5, 5, 0.84);
  --button-primary-text: #050505;
  --button-primary-grad-end: #ff6a00;
  --max: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

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

html {
  color-scheme: dark;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.shell {
  min-height: 72px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(340px, 100%);
  min-width: 0;
  flex: 0 1 340px;
  height: 68px;
  line-height: 0;
  overflow: hidden;
}

.logo {
  width: 340px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.5);
  transform-origin: left center;
}

.primary-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.primary-nav a,
.login-link {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.primary-nav a:hover,
.login-link:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  border-radius: 999px;
  padding: 0 1.05rem;
  background: linear-gradient(135deg, var(--accent), var(--button-primary-grad-end));
  color: var(--button-primary-text);
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.28);
}

.site-main {
  flex: 1;
}

.hero {
  position: relative;
  min-height: 1000px;
  padding: 140px 0 96px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 65%, rgba(255, 132, 24, 0.36), rgba(255, 110, 18, 0.27) 25%, transparent 60%),
    linear-gradient(to bottom, #1a0c00, #2b1200 40%, #120700);
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 220px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.5) 34%, rgba(10, 10, 10, 0.95) 62%, #0a0a0a);
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  color: rgba(255, 190, 140, 0.86);
  font-weight: 700;
}

h1 {
  max-width: 900px;
  margin: 16px auto 24px;
  color: #fff;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.hero-subtext {
  max-width: 700px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 0.97rem + 0.45vw, 1.25rem);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6f00, #ff9800);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

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

.btn-secondary {
  border: 1px solid rgba(255, 176, 120, 0.42);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(255, 184, 128, 0.66);
  background: rgba(255, 180, 130, 0.11);
}

.hero-assurance {
  margin: 1rem auto 0;
  color: rgba(255, 220, 180, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-visual {
  margin-top: 80px;
  position: relative;
  z-index: 2;
  padding: 0 0 8px;
}

.glow {
  position: absolute;
  width: min(800px, 92vw);
  aspect-ratio: 1 / 1;
  left: 50%;
  bottom: 50px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 135, 26, 0.52) 0%, rgba(255, 112, 16, 0.32) 30%, rgba(255, 94, 0, 0.12) 50%, transparent 70%);
  filter: blur(80px);
  transform: translate(-50%);
}

.hero-demo {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.hero-demo .aide-section--embedded {
  width: 100%;
}

.hero--intro {
  min-height: 720px;
  padding: 132px 0 116px;
}

.feature-sections {
  position: relative;
  background: #0a0a0a;
}

.feature-section {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 138, 0, 0.22), rgba(255, 138, 0, 0) 44%),
    linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.feature-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

.feature-copy h2 {
  max-width: 820px;
  margin: 10px auto 12px;
  color: #fff;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
}

.feature-copy p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.command-strip {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 auto 14px;
  padding: 0.55rem 0.85rem;
  overflow-x: auto;
  border: 1px solid rgba(255, 184, 128, 0.28);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  color: #e2c08d;
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
  text-align: left;
}

.command-strip span {
  color: #ffb347;
  font-weight: 700;
}

.command-strip code {
  min-width: 0;
  white-space: nowrap;
}

.command-strip::-webkit-scrollbar {
  height: 8px;
}

.command-strip::-webkit-scrollbar-thumb {
  border: 2px solid rgba(12, 12, 12, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: heroFade 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.reveal-1 {
  animation-delay: 0.14s;
}

.reveal-2 {
  animation-delay: 0.28s;
}

.reveal-3 {
  animation-delay: 0.42s;
}

.reveal-4 {
  animation-delay: 0.56s;
}

.reveal-5 {
  animation-delay: 0.72s;
}

.aide-section {
  padding: 4rem 0;
}

.aide-section--embedded {
  padding: 0;
}

.aide-section--embedded .aide-frame {
  margin-top: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.aide-frame {
  position: relative;
  margin-top: 2.2rem;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.aide {
  --mono: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
  --vs-bg: #1e1e1e;
  --vs-sidebar: #252526;
  --vs-titlebar: #323233;
  --vs-tab-bar: #252526;
  --vs-tab-inactive: #2d2d2d;
  --vs-border: #2b2b2b;
  --vs-fg: #cccccc;
  --vs-fg-dim: #858585;
  --vs-accent: #0078d4;
  --vs-status: #007acc;
  --vs-modified: #e2c08d;
  position: relative;
  width: 100%;
  max-height: 100%;
  border: 1px solid #000;
  border-radius: 12px;
  background: var(--vs-bg);
  overflow: hidden;
  color: var(--vs-fg);
  text-align: left;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.vs-titlebar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 37px;
  padding: 0 0.85rem;
  border-bottom: 1px solid #000;
  background: var(--vs-titlebar);
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.dot-red {
  background: #ff5f57;
}

.dot-amber {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.vs-title {
  flex: 1;
  text-align: center;
  color: #bbb;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.run-label,
.ag-head-actions {
  color: #d8deea;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
}

.run-label {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.32rem 0.5rem;
}

.aide-replay {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8deea;
  padding: 0.32rem 0.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1;
  cursor: pointer;
}

.aide-replay:hover {
  background: rgba(255, 255, 255, 0.12);
}

.run-label.running,
.ag-head-actions.running {
  color: var(--vs-modified);
}

.run-label.complete,
.ag-head-actions.complete {
  color: #c8c8c8;
}

.aide-body {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) 252px;
  height: 620px;
  overflow: hidden;
}

.aide-explorer {
  min-width: 0;
  min-height: 0;
  padding-top: 0.4rem;
  overflow-y: auto;
  background: var(--vs-sidebar);
  font-size: 0.8rem;
}

.ex-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.9rem 0.5rem;
  color: #bbb;
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ex-head-dots {
  color: #8a93a0;
  letter-spacing: 0.05em;
}

.ex-section {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.7rem;
  color: #ccc;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ex-tree {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ex-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 25px;
  border: 0;
  background: transparent;
  color: #ccc;
  padding: 0.16rem 0.6rem 0.16rem 1.55rem;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.ex-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.ex-row.active {
  background: #37373d;
  color: #fff;
}

.ex-icon {
  display: inline-flex;
  flex: 0 0 auto;
}

.file-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #858585;
}

.file-dot.risk {
  background: #f48771;
}

.file-dot.lock {
  background: #4b8bbe;
}

.file-dot.policy {
  background: #e2c08d;
}

.file-dot.sbom {
  background: #6a9955;
}

.ex-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ex-badge {
  margin-left: auto;
  color: var(--vs-modified);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.aide-editor {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background: var(--vs-bg);
}

.ed-tabs {
  display: flex;
  align-items: stretch;
  min-width: 0;
  overflow-x: auto;
  background: var(--vs-tab-bar);
}

.ed-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 12rem;
  min-height: 34px;
  border-right: 1px solid #252526;
  background: var(--vs-tab-inactive);
  color: #8a93a0;
  padding: 0.5rem 0.7rem;
  font-size: 0.76rem;
  cursor: pointer;
}

.ed-tab-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ed-tab.active {
  color: #fff;
  background: var(--vs-bg);
  box-shadow: inset 0 2px 0 var(--vs-accent);
}

.ed-tab-x {
  margin-left: 0.2rem;
  color: #8a93a0;
  font-size: 0.95rem;
  line-height: 1;
}

.ed-tab-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #ccc;
}

.ed-tab.active .ed-tab-dot {
  display: inline-block;
}

.ed-tab.active .ed-tab-dot + .ed-tab-x {
  display: none;
}

.ed-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 28px;
  padding: 0.3rem 0.9rem;
  border-bottom: 1px solid #252526;
  background: var(--vs-bg);
  color: #a0a0a0;
  font-size: 0.72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ed-pane {
  flex: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.code-frame {
  height: 100%;
  min-width: 620px;
  overflow: auto;
  padding: 0.7rem 0.9rem 1rem 0.4rem;
  color: #d4d4d4;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
}

.code-line {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  column-gap: 0.5rem;
  min-height: 1.7em;
  border-left: 2px solid transparent;
  padding-left: 0.4rem;
  margin-left: -0.4rem;
  transition: background 0.2s ease;
}

.code-line.risk,
.code-line.warn {
  border-left-color: #f14c4c;
  background: rgba(248, 81, 73, 0.16);
}

.code-line.ok {
  border-left-color: #3fb950;
  background: rgba(63, 185, 80, 0.16);
}

.line-no {
  color: var(--vs-fg-dim);
  text-align: right;
  user-select: none;
}

.line-code {
  white-space: pre;
}

.tok-key {
  color: #9cdcfe;
}

.tok-string {
  color: #ce9178;
}

.tok-punc {
  color: #d4d4d4;
}

.tok-comment {
  color: #6a9955;
  font-style: italic;
}

.tok-risk {
  color: #f48771;
  background: rgba(248, 81, 73, 0.12);
}

.tok-ok {
  color: #3fb950;
}

.aide-agent {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  border-top: 1px solid var(--vs-border);
  background: var(--vs-sidebar);
}

.ag-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--vs-border);
}

.ag-logo {
  width: 15px;
  height: 15px;
  object-fit: contain;
  flex: 0 0 auto;
}

.ag-title {
  color: #ccc;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ag-head-actions {
  margin-left: auto;
  color: #8a93a0;
  letter-spacing: 0.04em;
}

.ag-thread {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
}

.terminal {
  flex: 1 1 0;
  min-height: 0;
  border: 1px solid var(--vs-border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.terminal__toolbar {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0 0.65rem;
  border-bottom: 1px solid var(--vs-border);
  background: rgba(255, 255, 255, 0.03);
  color: #8a93a0;
  font-size: 0.72rem;
}

.terminal-command-label {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #c8c8c8;
  font-family: var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.terminal__body {
  height: calc(100% - 30px);
  overflow: auto;
  padding: 0.6rem 0.7rem;
  color: #c8c8c8;
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.5;
}

.terminal__body::-webkit-scrollbar,
.code-frame::-webkit-scrollbar,
.ed-tabs::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.terminal__body::-webkit-scrollbar-thumb,
.code-frame::-webkit-scrollbar-thumb,
.ed-tabs::-webkit-scrollbar-thumb {
  border: 3px solid var(--vs-sidebar);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.terminal-line {
  margin: 0;
  border-radius: 4px;
  padding: 0 0.2rem;
  white-space: pre-wrap;
  transition: background 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.terminal-line.command {
  color: #e2c08d;
}

.terminal-line.plain {
  color: #c8c8c8;
}

.terminal-line.finding-high {
  color: #f48771;
}

.terminal-line.finding-medium {
  color: #d7ba7d;
}

.terminal-line.ok {
  color: #6a9955;
}

.terminal-line.dim {
  color: #8a93a0;
}

.terminal-line.is-active {
  background: rgba(255, 138, 0, 0.16);
}

.terminal-caret {
  display: inline-block;
  width: 0.5em;
  height: 0.95em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: #ccc;
  animation: aide-blink 1s step-end infinite;
}

.terminal-line.is-entering {
  animation: terminalLineIn 0.22s ease forwards;
}

.vs-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  padding: 0 0.6rem;
  background: var(--vs-status);
  color: #fff;
  font-size: 0.68rem;
}

.sb-side {
  display: flex;
  align-items: center;
  min-width: 0;
}

.sb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  height: 24px;
  padding: 0 0.5rem;
  white-space: nowrap;
}

.sb-strong {
  font-weight: 500;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aide-blink {
  50% {
    opacity: 0;
  }
}

@keyframes terminalLineIn {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .primary-nav {
    display: none;
  }

  .aide-body {
    grid-template-columns: 200px minmax(0, 1fr);
  }
}

@media (max-width: 960px) {
  .aide-body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 252px;
    height: 600px;
  }

  .aide-explorer {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 1.4rem));
  }

  .shell {
    min-height: 64px;
    gap: 0.6rem;
  }

  .brand {
    flex-basis: 168px;
    max-width: 168px;
    height: 48px;
  }

  .logo {
    width: 168px;
    height: 48px;
    transform: scale(1.16);
  }

  .login-link {
    display: none;
  }

  .nav-cta {
    min-height: 2.45rem;
    padding: 0 0.85rem;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 940px;
    padding-top: 92px;
    padding-bottom: 56px;
  }

  .hero--intro {
    min-height: 640px;
    padding-top: 96px;
    padding-bottom: 84px;
  }

  .hero-visual {
    margin-top: 56px;
    padding-bottom: 0;
  }

  .feature-section {
    padding: 72px 0 80px;
  }

  .feature-copy {
    margin-bottom: 20px;
  }

  .feature-copy h2 {
    font-size: 30px;
  }

  .feature-copy p:last-child {
    font-size: 0.96rem;
  }

  .command-strip {
    min-height: 42px;
    font-size: 0.72rem;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .aide-body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 300px minmax(0, 1fr);
    height: 780px;
  }

  .aide-editor {
    min-height: 0;
    border-bottom: 1px solid var(--vs-border);
  }

  .aide-agent {
    border-top: 1px solid var(--vs-border);
    min-height: 0;
  }
  .vs-statusbar {
    display: none;
  }
}

@media (max-width: 560px) {
  .feature-copy h2 {
    font-size: 26px;
  }

  .command-strip {
    font-size: 0.66rem;
  }

  .aide-frame {
    padding: 8px;
    border-radius: 14px;
  }

  .code-frame {
    min-width: 520px;
    font-size: 0.74rem;
  }

  .terminal__body {
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .terminal-caret,
  .terminal-line.is-entering,
  .code-line {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
