:root {
  color-scheme: light;
  --ink: #172120;
  --muted: #5c6865;
  --surface: #ffffff;
  --surface-2: #f7f9ff;
  --line: #e5e9f4;
  --violet: #6d4ff6;
  --violet-dark: #4b2bbd;
  --violet-soft: #eeeaff;
  --blue: #2f80d9;
  --blue-dark: #1662ad;
  --cyan: #1dbfd1;
  --teal: #2f80d9;
  --teal-dark: #1662ad;
  --mint: #ddf8fb;
  --coral: #d86f45;
  --amber: #b98518;
  --shadow: 0 18px 54px rgba(39, 28, 69, 0.1);
  --radius: 8px;
  --content-max: 1100px;
  --page-gutter: 40px;
  --content-edge: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fbfcff 0, #ffffff 540px),
    #fbfcff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 var(--content-edge);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(229, 233, 244, 0.92);
  box-shadow: 0 10px 28px rgba(44, 57, 113, 0.045);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--violet-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(88svh - 72px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 492px);
  gap: clamp(28px, 4vw, 48px);
  justify-content: center;
  align-items: center;
  padding: 78px var(--content-edge) 70px;
  background:
    linear-gradient(180deg, rgba(248, 247, 255, 0.94), rgba(255, 255, 255, 0.96) 62%, rgba(251, 252, 250, 0.98)),
    #fbfbff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, #fbfcff);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.35rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(4rem, 7.2vw, 6.8rem);
  line-height: 0.92;
  overflow-wrap: normal;
  white-space: nowrap;
}

.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: #263230;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--violet), var(--blue) 56%, var(--cyan));
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 128, 217, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--violet-dark);
  border-color: rgba(109, 79, 246, 0.22);
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(47, 128, 217, 0.42);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.hero-points li {
  padding: 8px 10px;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.hero-points strong {
  color: var(--ink);
}

.hero-clean {
  min-height: calc(82svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  justify-content: center;
  isolation: isolate;
  padding: 86px var(--content-edge) 72px;
  background:
    linear-gradient(180deg, #fbfcff, #ffffff 68%, #fbfcff),
    #fbfcff;
}

.hero-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(221, 248, 251, 0.58), rgba(255, 255, 255, 0) 48%),
    linear-gradient(300deg, rgba(238, 234, 255, 0.62), rgba(255, 255, 255, 0) 44%);
  pointer-events: none;
}

.hero-clean::after {
  height: 58px;
  background: linear-gradient(180deg, transparent, #fbfcff);
}

.hero-shot {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.94);
}

.hero-clean .hero-copy {
  grid-column: auto;
  grid-row: auto;
  max-width: 780px;
  color: var(--ink);
}

.hero-clean h1,
.hero-clean .hero-lede,
.hero-clean .hero-points,
.hero-clean .hero-points strong {
  color: var(--ink);
}

.hero-clean .hero-lede {
  max-width: 720px;
  color: #263230;
}

.hero-clean .hero-points li {
  border-color: rgba(47, 128, 217, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  box-shadow: 0 10px 28px rgba(23, 33, 32, 0.04);
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hero-proof figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(227, 232, 227, 0.94);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 22px 64px rgba(23, 33, 32, 0.1);
}

.hero-proof img {
  display: block;
  width: 100%;
  background: #f8faf8;
}

.hero-proof-main img {
  aspect-ratio: 1.45;
  object-fit: contain;
  object-position: left top;
  padding: 10px;
}

.hero-proof figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-proof figcaption strong {
  color: var(--ink);
}

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

.hero-proof-strip img {
  aspect-ratio: 1.48;
  object-fit: contain;
  object-position: left top;
  padding: 8px;
}

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

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.8fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  min-height: calc(92svh - 72px);
  padding: 84px var(--content-edge) 92px;
  background:
    linear-gradient(130deg, rgba(221, 248, 251, 0.62), rgba(255, 255, 255, 0) 38%),
    linear-gradient(310deg, rgba(238, 234, 255, 0.66), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #fbfcff, #ffffff 68%, #fbfcff);
}

.home-hero .hero-copy {
  max-width: 720px;
  grid-column: auto;
  grid-row: auto;
}

.home-hero h1 {
  font-size: clamp(3.8rem, 7.2vw, 6.7rem);
  line-height: 0.9;
  overflow-wrap: normal;
  white-space: nowrap;
}

.hero-promise {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 3.35vw, 3.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero-promise::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--blue), var(--cyan));
}

.hero-note {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(227, 232, 227, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(23, 33, 32, 0.04);
}

.hero-facts strong {
  display: block;
  margin-bottom: 5px;
  color: var(--violet-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
}

.home-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.home-visual figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(227, 232, 227, 0.94);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 74px rgba(23, 33, 32, 0.12);
}

.home-visual img {
  width: 100%;
  background: #f8faf8;
}

.home-visual figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.visual-main {
  grid-column: 1 / -1;
}

.visual-main img {
  aspect-ratio: 1.68;
  object-fit: contain;
  object-position: left top;
  padding: 10px;
}

.visual-overlap {
  min-width: 0;
}

.visual-overlap img {
  aspect-ratio: 1.45;
  object-fit: contain;
  object-position: left top;
  padding: 8px;
}

.flow-section .section-heading {
  margin-bottom: 22px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  list-style: none;
  box-shadow: 0 18px 54px rgba(23, 33, 32, 0.045);
}

.flow-steps li {
  min-width: 0;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.flow-steps li:first-child {
  border-left: 0;
}

.flow-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue) 62%, var(--cyan));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.flow-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.outcome-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.outcome-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

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

.outcome-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list strong {
  color: var(--ink);
}

.outcome-list span {
  color: var(--muted);
  line-height: 1.6;
}

.ownership-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  max-width: 1100px;
  margin: 36px auto;
  padding: 30px 34px;
  border: 1px solid rgba(109, 79, 246, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(238, 234, 255, 0.92), rgba(221, 248, 251, 0.74)),
    #ffffff;
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(47, 128, 217, 0.1);
}

.ownership-note h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.ownership-note p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ownership-note .text-link {
  color: var(--violet-dark);
  white-space: nowrap;
}

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

.next-grid a {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(227, 232, 227, 0.94);
  border-radius: var(--radius);
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(23, 33, 32, 0.04);
}

.next-grid span {
  color: var(--violet-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-grid strong {
  font-size: 1.15rem;
}

.next-grid em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.system-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1.1fr) minmax(0, 1fr);
  grid-template-areas:
    "setup core daily"
    "admin core tools"
    ". recovery .";
  gap: 16px;
}

.system-core,
.system-node {
  min-width: 0;
  padding: 24px;
  border-radius: var(--radius);
}

.system-core {
  grid-area: core;
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(109, 79, 246, 0.94), rgba(47, 128, 217, 0.94) 58%, rgba(29, 191, 209, 0.9)),
    var(--violet);
  color: #ffffff;
  box-shadow: 0 24px 74px rgba(47, 128, 217, 0.22);
}

.system-node {
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(23, 33, 32, 0.04);
}

.system-node.setup {
  grid-area: setup;
}

.system-node.daily {
  grid-area: daily;
}

.system-node.admin {
  grid-area: admin;
}

.system-node.tools {
  grid-area: tools;
}

.system-node.recovery {
  grid-area: recovery;
  display: grid;
  grid-template-columns: minmax(160px, 0.82fr) minmax(0, 1fr);
  gap: 12px 20px;
  align-items: center;
}

.system-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(238, 234, 255, 0.88);
  color: var(--teal-dark);
  box-shadow: inset 0 0 0 1px rgba(109, 79, 246, 0.11);
}

.system-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.system-core .system-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.system-core .system-label,
.system-node .system-label {
  color: var(--violet-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-core strong,
.system-node strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
}

.system-core p,
.system-node p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.system-core p {
  color: rgba(255, 255, 255, 0.82);
}

.system-core .system-label {
  color: rgba(255, 255, 255, 0.78);
}

.backup-targets {
  display: grid;
  gap: 8px;
}

.backup-targets span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(47, 128, 217, 0.18);
  border-radius: 8px;
  background: rgba(247, 249, 255, 0.92);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.backup-targets svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(23, 33, 32, 0.055);
}

.access-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.46fr) minmax(260px, 1fr) minmax(220px, 0.72fr);
  gap: 22px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}

.access-row.head {
  border-top: 0;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.access-row strong {
  color: var(--ink);
}

.model-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.model-list div {
  padding: 24px 28px 24px 0;
  border-bottom: 1px solid var(--line);
}

.model-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.model-list p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.trust-explainer {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-explainer-copy {
  display: grid;
  gap: 16px;
}

.trust-explainer-copy p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.68;
}

.engine-grid,
.priority-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.engine-grid article,
.priority-list article {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fffefa);
  box-shadow: 0 14px 38px rgba(23, 33, 32, 0.04);
}

.priority-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.engine-grid h3,
.priority-list h3 {
  margin: 0;
  font-size: 1.06rem;
}

.engine-grid p,
.priority-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.guide-directory {
  display: grid;
  gap: 34px;
}

.guide-directory > .section-heading {
  margin-bottom: 0;
}

.guide-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.guide-group > div:first-child span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.guide-group h3 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.guide-group p {
  color: var(--muted);
  line-height: 1.62;
}

.guide-links {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.guide-links a {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.guide-links a:first-child {
  border-top: 0;
}

.guide-links strong {
  color: var(--ink);
}

.guide-links span {
  color: var(--muted);
  line-height: 1.55;
}

.hero-scene {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 660px;
  opacity: 0.94;
}

.product-frame,
.insight-card {
  position: relative;
  border: 1px solid rgba(23, 33, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.webui-frame {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.frame-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.frame-bar span:nth-child(2) {
  background: var(--amber);
}

.frame-bar span:nth-child(3) {
  background: var(--teal);
}

.frame-bar strong {
  margin-left: 8px;
  font-weight: 700;
}

.webui-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 360px;
}

.webui-layout aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #25114f;
  color: rgba(255, 255, 255, 0.82);
}

.webui-layout aside b {
  margin-bottom: 18px;
  color: #fff;
}

.webui-layout aside span {
  padding: 8px 10px;
  border-radius: 8px;
}

.webui-layout aside .active {
  background: rgba(255, 255, 255, 0.14);
}

.file-view {
  padding: 22px;
}

.path {
  font-weight: 800;
  font-size: 1.1rem;
}

.toolbar {
  display: flex;
  gap: 10px;
  margin: 14px 0 18px;
}

.toolbar span {
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--violet-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.file-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.file-row i {
  width: 20px;
  height: 24px;
  border-radius: 4px;
  background: var(--mint);
}

.file-row.folder i {
  height: 18px;
  background: var(--amber);
}

.file-row em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.scene-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.insight-card {
  display: flex;
  min-width: 0;
  min-height: 154px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.insight-kicker {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-title,
.phone-title {
  margin-bottom: 10px;
  font-weight: 900;
}

.health-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.health-line span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.health-line.good span {
  background: var(--teal);
}

.health-line.warn span {
  background: var(--amber);
}

.mobile-frame {
  background: #ffffff;
}

.phone-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.phone-progress span {
  display: block;
  width: 78%;
  height: 100%;
  background: var(--teal);
}

.mobile-frame p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.terminal-frame {
  background: #20184a;
  color: #e7f8fb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.45;
}

.terminal-frame strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 40px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.section-heading p:not(.eyebrow),
.trust-copy p,
article p,
.cta-band p,
.guide-main p,
.guide-card p,
.guide-hero p {
  color: var(--muted);
  line-height: 1.62;
}

.feature-grid,
.use-case-list,
.steps,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.use-case-list,
.steps,
.guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.use-case-list article,
.steps article,
.guide-grid article,
.guide-card {
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #fffefd);
  box-shadow: 0 12px 34px rgba(23, 33, 32, 0.038);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.feature-grid article:hover,
.use-case-list article:hover,
.steps article:hover,
.company-card:hover,
.surface-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 20px 54px rgba(76, 29, 149, 0.095);
}

.guide-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.guide-card > span:last-child {
  margin-top: auto;
  color: var(--violet-dark);
  font-weight: 900;
}

.guide-card .status {
  align-self: flex-start;
}

.guide-card .card-icon {
  margin-top: 4px;
  margin-bottom: 12px;
}

.guide-card .status + .card-icon {
  margin-top: 2px;
}

.home-guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.surface-summary article,
.availability-list div {
  min-width: 0;
  border: 1px solid rgba(227, 232, 227, 0.94);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fffefd);
  box-shadow: 0 12px 34px rgba(23, 33, 32, 0.038);
}

.surface-summary article {
  padding: 24px;
}

.availability-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.availability-list div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.availability-list strong {
  color: var(--ink);
}

.availability-list span {
  color: var(--muted);
  line-height: 1.55;
}

.guide-card:hover,
.guide-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.42);
  box-shadow: 0 18px 50px rgba(76, 29, 149, 0.12);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(238, 234, 255, 0.86);
  color: var(--teal-dark);
  box-shadow: inset 0 0 0 1px rgba(109, 79, 246, 0.1);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon.teal {
  background: rgba(221, 248, 251, 0.86);
  color: var(--teal-dark);
}

.card-icon.amber {
  background: #f4e6c2;
  color: #6f5010;
}

.card-icon.coral {
  background: #f6dfd3;
  color: #7c3420;
}

.feature-icon {
  display: none;
}

@media (min-width: 981px) {
  .guide-grid .guide-card:nth-child(7):last-child {
    grid-column: 2;
  }
}

.screenshot-proof {
  max-width: 1180px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.screenshot-card,
.guide-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(39, 28, 69, 0.075);
}

.screenshot-card img,
.guide-shot img {
  display: block;
  width: 100%;
  height: auto;
  background: #f7f8fb;
}

.screenshot-card img {
  aspect-ratio: 1.44;
  object-fit: cover;
  object-position: left top;
}

.screenshot-meta {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.screenshot-meta figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.screenshot-card figcaption {
  padding: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.screenshot-card figcaption strong {
  color: var(--ink);
}

.guide-shot {
  margin: 0 0 34px;
}

.guide-shot img {
  aspect-ratio: 1.44;
  object-fit: cover;
  object-position: left top;
}

.guide-shot.mobile-shot {
  max-width: 420px;
}

.guide-shot.mobile-shot img {
  aspect-ratio: 0.55;
  object-fit: cover;
  object-position: left top;
}

.guide-shot.support-shot img {
  aspect-ratio: auto;
  object-fit: contain;
  object-position: left top;
}

.guide-shot.compact-shot img {
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: left top;
}

.guide-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 420px);
  gap: 24px;
  align-items: start;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.note {
  padding-left: 14px;
  border-left: 4px solid var(--coral);
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fffefa);
}

.trust-list span {
  color: var(--muted);
}

.text-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--violet-dark);
  font-weight: 800;
}

.platform-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.surface-matrix {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(23, 33, 32, 0.055);
}

.surface-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.78fr) minmax(220px, 1.35fr) minmax(180px, 1fr) minmax(210px, 1.15fr);
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}

.surface-row.head {
  border-top: 0;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.surface-row strong {
  color: var(--ink);
}

.surface-row .status {
  margin-right: 8px;
  vertical-align: middle;
}

.platform-row {
  display: grid;
  grid-template-columns: 1fr 2fr 160px;
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.platform-row[hidden] {
  display: none;
}

.platform-row.head {
  border-top: 0;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.status.stable {
  background: rgba(221, 248, 251, 0.86);
  color: var(--teal-dark);
}

.status.pending {
  background: #f4e6c2;
  color: #6f5010;
}

.status.beta {
  background: #f4e6c2;
  color: #6f5010;
}

.status.experimental {
  background: #e6e3f2;
  color: #383062;
}

.steps article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.surface-grid,
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.surface-card,
.company-card {
  overflow: hidden;
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fffefa);
  box-shadow: 0 18px 54px rgba(39, 28, 69, 0.075);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.surface-card img {
  width: 100%;
  aspect-ratio: 1.55;
  box-sizing: border-box;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid rgba(230, 226, 240, 0.94);
  background: #f8f8fb;
}

.surface-card.phone-surface img {
  aspect-ratio: 1.12;
  object-fit: contain;
  object-position: center;
}

.surface-card-content,
.company-card {
  padding: 22px;
}

.surface-card-content p,
.company-card p {
  color: var(--muted);
  line-height: 1.65;
}

.company-grid + .guide-callout {
  margin-top: 18px;
}

.surface-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.surface-card.note-card {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.surface-card.note-card .surface-card-content {
  display: grid;
  gap: 12px;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal-dark);
}

.product-band {
  max-width: none;
  border-top: 1px solid rgba(230, 226, 240, 0.72);
  border-bottom: 1px solid rgba(230, 226, 240, 0.72);
  background:
    linear-gradient(180deg, rgba(245, 248, 245, 0.88), rgba(255, 255, 255, 0.7)),
    var(--surface-2);
}

.product-band > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.company-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr);
  padding-top: 88px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-actions.centered {
  justify-content: center;
}

.download-hero {
  padding-bottom: 54px;
}

.download-notice {
  max-width: 760px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(185, 133, 24, 0.28);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: rgba(244, 230, 194, 0.38);
  color: #423414;
  line-height: 1.58;
}

.guide-hero .download-notice {
  max-width: 760px;
  margin-top: 22px;
  color: #423414;
  font-size: 1rem;
}

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

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

.download-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fffefa);
  box-shadow: 0 14px 38px rgba(23, 33, 32, 0.04);
}

.download-card.compact {
  min-height: 230px;
}

.download-card .status {
  margin-bottom: 14px;
}

.download-card p {
  color: var(--muted);
  line-height: 1.62;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.release-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(23, 33, 32, 0.04);
}

.release-panel p {
  color: var(--muted);
  line-height: 1.62;
}

.release-links {
  display: grid;
  gap: 12px;
  align-content: center;
}

.value-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  padding: 16px 18px;
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: 8px;
  background: #ffffff;
  line-height: 1.55;
}

.cta-band {
  margin: 20px auto 80px;
  max-width: 1100px;
  padding: 56px 40px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--violet), var(--blue) 58%, var(--cyan)),
    var(--blue);
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 60px rgba(47, 128, 217, 0.2);
}

.cta-band p {
  max-width: 640px;
  margin: 16px auto 26px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button.primary {
  background: #fff;
  color: var(--violet-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.6fr);
  gap: 48px;
  align-items: start;
  padding: 52px var(--content-edge);
  border-top: 1px solid rgba(230, 226, 240, 0.94);
  background: #ffffff;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.footer-logo img {
  border-radius: 7px;
}

.footer-brand p {
  max-width: 340px;
  margin: 0;
  color: #687571;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-nav div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav span {
  color: var(--ink);
  font-weight: 900;
}

.footer-nav a {
  color: #687571;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--violet-dark);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1100px);
  justify-content: center;
  padding: 86px 40px 64px;
  background:
    linear-gradient(180deg, rgba(248, 247, 255, 0.96), rgba(255, 255, 255, 0.98) 66%, rgba(251, 252, 250, 1)),
    #fbfbff;
}

.guide-hero > * {
  width: 100%;
  max-width: 1100px;
  margin-left: 0;
  margin-right: 0;
}

.guide-hero h1 {
  max-width: 1040px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 0.98;
  white-space: normal;
}

.guide-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 24px;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.guide-basics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: -28px auto 0;
  padding: 0 40px 18px;
  position: relative;
  z-index: 1;
}

.guide-basics article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: 0 16px 44px rgba(47, 128, 217, 0.07);
}

.guide-basics .card-icon {
  margin: 0;
}

.guide-basics h2 {
  margin: 0;
  font-size: 1.15rem;
}

.guide-basics p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.guide-basics .eyebrow {
  margin-bottom: 8px;
}

.guide-layout {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 40px 90px;
}

.guide-main {
  min-width: 0;
  max-width: 900px;
  margin: 0 auto;
}

.guide-main h2 {
  margin-top: 44px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.guide-main > h2:first-child,
.guide-main .guide-callout + h2 {
  margin-top: 0;
}

.guide-start {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 34px;
}

.guide-start > div {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: 0 14px 38px rgba(47, 128, 217, 0.045);
}

.guide-start h2,
.guide-start h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.14;
}

.guide-start p {
  margin-top: 12px;
}

.guide-start .guide-checklist {
  margin-top: 14px;
}

.guide-start .eyebrow {
  margin-bottom: 8px;
}

.guide-shot {
  margin: 0 0 42px;
}

.guide-main p {
  margin: 14px 0 0;
}

.guide-main code {
  color: var(--violet-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.guide-main pre {
  overflow-x: auto;
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid rgba(109, 79, 246, 0.18);
  border-left: 4px solid var(--violet);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 234, 255, 0.82), rgba(221, 248, 251, 0.55)),
    #fbfcff;
  color: #24302e;
  box-shadow: 0 12px 32px rgba(47, 128, 217, 0.055);
}

.guide-main pre code {
  color: inherit;
  white-space: pre;
}

.guide-callout {
  display: grid;
  gap: 8px;
  margin: 18px 0 28px;
  padding: 18px;
  border: 1px solid rgba(47, 128, 217, 0.28);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: rgba(221, 248, 251, 0.42);
}

.guide-callout.caution {
  border-color: rgba(185, 133, 24, 0.28);
  border-left-color: var(--amber);
  background: rgba(244, 230, 194, 0.38);
}

.guide-callout span {
  color: var(--muted);
  line-height: 1.6;
}

.guide-checklist,
.guide-steps,
.guide-task-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
}

.guide-checklist li,
.guide-steps li,
.guide-task-list li {
  position: relative;
  min-width: 0;
  padding: 12px 14px 12px 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #283533;
  line-height: 1.55;
}

.guide-checklist li::before,
.guide-steps li::before,
.guide-task-list li::before {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.guide-task-list li {
  border-color: rgba(47, 128, 217, 0.16);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.guide-task-list li::before {
  top: 13px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(47, 128, 217, 0.24);
  background:
    radial-gradient(circle at center, var(--teal) 0 4px, transparent 4px),
    rgba(221, 248, 251, 0.7);
}

.guide-steps {
  counter-reset: guide-step;
}

.guide-steps li {
  counter-increment: guide-step;
}

.guide-steps li::before {
  top: 11px;
  width: 22px;
  height: 22px;
  background: var(--violet);
  color: #fff;
  content: counter(guide-step);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  line-height: 22px;
}

.guide-checklist-strong li {
  border-color: rgba(47, 128, 217, 0.24);
  background: rgba(221, 248, 251, 0.3);
}

.guide-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 900px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(76, 29, 149, 0.06);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  color: var(--violet-dark);
  content: "+";
  font-weight: 900;
  line-height: 1.35;
}

.faq-item[open] summary::before {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px 50px;
  color: var(--muted);
  line-height: 1.65;
}

.product-band > .faq-list {
  max-width: 1100px;
}

.product-band > .faq-list .faq-item {
  max-width: 900px;
}

.product-band > .value-list {
  max-width: 1100px;
  margin: 20px auto 0;
}

.guide-related {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(auto-fit, minmax(160px, 190px));
  align-items: center;
  gap: 16px;
  max-width: 1180px;
  margin-top: 56px;
  padding: 28px;
  border: 1px solid rgba(230, 226, 240, 0.94);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfafc);
}

.guide-related > div {
  min-width: 0;
}

.guide-related .button {
  width: 100%;
}

.guide-related h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.guide-continue {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  gap: 18px;
  align-items: center;
  margin-top: 52px;
  padding: 20px;
  border: 1px solid rgba(227, 232, 227, 0.94);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: 0 12px 34px rgba(23, 33, 32, 0.04);
}

.guide-continue .eyebrow {
  margin-bottom: 6px;
}

.guide-continue h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.12;
}

.continue-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: flex-end;
}

.continue-links .text-link {
  padding: 8px 0;
}

.guide-index .guide-card {
  min-height: 260px;
}

.guide-config-table .platform-row {
  grid-template-columns: minmax(110px, 0.8fr) minmax(180px, 1.4fr) minmax(160px, 1.2fr);
}

.status-ledger .platform-row {
  grid-template-columns: minmax(120px, 0.72fr) minmax(220px, 1.32fr) minmax(220px, 1.32fr);
}

.install-comparison-table .platform-row {
  grid-template-columns: minmax(110px, 0.72fr) minmax(120px, 0.62fr) minmax(220px, 1.45fr) minmax(220px, 1.45fr);
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    display: none;
    min-width: 220px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open] {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 64px 20px 36px;
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 70px 20px 64px;
  }

  .home-visual {
    min-height: auto;
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-clean {
    min-height: auto;
    padding: 78px 20px 64px;
  }

  .hero-clean::before {
    background:
      linear-gradient(120deg, rgba(221, 248, 251, 0.62), rgba(255, 255, 255, 0) 48%),
      linear-gradient(300deg, rgba(238, 234, 255, 0.58), rgba(255, 255, 255, 0) 42%);
  }

  .hero-shot {
    object-position: 64% center;
  }

  .hero-scene {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    min-height: auto;
    margin-top: 40px;
  }

  .hero-proof {
    margin-top: 20px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .webui-frame {
    width: 100%;
    min-width: 0;
  }

  .terminal-frame {
    background: #20184a;
  }

  .scene-insights {
    display: none;
  }

  .section {
    padding: 64px 20px;
  }

  .guide-hero {
    padding: 64px 20px 46px;
  }

  .guide-layout {
    padding: 56px 20px 72px;
  }

  .guide-start {
    grid-template-columns: 1fr;
  }

  .guide-card-list {
    grid-template-columns: 1fr;
  }

  .guide-related,
  .guide-continue {
    grid-template-columns: 1fr;
  }

  .continue-links {
    justify-content: flex-start;
  }

  .feature-grid,
  .use-case-list,
  .steps,
  .flow-steps,
  .screenshot-grid,
  .guide-grid,
  .home-guide-grid,
  .surface-summary,
	  .availability-list,
	  .download-grid,
	  .download-grid.two,
	  .surface-grid,
	  .company-grid,
	  .engine-grid,
	  .priority-list,
	  .guide-basics,
	  .guide-showcase,
	  .trust {
	    grid-template-columns: 1fr;
	  }

  .section-heading.inline {
    align-items: start;
    flex-direction: column;
  }

  .outcome-section,
  .ownership-note,
  .trust-explainer,
	  .guide-group {
	    grid-template-columns: 1fr;
	  }

	  .guide-basics {
	    margin-top: -18px;
	    padding-left: 20px;
	    padding-right: 20px;
	  }

  .ownership-note {
    margin-left: 20px;
    margin-right: 20px;
  }

  .next-grid,
  .model-list {
    grid-template-columns: 1fr;
  }

  .system-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "setup"
      "core"
      "daily"
      "admin"
      "tools"
      "recovery";
  }

  .system-node.recovery,
  .guide-links a {
    grid-template-columns: 1fr;
  }

  .access-row,
  .access-row.head {
    grid-template-columns: 1fr;
  }

  .access-row.head {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 20px;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }

  .home-hero {
    padding-left: 40px;
    padding-right: 40px;
  }

  .guide-hero {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section {
    padding: 88px 40px;
  }

  .guide-layout {
    padding: 72px 40px 90px;
  }

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

  .surface-summary,
  .availability-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-steps,
  .next-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .use-case-list,
  .steps,
  .guide-grid,
  .home-guide-grid,
	  .download-grid,
	  .surface-grid,
	  .company-grid,
	  .engine-grid {
	    grid-template-columns: repeat(3, minmax(0, 1fr));
	  }

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

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

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

  .trust {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .section-heading.inline {
    align-items: end;
    flex-direction: row;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2.9rem, 16.5vw, 4rem);
    line-height: 0.96;
    white-space: nowrap;
  }

  .home-hero h1 {
    font-size: clamp(2.75rem, 14vw, 3.7rem);
  }

  .hero-promise {
    font-size: clamp(1.72rem, 8.1vw, 2.45rem);
  }

  .hero-promise::after {
    width: 60px;
    margin-top: 13px;
  }

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

  .hero {
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .hero-clean {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 56px;
  }

  .hero-clean h1 {
    white-space: normal;
  }

  .guide-basics article {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 52px;
  }

  .home-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .visual-main,
  .visual-overlap {
    position: static;
    width: 100%;
  }

  .flow-steps {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .flow-steps li {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-facts li {
    padding: 11px 12px;
  }

  .hero-facts span {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .outcome-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ownership-note {
    padding: 24px;
  }

  .system-core {
    min-height: auto;
  }

  .model-list div {
    padding-right: 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-scene {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 28px;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .webui-layout {
    grid-template-columns: 1fr;
  }

  .webui-frame {
    max-height: 312px;
  }

  .webui-layout aside {
    display: none;
  }

  .file-view {
    padding: 18px;
  }

  .file-row {
    grid-template-columns: 22px 1fr;
  }

  .file-row em {
    grid-column: 2;
  }

  .platform-row,
  .platform-row.head {
    grid-template-columns: 1fr;
  }

  .surface-row,
  .surface-row.head {
    grid-template-columns: 1fr;
  }

  .surface-row.head {
    display: none;
  }

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

  .guide-config-table .platform-row,
  .guide-config-table .platform-row.head,
  .status-ledger .platform-row,
  .status-ledger .platform-row.head,
  .install-comparison-table .platform-row,
  .install-comparison-table .platform-row.head {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 38px 20px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }
}
