/* ==========================================================================
   OPTIMOD 8100A/XT2 VIRTUAL RACK — site stylesheet
   Palette taken straight off the faceplates:
   rack black, Orban cream, LED red/amber/green, engraved ink.
   ========================================================================== */

:root {
  /* surfaces */
  --rack-deep:   #0B0A08;   /* page background — inside of the rack */
  --rack-black:  #17140F;   /* Texar anodized faceplate */
  --rack-black-2:#1F1B14;
  --cream:       #E6DCC2;   /* Orban faceplate */
  --cream-2:     #DCD0B0;
  --cream-deep:  #CfC2A0;

  /* inks */
  --bone:        #EFE8D6;   /* engraving on black */
  --bone-dim:    #B9B09A;
  --ink:         #2A241A;   /* engraving on cream */
  --ink-dim:     #6B6048;

  /* LEDs */
  --led-red:     #FF3A2D;
  --led-amber:   #FFB000;
  --led-green:   #37E45F;
  --led-off-dark:#3A2520;   /* unlit segment on black panels */
  --led-off-cream:#4A2E26;

  /* metal */
  --metal:       #8A8378;
  --metal-dark:  #4C463C;

  /* type */
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body:    "Barlow", "Segoe UI", sans-serif;
  --mono:    "IBM Plex Mono", "Consolas", monospace;

  --maxw: 1180px;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--rack-deep);
  /* subtle vertical rack-rail texture */
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(255,176,0,0.05), transparent 60%);
  background-size: 64px 100%, 100% 100%;
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.mono { font-family: var(--mono); }

/* ==========================================================================
   MENU BAR — mimics the app's File / Audio / Help strip
   ========================================================================== */
.menubar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ECECEC;
  color: #1A1A1A;
  border-bottom: 1px solid #BDBDBD;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.menubar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.menubar-title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.feather { color: #3776AB; margin-right: 2px; }
.menubar-nav {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
.menubar-nav a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 3px 10px;
  border-radius: 3px;
}
.menubar-nav a:hover,
.menubar-nav a:focus-visible {
  background: #2F6FD0;
  color: #fff;
  outline: none;
}

/* ==========================================================================
   RACK UNITS — shared faceplate chrome (screws, ears, bevels)
   ========================================================================== */
.rack-unit {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid #000;
}
.rack-unit--black {
  background:
    linear-gradient(180deg, #1D1912 0%, var(--rack-black) 12%, #120F0B 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -2px 6px rgba(0,0,0,0.6),
    0 6px 24px rgba(0,0,0,0.55);
  color: var(--bone);
}
.rack-unit--cream {
  background:
    linear-gradient(180deg, #EFE6CE 0%, var(--cream) 14%, var(--cream-2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -2px 6px rgba(0,0,0,0.18),
    0 6px 24px rgba(0,0,0,0.55);
  color: var(--ink);
}

/* rack screws */
.screw {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #C9C2B2, var(--metal) 45%, #514B40 90%);
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.7), 0 1px 1px rgba(255,255,255,0.12);
}
.screw::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: rgba(20,16,10,0.85);
  border-radius: 1px;
  transform: rotate(24deg);
}
.screw--tl { top: 12px; left: 14px; }
.screw--tr { top: 12px; right: 14px; }
.screw--bl { bottom: 12px; left: 14px; }
.screw--br { bottom: 12px; right: 14px; transform: rotate(40deg); }

/* ==========================================================================
   LAMPS & LED METERS
   ========================================================================== */
.lamp {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #41372C;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.8);
  vertical-align: middle;
}
.lamp--inline { margin-right: 8px; width: 9px; height: 9px; }
.lamp--lit.lamp--green { background: var(--led-green); box-shadow: 0 0 8px var(--led-green), inset 0 0 2px rgba(255,255,255,0.6); }
.lamp--lit.lamp--red   { background: var(--led-red);   box-shadow: 0 0 8px var(--led-red),   inset 0 0 2px rgba(255,255,255,0.6); }
.lamp--lit.lamp--amber { background: var(--led-amber); box-shadow: 0 0 8px var(--led-amber), inset 0 0 2px rgba(255,255,255,0.6); }

.meter {
  display: flex;
  flex-direction: column-reverse;
  gap: 3px;
  width: 22px;
  height: 190px;
  padding: 5px 4px;
  background: #0A0805;
  border: 1px solid #000;
  border-radius: 3px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.9);
}
.meter--small { height: 130px; width: 18px; }
.meter .seg {
  flex: 1;
  border-radius: 1px;
  background: var(--led-off-dark);
  transition: none;
}
.meter .seg.on      { background: var(--led-amber); box-shadow: 0 0 6px rgba(255,176,0,0.8); }
.meter .seg.on.hot  { background: var(--led-red);   box-shadow: 0 0 6px rgba(255,58,45,0.85); }
.meter--mod .seg.on { background: var(--led-green); box-shadow: 0 0 6px rgba(55,228,95,0.8); }
.meter--mod .seg.on.hot { background: var(--led-red); box-shadow: 0 0 6px rgba(255,58,45,0.85); }

.meter-row {
  display: flex;
  gap: 22px;
  justify-content: center;
}
.meter-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.meter-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
}

/* ==========================================================================
   KNOBS
   ========================================================================== */
.knob-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.knob-engrave {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
}
.knob {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #4A453C, #23201A 55%, #0D0B08 100%);
  border: 2px solid #000;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.7),
    inset 0 1px 1px rgba(255,255,255,0.18);
  cursor: ns-resize;
  position: relative;
  touch-action: none;
  user-select: none;
}
.knob:focus-visible {
  outline: 2px solid var(--led-amber);
  outline-offset: 3px;
}
.knob-pointer {
  position: absolute;
  inset: 0;
  transform: rotate(0deg);
}
.knob-pointer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 4px;
  height: 22px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--bone);
  box-shadow: 0 0 4px rgba(0,0,0,0.6);
}
.knob-value {
  font-size: 13px;
  color: var(--led-amber);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  max-width: var(--maxw);
  margin: 34px auto 0;
  padding: clamp(36px, 6vw, 72px) clamp(26px, 5vw, 64px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.04;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 2px 0 rgba(0,0,0,0.65);
}
h1 em {
  font-style: normal;
  color: var(--led-amber);
  text-shadow: 0 0 26px rgba(255,176,0,0.35), 0 2px 0 rgba(0,0,0,0.65);
}
.lede {
  margin-top: 22px;
  max-width: 56ch;
  color: #D6CDB8;
  font-size: 17.5px;
}
.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-footnote {
  margin-top: 30px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: #7E7560;
}

/* toggle-switch style buttons — like the app's IN / OPERATE buttons */
.btn-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  padding: 12px 26px;
  color: var(--ink);
  background: linear-gradient(180deg, #F4EEDD, #DCD2B8 60%, #C9BD9D);
  border: 1px solid #5B5340;
  border-radius: 4px;
  box-shadow:
    0 3px 0 #6B6048,
    0 6px 12px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.7);
  transition: transform 0.06s ease, box-shadow 0.06s ease;
}
.btn-toggle:hover { filter: brightness(1.04); }
.btn-toggle:active {
  transform: translateY(3px);
  box-shadow: 0 0 0 #6B6048, 0 2px 6px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.7);
}
.btn-toggle:focus-visible { outline: 2px solid var(--led-amber); outline-offset: 3px; }
.btn-toggle--primary { padding-left: 18px; }
.btn-led {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--led-red);
  box-shadow: 0 0 8px var(--led-red);
}
.btn-toggle--static { cursor: default; padding: 8px 18px; font-size: 13px; }

/* the live demo faceplate on the right of the hero */
.hero-panel {
  background: linear-gradient(180deg, #211C14, #14110C);
  border: 1px solid #000;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 0 40px rgba(0,0,0,0.5);
  padding: 26px 22px 30px;
}
.hero-panel-engrave {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-align: center;
  color: var(--bone-dim);
  margin-bottom: 18px;
}
.hero-knob-row {
  margin-top: 26px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.knob-hint {
  font-size: 13.5px;
  line-height: 1.55;
  color: #9A9078;
}

/* ==========================================================================
   SCREENSHOT SECTION
   ========================================================================== */
.shot-section {
  max-width: calc(var(--maxw) + 80px);
  margin: 56px auto;
  padding: 0 20px;
}
.shot-frame {
  position: relative;
  background: linear-gradient(180deg, #2A251D, #16130E);
  border: 1px solid #000;
  border-radius: 8px;
  padding: 30px 34px 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
}
.shot-frame img {
  border: 1px solid #000;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.shot-frame figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: #847A63;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 20px;
}
.section--dark {
  max-width: none;
  background: linear-gradient(180deg, #100D09, #0B0A08);
  border-top: 1px solid #2A251C;
  border-bottom: 1px solid #2A251C;
}
.section--dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section--cream {
  max-width: none;
  background: linear-gradient(180deg, #EFE6CE, var(--cream-2));
  color: var(--ink);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.section--cream > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: clamp(32px, 4vw, 52px); }
.section-title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink);
}
.section--dark .section-title,
.section-title--light { color: var(--bone); }
.section:not(.section--cream):not(.section--dark) .section-title { color: var(--bone); }
.section-sub {
  margin-top: 8px;
  font-size: 17px;
  color: var(--ink-dim);
}
.section--dark .section-sub,
.section-sub--light { color: var(--bone-dim); }
.section:not(.section--cream):not(.section--dark) .section-sub { color: var(--bone-dim); }

/* ==========================================================================
   RACK UNIT CARDS
   ========================================================================== */
.unit-card {
  margin-bottom: 28px;
  padding: clamp(28px, 4vw, 44px) clamp(26px, 4vw, 52px);
}
.unit-grid {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.unit-id {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.unit-brand--texar {
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.16em;
  color: var(--bone);
}
.unit-brand--orban {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 38px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.unit-model {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.22em;
  line-height: 1.5;
}
.rack-unit--black .unit-model { color: var(--bone-dim); }
.rack-unit--cream .unit-model { color: var(--ink-dim); }
.unit-pos {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.55;
}
.unit-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.unit-body p { max-width: 64ch; }
.rack-unit--cream .unit-body p { color: #3D3526; }
.rack-unit--black .unit-body p { color: #CFC6B0; }
.cal-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.08);
  border-left: 3px solid var(--led-red);
  border-radius: 0 4px 4px 0;
  font-size: 15.5px;
}
.chip-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
}
.rack-unit--black .chip { background: #2A241A; color: #D9D0B8; border: 1px solid #3D362A; }
.rack-unit--cream .chip { background: #CFC2A0; color: var(--ink); border: 1px solid #A89A78; }
.chip--hot { border-color: var(--led-red) !important; color: var(--led-red) !important; }
.band-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.band-strip span {
  font-size: 12px;
  padding: 5px 10px;
  background: #16120C;
  color: var(--led-amber);
  border-radius: 3px;
  border: 1px solid #000;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.8);
}
.unit-meters {
  display: flex;
  gap: 10px;
  padding-top: 6px;
}
.unit-meters--six { gap: 7px; }

/* ==========================================================================
   MPX SECTION
   ========================================================================== */
.mpx-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.mpx-copy p { color: #D2C9B3; margin-bottom: 16px; max-width: 56ch; }
.mpx-copy strong { color: var(--led-amber); }
.mpx-monitors {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.monitor-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #16120C;
  border: 1px solid #2A241A;
  border-radius: 6px;
  padding: 14px 18px;
}
.monitor-card p { margin: 0; font-size: 15px; color: #BBB29A; }
.monitor-card strong { color: var(--bone); }
.mpx-figure {
  background: #0E0C08;
  border: 1px solid #2A241A;
  border-radius: 8px;
  padding: 22px;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.6);
}
.mpx-figure svg { width: 100%; height: auto; }
.mpx-figure figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #7E7560;
  text-align: center;
  line-height: 1.7;
}
.svg-label {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.12em;
  fill: var(--led-amber);
}
.svg-label--green { fill: var(--led-green); font-size: 13px; }
.svg-label--red { fill: var(--led-red); font-size: 13px; }
.svg-tick text {
  font-family: var(--mono);
  font-size: 12px;
  fill: #8A8068;
  text-anchor: middle;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: linear-gradient(180deg, #1B1710, #141009);
  border: 1px solid #2C261C;
  border-radius: 6px;
  padding: 24px 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature:hover { border-color: #5A4E36; transform: translateY(-2px); }
.feature-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--led-amber);
  background: rgba(255,176,0,0.08);
  border: 1px solid rgba(255,176,0,0.3);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 14px;
}
.feature h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--bone);
  margin-bottom: 8px;
}
.feature p { font-size: 15px; color: #B5AC95; }

/* ==========================================================================
   SETUP
   ========================================================================== */
.setup-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.setup-list li {
  background: rgba(255,255,255,0.35);
  border: 1px solid #A89A78;
  border-radius: 6px;
  padding: 24px 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.setup-step {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #8A2F22;
  border: 1px solid #B07A6A;
  background: rgba(255,58,45,0.06);
  border-radius: 3px;
  padding: 3px 9px;
  margin-bottom: 14px;
}
.setup-list h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.setup-list p { font-size: 15px; color: #4A4131; }

/* ==========================================================================
   SPEC SHEET
   ========================================================================== */
.spec-sheet {
  border: 1px solid #2E281E;
  border-radius: 6px;
  overflow: hidden;
  background: #0E0C08;
}
.spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 15px 22px;
  border-bottom: 1px solid #221D14;
  font-size: 13.5px;
  line-height: 1.7;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(odd) { background: #110E09; }
.spec-key {
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--led-amber);
}
.spec-val { color: #C8BFA8; }

/* ==========================================================================
   DOWNLOAD
   ========================================================================== */
.dl-panel { padding: clamp(34px, 5vw, 60px) clamp(26px, 5vw, 60px); }
.dl-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.dl-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  text-transform: uppercase;
  color: var(--bone);
}
.dl-sub { margin: 14px 0 6px; color: #CFC6B0; max-width: 44ch; }
.req-card {
  background: #100D08;
  border: 1px solid #2C261C;
  border-radius: 6px;
  padding: 24px;
}
.req-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--led-amber);
  margin-bottom: 12px;
}
.req-list {
  list-style: none;
  margin-bottom: 22px;
}
.req-list li {
  padding: 7px 0;
  border-bottom: 1px dashed #2A241A;
  font-size: 15px;
  color: #CFC6B0;
}
.req-list li:last-child { border-bottom: none; }
.req-note { font-size: 14px; color: #A99F87; }
.req-note strong { color: var(--bone); }

/* ==========================================================================
   FINE PRINT
   ========================================================================== */
.section--fineprint {
  max-width: 820px;
  padding-top: 40px;
  text-align: center;
}
.fineprint-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: #7E7560;
  margin-bottom: 18px;
}
.section--fineprint p {
  font-size: 13.5px;
  color: #8C8268;
  margin-bottom: 12px;
}
.fineprint-credit {
  margin-top: 20px;
  color: var(--bone-dim) !important;
  font-family: var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   STATUS BAR FOOTER — mimics the app's bottom strip
   ========================================================================== */
.statusbar {
  background: #000;
  border-top: 2px solid #2A251C;
  color: #C8BFA8;
  font-size: 13px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.status-run { color: var(--led-green); display: inline-flex; align-items: center; }
.status-sep { color: #4A4334; }
.status-top {
  margin-left: auto;
  color: var(--led-amber);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.status-top:hover { text-decoration: underline; }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .feature { transition: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 520px; }
  .unit-grid { grid-template-columns: 1fr; }
  .unit-meters { display: none; }
  .mpx-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .setup-list { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .meter-row { gap: 12px; }
  .meter { height: 150px; }
  .hero { margin: 18px 10px 0; }
  .shot-frame { padding: 22px 18px 16px; }
  .menubar-inner { gap: 10px; }
}
