* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  color-scheme: dark;
  --bg: #070a0b;
  --panel: #0c1112;
  --panel-2: #111819;
  --line: #25312f;
  --muted: #82948f;
  --text: #d9e5e1;
  --accent: #91c7b4;
  --accent-2: #43695d;
  --danger: #df9a86;
  --ok: #94d5a9;
  --warn: #e2bf7f;
}
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(70, 126, 105, 0.18), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(58, 89, 103, 0.14), transparent 30rem),
    var(--bg);
  color: var(--text);
  font: 14px Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(145, 199, 180, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 199, 180, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 0 var(--scroll-shift, 0px), var(--scroll-shift, 0px) 0;
  mask-image: radial-gradient(ellipse at 50% 0%, black 18%, transparent 72%);
}
header {
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 11, 0.88);
  backdrop-filter: blur(12px);
}
.bar {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.brand-copy { display: grid; gap: 3px; min-width: 0; }
h1 { margin: 0; font-size: 17px; letter-spacing: 0; }
.brand-copy span {
  max-width: min(56vw, 560px);
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
}
.nav-links a:hover { color: var(--text); }
.nav-login {
  border: 1px solid #33413e;
  background: #0a0f10;
  color: #c7d3cf;
  padding: 7px 10px;
  font-weight: 600;
  line-height: 1;
}
.nav-login:hover {
  border-color: rgba(145, 199, 180, 0.55);
  color: var(--text);
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
main {
  width: min(1180px, calc(100vw - 36px));
  margin: 28px auto 48px;
  display: grid;
  gap: 18px;
}
.grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
section, .card {
  border: 1px solid var(--line);
  background: rgba(12, 17, 18, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}
section { padding: 18px; }
.card { padding: 14px; min-height: 108px; }
.landing { display: grid; gap: 72px; padding: 8px 0 32px; }
.landing > section { scroll-margin-top: 92px; }
.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 18px;
  align-items: stretch;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.landing-hero.solo { grid-template-columns: 1fr; }
.auth-card {
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-copy {
  position: relative;
  min-height: 560px;
  padding: clamp(34px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(145, 199, 180, 0.22);
  border-radius: 999px;
  background: rgba(145, 199, 180, 0.06);
  color: #b7d8cd;
  padding: 6px 10px;
  font: 12px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.04em;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(148, 213, 169, 0.12);
}
.landing-title {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
}
.landing-title em {
  color: #89a49b;
  font-style: normal;
}
.landing-lead {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-top: 22px;
  color: #a5b5b0;
  font-size: 17px;
  line-height: 1.75;
}
.preview-note {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 760px;
  margin-top: 18px;
  border: 1px solid rgba(226, 191, 127, 0.28);
  background: rgba(226, 191, 127, 0.06);
  color: #cdbf9a;
  padding: 9px 11px;
  font-size: 12px;
  line-height: 1.6;
}
.preview-note strong {
  margin-right: 8px;
  color: var(--warn);
  font: 700 12px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #33413e;
  border-radius: 12px;
  padding: 12px 15px;
  background: #0a0f10;
  color: var(--text);
  font-weight: 600;
}
.link-button.primary {
  border-color: var(--accent-2);
  background: #162420;
  color: #e8f2ef;
}
.link-button:hover { border-color: rgba(145, 199, 180, 0.55); }
.link-button.disabled,
.link-button[aria-disabled="true"] {
  color: #65746f;
  border-color: rgba(101, 116, 111, 0.35);
  background: rgba(10, 15, 16, 0.56);
  cursor: not-allowed;
}
.link-button.disabled:hover,
.link-button[aria-disabled="true"]:hover {
  border-color: rgba(101, 116, 111, 0.35);
}
.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 44px;
  max-width: 960px;
}
.hero-metric {
  border: 1px solid rgba(145, 199, 180, 0.16);
  border-radius: 16px;
  background: rgba(7, 10, 11, 0.42);
  padding: 14px;
}
.hero-metric strong {
  display: block;
  color: #e8f2ef;
  font-size: 18px;
  letter-spacing: 0;
}
.hero-metric span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.auth-card {
  scroll-margin-top: 92px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(145, 199, 180, 0.14), transparent 20rem),
    linear-gradient(180deg, rgba(17, 24, 25, 0.98), rgba(10, 15, 16, 0.98));
}
.auth-card h2 {
  margin-bottom: 16px;
  font-size: 22px;
  letter-spacing: 0;
}
.product-preview {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.mock-window {
  border: 1px solid #26302e;
  background: #080b0c;
  color: #8ea6a0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}
.mock-bar {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid #26302e;
  background: #0b1011;
  font-size: 13px;
}
.mock-title {
  color: #c7d3cf;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.mock-traffic-lights {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  flex: 0 0 auto;
}
.mock-light {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.mock-light.close { background: #ff5f57; }
.mock-light.minimize { background: #ffbd2e; }
.mock-light.zoom { background: #28c840; }
.mock-header-spacer { flex: 1; }
.mock-header-button {
  border: 1px solid #2d3a37;
  background: transparent;
  padding: 5px 11px;
  color: #b8c8c4;
  font-size: 12px;
  line-height: 1;
}
.mock-header-button.remote { color: #9fd8c0; background: #101816; }
.mock-header-button.host { color: #d5dfdc; background: #15201d; border-color: #4f6b63; }
.mock-header-button.lan { color: #8fd7b1; border-color: #264238; }
.mock-body {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  gap: 12px;
  min-height: 560px;
  padding: 16px;
  background: #080b0c;
}
.mock-sidebar {
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid #26302e;
  background: #0b1011;
}
.mock-sidebar-head,
.mock-sidebar-footer,
.mock-workspace-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #26302e;
  padding: 8px 12px;
  font-size: 12px;
}
.mock-sidebar-head strong { color: #c7d3cf; font-weight: 600; }
.mock-plus,
.mock-menu-dots {
  color: #88a79f;
  font-size: 14px;
}
.mock-workspace-list {
  flex: 1;
  min-height: 0;
  padding: 4px;
}
.mock-workspace-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px;
  color: #88a79f;
  font-size: 12px;
}
.mock-workspace-row.active {
  background: #1a2422;
  color: #c7d3cf;
}
.mock-workspace-row span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock-workspace-row span:last-child,
.mock-sidebar-footer {
  color: #6f807c;
}
.mock-sidebar-footer {
  height: 32px;
  border-top: 1px solid #26302e;
  border-bottom: 0;
  padding: 0 8px;
  font-size: 12px;
}
.mock-terminal-frame {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  border: 1px solid #26302e;
  background: #0b1011;
}
.mock-tabbar {
  display: flex;
  height: 32px;
  min-height: 32px;
  min-width: 0;
  overflow: hidden;
  border-bottom: 1px solid #26302e;
  background: #0f1615;
}
.mock-tab {
  display: flex;
  min-width: 0;
  max-width: 224px;
  flex: 1 1 160px;
  align-items: stretch;
  background: #0f1615;
  color: #7f9a94;
  font-size: 12px;
}
.mock-tab.active {
  background: #1a2422;
  color: #c7d3cf;
}
.mock-tab-grip {
  width: 28px;
  display: grid;
  place-items: center;
  color: #5c6e69;
  letter-spacing: 0;
}
.mock-tab-title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  padding: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock-tab-close,
.mock-new-tab {
  display: grid;
  place-items: center;
  color: #7f9a94;
}
.mock-tab-close { width: 26px; font-size: 15px; }
.mock-new-tab { width: 32px; font-size: 18px; }
.mock-terminal-screen {
  flex: 1;
  min-height: 424px;
  padding: 14px 16px;
  background: #060908;
  color: #8ea6a0;
  font-size: 12.5px;
  line-height: 1.7;
}
.mock-terminal-line { white-space: pre-wrap; }
.mock-terminal-line .prompt { color: #c7d3cf; }
.mock-terminal-line .muted { color: #6f807c; }
.mock-terminal-line .ok { color: #8fd7b1; }
.mock-terminal-line .warn { color: #e2bf7f; }
.mock-terminal-line .path { color: #b7c3c0; }
.mock-workspace-footer {
  height: 32px;
  border-top: 1px solid #26302e;
  border-bottom: 0;
  background: #0b1011;
  padding: 0 8px;
  font-size: 12px;
}
.mock-footer-left {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}
.mock-footer-workspace { max-width: 160px; color: #88a79f; }
.mock-footer-path { max-width: 240px; color: #5f706c; }
.mock-action {
  max-width: 150px;
  overflow: hidden;
  padding: 4px 8px;
  color: #88a79f;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock-action.on { color: #8fd7b1; }
.handoff-preview {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.handoff-window {
  border: 1px solid #26302e;
  background: #080b0c;
  color: #8ea6a0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  box-shadow: 0 24px 84px rgba(0, 0, 0, 0.28);
}
.handoff-bar {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #26302e;
  background: #0b1011;
  padding: 0 16px;
  font-size: 12px;
}
.handoff-title {
  color: #c7d3cf;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.handoff-status {
  color: #8fd7b1;
}
.handoff-body {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
  padding: 16px;
}
.handoff-copy {
  border: 1px solid #26302e;
  background: #0b1011;
  padding: 18px;
}
.handoff-copy h3 {
  margin: 12px 0 8px;
  color: #e2ede9;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0;
}
.handoff-copy p {
  color: #8ea6a0;
  font-size: 12px;
  line-height: 1.7;
}
.handoff-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.handoff-device,
.handoff-workstation {
  border: 1px solid #26302e;
  background: #0b1011;
  padding: 14px;
  min-height: 132px;
}
.handoff-device.active {
  border-color: #4f6b63;
  background: #101816;
}
.handoff-device span,
.handoff-workstation span {
  color: #8fd7b1;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.handoff-device strong,
.handoff-workstation strong {
  display: block;
  margin-top: 14px;
  color: #d7e3df;
  font-size: 15px;
  letter-spacing: 0;
}
.handoff-device p,
.handoff-workstation p {
  margin-top: 8px;
  color: #7f9a94;
  font-size: 12px;
  line-height: 1.55;
}
.handoff-workstation {
  grid-column: 1 / -1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(145, 199, 180, 0.08), transparent 46%),
    #0b1011;
}
.handoff-session {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.handoff-session i {
  border: 1px solid rgba(145, 199, 180, 0.18);
  padding: 6px 8px;
  color: #9fb8b1;
  font-style: normal;
  font-size: 11px;
}
.value-props,
.bento-section,
.workflow-section,
.connection-section,
.compare-section,
.faq-section {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.section-head {
  max-width: 720px;
  margin-bottom: 24px;
}
.section-eyebrow {
  color: var(--accent);
  font: 12px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-title {
  margin: 12px 0 0;
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: 0;
}
.section-sub {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(12, 17, 18, 0.72);
}
.value-card {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.value-card:last-child { border-right: 0; }
.value-card span,
.bento-card span,
.flow-card span {
  color: var(--accent);
  font: 12px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.1em;
}
.value-card h3,
.bento-card h3,
.flow-card h3 {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 18px;
  letter-spacing: 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.bento-card {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(145, 199, 180, 0.07), transparent 46%),
    rgba(12, 17, 18, 0.88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}
.bento-card.wide { grid-column: span 4; min-height: 300px; }
.bento-card.side { grid-column: span 2; min-height: 300px; }
.bento-card.half { grid-column: span 3; }
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.download-card {
  min-height: 230px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(145, 199, 180, 0.08), transparent 46%),
    rgba(12, 17, 18, 0.88);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.download-card span {
  color: var(--accent);
  font: 12px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.1em;
}
.download-card h3 {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 20px;
  letter-spacing: 0;
}
.download-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}
.download-actions {
  display: grid;
  gap: 8px;
}
.download-path {
  color: #65746f;
  font: 11px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  word-break: break-all;
}
.bento-card p,
.value-card p,
.flow-card p {
  color: var(--muted);
  line-height: 1.68;
}
.mini-flow {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mini-flow div,
.mini-chip {
  border: 1px solid rgba(145, 199, 180, 0.15);
  border-radius: 12px;
  padding: 10px;
  background: rgba(7, 10, 11, 0.5);
  color: #a5b5b0;
  font: 12px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.mini-flow div:nth-child(2) { border-color: rgba(145, 199, 180, 0.34); color: #dce9e5; }
.mini-chips {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.flow-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: rgba(12, 17, 18, 0.86);
}
.compare-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(12, 17, 18, 0.82);
}
.compare-table { border: 0; }
.compare-table th,
.compare-table td { padding: 16px 18px; }
.compare-table th { color: #9fb4ae; }
.compare-table td.own {
  color: #e8f2ef;
  background: rgba(145, 199, 180, 0.06);
}
.connection-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 14px;
  align-items: stretch;
}
.connection-map,
.connection-copy {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(145, 199, 180, 0.07), transparent 46%),
    rgba(12, 17, 18, 0.88);
  padding: 22px;
  min-height: 320px;
}
.connection-map {
  display: grid;
  gap: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.connection-node {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #26302e;
  background: #0b1011;
  padding: 14px;
  color: #d7e3df;
}
.connection-node span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.connection-node strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  letter-spacing: 0;
}
.connection-node i {
  align-self: center;
  color: #6f807c;
  font-style: normal;
  font-size: 12px;
}
.connection-lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.connection-hop {
  border: 1px solid #26302e;
  background: #080b0c;
  padding: 14px;
  color: #8ea6a0;
  min-height: 112px;
}
.connection-hop strong {
  display: block;
  color: #d7e3df;
  font-size: 15px;
  letter-spacing: 0;
}
.connection-hop p {
  color: #7f9a94;
  font-size: 12px;
  line-height: 1.6;
}
.connection-hop.primary {
  border-color: #4f6b63;
  background: #101816;
}
.connection-hop.standby strong { color: var(--warn); }
.connection-copy {
  display: grid;
  gap: 14px;
}
.connection-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  letter-spacing: 0;
}
.connection-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}
.connection-points {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.connection-point {
  border: 1px solid rgba(145, 199, 180, 0.14);
  background: rgba(7, 10, 11, 0.48);
  padding: 12px;
}
.connection-point span {
  display: block;
  color: var(--accent);
  font: 12px ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.connection-point strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0;
}
.start-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.q {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(12, 17, 18, 0.86);
  padding: 16px 18px;
}
.q summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 650;
  letter-spacing: 0;
}
.q .a {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}
.landing-cta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-radius: 24px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(145, 199, 180, 0.12), transparent 50%),
    rgba(12, 17, 18, 0.92);
}
.landing-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.footer-brand {
  display: grid;
  gap: 6px;
  max-width: 460px;
}
.footer-brand strong {
  color: var(--text);
  font-size: 14px;
}
.footer-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a { color: #a8bbb5; }
.footer-links a:hover { color: var(--text); }
.footer-links span { color: #65746f; }
html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 700ms ease, transform 700ms ease;
}
html.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
.kicker {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.ticket-code {
  margin: 10px 0;
  border: 1px solid #3d5b53;
  background: #091110;
  color: #e8f2ef;
  border-radius: 12px;
  padding: 18px;
  font-size: 36px;
  letter-spacing: 0.1em;
  text-align: center;
  user-select: all;
}
.ticket-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.device-card {
  border: 1px solid var(--line);
  background: #0a0f10;
  padding: 14px;
  display: grid;
  gap: 12px;
}
.device-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}
.device-name {
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
}
.device-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.device-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.copyable {
  border: 1px solid var(--line);
  background: #070a0b;
  padding: 8px;
  color: var(--muted);
  word-break: break-all;
  line-height: 1.55;
}
.subtle {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
details.advanced {
  border: 1px solid var(--line);
  background: rgba(12, 17, 18, 0.72);
  padding: 14px 18px;
}
details.advanced summary {
  cursor: pointer;
  color: var(--text);
}
h2 { margin: 0 0 12px; font-size: 14px; letter-spacing: 0; }
h3 { margin: 0 0 8px; font-size: 13px; color: var(--muted); font-weight: 500; }
p { margin: 8px 0 0; color: var(--muted); line-height: 1.65; }
.value { color: var(--text); word-break: break-all; line-height: 1.5; }
.muted { color: var(--muted); }
.hidden { display: none !important; }
.stack { display: grid; gap: 10px; }
.row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.space { justify-content: space-between; }
label {
  display: block;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
}
input, textarea {
  width: 100%;
  border: 1px solid #34413e;
  background: #070a0b;
  color: var(--text);
  outline: none;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
}
textarea { min-height: 118px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--accent); }
button {
  border: 1px solid #33413e;
  background: #0a0f10;
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
}
button:hover { border-color: var(--accent-2); }
button.primary {
  border-color: var(--accent-2);
  background: #162420;
  color: #e8f2ef;
}
button.small { padding: 7px 9px; font-size: 12px; }
button.danger { color: var(--danger); }
button:disabled { opacity: 0.5; cursor: not-allowed; }
.tabs {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.tabs button {
  border: 0;
  border-radius: 0;
  color: var(--muted);
}
.tabs button.active {
  background: #162420;
  color: var(--text);
}
.notice {
  border: 1px solid var(--line);
  background: #0a0f10;
  color: var(--muted);
  padding: 12px;
  line-height: 1.6;
  word-break: break-word;
}
.notice.error { border-color: #5b3b35; color: var(--danger); }
.notice.ok { border-color: #355344; color: var(--accent); }
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  overflow: hidden;
}
th, td {
  padding: 11px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th { color: var(--muted); font-weight: 500; background: #0a0f10; }
td { color: var(--text); }
tr:last-child td { border-bottom: 0; }
.mono {
  max-width: 420px;
  word-break: break-all;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.badge {
  display: inline-block;
  border: 1px solid #35413f;
  border-radius: 999px;
  padding: 2px 8px;
  color: var(--muted);
  font-size: 12px;
}
.badge.online { border-color: #456f55; color: #94d5a9; }
.badge.offline { border-color: #65493e; color: #dca089; }
.badge.warning { border-color: #5f563d; color: var(--warn); }
.empty {
  padding: 18px;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
}
@media (max-width: 980px) {
  .grid, .cards, .dashboard-grid, .landing-hero, .value-grid, .flow-grid, .connection-grid, .start-grid {
    grid-template-columns: 1fr;
  }
  .mock-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .handoff-body { grid-template-columns: 1fr; }
  .handoff-flow { grid-template-columns: 1fr; }
  .handoff-workstation { align-items: flex-start; flex-direction: column; }
  .handoff-session { justify-content: flex-start; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.wide, .bento-card.side, .bento-card.half { grid-column: span 2; }
  .download-grid { grid-template-columns: 1fr; }
  .value-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-card:last-child { border-bottom: 0; }
}
@media (max-width: 900px) {
  .bar { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .landing-cta { align-items: flex-start; flex-direction: column; }
  .landing-footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 680px) {
  main, .bar { width: min(100% - 28px, 1180px); }
  .nav-links { gap: 10px; flex-wrap: wrap; }
  .landing { gap: 48px; }
  .hero-copy { min-height: auto; padding: 30px 22px; }
  .landing-title { font-size: 46px; }
  .landing-lead { font-size: 15px; }
  .section-title { font-size: 30px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide, .bento-card.side, .bento-card.half { grid-column: span 1; }
  .download-grid { grid-template-columns: 1fr; }
  .connection-lanes { grid-template-columns: 1fr; }
  .mini-flow { position: static; margin-top: 20px; grid-template-columns: 1fr 1fr; }
  .mini-chips { position: static; margin-top: 20px; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 640px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  [data-parallax] {
    transform: none !important;
  }
}
*, *::before, *::after { border-radius: 0 !important; }
.mock-light { border-radius: 999px !important; }
