/* ============================================================
   OUTRO SYSTEMS STUDIO — style.css
   Dark console / terminal theme
   Background #0B1016 · Text #E8EAED · Accent #17C3B2
   ============================================================ */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.7;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  background-color: #0B1016;
  color: #E8EAED;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: #17C3B2;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #4FE3D3;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

/* ---------- Cursor block glyph (CSS square with blink) ---------- */
.cursor-block {
  display: inline-block;
  width: 10px;
  height: 18px;
  background-color: #17C3B2;
  vertical-align: -3px;
  animation: cursor-blink 1.1s steps(1, end) infinite;
}

@keyframes cursor-blink {
  0%,
  100% {
    visibility: visible;
  }
  50% {
    visibility: hidden;
  }
}

/* ---------- Prompt glyph (solid cyan angle bracket) ---------- */
.prompt-glyph {
  display: inline-block;
  width: 9px;
  height: 11px;
  background-color: #17C3B2;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  vertical-align: -1px;
  margin-right: 9px;
  transition: background-color 0.25s ease;
}

/* ---------- Prompt navigation (.prompt-nav) ---------- */
.prompt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0B1016;
  border-bottom: 2px solid #17C3B2;
}

.prompt-nav.is-scrolled {
  box-shadow: 0 6px 16px #05080C;
}

.prompt-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}

.prompt-nav .brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.prompt-nav .brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prompt-nav .brand-word {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #17C3B2;
  font-size: 20px;
}

.prompt-nav .brand-caption {
  margin-top: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #17C3B2;
}

.prompt-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.prompt-nav .nav-link {
  display: inline-flex;
  align-items: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8EAED;
  font-weight: 600;
}

.prompt-nav .nav-link:hover {
  color: #17C3B2;
}

.prompt-nav .nav-link.is-active {
  color: #17C3B2;
}

.prompt-nav .nav-link.is-active .prompt-glyph {
  clip-path: none;
  width: 9px;
  height: 11px;
}

/* Hamburger — hidden on desktop */
.prompt-nav .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: #101820;
  border: 1px solid #17C3B2;
}

.prompt-nav .nav-toggle .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #17C3B2;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.prompt-nav .nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.prompt-nav .nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.prompt-nav .nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drop panel */
.prompt-nav .mobile-panel {
  display: none;
  background-color: #0B1016;
  border-top: 1px solid #0E4A45;
  padding: 18px 24px 26px;
}

.prompt-nav .mobile-panel .mobile-link {
  display: block;
  padding: 12px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8EAED;
  border-bottom: 1px solid #101820;
}

.prompt-nav .mobile-panel .mobile-link:last-child {
  border-bottom: 0;
}

.prompt-nav .mobile-panel .mobile-link.is-active {
  color: #17C3B2;
}

.prompt-nav .mobile-panel.is-open {
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px 30px;
  border: 2px solid #17C3B2;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: #17C3B2;
  color: #0B1016;
}

.btn-primary:hover {
  background-color: #4FE3D3;
  border-color: #4FE3D3;
  color: #0B1016;
}

.btn-outline {
  background-color: transparent;
  color: #17C3B2;
}

.btn-outline:hover {
  background-color: #17C3B2;
  color: #0B1016;
}

/* ---------- Console hero (.console-hero) ---------- */
.console-hero {
  background-color: #0B1016;
  border-bottom: 1px solid #0E4A45;
}

.console-hero .hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 72px;
}

.console-hero .hero-copy {
  max-width: 620px;
}

.console-hero .eyebrow-chip {
  display: inline-block;
  background-color: #17C3B2;
  color: #0B1016;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-bottom: 26px;
}

.console-hero .hero-title {
  font-size: clamp(40px, 5.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 24px;
}

.console-hero .hero-title .accent {
  color: #17C3B2;
}

.console-hero .hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: #E8EAED;
  margin-bottom: 34px;
  max-width: 560px;
}

.console-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Terminal window panel */
.console-hero .terminal-panel {
  background-color: #101820;
  border: 2px solid #17C3B2;
  box-shadow: 12px 12px 0 #0E4A45;
  max-width: 520px;
  width: 100%;
}

.console-hero .terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: #0B1016;
  border-bottom: 1px solid #0E4A45;
}

.console-hero .terminal-bar .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.console-hero .terminal-bar .dot-red {
  background-color: #FF5F57;
}

.console-hero .terminal-bar .dot-amber {
  background-color: #FEBC2E;
}

.console-hero .terminal-bar .dot-green {
  background-color: #28C840;
}

.console-hero .terminal-bar .terminal-title {
  margin-left: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #17C3B2;
}

.console-hero .terminal-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.console-hero .terminal-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 15px;
}

.console-hero .terminal-line .t-label {
  color: #17C3B2;
  font-weight: 700;
  min-width: 62px;
}

.console-hero .terminal-line .t-colon {
  color: #17C3B2;
}

.console-hero .terminal-line .t-value {
  color: #E8EAED;
  font-weight: 700;
}

.console-hero .terminal-baseline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 12px;
  border-top: 2px solid #17C3B2;
}

.console-hero .terminal-baseline span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #17C3B2;
  font-weight: 700;
}

/* ---------- Section scaffolding ---------- */
.home-page .section-head {
  margin-bottom: 48px;
  max-width: 780px;
}

.home-page .section-tag {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #17C3B2;
  border: 1px solid #17C3B2;
  padding: 6px 12px;
  margin-bottom: 20px;
}

.home-page .section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 18px;
}

.home-page .section-lead {
  font-size: 17px;
  color: #E8EAED;
  line-height: 1.75;
}

/* ---------- CAP STACK ---------- */
.home-page .cap-stack {
  background-color: #0B1016;
  padding: 96px 0;
}

.home-page .cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-page .cap-card {
  background-color: #101820;
  border: 1px solid #0E4A45;
  padding: 30px 28px 32px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.home-page .cap-card:hover {
  border-color: #17C3B2;
  transform: translateY(-4px);
}

.home-page .cap-card .led {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 20px;
}

.home-page .cap-card .led-cyan {
  background-color: #17C3B2;
}

.home-page .cap-card .led-teal {
  background-color: #2DD4BF;
}

.home-page .cap-card .led-lime {
  background-color: #A3E635;
}

.home-page .cap-card .led-amber {
  background-color: #FBBF24;
}

.home-page .cap-card .led-blue {
  background-color: #60A5FA;
}

.home-page .cap-card .led-magenta {
  background-color: #E879F9;
}

.home-page .cap-card .card-title {
  font-size: 20px;
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 12px;
}

.home-page .cap-card .card-text {
  font-size: 15px;
  line-height: 1.75;
  color: #E8EAED;
}

/* ---------- UPTIME BAND ---------- */
.home-page .uptime-band {
  background-color: #17C3B2;
  padding: 72px 0;
}

.home-page .uptime-band .uptime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.home-page .uptime-band .uptime-num {
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: 900;
  line-height: 1;
  color: #0B1016;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  margin-bottom: 10px;
}

.home-page .uptime-band .uptime-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0B1016;
}

/* ---------- RUNBOOK LIST ---------- */
.home-page .runbook {
  background-color: #0B1016;
  padding: 96px 0;
}

.home-page .runbook-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-page .runbook-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: #0E4A45;
}

.home-page .runbook-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 26px 0;
}

.home-page .runbook-item .runbook-num {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 2px solid #17C3B2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  color: #17C3B2;
  background-color: #0B1016;
  z-index: 1;
}

.home-page .runbook-item.is-active .runbook-num {
  background-color: #17C3B2;
  color: #0B1016;
}

.home-page .runbook-item .runbook-copy {
  max-width: 720px;
}

.home-page .runbook-item .runbook-title {
  font-size: 22px;
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 8px;
}

.home-page .runbook-item .runbook-text {
  font-size: 16px;
  line-height: 1.75;
  color: #E8EAED;
}

/* ---------- FIELD NOTES ---------- */
.home-page .field-notes {
  background-color: #101820;
  padding: 96px 0;
}

.home-page .field-notes .section-head {
  max-width: none;
}

.home-page .field-notes .notes-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid #0E4A45;
}

.home-page .field-notes .section-head + .notes-row {
  border-top: 0;
}

.home-page .field-notes .notes-row .notes-copy {
  max-width: 560px;
}

.home-page .field-notes .notes-row .notes-title {
  font-size: 26px;
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 16px;
}

.home-page .field-notes .notes-row .notes-text {
  font-size: 16px;
  line-height: 1.8;
  color: #E8EAED;
  margin-bottom: 22px;
}

.home-page .field-notes .notes-row .check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-page .field-notes .check-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #E8EAED;
}

.home-page .field-notes .check-square {
  width: 16px;
  height: 16px;
  background-color: #17C3B2;
  display: inline-block;
}

.home-page .field-notes .tag-chip {
  display: inline-block;
  background-color: #0B1016;
  border: 1px solid #17C3B2;
  color: #17C3B2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 8px 16px;
  margin-bottom: 4px;
}

/* ---------- GUARANTEE PANEL ---------- */
.home-page .guarantee-panel {
  background-color: #0B1016;
  padding: 96px 0;
}

.home-page .guarantee-panel .guarantee-box {
  background-color: #101820;
  border-left: 10px solid #17C3B2;
  padding: 64px 56px;
}

.home-page .guarantee-panel .guarantee-statement {
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.22;
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 20px;
  max-width: 900px;
}

.home-page .guarantee-panel .guarantee-sub {
  font-size: 18px;
  color: #17C3B2;
  font-weight: 600;
  max-width: 720px;
}

/* ---------- CTA ---------- */
.home-page .cta-block {
  background-color: #0B1016;
  border-top: 1px solid #0E4A45;
  padding: 96px 0;
  text-align: center;
}

.home-page .cta-block .cta-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 16px;
}

.home-page .cta-block .cta-sub {
  font-size: 17px;
  color: #E8EAED;
  max-width: 620px;
  margin: 0 auto 34px;
  line-height: 1.75;
}

/* ---------- Console footer (.console-footer) ---------- */
.console-footer {
  background-color: #0B1016;
  border-top: 2px solid #17C3B2;
}

.console-footer .footer-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 32px;
}

.console-footer .brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.console-footer .brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.console-footer .brand-word {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #17C3B2;
  font-size: 18px;
}

.console-footer .brand-caption {
  margin-top: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #17C3B2;
}

.console-footer .footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.console-footer .footer-links a {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8EAED;
}

.console-footer .footer-links a:hover {
  color: #17C3B2;
}

.console-footer .footer-contact {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  color: #17C3B2;
  text-align: right;
  line-height: 1.6;
}

.console-footer .footer-row2 {
  border-top: 1px solid #0E4A45;
  padding: 20px 0 26px;
  position: relative;
}

.console-footer .footer-row2 .footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.console-footer .footer-legal {
  font-size: 13px;
  color: #E8EAED;
  line-height: 1.8;
}

.console-footer .footer-legal a {
  color: #17C3B2;
}

.console-footer .footer-legal a:hover {
  color: #4FE3D3;
}

.console-footer .footer-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background-color: #17C3B2;
  vertical-align: -2px;
  margin-right: 10px;
  animation: cursor-blink 1.1s steps(1, end) infinite;
}

/* ---------- Sub-page banner (services / contact) ---------- */
.sub-page .page-banner {
  background-color: #0B1016;
  border-bottom: 2px solid #17C3B2;
  padding: 72px 0 64px;
}

.sub-page .page-banner .banner-crumb {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #17C3B2;
  margin-bottom: 18px;
}

.sub-page .page-banner .banner-title {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 18px;
  max-width: 860px;
}

.sub-page .page-banner .banner-sub {
  font-size: 17px;
  color: #E8EAED;
  max-width: 720px;
  line-height: 1.75;
}

/* ---------- Services page ---------- */
.services-page .svc-section {
  background-color: #0B1016;
  padding: 84px 0;
  border-bottom: 1px solid #0E4A45;
}

.services-page .svc-section:nth-of-type(even) {
  background-color: #101820;
}

.services-page .svc-inner {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 48px;
  align-items: start;
}

.services-page .svc-head .svc-no {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #17C3B2;
  letter-spacing: 0.1em;
}

.services-page .svc-head .svc-title {
  font-size: 26px;
  font-weight: 800;
  color: #E8EAED;
  margin-top: 10px;
}

.services-page .svc-body .svc-text {
  font-size: 16px;
  line-height: 1.8;
  color: #E8EAED;
  margin-bottom: 16px;
}

.services-page .svc-body .svc-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.services-page .svc-body .svc-point {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #17C3B2;
  border: 1px solid #17C3B2;
  padding: 6px 12px;
  background-color: #0B1016;
}

.services-page .process-strip {
  background-color: #17C3B2;
  padding: 64px 0;
}

.services-page .process-strip .process-title {
  font-size: 26px;
  font-weight: 800;
  color: #0B1016;
  margin-bottom: 28px;
  text-align: center;
}

.services-page .process-strip .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-page .process-strip .process-step {
  text-align: center;
  padding: 20px 12px;
}

.services-page .process-strip .process-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 30px;
  font-weight: 900;
  color: #0B1016;
  display: block;
  margin-bottom: 8px;
}

.services-page .process-strip .process-step-title {
  font-size: 16px;
  font-weight: 800;
  color: #0B1016;
  margin-bottom: 6px;
}

.services-page .process-strip .process-step-text {
  font-size: 14px;
  color: #0B1016;
  line-height: 1.6;
}

.services-page .svc-cta-band {
  background-color: #0B1016;
  padding: 88px 0;
  text-align: center;
}

.services-page .svc-cta-band .cta-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 14px;
}

.services-page .svc-cta-band .cta-sub {
  font-size: 17px;
  color: #E8EAED;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* ---------- Contact page ---------- */
.contact-page .contact-wrap {
  background-color: #0B1016;
  padding: 84px 0 96px;
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-page .contact-side .side-block {
  background-color: #101820;
  border-left: 4px solid #17C3B2;
  padding: 24px 26px;
  margin-bottom: 22px;
}

.contact-page .contact-side .side-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #17C3B2;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-page .contact-side .side-value {
  font-size: 16px;
  color: #E8EAED;
  line-height: 1.7;
}

.contact-page .contact-side .side-value a {
  color: #E8EAED;
}

.contact-page .contact-side .side-value a:hover {
  color: #17C3B2;
}

.contact-page .contact-side .side-text {
  font-size: 15px;
  color: #E8EAED;
  line-height: 1.7;
  margin-bottom: 22px;
}

.contact-page .contact-form-panel {
  background-color: #101820;
  border: 1px solid #0E4A45;
  padding: 36px 34px;
}

.contact-page .contact-form-panel .form-title {
  font-size: 24px;
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 6px;
}

.contact-page .contact-form-panel .form-note {
  font-size: 14px;
  color: #E8EAED;
  margin-bottom: 24px;
}

.contact-page .contact-form-panel .form-field {
  margin-bottom: 20px;
}

.contact-page .contact-form-panel label {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17C3B2;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-page .contact-form-panel input,
.contact-page .contact-form-panel textarea {
  width: 100%;
  background-color: #0B1016;
  border: 1px solid #0E4A45;
  color: #E8EAED;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s ease;
}

.contact-page .contact-form-panel textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-page .contact-form-panel input:focus,
.contact-page .contact-form-panel textarea:focus {
  outline: none;
  border-color: #17C3B2;
}

.contact-page .contact-form-panel .form-status {
  margin-top: 16px;
  font-size: 14px;
  color: #17C3B2;
  min-height: 22px;
  line-height: 1.5;
}

.contact-page .faq-block {
  background-color: #101820;
  padding: 72px 0 88px;
  border-top: 1px solid #0E4A45;
}

.contact-page .faq-block .faq-title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: #E8EAED;
  margin-bottom: 34px;
}

.contact-page .faq-item {
  border: 1px solid #0E4A45;
  background-color: #0B1016;
  margin-bottom: 14px;
}

.contact-page .faq-item .faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 700;
  color: #E8EAED;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.contact-page .faq-item .faq-q .faq-caret {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  color: #17C3B2;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.contact-page .faq-item.is-open .faq-caret {
  transform: rotate(90deg);
}

.contact-page .faq-item .faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #E8EAED;
}

.contact-page .faq-item.is-open .faq-a {
  display: block;
}

/* ---------- Scroll reveal (safe without JS) ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .console-hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 64px;
  }

  .console-hero .terminal-panel {
    max-width: none;
  }

  .home-page .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page .field-notes .notes-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-page .svc-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-page .process-strip .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .prompt-nav .nav-links {
    display: none;
  }

  .prompt-nav .nav-toggle {
    display: flex;
  }

  .console-footer .footer-row1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .console-footer .footer-links {
    flex-wrap: wrap;
    gap: 18px;
  }

  .console-footer .footer-contact {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .prompt-nav .nav-inner {
    padding: 12px 18px;
  }

  .container {
    padding: 0 18px;
  }

  .home-page .cap-grid {
    grid-template-columns: 1fr;
  }

  .home-page .uptime-band .uptime-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 16px;
  }

  .home-page .runbook-item {
    gap: 16px;
  }

  .home-page .runbook-list::before {
    left: 25px;
  }

  .home-page .guarantee-panel .guarantee-box {
    padding: 40px 28px;
  }

  .console-hero .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .console-hero .hero-cta .btn {
    text-align: center;
  }

  .services-page .process-strip .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-form-panel {
    padding: 26px 20px;
  }

  .console-footer .footer-row1 {
    padding-top: 28px;
    padding-bottom: 24px;
  }
}
