/* ============================================================
   ATOMCREEK — Atom Creek, LLC — Creek Station Research Systems
   Rack Station Style — dark creekside research laboratory
   ============================================================ */

:root{
  --creekbody:#101518;      /* blue-black of a field lab at night */
  --chalkblue:#7FA8C9;      /* scope trace */
  --chalkwhite:#E8ECEF;     /* oscilloscope white */
  --bencht:#1B2227;         /* raised panel bench grey */
  --riverbed:#090C0E;       /* deeper recess black */
  --gasketslate:#4E5A62;    /* frames and mounts */
  --logpaper:#EFF0E4;       /* data sheets */
  --isotope:#C77B3B;        /* radiation trefoils small only */
  --panel:#232B31;
  --line:#38434B;
}

*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  background:var(--riverbed);
  color:var(--chalkwhite);
  font-family:Arial,Helvetica,"Segoe UI",sans-serif;
  font-size:16px;                 /* literal px as required */
  margin:0;
  line-height:1.7;
  overflow-x:hidden;
}
img{max-width:100%;display:block;border:0;}
a{color:var(--chalkblue);}
h1,h2,h3,h4{color:var(--chalkwhite);line-height:1.2;margin:0 0 14px;}
p{margin:0 0 16px;}
.container{max-width:1180px;margin:0 auto;padding:0 24px;}

.opaque{background:#232B31;}

/* ============ RACK-MOUNT NAVIGATION ============ */
.rackmount{
  position:sticky;
  top:0;
  z-index:900;
  background:transparent;
}
.rackmount .rackrail{
  position:relative;
  background:var(--bencht);
  border-bottom:3px solid #12181d;
}
.rackmount .rackrail::before,
.rackmount .rackrail::after{display:none;}
.rackmount .rackinner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  max-width:1180px;
  margin:0 auto;
  padding:12px 24px;
}
.rackmount .brandplate{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  background:var(--gasketslate);
  border:1px solid var(--riverbed);
  border-radius:3px;
  padding:6px 14px 6px 10px;
  box-shadow:inset 0 0 0 2px #40505a;
}
.rackmount .led{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#8fc5e4;
  box-shadow:0 0 8px var(--chalkblue), inset 0 0 2px #dff0ff;
  animation:ledblink 1.9s steps(1,end) infinite;
}
@keyframes ledblink{0%,58%{background:#a4d3ef;box-shadow:0 0 10px var(--chalkblue);}62%,100%{background:#415f7a;box-shadow:0 0 2px #2f4556;}}
.rackmount .brandname{
  color:var(--chalkwhite);
  font-weight:800;
  letter-spacing:3px;
  font-size:16px;
  font-family:Consolas,Menlo,monospace;
}
.rackmount .brandplate .brandname small{color:#aab6be;letter-spacing:1px;font-weight:600;}
.rackmount .modulerow{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.rackmodule{
  position:relative;
  display:inline-block;
  background:var(--panel);
  border:1px solid var(--gasketslate);
  border-radius:3px;
  padding:6px 14px;
  text-decoration:none;
  color:var(--chalkwhite);
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:background 0.2s,color 0.2s,transform 0.2s;
}
.rackmodule.gasket-runs{
  background:#3a2a18;
  border-color:var(--isotope);
  color:#ffd9b0;
}
.rackmodule.gasket-runs .iris{color:var(--isotope);font-weight:800;margin-left:4px;}
.navtoggle{
  display:none;
  cursor:pointer;
  background:var(--chalkblue);
  color:#0B1018;
  border:1px solid var(--chalkblue);
  border-radius:3px;
  font-weight:800;
  letter-spacing:1px;
  padding:8px 14px;
  font-size:14px;
  font-family:Consolas,Menlo,monospace;
}

/* ============ SCOPE-TRACE HERO ============ */
.scopetrace{
  background:var(--creekbody);
}
.scopetrace .shelvestrip{
  padding:64px 0 40px;
  background:var(--creekbody);
}
.scopetrace .eyebrow{
  color:var(--chalkblue);
  letter-spacing:4px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:18px;
  font-family:Consolas,Menlo,monospace;
}
.scopetrace h1{
  font-size:54px;
  line-height:1.08;
  max-width:900px;
  margin:0 0 20px;
  font-weight:800;
  letter-spacing:1px;
}
.scopetrace h1 span{color:var(--chalkblue);}
.scopetrace .lead{
  color:#c6d0d6;
  max-width:720px;
  font-size:19px;
  margin-bottom:28px;
}
.ctarow{display:flex;gap:14px;flex-wrap:wrap;}
.btn{
  display:inline-block;
  padding:13px 26px;
  border-radius:4px;
  font-weight:800;
  letter-spacing:1px;
  text-decoration:none;
  text-transform:uppercase;
  font-size:14px;
  transition:transform 0.2s,background 0.2s;
}
.btn-chalk{background:var(--chalkblue);color:#0B1018;}
.btn-chalk:hover{background:#95bfe0;color:#0B1018;transform:translateY(-2px);}
.btn-gasket{background:transparent;color:var(--chalkwhite);border:2px solid var(--gasketslate);}
.btn-gasket:hover{border-color:var(--chalkblue);color:var(--chalkblue);transform:translateY(-2px);}
.btn-log{background:var(--logpaper);color:#22262a;border:2px solid var(--logpaper);}
.btn-log:hover{background:#ffffff;color:#0B1018;}

/* hero instrument-cases wall (decorative) */
.casewall{
  display:none;
}
.casewallvisible{
  display:block;
  height:6px;
  background:repeating-linear-gradient(to right,
    var(--bencht) 0 120px, var(--riverbed) 120px 124px);
  margin-top:34px;
}

/* scope cart band */
.scopecart{
  border-top:4px solid var(--riverbed);
  background:var(--riverbed);
}
.scopecart .cartgrid{
  display:grid;
  grid-template-columns:1.15fr 1fr 1fr;
  gap:0;
  max-width:1180px;
  margin:0 auto;
}
.scopeface{
  background:#0a0f13;
  border:4px outset #23292f;
  border-radius:8px 8px 6px 6px;
  padding:22px 20px;
  position:relative;
}
.scopeface::before{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:8px;
  height:4px;
  border-radius:3px;
  background:#1f2730;
}
.scopelabel{
  font-family:Consolas,Menlo,monospace;
  color:var(--gasketslate);
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:10px;
  display:flex;
  justify-content:space-between;
}
.scopelabel span:last-child{color:#5fd0a0;font-size:11px;}
.graticule{
  position:relative;
  height:150px;
  background-image:
    linear-gradient(#24313a 1px, transparent 1px),
    linear-gradient(90deg,#24313a 1px, transparent 1px);
  background-size:24px 24px;
  border:1px solid #2a333b;
  border-radius:2px;
  overflow:hidden;
}
.trace{
  position:absolute;
  left:0;top:0;right:0;bottom:0;
}
.trace path{
  fill:none;
  stroke:var(--chalkblue);
  stroke-width:2.4;
  filter:drop-shadow(0 0 4px #5090c0);
}
.scopeface p{
  color:#97a3ab;
  font-size:13px;
  margin:12px 0 0;
}
.datasheet{
  background:var(--logpaper);
  color:#2d332f;
  border-radius:4px;
  border:1px solid #8f9a8a;
  padding:14px 16px;
  transform:rotate(0.6deg);
  font-family:Consolas,Menlo,monospace;
  font-size:12px;
  line-height:1.5;
}
.datasheet b{color:#314b26;letter-spacing:1px;}
.datasheet .tape{
  display:inline-block;
  background:#d3d2a8;
  padding:1px 8px;
  transform:rotate(-1deg);
  margin-bottom:4px;
  color:#3a3a2c;
}
.coldcrate{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.coldcrate .cratebead{
  font-family:Consolas,Menlo,monospace;
  color:#9fb0bb;
  letter-spacing:2px;
  font-size:12px;
  margin-bottom:8px;
}
.coldcrate .bottlerow{display:flex;gap:14px;align-items:flex-end;}
.bottle{display:flex;flex-direction:column;}
.bottle i{width:18px;height:18px;border-radius:50% 50% 3px 3px;background:var(--chalkblue);margin:0 auto 2px;}
.bottle .tall{width:20px;height:44px;border-radius:4px;background:#27424f;border:1px solid #3b6374;}
.bottle .mid{width:22px;height:32px;border-radius:2px;background:#2d3a22;border:1px solid #49613a;}
.bottle .low{width:20px;height:38px;background:#3a3a2c;}
.bottle b{font-size:10px;color:#9fb0bb;text-align:center;font-weight:600;font-family:Consolas,monospace;letter-spacing:1px;margin-top:3px;}

/* hero kick strip with three stats */
.herostatstrip{
  background:var(--riverbed);
  border-top:3px solid var(--creekbody);
}
.herostatstrip .statlive{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  padding:22px 24px;
  font-family:Consolas,Menlo,monospace;
}
.herostatstrip .statb{
  color:#2e3a41;
  font-size:26px;
}
.herostatstrip .statv{
  color:var(--logpaper);
  font-size:16px;
  letter-spacing:1px;
  font-weight:700;
}

/* ============ SECTION / RACK EXPRESS NOTE ============ */
.sectionlabel{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.sectionlabel .secband{
  border-top:2px solid var(--gasketslate);
  border-left:6px solid var(--chalkblue);
  padding-left:16px;
  margin:0;
}
.sectionlabel .sech{
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--chalkblue);
  font-weight:700;
}

/* ============ SIGNAL CHAIN ROWS ============ */
.signalchain{
  background:var(--creekbody);
  padding:70px 0 10px;
}
.signalchain .sigintro{
  max-width:800px;
  margin:0 auto 18px;
  text-align:center;
}
.signalchain .sigintro h2{font-size:36px;}
.signalchain .sigintro p{color:#c6d0d6;}
.chains{
  max-width:1100px;
  margin:0 auto;
}
.chrows{display:flex;flex-direction:column;}
.chpair{display:grid;grid-template-columns:1fr 1fr;gap:26px;}
.chrow{
  background:var(--bencht);
  border:1px solid #2d363d;
  border-radius:6px;
  position:relative;
  padding:30px 28px 26px;
  overflow:hidden;
}
.chrow:nth-child(even){transform:translateX(44px);}
.chrow .trtr{
  position:absolute;
  left:0;right:0;top:0;
  height:38px;
  background:var(--riverbed);
  border-bottom:2px solid #172026;
}
.chrow .trtr svg{display:block;width:100%;height:100%;}
.chrow .trtr path{stroke:var(--chalkblue);stroke-width:2;}
.chrow .wftag svg path{stroke:var(--isotope);}
.chrow .modnum{
  position:absolute;
  left:0;top:0;
  background:var(--gasketslate);
  color:#0B1018;
  font-family:Consolas,Menlo,monospace;
  font-weight:800;
  font-size:13px;
  padding:2px 10px;
  border-radius:0 0 4px 0;
  z-index:2;
}
.chrow .trefoil{
  position:absolute;
  top:6px;
  right:10px;
  width:16px;height:16px;
  color:var(--isotope);
  font-size:11px;
  font-weight:800;
  line-height:16px;
  text-align:center;
  font-family:Consolas,monospace;
  letter-spacing:-2px;
}
.chrow h3{margin-top:56px;font-size:22px;color:var(--chalkwhite);}
.chrow h3 small{color:var(--chalkblue);font-weight:600;display:block;font-size:92%;letter-spacing:2px;margin-top:4px;}
.chrow p{color:#c3cdd3;margin:12px 0 14px;font-size:16px;}
.chrow .chlink{
  color:var(--chalkblue);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-family:Consolas,monospace;
}
.chrow .chlink:hover{text-decoration:underline;}
.wftag{position:absolute;top:2px;left:auto;right:44px;font-size:10px;color:var(--isotope);letter-spacing:1px;}

/* ============ STATEMENT ROW ============ */
.statementrow{
  background:var(--gasketslate);
  padding:54px 0;
}
.statementrow .statmono{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:40px;
  align-items:center;
  padding:0 24px;
}
.statementrow .num{
  font-size:92px;
  font-weight:800;
  color:var(--logpaper);
  font-family:Consolas,Menlo,monospace;
  line-height:0.9;
  letter-spacing:-3px;
}
.statementrow p{
  margin:0;
  font-size:30px;
  font-weight:800;
  color:#eef1ee;
  line-height:1.25;
}
.statementrow p small{
  display:block;
  font-size:15px;
  font-weight:500;
  color:#cdd5da;
  margin-top:8px;
  line-height:1.6;
}

/* ============ SAMPLE CUSTODY FLOW ============ */
.custodyflow{
  background:var(--riverbed);
  padding:70px 0 54px;
}
.custodyflow .cfintro{
  text-align:center;
  max-width:760px;
  margin:0 auto 30px;
}
.custodyflow .cfintro h2{color:var(--chalkwhite);font-size:34px;}
.custodyflow .cfintro p{color:#aeb9c0;}
.cfrail{
  max-width:1180px;
  margin:0 auto;
  padding:34px 24px 0;
}
.cfracestations{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  position:relative;
}
.cfracestations::before{
  content:"";
  position:absolute;
  top:20px;
  left:30px;
  right:30px;
  height:1px;
  background:
    repeating-linear-gradient(to right,
      #0c2c3c 0 10px, var(--gasketslate) 10px 16px);
}
.stationplate{
  position:relative;
  background:var(--bencht);
  border:1px solid #2d363d;
  border-radius:4px;
  padding:12px 6px 10px;
  text-align:center;
}
.stationplate .capdot{
  position:relative;
  width:34px;height:34px;
  margin:0 auto 6px;
  border-radius:50% 50% 6px 50%;
  background:var(--chalkblue);
  color:#0B1018;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Consolas,monospace;
  transform:rotate(12deg);
}
.stationplate .capdot b{transform:rotate(-12deg);}
.stationplate h4{
  margin:0;
  color:var(--chalkwhite);
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.stationplate p{font-size:13px;color:#aeb9c0;margin:0;line-height:1.45;}
.stationcaps{
  max-width:1180px;
  margin:26px auto 0;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  padding:0 24px;
  text-align:center;
}
.stationcaps p{font-size:13px;color:#9aa7ae;margin:0;line-height:1.55;}
.chainclip{
  display:inline-block;
  background:var(--gasketslate);
  color:var(--chalkwhite);
  font-family:Consolas,monospace;
  font-size:11px;
  border-radius:2px;
  padding:1px 7px;
  letter-spacing:1px;
  margin-bottom:4px;
  border:1px solid var(--chalkblue);
}

/* ============ CAL-DUE STRIP ============ */
.calduestrip{
  background:var(--isotope);
  padding:22px 0;
}
.calduestrip .calflex{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#1b150c;
  font-weight:700;
  padding:0 24px;
}
.calduestrip .verifymark{
  font-family:Consolas,monospace;
  font-size:12px;
  letter-spacing:1px;
  background:#1b150c;
  color:#ffd9b0;
  padding:6px 10px;
  border-radius:3px;
  white-space:nowrap;
}
.calduestrip p{margin:0;font-size:15px;}
.calduestrip .btn-book{
  background:#1b150c;
  color:#ffd9b0;
  border:2px solid #1b150c;
  padding:10px 18px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:1px;
  border-radius:3px;
  white-space:nowrap;
  font-size:13px;
  text-transform:uppercase;
}
.calduestrip .btn-book:hover{background:#000;color:#ffffff;}

/* ============ WHAT WE DO BAND (home below custody) ============ */
.labband{
  background:var(--bencht);
}
.labband .labflex{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  padding:60px 24px;
  align-items:center;
}
.labband h2{font-size:32px;color:var(--chalkwhite);}
.labband p{color:#c3cdd3;}
.lablist{list-style:none;padding:0;margin:0;}
.lablist li{
  padding-left:26px;
  position:relative;
  margin:0 0 14px;
  color:#dde4e8;
}
.lablist li::before{
  content:"";
  position:absolute;
  left:0;top:7px;
  width:10px;height:10px;
  border-radius:2px;
  background:var(--chalkblue);
}
.lablist li b{color:var(--chalkblue);}
.scopecart .subnote{max-width:1180px;margin:20px auto 0;padding:0 24px;color:#6d7c86;font-size:13px;text-align:center;}

/* ============ CLIENT + PROCESS PANEL ============ */
.stationfeatures{
  background:var(--creekbody);
  padding:70px 0;
}
.stationfeatures .sfhead{max-width:760px;margin:0 auto 36px;text-align:center;}
.stationfeatures .sfhead h2{font-size:34px;}
.stationfeatures .sfhead p{color:#c6d0d6;}
.sfrow{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.sfcard{
  background:var(--bencht);
  border:1px solid #2d363d;
  border-top:4px solid var(--chalkblue);
  border-radius:6px;
  padding:26px;
}
.sfcard .sfscrn{
  color:var(--chalkblue);
  font-family:Consolas,monospace;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:14px;
}
.sfcard h3{margin:0 0 10px;font-size:20px;color:var(--chalkwhite);}
.sfcard p{color:#b9c4ca;margin:0;font-size:15px;}

/* ============ LAST FOOTRAIL ============ */
.lastrailmarg{padding-bottom:0;}

/* ============ CRATE-BENCH FOOTER ============ */
.cratebenchfoot{background:var(--riverbed);}
.cratebenchfoot .benchlip{
  background:var(--bencht);
  border-top:4px solid var(--gasketslate);
  border-bottom:2px solid var(--creekbody);
}
.cratebenchfoot .lipgrid{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 24px;
  font-family:Consolas,monospace;
}
.cratebenchfoot .motto{
  color:var(--logpaper);
  letter-spacing:4px;
  font-size:13px;
  font-weight:700;
  background:var(--riverbed);
  border:1px solid var(--gasketslate);
  padding:6px 14px;
  border-radius:3px;
}
.cratebenchfoot .bottleimg{
  display:flex;
  align-items:flex-end;
  gap:10px;
}
.cratebenchfoot .mini{display:flex;flex-direction:column;align-items:center;}
.cratebenchfoot .mini i{width:12px;height:12px;border-radius:50%;background:var(--chalkblue);}
.cratebenchfoot .mini b{height:22px;width:12px;background:#2b4433;border:1px solid #4a6850;}
.cratebenchfoot .logbook{
  border-top:3px solid #3a2f1c;
  border-bottom:3px solid #3a2f1c;
  width:6px;height:18px;background:#cdbf92;align-self:center;
}
.footlinkgrid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
  padding:40px 24px 30px;
}
.footcol h4{
  color:var(--chalkblue);
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
  margin:0 0 14px;
  font-family:Consolas,monospace;
}
.footcol ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px;}
.footcol ul a{
  color:#aeb9c0;
  text-decoration:none;
  font-size:15px;
}
.footcol ul a:hover{color:var(--chalkwhite);}
.footcol p{color:#93a1aa;font-size:14px;margin:0;line-height:1.7;}
.baseplate{
  background:var(--gasketslate);
  border-top:2px solid var(--riverbed);
  color:#0a0e12;
}
.baseplate .basegrid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1fr auto;
  gap:30px;
  align-items:center;
  padding:22px 24px;
  font-size:13px;
  line-height:1.6;
}
.baseplate .cmp{font-weight:800;letter-spacing:2px;font-family:Consolas,monospace;color:#0a0e12;}
.baseplate .mail a{color:#0a0e12;text-decoration:none;font-weight:700;}
.baseplate .phone a{color:#0a0e12;text-decoration:none;font-weight:700;}
.copyright{
  background:var(--riverbed);
  text-align:center;
  color:#7d8a92;
  font-size:13px;
  letter-spacing:1px;
  padding:22px 24px 26px;
  font-family:Consolas,monospace;
}

/* ============ SERVICES PAGE ============ */
.pagehero{
  background:
    repeating-linear-gradient(0deg,#182027 0 2px,transparent 2px 26px),
    var(--creekbody);
  border-top:1px solid var(--creekbody);
}
.pagehero .pagegrid{max-width:980px;margin:0 auto;padding:70px 24px 44px;text-align:center;}
.pagehero h1{font-size:44px;margin:0 0 16px;}
.pagehero h1 span{color:var(--chalkblue);}
.pagehero p{color:#c6d0d6;font-size:18px;max-width:760px;margin:0 auto 20px;}
.pagehero .bread{padding:6px 18px;background:var(--panel);border:1px solid var(--gasketslate);border-radius:3px;display:inline-block;}
.svcbreadcrumb{display:flex;justify-content:center;gap:12px;}
.svcbreadcrumb a{font-family:Consolas,monospace;color:#aeb9c0;font-size:13px;letter-spacing:1px;text-decoration:none;text-transform:uppercase;}
.svcbreadcrumb a:hover{color:var(--chalkblue);}

.servicedetails{
  background:var(--creekbody);
  padding:10px 0 60px;
}
.servicerow{
  max-width:1000px;
  margin:0 auto 22px;
  display:grid;
  grid-template-columns:120px 1fr;
  background:var(--oneoffset,var(--bencht));
  border:1px solid #2d363d;
  border-radius:6px;
  overflow:hidden;
}
.servicerow:nth-child(even){margin-left:88px;}
.servicerow .symcell{
  background:var(--riverbed);
  border-right:2px solid #222c33;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:8px;
  padding:12px;
}
.servicerow .symcell .symtube{
  position:relative;
  width:48px;height:70px;
  background:#24445a;
  border:2px solid #3b6374;
  border-radius:8px 8px 14px 14px;
}
.servicerow .symcell .symtube i{
  position:absolute;
  left:4px;right:4px;height:6px;
  background:var(--chalkblue);
  border-radius:2px;
}
.servicerow .symcell .symtube i:nth-child(1){top:24px;}
.servicerow .symcell .symtube i:nth-child(2){top:40px;background:#5f7ea0;}
.servicerow .symcell .symtube i:nth-child(3){top:56px;}
.servicerow .symcell .chid{
  font-family:Consolas,monospace;
  color:var(--gasketslate);
  font-size:11px;
  letter-spacing:2px;
}
.servicerow .svcbody{padding:28px 30px 24px;}
.servicerow .svcbody h2{margin:0 0 6px;font-size:25px;color:var(--chalkwhite);}
.servicerow .svcbody .svckicker{color:var(--chalkblue);font-family:Consolas,monospace;font-size:12px;letter-spacing:3px;text-transform:uppercase;}
.servicerow .svcbody p{color:#c3cdd3;margin:12px 0 6px;font-size:16px;}
.servicerow .probe{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px;}
.servicerow .probe span{
  background:var(--riverbed);
  border:1px solid #303b43;
  color:#b7c4cb;
  font-size:12px;
  padding:3px 9px;
  border-radius:2px;
  font-family:Consolas,monospace;
}
.symbottle{filter:none;}
.symscope{
  width:54px;
  height:40px;
  background:#0a0f13;
  background-image:
    linear-gradient(#273640 1px, transparent 1px),
    linear-gradient(90deg,#273640 1px, transparent 1px);
  background-size:10px 10px;
  border:1px solid #2a333b;
  overflow:hidden;
  position:relative;
}
.symscope svg.trace{position:absolute;left:0;top:0;width:100%;height:100%;color:var(--chalkblue);}
.symscope svg.trace path{fill:none;stroke:var(--chalkblue);stroke-width:2;}

.processsection{background:var(--bencht);padding:60px 0;}
.processsection .pflat{max-width:1060px;margin:0 auto;padding:0 0 0 24px;}
.processsteps{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin:26px auto 0;max-width:1060px;padding:0 24px;}
.pstep{position:relative;background:var(--creekbody);border:1px solid #2d363d;border-radius:5px;padding:24px 18px;}
.pstep .stepn{font-family:Consolas,monospace;color:var(--chalkblue);font-size:13px;letter-spacing:2px;}
.pstep h3{margin:8px 0 8px;font-size:18px;color:var(--chalkwhite);}
.pstep p{color:#aeb9c0;font-size:14px;margin:0;line-height:1.6;}

/* ============ CONTACT PAGE ============ */
.contactgrid{
  max-width:1050px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:34px;
  padding:10px 24px 60px;
  background:var(--creekbody);
}
.contactformpanel{
  background:var(--bencht);
  border:1px solid #2d363d;
  border-radius:8px;
  padding:30px;
}
.contactformpanel h2{margin:0 0 4px;color:var(--chalkwhite);}
.contactformpanel .cfnote{color:#93a1aa;font-size:14px;margin:0 0 20px;}
.fieldgroup{margin:0 0 16px;}
.fieldgroup label{display:block;color:#c6d0d6;font-size:13px;letter-spacing:1px;text-transform:uppercase;margin:0 0 6px;font-family:Consolas,monospace;}
.fieldgroup .tip{color:#7d8a92;font-size:12px;margin:2px 0 0;}
.fieldgroup input,
.fieldgroup textarea,
.fieldgroup select{
  width:100%;
  background:var(--riverbed);
  border:1px solid var(--gasketslate);
  color:var(--chalkwhite);
  border-radius:4px;
  padding:12px;
  font-size:16px;
  font-family:inherit;
}
.fieldgroup input:focus,
.fieldgroup textarea:focus,
.fieldgroup select:focus{outline:2px solid var(--chalkblue);}
.textate{color:#33414a;}
.statusline{margin-top:14px;font-family:Consolas,monospace;font-size:14px;min-height:22px;}
.statusline.ok{color:#7fd0a0;}
.statusline.err{color:var(--isotope);}

.contactinfopanel{display:flex;flex-direction:column;gap:18px;}
.infocard{
  background:var(--bencht);
  border:1px solid #2d363d;
  border-left:5px solid var(--chalkblue);
  border-radius:6px;
  padding:22px;
}
.infocard h3{margin:0 0 8px;font-size:17px;color:var(--chalkwhite);}
.infocard p{margin:2px 0;color:#c3cdd3;}
.infocard .iclab{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--chalkblue);font-family:Consolas,monospace;}
.infocard a{color:var(--chalkwhite);text-decoration:none;}
.adhoclist{background:var(--riverbed);}
.treknote{background:#2f1f14;border-left-color:var(--isotope);}

/* ============ NOSCRIPT-SAFE / scroll reveal blocks ============ */
.jsreveal{opacity:1;transform:none;transition:opacity 0.7s ease,transform 0.7s ease;}
html.js .jsreveal{opacity:0;transform:translateY(22px);}
html.js .jsreveal.visible{opacity:1;transform:none;}
@media (prefers-reduced-motion:reduce){html.js .jsreveal{opacity:1;transform:none;transition:none;}}

/* ============ FAQ small ============ */
.faqaccord{margin-top:22px;}
.faqitem{border:1px solid #2d363d;border-radius:5px;margin-bottom:10px;background:var(--riverbed);}
.faqitem .faqbtn{
  width:100%;
  text-align:left;
  background:var(--bencht);
  border:0;
  color:var(--chalkwhite);
  padding:14px 16px;
  font-family:inherit;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-radius:5px;
}
.faqitem .faqbtn span:last-child{color:var(--chalkblue);font-family:Consolas,monospace;}
.faqitem .faqpanel{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
}
.faqitem .faqpanel p{margin:0;padding:0 16px 16px;color:#b7c4cb;font-size:15px;}

/* ============ Form success block-mailto fallback ============ */
.formmessages{margin-top:16px;font-family:Consolas,monospace;font-size:14px;line-height:1.6;}
.formmessages.ok{color:#8fd0a8;background:#183326;border-left:4px solid #3ec97a;padding:12px;border-radius:3px;}
.formmessages.err{color:#ffd9b0;background:#331b0f;border-left:4px solid var(--isotope);padding:12px;}
.formmessages a{color:#ffd080;}

/* ============ RESPONSIVE ============ */
@media (max-width:920px){
  .scopecart .cartgrid{grid-template-columns:1fr;}
  .chpair{grid-template-columns:1fr;}
  .chrow:nth-child(even){transform:none;margin-left:0;}
  .statementrow .statmono{grid-template-columns:1fr;gap:18px;}
  .cfracestations{grid-template-columns:1fr 1fr;}
  .cfracestations::before{display:none;}
  .stationcaps{grid-template-columns:1fr 1fr;}
  .footlinkgrid{grid-template-columns:1fr;}
  .baseplate .basegrid{grid-template-columns:1fr;gap:10px;}
  .labband .labflex{grid-template-columns:1fr;}
  .sfrow{grid-template-columns:1fr;}
  .contactgrid{grid-template-columns:1fr;}
  .processsteps{grid-template-columns:1fr 1fr;}
  .servicerow{grid-template-columns:1fr;}
  .servicerow:nth-child(even){margin-left:0;}
  .herostatstrip .statlive{flex-direction:column;gap:12px;}
  .calduestrip .calflex{flex-direction:column;text-align:left;align-items:flex-start;}
  .scopetrace h1{font-size:34px;}
}
@media (max-width:640px){
  .rackmount .modulerow{
    display:none;
    flex-direction:column;
    width:100%;
    padding:12px 0 4px;
    position:static;
  }
  .rackmount .modulerow.open{display:flex;}
  .navtoggle{display:inline-block;}
  .processsteps{grid-template-columns:1fr;}
  .cfracestations{grid-template-columns:1fr;}
  .stationcaps{grid-template-columns:1fr;}
  .pagehero .pagegrid{padding:50px 24px 30px;}
}

/* scrollbar */
::-webkit-scrollbar{width:12px;background:#0a0e12;}
::-webkit-scrollbar-thumb{background:#3b4750;border-radius:6px;border:3px solid #0a0e12;}
