/* ==========================================================================
   RemoteHands.nyc  |  NOC theme
   Vanilla CSS, one file. Dark, technical, operational.
   ========================================================================== */

:root {
  /* palette */
  --bg:         #0b0f17;
  --bg-1:       #0e131d;
  --bg-2:       #111827;
  --card:       #121a26;
  --card-2:     #0f1621;
  --line:       rgba(148, 163, 184, 0.14);
  --line-2:     rgba(148, 163, 184, 0.22);
  --text:       #c3cede;
  --text-dim:   #8a97ab;
  --text-faint: #7e8aa1;   /* AA >= 4.5:1 on the dark surfaces */
  --heading:    #eef3fb;

  --accent:     #22d3ee;   /* electric cyan */
  --accent-2:   #67e8f9;
  --accent-dim: rgba(34, 211, 238, 0.14);
  --accent-line:rgba(34, 211, 238, 0.35);
  --accent-ink: #04222b;
  --live:       #22c55e;   /* signal green, status dots only */

  /* type */
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", "Roboto Mono", monospace;

  /* layout */
  --maxw: 1180px;
  --radius: 12px;
  --radius-sm: 8px;
  --gap: clamp(16px, 2.4vw, 26px);
  --pad-x: clamp(18px, 5vw, 40px);
  --header-h: 62px;
}

/* ----- reset-ish ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html { scroll-padding-top: calc(var(--header-h) + 14px); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(15px, 0.5vw + 14px, 17px);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }
h1, h2, h3, h4 { color: var(--heading); line-height: 1.15; margin: 0; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 8px; z-index: 200;
  font-weight: 700; transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: var(--accent-ink); }

/* ----- layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container-narrow { max-width: 820px; }

.section { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.section-alt { background: var(--bg-1); border-block: 1px solid var(--line); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 14px;
}
.eyebrow-accent { color: var(--accent); }

.section-head { max-width: 760px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head-left { margin-inline: 0; text-align: left; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 40px); }
.section-lead { margin-top: 16px; color: var(--text-dim); font-size: clamp(15px, 1.2vw, 18px); }

/* ----- buttons ----- */
.btn {
  --btn-pad-y: 12px; --btn-pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 650; font-size: 15px; line-height: 1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { --btn-pad-y: 9px; --btn-pad-x: 15px; font-size: 14px; border-radius: 9px; }
.btn-lg { --btn-pad-y: 15px; --btn-pad-x: 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-accent {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 0 0 1px rgba(34,211,238,.2), 0 8px 26px -12px rgba(34,211,238,.7);
}
.btn-accent:hover { background: var(--accent-2); color: var(--accent-ink); box-shadow: 0 0 0 1px rgba(34,211,238,.35), 0 12px 30px -10px rgba(34,211,238,.85); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--heading);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent-line); color: var(--accent-2); background: var(--accent-dim); }

/* ----- status dots ----- */
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.dot-live { background: var(--live); box-shadow: 0 0 0 0 rgba(34,197,94,.55); animation: pulse 2.4s ease-out infinite; }
.dot-cyan { background: var(--accent); box-shadow: 0 0 6px rgba(34,211,238,.7); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@media (prefers-reduced-motion: reduce) { .dot-live { animation: none; } }

/* ==========================================================================
   Status bar
   ========================================================================== */
.statusbar {
  background: #070a10;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-dim);
}
.statusbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 34px; padding-block: 6px;
}
.statusbar strong { color: var(--live); font-weight: 600; }
.status-left { display: inline-flex; align-items: center; gap: 8px; margin: 0; }
.status-right { display: inline-flex; align-items: center; gap: 16px; margin: 0; }
.status-sep { color: var(--text-faint); }
.status-phone { color: var(--text); }
.status-phone:hover { color: var(--accent); }
@media (max-width: 560px) { .status-sep { display: none; } }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 15, 23, 0.72);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  background: rgba(9, 12, 19, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.9);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--heading); font-weight: 700; }
.brand:hover { color: var(--heading); }
.brand-mark { color: var(--accent); flex: 0 0 auto; }
.brand-name { font-size: 18px; letter-spacing: -0.02em; }
.brand-tld { color: var(--accent); }

.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a {
  color: var(--text-dim); font-size: 14.5px; font-weight: 550;
  padding: 9px 12px; border-radius: 8px; display: inline-block;
  transition: color .15s ease, background .15s ease;
}
.nav-list a:not(.btn):hover,
.nav-list a[aria-current="true"]:not(.btn) { color: var(--heading); background: rgba(148,163,184,.08); }
.nav-list a[aria-current="true"]:not(.btn) { color: var(--accent); }
.nav-cta-li { margin-left: 6px; }
.nav-cta-li a { color: var(--accent-ink); }
.nav-cta-li a:hover { color: var(--accent-ink); }

/* hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 10px;
  background: transparent; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle-bar { width: 18px; height: 2px; background: var(--heading); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(9, 12, 19, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,.9);
    display: none;
  }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; padding: 14px var(--pad-x) 20px; }
  .nav-list a:not(.btn) { padding: 13px 12px; font-size: 16px; }
  .nav-cta-li { margin: 8px 0 0; }
  .nav-cta-li a { justify-content: center; }
  .nav-cta-li .btn { width: 100%; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 78% 20%, rgba(34,211,238,0.10), transparent 55%),
    linear-gradient(180deg, rgba(11,15,23,0.72) 0%, rgba(11,15,23,0.82) 45%, rgba(11,15,23,0.97) 100%),
    linear-gradient(90deg, rgba(11,15,23,0.92) 0%, rgba(11,15,23,0.55) 60%, rgba(11,15,23,0.4) 100%);
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 56px); align-items: center;
  padding-block: clamp(64px, 11vw, 130px);
}
.hero-copy { max-width: 640px; }
.hero h1 {
  font-size: clamp(32px, 5.6vw, 58px);
  letter-spacing: -0.025em; line-height: 1.05;
}
.hero-sub { margin-top: 20px; font-size: clamp(16px, 1.5vw, 19px); color: var(--text); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* stat tiles */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 36px 0 0;
}
.stat {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(18,26,38,0.7), rgba(12,18,28,0.7));
  padding: 14px 16px; margin: 0;
}
.stat dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin: 0; }
.stat dd { margin: 0; }
.stat-num { font-size: clamp(17px, 2vw, 21px); font-weight: 700; color: var(--heading); margin-top: 6px !important; letter-spacing: -0.01em; }
.stat-note { font-size: 12.5px; color: var(--text-dim); margin-top: 4px !important; line-height: 1.4; }

/* dispatch ticket card */
.ticket {
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10,14,22,0.94), rgba(8,11,18,0.94));
  box-shadow: 0 30px 70px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(34,211,238,.06);
  overflow: hidden; width: 100%;
}
.ticket-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
  background: rgba(148,163,184,.05);
  font-family: var(--mono); font-size: 12px; color: var(--text-dim);
}
.ticket-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--live); box-shadow: 0 0 8px rgba(34,197,94,.8); }
.ticket-title { flex: 1; }
.ticket-badge {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-line); border-radius: 5px;
  padding: 2px 7px; background: var(--accent-dim);
}
.ticket-body {
  margin: 0; padding: 16px 18px;
  font-family: var(--mono); font-size: 13px; line-height: 1.85; color: var(--text);
  white-space: pre-wrap; word-break: break-word;
}
.tk-prompt { color: var(--accent); }
.tk-ok { color: var(--live); }
.tk-warn { color: #fbbf24; }
.tk-dim { color: var(--text-faint); }
.tk-cursor { color: var(--accent); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .tk-cursor { animation: none; } }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .ticket { max-width: 460px; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
  .stat-num { margin-top: 0 !important; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust {
  border-block: 1px solid var(--line);
  background: var(--bg-1);
  padding-block: 20px;
}
.trust .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 28px; }
.trust-points { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.trust-points li { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text); font-weight: 550; }
.trust-brands { font-family: var(--mono); font-size: 12.5px; color: var(--text-dim); letter-spacing: 0.02em; }
.trust-label { color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.12em; margin-right: 6px; }

/* ==========================================================================
   Grid + cards
   ========================================================================== */
.grid { display: grid; gap: var(--gap); }
.services-grid { grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); }

.card {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--card-2));
  padding: 24px 22px;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 1px transparent inset; transition: box-shadow .16s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-line);
  box-shadow: 0 22px 44px -30px rgba(34,211,238,.55), 0 0 0 1px rgba(34,211,238,.12);
}
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid var(--accent-line);
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 17.5px; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 14.5px; }

/* ==========================================================================
   Coverage
   ========================================================================== */
.facility-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.facility {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--card-2); padding: 13px 15px;
  font-size: 14.5px; color: var(--text); font-weight: 550;
  transition: border-color .15s ease, background .15s ease;
}
.facility:hover { border-color: var(--accent-line); background: var(--card); }
.facility-more {
  font-family: var(--mono); font-size: 12.5px; color: var(--text-dim);
  justify-content: center; border-style: dashed; font-weight: 400;
}

/* Ashburn highlight */
.ashburn {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: minmax(0, 460px) 1fr; gap: 0;
  border: 1px solid var(--accent-line); border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(34,211,238,0.12), transparent 60%),
    linear-gradient(180deg, var(--card), var(--card-2));
  box-shadow: 0 30px 60px -40px rgba(34,211,238,.4);
}
.ashburn-media { position: relative; min-height: 220px; }
.ashburn-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.ashburn-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,15,23,0.2), rgba(11,15,23,0.85));
}
.ashburn-copy { padding: clamp(26px, 3.5vw, 40px); align-self: center; }
.ashburn-copy h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.ashburn-copy p { color: var(--text); margin-bottom: 20px; }
@media (max-width: 760px) {
  .ashburn { grid-template-columns: 1fr; }
  .ashburn-media { min-height: 160px; }
  .ashburn-media::after { background: linear-gradient(180deg, rgba(11,15,23,0.15), rgba(11,15,23,0.9)); }
}

/* Global reach */
.global {
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card-2); padding: clamp(24px, 3.5vw, 38px);
}
.global-title { font-size: clamp(20px, 2.4vw, 27px); margin-bottom: 10px; }
.global-lead { color: var(--text-dim); max-width: 68ch; }
.global-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px;
  margin: 22px 0 18px;
}
.global-list li {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; background: var(--card);
  display: flex; flex-direction: column; gap: 4px;
}
.global-place { color: var(--heading); font-weight: 650; }
.global-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.global-note { color: var(--text-dim); font-size: 14px; }

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.step {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--card-2));
  padding: 26px 22px 24px;
}
.step-num {
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: var(--accent); letter-spacing: .1em;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 9px;
  border: 1px solid var(--accent-line); background: var(--accent-dim);
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 14.5px; }

/* ==========================================================================
   Why us (split)
   ========================================================================== */
.why-wrap { display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.why-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); position: sticky; top: calc(var(--header-h) + 24px); }
.why-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.why-media-tag {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(8,11,18,0.82); backdrop-filter: blur(4px);
  border: 1px solid var(--line-2); border-radius: 9px;
  padding: 9px 13px; font-family: var(--mono); font-size: 12px; color: var(--text);
}
.why-list { display: grid; gap: 4px; }
.why-list li { padding: 18px 0; border-top: 1px solid var(--line); }
.why-list li:first-child { border-top: none; padding-top: 4px; }
.why-list h3 { font-size: 17px; margin-bottom: 6px; }
.why-list h3::before { content: "> "; color: var(--accent); font-family: var(--mono); }
.why-list p { color: var(--text-dim); font-size: 14.5px; }
@media (max-width: 820px) {
  .why-wrap { grid-template-columns: 1fr; }
  .why-media { max-width: 360px; position: static; }
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.price-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--card-2));
  padding: 28px 24px;
}
.price-card-feature {
  border-color: var(--accent-line);
  box-shadow: 0 30px 60px -42px rgba(34,211,238,.55), inset 0 0 0 1px rgba(34,211,238,.08);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(34,211,238,0.1), transparent 60%),
    linear-gradient(180deg, var(--card), var(--card-2));
}
.price-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.price-card h3 { font-size: 22px; margin-bottom: 4px; }
.price-tag { color: var(--text-dim); font-size: 14px; margin-bottom: 16px; }
.price-desc { color: var(--text-dim); font-size: 14.5px; margin-bottom: 18px; }
.price-list { display: grid; gap: 9px; margin-bottom: 22px; }
.price-list li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--text); }
.price-list li::before {
  content: ""; position: absolute; left: 4px; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px rgba(34,211,238,.6);
}
.price-card .btn { margin-top: auto; }

.price-card-model { background: var(--card-2); }
.model-list { display: grid; gap: 12px; margin-bottom: 18px; }
.model-list li { display: flex; flex-direction: column; gap: 2px; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.model-list li:last-child { border-bottom: none; }
.model-k { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.model-v { color: var(--text); font-size: 14.5px; }
.model-context { color: var(--text-dim); font-size: 13.5px; margin-bottom: 20px; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--card-2); overflow: hidden;
  transition: border-color .16s ease, background .16s ease;
}
.faq-item.open { border-color: var(--accent-line); background: var(--card); }
.faq-q { margin: 0; }
.faq-btn {
  width: 100%; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; background: transparent; border: none;
  font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--heading); line-height: 1.4;
}
.faq-btn:hover { color: var(--accent-2); }
.faq-chev { position: relative; width: 14px; height: 14px; flex: 0 0 auto; }
.faq-chev::before, .faq-chev::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--accent);
  border-radius: 2px; transition: transform .22s ease;
}
.faq-chev::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-chev::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-chev::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
@media (prefers-reduced-motion: reduce) { .faq-chev::before, .faq-chev::after { transition: none; } }

.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
@media (prefers-reduced-motion: reduce) { .faq-answer { transition: none; } }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p { padding: 0 20px 20px; color: var(--text-dim); font-size: 15px; }

/* ==========================================================================
   Request / form
   ========================================================================== */
.request-wrap { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 56px); align-items: start; }
.request-copy { position: sticky; top: calc(var(--header-h) + 24px); }
.request-copy h2 { font-size: clamp(26px, 3.4vw, 38px); }
.request-facts { margin-top: 26px; display: grid; gap: 14px; }
.request-facts li { display: flex; flex-direction: column; gap: 2px; border-left: 2px solid var(--accent-line); padding-left: 14px; }
.rf-k { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); }
.rf-v { font-size: 16px; font-weight: 600; color: var(--accent); }
.rf-plain { color: var(--text); font-weight: 550; font-size: 15px; }

.request-form {
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--card-2));
  padding: clamp(22px, 3vw, 32px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-row .field { margin-bottom: 0; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); font-family: var(--mono); letter-spacing: .02em; }
.req { color: var(--accent); }
.opt, .field .opt { color: var(--text-faint); font-weight: 400; }

.field input,
.field select,
.field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--heading);
  background: #090d15; border: 1px solid var(--line-2); border-radius: 9px;
  padding: 11px 13px; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-line);
  box-shadow: 0 0 0 3px var(--accent-dim); background: #0b1019;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2322d3ee' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field select option, .field optgroup { background: #0b1019; color: var(--heading); }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 4px; }
.form-note { font-size: 12.5px; color: var(--text-faint); font-family: var(--mono); max-width: 40ch; }
.form-status {
  margin-top: 18px; padding: 14px 16px; border-radius: 9px;
  border: 1px solid var(--accent-line); background: var(--accent-dim);
  font-family: var(--mono); font-size: 13.5px; color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
}
.form-status.error { border-color: rgba(251,191,36,.4); background: rgba(251,191,36,.08); }
.form-status.ok { border-color: rgba(34,197,94,.45); background: rgba(34,197,94,.08); }
.form-status strong { color: var(--accent); font-weight: 600; }
.turnstile-slot:not(:empty) { margin-top: 16px; }

@media (max-width: 820px) {
  .request-wrap { grid-template-columns: 1fr; }
  .request-copy { position: static; }
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .field { margin-bottom: 16px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); background: #070a10; padding-top: clamp(40px, 6vw, 64px); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px 28px;
  padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-tag { color: var(--text-dim); font-size: 14px; max-width: 42ch; margin-bottom: 14px; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12.5px; color: var(--text-dim); }
.footer-col h3 { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; font-weight: 600; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col a { color: var(--text-dim); font-size: 14.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-col li { color: var(--text-dim); font-size: 14.5px; }
.footer-muted { color: var(--text-faint); font-family: var(--mono); font-size: 11px; }

.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding-block: 22px; }
.footer-bottom p { font-size: 12.5px; color: var(--text-faint); }
.footer-fine { max-width: 60ch; }

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   404
   ========================================================================== */
.err {
  min-height: 100vh; display: grid; place-items: center; text-align: center;
  padding: 60px var(--pad-x);
}
.err-inner { max-width: 520px; }
.err-code { font-family: var(--mono); font-size: clamp(60px, 16vw, 120px); font-weight: 700; color: var(--heading); letter-spacing: -0.04em; line-height: 1; }
.err-code span { color: var(--accent); }
.err-title { font-size: clamp(22px, 3vw, 30px); margin: 18px 0 12px; }
.err-text { color: var(--text-dim); margin-bottom: 28px; }
.err-terminal {
  font-family: var(--mono); font-size: 13px; color: var(--text-dim);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--card-2); padding: 14px 16px; margin-bottom: 28px; text-align: left;
}
.err-terminal .tk-prompt { color: var(--accent); }
.err-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   Data center subpages (breadcrumb, text hero, facts, groups, CTA band)
   ========================================================================== */

/* breadcrumb bar */
.breadcrumb {
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12.5px;
}
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-block: 10px; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); }
.breadcrumb li + li::before { content: "/"; color: var(--line-2); }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* text-only hero */
.dc-hero { position: relative; overflow: hidden; padding-block: clamp(40px, 7vw, 88px); }
.dc-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(90% 130% at 85% 0%, rgba(34,211,238,0.10), transparent 55%);
}
.dc-hero h1 { font-size: clamp(30px, 5vw, 52px); letter-spacing: -0.025em; line-height: 1.06; max-width: 18ch; margin-bottom: 18px; }
.dc-hero-sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--text); max-width: 62ch; }

/* facts row */
.dc-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 12px; margin: 30px 0 0; max-width: 760px; }
.dc-fact { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card-2); padding: 12px 15px; margin: 0; }
.dc-fact dt { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); margin: 0; }
.dc-fact dd { margin: 5px 0 0; font-weight: 650; color: var(--heading); font-size: 15px; }

/* facility tile meta + linked tiles (hub + sibling grids) */
a.facility { color: var(--text); }
a.facility:hover { color: var(--text); }
.fac-meta { margin-left: auto; font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--text-faint); }
a.facility:hover .fac-meta { color: var(--accent); }
a.facility-more:hover { color: var(--accent); }

/* hub facility groups */
.dc-group { margin-top: clamp(30px, 4vw, 46px); }
.dc-group:first-of-type { margin-top: 0; }
.dc-group-head { margin-bottom: 16px; }
.dc-group-head .eyebrow { margin-bottom: 8px; }
.dc-group-title { font-size: clamp(19px, 2.4vw, 25px); }

/* CTA band */
.dc-cta {
  border: 1px solid var(--accent-line); border-radius: var(--radius);
  background:
    radial-gradient(80% 130% at 50% 0%, rgba(34,211,238,0.12), transparent 60%),
    linear-gradient(180deg, var(--card), var(--card-2));
  box-shadow: 0 30px 60px -40px rgba(34,211,238,.4);
  padding: clamp(30px, 5vw, 56px); text-align: center;
}
.dc-cta h2 { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 10px; }
.dc-cta-lead { color: var(--text-dim); max-width: 52ch; margin: 0 auto; }
.dc-cta-phone {
  font-family: var(--mono); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(22px, 3vw, 30px); color: var(--accent);
  display: inline-block; margin: 16px 0 22px;
}
.dc-cta-phone:hover { color: var(--accent-2); }
.dc-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   Articles / resources (blog)
   ========================================================================== */
.article { max-width: 760px; margin-inline: auto; }
.article-body > * + * { margin-top: 1.15em; }
.article-body h2 { font-size: clamp(21px, 2.6vw, 29px); margin-top: 1.7em; }
.article-body h3 { font-size: clamp(17px, 2vw, 21px); margin-top: 1.4em; }
.article-body p, .article-body li { color: var(--text); }
.article-body ul { list-style: disc; padding-left: 1.35em; }
.article-body ol { list-style: decimal; padding-left: 1.35em; }
.article-body li + li { margin-top: 0.4em; }
.article-body a { text-decoration: underline; text-underline-offset: 2px; }
.article-body blockquote {
  border-left: 3px solid var(--accent-line); padding: 2px 0 2px 16px;
  color: var(--text-dim); font-style: italic;
}
.article-meta { color: var(--text-dim); font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; }

/* post cards (resources index + related links) */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); }
.post-card {
  display: block; padding: 22px 22px 24px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--card-2);
  transition: border-color .18s ease, transform .12s ease, background .18s ease;
}
.post-card:hover { border-color: var(--accent-line); background: var(--card); transform: translateY(-2px); }
.post-card h3 { font-size: 18px; margin-bottom: 8px; }
.post-card p { color: var(--text-dim); font-size: 14.5px; }
.post-card .post-tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }

/* Inline text-block links must be distinguishable by more than color (WCAG 1.4.1) */
p a:not(.btn) { text-decoration: underline; text-underline-offset: 2px; }
