/* Compact variant — overrides on top of ../styles.css. Goal: same content, much less scroll. */
:root { --pad: 40px; }

.hero { padding: var(--s6) 0 var(--s5); }
.hero .lead { margin: var(--s3) 0 var(--s4); }
.hero-trust { margin-top: var(--s4); }
.sec-head { margin-bottom: var(--s5); }
.stats-in { padding: var(--s5) var(--gutter); }
.cta-band { padding: var(--s6) var(--s5); }
.site-foot { margin-top: var(--s6); }

/* tabbed feature showcase — replaces 6 tall rows with one switchable panel */
.tabs { max-width: 1000px; margin: 0 auto; }
.tab-btns { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; margin-bottom: var(--s5); }
.tab-btn { font-family: var(--f-body); font-weight: 600; font-size: .9rem; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 9px 18px; min-height: 40px; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.tab-btn:hover { border-color: var(--teal); color: var(--teal); }
.tab-btn.is-on { background: var(--teal); color: #fff; border-color: var(--teal); }
.tab-panel { display: none; grid-template-columns: 1fr 1fr; gap: var(--s7); align-items: center; }
.tab-panel.is-on { display: grid; animation: page-in .3s ease both; }
.tab-text h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.tab-text .lead { margin: var(--s2) 0 var(--s3); font-size: 1.02rem; }
.tab-text ul { list-style: none; display: flex; flex-direction: column; gap: var(--s2); }
.tab-text li { font-size: .95rem; color: var(--ink-soft); padding-left: 24px; position: relative; }
.tab-text li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* hardware highlight band on the landing — distinct tinted background */
.sec-hw { background: linear-gradient(180deg, var(--mint), var(--bg)); border-top: 1px solid var(--mint-line); border-bottom: 1px solid var(--mint-line); }

/* hardware page — supported systems + requirements */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.spec { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s5); box-shadow: var(--shadow-sm); }
.spec .cat { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.spec h3 { margin: 6px 0 var(--s3); font-size: 1.05rem; }
.spec ul { list-style: none; display: flex; flex-direction: column; gap: var(--s2); }
.spec li { display: flex; gap: var(--s2); align-items: baseline; font-size: .92rem; color: var(--ink-soft); }
.spec li b { flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%; background: var(--mint); color: var(--teal-deep); font-size: .68rem; font-weight: 700; display: grid; place-items: center; }
.req-list { list-style: none; display: flex; flex-direction: column; gap: var(--s2); max-width: 760px; }
.req-list li { display: flex; gap: var(--s3); align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s3) var(--s4); }
.req-list .n { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 700; font-size: .85rem; display: grid; place-items: center; margin-top: 1px; }
.req-list small { display: block; color: var(--muted); margin-top: 2px; }
.disclaimer { margin-top: var(--s4); font-size: .8rem; color: var(--muted); text-align: center; }
.spec .shot { margin-bottom: var(--s3); }
.sys-ph { aspect-ratio: 16 / 10; display: grid; place-items: center; gap: 6px; text-align: center; padding: var(--s3); border: 1.5px dashed var(--mint-line); background: repeating-linear-gradient(45deg, var(--mint) 0 10px, var(--surface) 10px 20px); color: var(--teal-deep); }
.sys-ph .ph-icon { font-size: 1.4rem; }
.sys-ph .ph-file { font-family: var(--f-mono); font-size: .66rem; color: var(--teal-deep); background: var(--surface); padding: 2px 7px; border-radius: var(--r-pill); border: 1px solid var(--mint-line); }
@media (max-width: 900px) { .spec-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .spec-grid { grid-template-columns: 1fr; } }

.workflow-shot { max-width: 760px; margin: var(--s5) auto 0; }
.sys-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); margin-top: var(--s5); }
.sys-mini figure { display: flex; align-items: center; gap: var(--s3); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s2); box-shadow: var(--shadow-sm); }
.sys-mini .sys-ic { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; font-size: 1.35rem; background: var(--mint); border-radius: calc(var(--r) - 2px); }
.sys-mini figcaption { font-weight: 600; font-size: .9rem; color: var(--ink); }
@media (max-width: 760px) { .sys-mini { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .sys-mini { grid-template-columns: 1fr; } }

/* tighten support row + stations */
#support .feature { padding-bottom: var(--s4); }
#support .sec-head { margin: var(--s6) auto var(--s4); }

@media (max-width: 900px) {
  .tab-panel.is-on { grid-template-columns: 1fr; gap: var(--s5); }
  .tab-btns { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .tab-btn { flex: 0 0 auto; }
}
@media (prefers-reduced-motion: reduce) { .tab-panel.is-on { animation: none; } }
