:root {
  --bg: #07111f;
  --bg-soft: #0b1727;
  --panel: #0d1b2d;
  --panel-2: #102238;
  --line: rgba(153, 184, 219, 0.16);
  --line-strong: rgba(0, 214, 170, 0.38);
  --text: #f5f8fb;
  --muted: #9db0c4;
  --muted-2: #6f8398;
  --accent: #00d6aa;
  --accent-2: #58f0cf;
  --warning: #f2c15d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 20px;
  --mono: "IBM Plex Mono", monospace;
  --sans: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 14%, rgba(0, 214, 170, 0.08), transparent 30%),
    radial-gradient(circle at 9% 48%, rgba(42, 111, 164, 0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  overflow: hidden;
}

.site-header,
.section,
.site-footer,
.logo-strip {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 6px;
  border: 1px solid rgba(0, 214, 170, 0.45);
  border-radius: 9px;
  background: rgba(0, 214, 170, 0.08);
}

.brand-mark span {
  display: block;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

.brand-mark span:nth-child(1) { height: 44%; }
.brand-mark span:nth-child(2) { height: 86%; }
.brand-mark span:nth-child(3) { height: 64%; }

.desktop-nav {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-size: 0.92rem;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.button-primary {
  color: #03251e;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 28px rgba(0, 214, 170, 0.19);
}

.button-primary:hover {
  background: linear-gradient(135deg, #14e0b6, #76f6dc);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button-ghost:hover {
  border-color: rgba(0, 214, 170, 0.36);
}

.section {
  padding: 112px 0;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
  padding-top: 92px;
  padding-bottom: 96px;
}

.eyebrow,
.section-label,
.card-label,
.lab-kicker {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: #c0d0df;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 214, 170, 0.09);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 24px 0 24px;
  max-width: 700px;
  font-size: clamp(3.2rem, 6.2vw, 5.85rem);
  line-height: 0.99;
  letter-spacing: -0.066em;
}

.accent-text {
  color: var(--accent);
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.09rem;
}

.signup-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 0 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.signup-form input::placeholder {
  color: #688097;
}

.signup-form input:focus {
  border-color: rgba(0, 214, 170, 0.68);
  box-shadow: 0 0 0 4px rgba(0, 214, 170, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.form-row {
  max-width: 590px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.form-note {
  margin: 11px 0 0;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.form-message {
  min-height: 1.4em;
  margin: 8px 0 0;
  color: var(--accent-2);
  font-size: 0.87rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 650px;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.trust-row div {
  display: grid;
  gap: 2px;
}

.trust-row strong {
  font-size: 0.88rem;
}

.trust-row span {
  color: var(--muted-2);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
}

.terminal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(167, 199, 231, 0.17);
  border-radius: 22px;
  background: #07101b;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.terminal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.terminal-topbar {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #0b1724;
  font-family: var(--mono);
  font-size: 0.68rem;
}

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

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2d4053;
}

.window-dots span:nth-child(1) { background: #ee6a64; }
.window-dots span:nth-child(2) { background: #d7ad52; }
.window-dots span:nth-child(3) { background: #43ba78; }

.terminal-title {
  color: #8095a9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.session-pill {
  color: var(--accent);
  border: 1px solid rgba(0, 214, 170, 0.26);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(0, 214, 170, 0.05);
}

.terminal-body {
  min-height: 325px;
  padding: 25px 24px;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.75;
  color: #a8b9ca;
  background:
    radial-gradient(circle at 83% 12%, rgba(0, 214, 170, 0.08), transparent 34%),
    #060e17;
}

.prompt {
  color: #d8e3ed;
}

.terminal-success {
  margin: 12px 0;
  color: var(--accent);
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  vertical-align: -2px;
  background: var(--accent);
  animation: blink 1s steps(1) infinite;
}

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

.lab-panel {
  padding: 20px 22px 23px;
  border-top: 1px solid var(--line);
  background: #0c1929;
}

.lab-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lab-kicker {
  color: var(--accent);
}

.lab-panel h2 {
  margin: 4px 0 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.progress-number {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.progress-track {
  height: 4px;
  margin: 16px 0 18px;
  border-radius: 99px;
  background: #1c2d40;
}

.progress-track span {
  display: block;
  width: 60%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.lab-step {
  display: flex;
  gap: 12px;
}

.step-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.lab-step strong {
  font-size: 0.85rem;
}

.lab-step p {
  margin: 3px 0 0;
  color: var(--muted-2);
  font-size: 0.74rem;
  line-height: 1.45;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 165px;
  padding: 13px 15px;
  border: 1px solid rgba(160, 193, 226, 0.17);
  border-radius: 12px;
  background: rgba(13, 27, 45, 0.94);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.queue-card {
  top: -28px;
  right: -28px;
  display: grid;
  gap: 1px;
}

.queue-card span,
.secure-card span {
  color: var(--muted-2);
  font-size: 0.72rem;
}

.queue-card strong,
.secure-card strong {
  font-size: 0.8rem;
}

.secure-card {
  left: -38px;
  bottom: 58px;
}

.shield {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #03251e !important;
  background: var(--accent);
  font-weight: 800;
}

.secure-card div {
  display: grid;
}

.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-strip div {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #bcc9d6;
}

.logo-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.narrow {
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
}

.section-heading h2,
.architecture-copy h2,
.demo-copy h2,
.cta-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.section-heading p,
.architecture-copy > p,
.demo-copy p,
.cta-panel > div > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.problem-section {
  padding-bottom: 92px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-card {
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.muted-card {
  background: rgba(255, 255, 255, 0.018);
}

.highlighted-card {
  border-color: rgba(0, 214, 170, 0.34);
  background:
    linear-gradient(180deg, rgba(0, 214, 170, 0.05), transparent 48%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(0, 214, 170, 0.08);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 12px;
  font-family: var(--mono);
}

.simulator-icon {
  color: var(--muted);
  background: rgba(157, 176, 196, 0.08);
}

.hardware-icon {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 3px;
  background: rgba(0, 214, 170, 0.1);
}

.hardware-icon span {
  height: 20px;
  border-radius: 2px;
  background: var(--accent);
}

.hardware-icon span:nth-child(1) { height: 12px; }
.hardware-icon span:nth-child(3) { height: 16px; }

.card-label {
  color: var(--muted-2);
}

.highlighted-card .card-label {
  color: var(--accent);
}

.comparison-card h3 {
  margin: 10px 0 24px;
  max-width: 450px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.comparison-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.comparison-card li {
  position: relative;
  padding-left: 24px;
}

.comparison-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted-2);
}

.highlighted-card li::before {
  content: "✓";
  color: var(--accent);
}

.workflow-section {
  padding-top: 92px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
}

.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 214, 170, 0.45), transparent);
}

.step-index {
  position: absolute;
  top: 22px;
  right: 25px;
  color: #354b60;
  font-family: var(--mono);
  font-size: 0.8rem;
}

.step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 56px;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(0, 214, 170, 0.08);
  font-family: var(--mono);
  font-weight: 700;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.architecture-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.feature-list {
  display: grid;
  gap: 21px;
  margin-top: 32px;
}

.feature-list > div {
  display: flex;
  gap: 13px;
}

.check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 999px;
  color: #03251e;
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-list strong {
  font-size: 0.95rem;
}

.feature-list p {
  margin: 3px 0 0;
  color: var(--muted-2);
  font-size: 0.86rem;
}

.architecture-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(0, 214, 170, 0.06), transparent 50%),
    rgba(255, 255, 255, 0.018);
}

.diagram-node {
  width: min(100%, 330px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
}

.diagram-node strong {
  font-size: 0.9rem;
}

.diagram-node small {
  grid-column: 2;
  color: var(--muted-2);
  font-size: 0.72rem;
}

.node-icon {
  width: 40px;
  height: 40px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(0, 214, 170, 0.08);
}

.cloud-node {
  border-color: rgba(0, 214, 170, 0.3);
  background: linear-gradient(135deg, rgba(0, 214, 170, 0.07), var(--panel));
}

.diagram-line {
  position: relative;
  width: 1px;
  height: 76px;
  background: linear-gradient(var(--line), rgba(0, 214, 170, 0.4), var(--line));
}

.diagram-line::before,
.diagram-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.diagram-line::before {
  top: 8px;
}

.diagram-line::after {
  bottom: 8px;
  transform: translateX(-50%) rotate(225deg);
}

.diagram-line span {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  white-space: nowrap;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
}

.private-line span {
  color: var(--accent);
}

.demo-shell {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 68px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.018);
}

.demo-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 214, 170, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(rgba(0, 214, 170, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 214, 170, 0.025) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(0, 214, 170, 0.09), transparent 38%),
    #081421;
  background-size: 30px 30px, 30px 30px, auto, auto;
  text-align: center;
}

.play-button {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 214, 170, 0.4);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 214, 170, 0.08);
}

.play-button span {
  margin-left: 4px;
}

.demo-badge {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.demo-placeholder p {
  max-width: 360px;
  margin: 10px 20px 0;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.demo-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.text-link {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 650;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 720px;
  margin: -6px 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-section {
  padding-top: 70px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  padding: 52px;
  border: 1px solid rgba(0, 214, 170, 0.25);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 214, 170, 0.09), transparent 30%),
    linear-gradient(135deg, #0b1b2b, #0c1724);
}

.cta-panel h2 {
  max-width: 680px;
  font-size: clamp(2.15rem, 4vw, 3.4rem);
}

.cta-form {
  display: grid;
  gap: 14px;
}

.cta-form label {
  display: grid;
  gap: 7px;
}

.cta-form label > span {
  color: #c6d2de;
  font-size: 0.78rem;
  font-weight: 600;
}

.cta-form label small {
  color: var(--muted-2);
  font-weight: 400;
}

.site-footer {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.8rem;
}

.footer-brand {
  color: var(--text);
}

.site-footer > p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    max-width: 780px;
    margin-inline: auto;
  }

  .architecture-section {
    grid-template-columns: 1fr;
  }

  .architecture-copy {
    max-width: 780px;
  }

  .demo-shell {
    gap: 38px;
  }

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

  .faq-section .section-heading {
    margin-bottom: 18px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header,
  .section,
  .site-footer,
  .logo-strip {
    width: min(100% - 28px, 1180px);
  }

  .desktop-nav {
    display: none;
  }

  .site-header .button-small {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 66px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .terminal-card {
    transform: none;
  }

  .floating-card {
    display: none;
  }

  .terminal-topbar {
    grid-template-columns: auto 1fr;
  }

  .session-pill {
    display: none;
  }

  .logo-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .logo-strip div {
    flex-wrap: wrap;
    gap: 10px 15px;
  }

  .comparison-grid,
  .steps-grid,
  .demo-shell {
    grid-template-columns: 1fr;
  }

  .comparison-card,
  .step-card {
    min-height: auto;
  }

  .step-icon {
    margin-bottom: 36px;
  }

  .demo-shell {
    padding: 20px;
  }

  .demo-copy {
    padding: 12px;
  }

  .cta-panel {
    padding: 32px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 38px 0;
  }

  .site-footer > p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .terminal-body {
    min-height: 295px;
    padding: 20px 17px;
    font-size: 0.66rem;
    overflow-x: auto;
  }

  .lab-panel {
    padding-inline: 17px;
  }

  .comparison-card {
    padding: 27px 23px;
  }

  .architecture-diagram {
    padding: 20px 15px;
  }

  .diagram-line span {
    left: 14px;
    font-size: 0.52rem;
  }

  .cta-panel {
    padding: 28px 19px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
