:root {

  --bg: #080c11;
  --bg2: #0b1017;

  --panel: #10161e;
  --panel2: #141b24;
  --panel3: #18212c;

  --border: #1e2834;
  --border2: #2b3948;

  --text: #e6edf3;
  --muted: #8b98a6;
  --dim: #586575;

  --teal: #3ddc97;
  --teal-dim: rgba(61, 220, 151, .10);

  --orange: #ff8c42;
  --orange-dim: rgba(255, 140, 66, .10);

  --red: #ff6b6b;
  --red-dim: rgba(255, 107, 107, .10);

  --blue: #66aaff;
  --blue-dim: rgba(102, 170, 255, .10);

  --mono: ui-monospace,
    "Cascadia Code",
    "JetBrains Mono",
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;

  --sans: Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  --max: 1160px;

}


/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {

  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(61, 220, 151, .045),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 140, 66, .035),
      transparent 35%
    ),
    var(--bg);

  color: var(--text);

  font-family: var(--mono);

  line-height: 1.65;

  overflow-x: hidden;

}

::selection {
  background: var(--teal);
  color: #04120c;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* =========================
   ACCESSIBILITY
========================= */

.skip {

  position: absolute;

  left: -999px;
  top: 0;

  background: var(--teal);
  color: #04120c;

  padding: 8px 14px;

  z-index: 300;

  border-radius: 0 0 8px 0;

}

.skip:focus {
  left: 0;
}

:focus-visible {

  outline: 2px solid var(--teal);
  outline-offset: 3px;

}


/* =========================
   PROGRESS
========================= */

#progress {

  position: fixed;

  top: 0;
  left: 0;

  width: 0;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--teal),
      var(--orange)
    );

  z-index: 200;

}


/* =========================
   NAVIGATION
========================= */

nav {

  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  background: rgba(8, 12, 17, .88);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);

}

.nav-inner {

  max-width: var(--max);

  margin: 0 auto;

  padding: 0 24px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}

.logo {

  display: flex;

  align-items: center;

  gap: 9px;

  color: var(--muted);

  font-size: .82rem;

}

.logo:hover {
  text-decoration: none;
}

.dots {
  display: flex;
  gap: 5px;
}

.dot {

  width: 10px;
  height: 10px;

  border-radius: 50%;

}

.dot.t {
  background: var(--teal);
}

.dot.o {
  background: var(--orange);
}

.dot.g {
  background: #3a4552;
}

.nav-links {

  display: flex;

  gap: 22px;

}

.nav-links a {

  color: var(--muted);

  font-size: .76rem;

  transition: color .2s;

}

.nav-links a:hover,
.nav-links a.active {

  color: var(--teal);

  text-decoration: none;

}

.nav-toggle {

  display: none;

  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 5px;

  width: 34px;
  height: 34px;

  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;

  cursor: pointer;

}

.nav-toggle span {

  display: block;

  width: 16px;
  height: 2px;

  background: var(--muted);

  transition: transform .2s, opacity .2s, background .2s;

}

.nav-toggle:hover span {
  background: var(--teal);
}

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

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

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


/* =========================
   GENERAL
========================= */

section {

  max-width: var(--max);

  margin: 0 auto;

  padding: 110px 24px;

}

.section-heading {

  max-width: 850px;

  margin-bottom: 42px;

}

.sec-tag {

  color: var(--orange);

  font-size: .75rem;

  letter-spacing: 1px;

  margin-bottom: 12px;

}

.sec-title {

  font-size: clamp(
    1.7rem,
    3.6vw,
    2.5rem
  );

  line-height: 1.2;

  letter-spacing: -.7px;

  margin-bottom: 15px;

}

.section-intro {

  max-width: 760px;

  color: var(--muted);

  font-size: .9rem;

}

.reveal {

  opacity: 0;

  transform: translateY(22px);

  transition:
    opacity .65s ease,
    transform .65s ease;

}

.reveal.visible {

  opacity: 1;

  transform: none;

}


/* =========================
   HERO
========================= */

.hero {

  min-height: 100vh;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding-top: 130px;

}

.hero-content {
  max-width: 1000px;
}

.status {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  border: 1px solid var(--border2);

  background: var(--panel);

  color: var(--teal);

  font-size: .73rem;

  padding: 7px 13px;

  border-radius: 999px;

  margin-bottom: 24px;

}

.pulse {

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--teal);

  animation: pulse 2s infinite;

}

@keyframes pulse {

  0%,
  100% {

    box-shadow:
      0 0 0 0
      rgba(61, 220, 151, .45);

  }

  50% {

    box-shadow:
      0 0 0 7px
      rgba(61, 220, 151, 0);

  }

}

.eyebrow {

  color: var(--dim);

  font-size: .73rem;

  letter-spacing: 1.5px;

  margin-bottom: 12px;

}

h1 {

  font-size:
    clamp(
      2.6rem,
      7vw,
      5.4rem
    );

  line-height: 1.02;

  letter-spacing: -3px;

  margin-bottom: 20px;

}

.role {

  max-width: 820px;

  color: var(--muted);

  font-size:
    clamp(
      .95rem,
      2vw,
      1.15rem
    );

  margin-bottom: 22px;

}

.chips {

  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin-bottom: 35px;

}

.chip {

  color: var(--teal);

  font-size: .76rem;

}

.chip::before {

  content: "▹ ";

  color: var(--dim);

}


/* =========================
   TERMINAL
========================= */

.term {

  background: var(--panel);

  border: 1px solid var(--border);

  border-radius: 12px;

  overflow: hidden;

  max-width: 850px;

  box-shadow:
    0 25px 80px rgba(0, 0, 0, .38);

}

.term-bar {

  display: flex;

  align-items: center;

  gap: 7px;

  padding: 11px 15px;

  border-bottom: 1px solid var(--border);

  background: var(--panel2);

}

.term-bar span:last-child {

  color: var(--dim);

  font-size: .7rem;

  margin-left: 5px;

}

.term-body {

  padding: 22px;

  font-size: .83rem;

}

.term-body p {

  color: var(--muted);

  margin: 8px 0;

}

.prompt {
  color: var(--orange);
}

.cursor {

  display: inline-block;

  width: 8px;

  height: 1.05em;

  background: var(--teal);

  vertical-align: text-bottom;

  animation: blink 1.1s step-end infinite;

}

@keyframes blink {
  50% {
    opacity: 0;
  }
}


/* =========================
   BUTTONS
========================= */

.btn-row {

  display: flex;

  gap: 12px;

  margin-top: 28px;

  flex-wrap: wrap;

}

.btn {

  display: inline-block;

  padding: 11px 20px;

  border-radius: 8px;

  font-size: .78rem;

  font-weight: 600;

  border: 1px solid var(--border2);

  transition:
    transform .15s,
    box-shadow .2s,
    border-color .2s;

  font-family: var(--mono);

  cursor: pointer;

}

.btn:hover {

  text-decoration: none;

  transform: translateY(-2px);

}

.btn-primary {

  background: var(--orange);

  color: #160a02;

  border-color: var(--orange);

}

.btn-primary:hover {

  box-shadow:
    0 8px 28px
    rgba(255, 140, 66, .25);

}

.btn-ghost {

  color: var(--text);

  background: transparent;

}

.btn-ghost:hover {

  border-color: var(--teal);

  color: var(--teal);

}


/* =========================
   STATS
========================= */

.stats {

  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(200px, 1fr)
    );

  gap: 14px;

}

.stat {

  background: var(--panel);

  border: 1px solid var(--border);

  border-left: 3px solid var(--teal);

  border-radius: 9px;

  padding: 22px;

  transition:
    transform .2s,
    border-color .2s;

}

.stat:hover {

  transform: translateY(-4px);

  border-left-color: var(--orange);

}

.stat .k {

  color: var(--teal);

  font-size: .7rem;

  letter-spacing: .5px;

  margin-bottom: 9px;

}

.stat .v {

  font-size: 1.8rem;

  font-weight: 700;

  letter-spacing: -1px;

  margin-bottom: 5px;

}

.stat .d {

  color: var(--muted);

  font-size: .74rem;

}


/* =========================
   EXPERTISE
========================= */

.engineering-grid {

  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(260px, 1fr)
    );

  gap: 15px;

}

.exp-card {

  background: var(--panel);

  border: 1px solid var(--border);

  border-radius: 10px;

  padding: 24px;

  transition:
    border-color .2s,
    transform .2s;

}

.exp-card:hover {

  border-color: var(--teal);

  transform: translateY(-3px);

}

.domain-icon {

  color: var(--orange);

  font-size: .7rem;

  letter-spacing: 1px;

  border: 1px solid var(--border2);

  display: inline-block;

  padding: 4px 7px;

  border-radius: 5px;

  margin-bottom: 14px;

}

.exp-card h3 {

  font-size: .98rem;

  margin-bottom: 10px;

}

.exp-card p {

  color: var(--muted);

  font-size: .78rem;

  margin-bottom: 14px;

}

.exp-card ul {

  list-style: none;

}

.exp-card li {

  color: var(--dim);

  font-size: .73rem;

  padding: 3px 0;

}

.exp-card li::before {

  content: "· ";

  color: var(--teal);

}


/* =========================
   ARCHITECTURE
========================= */

.architecture-shell {

  display: grid;

  grid-template-columns: 190px 1fr;

  border: 1px solid var(--border);

  border-radius: 12px;

  overflow: hidden;

  background: var(--panel);

}

.architecture-sidebar {

  background: var(--panel2);

  border-right: 1px solid var(--border);

  padding: 10px;

}

.arch-layer {

  width: 100%;

  display: flex;

  align-items: center;

  gap: 12px;

  background: transparent;

  border: 0;

  color: var(--muted);

  font-family: var(--mono);

  font-size: .75rem;

  padding: 13px 12px;

  border-radius: 7px;

  cursor: pointer;

  text-align: left;

}

.arch-layer span {

  color: var(--dim);

  font-size: .65rem;

}

.arch-layer:hover,
.arch-layer.active {

  color: var(--teal);

  background: var(--teal-dim);

}

.architecture-detail {

  min-height: 420px;

  padding: 32px;

}

.arch-panel {
  display: none;
}

.arch-panel.active {
  display: block;
}

.arch-title {

  display: flex;

  gap: 14px;

  align-items: flex-start;

  margin-bottom: 30px;

}

.arch-number {

  color: var(--orange);

  font-size: .75rem;

  padding-top: 4px;

}

.arch-title h3 {

  font-size: 1.2rem;

  margin-bottom: 4px;

}

.arch-title p {

  color: var(--muted);

  font-size: .75rem;

}

.flow {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 9px;

  margin: 35px 0;

}

.flow-node {

  background: var(--panel2);

  border: 1px solid var(--border2);

  padding: 11px 15px;

  border-radius: 7px;

  color: var(--text);

  font-size: .72rem;

}

.flow-arrow {

  color: var(--teal);

  font-size: .85rem;

}

.decision {

  background: var(--orange-dim);

  border: 1px solid rgba(255, 140, 66, .22);

  border-left: 3px solid var(--orange);

  padding: 15px 17px;

  border-radius: 6px;

}

.decision strong {

  display: block;

  color: var(--orange);

  font-size: .7rem;

  margin-bottom: 5px;

}

.decision p {

  color: var(--muted);

  font-size: .76rem;

}


/* =========================
   CASE STUDIES
========================= */

.filters {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 25px;

}

.fbtn {

  background: transparent;

  border: 1px solid var(--border2);

  color: var(--muted);

  font-family: var(--mono);

  font-size: .7rem;

  padding: 7px 12px;

  border-radius: 999px;

  cursor: pointer;

}

.fbtn:hover,
.fbtn.on {

  color: var(--teal);

  border-color: var(--teal);

  background: var(--teal-dim);

}

.case-grid {

  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(340px, 1fr)
    );

  gap: 16px;

}

.work-card.hide {
  display: none;
}

.case-study {

  background: var(--panel);

  border: 1px solid var(--border);

  border-radius: 11px;

  padding: 25px;

  transition:
    border-color .2s,
    transform .2s;

}

.case-study:hover {

  border-color: var(--border2);

  transform: translateY(-3px);

}

.case-meta {

  display: flex;

  justify-content: space-between;

  gap: 10px;

  margin-bottom: 13px;

}

.wtype {

  color: var(--orange);

  font-size: .64rem;

  letter-spacing: .6px;

}

.case-status {

  color: var(--teal);

  font-size: .61rem;

  border: 1px solid var(--border2);

  border-radius: 999px;

  padding: 2px 7px;

}

.case-study h3 {

  font-size: 1rem;

  margin-bottom: 9px;

}

.case-study > p {

  color: var(--muted);

  font-size: .76rem;

  margin-bottom: 18px;

}

.case-section {

  margin-top: 18px;

}

.case-section h4 {

  color: var(--text);

  font-size: .7rem;

  margin-bottom: 7px;

  text-transform: uppercase;

  letter-spacing: .5px;

}

.case-section p,
.case-section li {

  color: var(--muted);

  font-size: .73rem;

}

.case-section ul {

  list-style: none;

}

.case-section li {

  padding: 3px 0;

}

.case-section li::before {

  content: "▹ ";

  color: var(--orange);

}

.case-grid-mini {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 7px;

}

.case-grid-mini > div {

  background: var(--panel2);

  border: 1px solid var(--border);

  padding: 10px;

  border-radius: 6px;

}

.case-grid-mini span {

  display: block;

  color: var(--dim);

  font-size: .6rem;

}

.case-grid-mini strong {

  color: var(--teal);

  font-size: .7rem;

}

.mini-flow {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 7px;

}

.mini-flow span {

  background: var(--panel2);

  border: 1px solid var(--border);

  padding: 6px 8px;

  border-radius: 5px;

  color: var(--muted);

  font-size: .62rem;

}

.mini-flow b {

  color: var(--teal);

  font-size: .7rem;

}

.mini-pipeline {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 6px;

  margin: 15px 0;

}

.mini-pipeline.horizontal {

  flex-direction: row;

  flex-wrap: wrap;

  justify-content: center;

}

.mini-pipeline div {

  background: var(--panel2);

  border: 1px solid var(--border2);

  padding: 7px 10px;

  border-radius: 5px;

  color: var(--muted);

  font-size: .63rem;

}

.mini-pipeline span {

  color: var(--teal);

  font-size: .7rem;

}

.metric-highlight {

  display: flex;

  align-items: baseline;

  gap: 10px;

  padding: 13px;

  border: 1px solid var(--border);

  background: var(--panel2);

  border-radius: 7px;

}

.metric-highlight strong {

  color: var(--orange);

  font-size: 1.5rem;

}

.metric-highlight span {

  color: var(--muted);

  font-size: .68rem;

}

.agent-flow {

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 5px;

  margin: 20px 0;

}

.agent-flow div {

  text-align: center;

  background: var(--panel2);

  border: 1px solid var(--border);

  border-radius: 6px;

  padding: 9px 4px;

  color: var(--muted);

  font-size: .6rem;

}

.agent-flow span {

  display: block;

  color: var(--orange);

  font-size: .58rem;

  margin-bottom: 3px;

}

.cloud-stack {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 7px;

  margin: 18px 0;

}

.cloud-stack div {

  padding: 14px 8px;

  text-align: center;

  background: var(--panel2);

  border: 1px solid var(--border);

  border-radius: 6px;

  color: var(--teal);

  font-size: .7rem;

}

.wlink {

  display: inline-block;

  margin-top: 18px;

  font-size: .72rem;

  font-weight: 600;

}


/* =========================
   INCIDENT
========================= */

.incident {

  background: var(--panel);

  border: 1px solid var(--border);

  border-radius: 12px;

  overflow: hidden;

}

.incident-header {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 20px;

  padding: 25px;

  border-bottom: 1px solid var(--border);

}

.incident-label {

  color: var(--orange);

  font-size: .62rem;

  letter-spacing: .8px;

}

.incident-header h3 {

  font-size: 1rem;

  margin-top: 5px;

}

.incident-severity {

  color: var(--red);

  border: 1px solid rgba(255, 107, 107, .3);

  background: var(--red-dim);

  border-radius: 999px;

  padding: 3px 8px;

  font-size: .6rem;

}

.incident-flow {

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  border-bottom: 1px solid var(--border);

}

.incident-step {

  padding: 20px;

  border-right: 1px solid var(--border);

}

.incident-step:last-child {
  border-right: 0;
}

.incident-step span {

  color: var(--orange);

  font-size: .62rem;

}

.incident-step strong {

  display: block;

  margin: 8px 0 5px;

  font-size: .7rem;

}

.incident-step p {

  color: var(--muted);

  font-size: .67rem;

}

.command-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 12px;

  padding: 20px;

}

.command-block {

  background: #070a0e;

  border: 1px solid var(--border);

  border-radius: 7px;

  padding: 15px;

}

.command-head {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 12px;

}

.command-head span {

  color: var(--teal);

  font-size: .6rem;

}

.copy-command {

  background: transparent;

  border: 1px solid var(--border2);

  color: var(--dim);

  border-radius: 4px;

  padding: 3px 7px;

  font-family: var(--mono);

  font-size: .58rem;

  cursor: pointer;

}

.copy-command:hover {

  color: var(--teal);

  border-color: var(--teal);

}

.command-block code {

  display: block;

  color: var(--text);

  font-size: .7rem;

  white-space: pre-wrap;

  word-break: break-word;

}

.command-block p {

  color: var(--dim);

  font-size: .63rem;

  margin-top: 9px;

}


/* =========================
   DECISIONS
========================= */

.decision-grid {

  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(340px, 1fr)
    );

  gap: 15px;

}

.decision-card {

  background: var(--panel);

  border: 1px solid var(--border);

  border-radius: 9px;

  padding: 23px;

}

.decision-number {

  color: var(--orange);

  font-size: .62rem;

  letter-spacing: 1px;

}

.decision-card h3 {

  font-size: .92rem;

  margin: 8px 0 18px;

}

.decision-columns {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;

}

.decision-columns div {

  border-top: 1px solid var(--border);

  padding-top: 10px;

}

.decision-columns span {

  color: var(--teal);

  font-size: .61rem;

  text-transform: uppercase;

}

.decision-columns p {

  color: var(--muted);

  font-size: .7rem;

  margin-top: 5px;

}


/* =========================
   FAILURE MODES
========================= */

.failure-grid {

  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(240px, 1fr)
    );

  gap: 14px;

}

.failure-card {

  background: var(--panel);

  border: 1px solid var(--border);

  border-top: 2px solid var(--red);

  border-radius: 9px;

  padding: 22px;

}

.failure-icon {

  color: var(--red);

  font-size: .65rem;

}

.failure-card h3 {

  font-size: .88rem;

  margin: 10px 0;

}

.failure-card p {

  color: var(--muted);

  font-size: .71rem;

  margin-bottom: 13px;

}

.failure-card strong {

  display: block;

  color: var(--orange);

  font-size: .65rem;

  margin-bottom: 4px;

}

.failure-card > span:last-child {

  color: var(--dim);

  font-size: .67rem;

}


/* =========================
   EXPERIENCE
========================= */

.timeline {

  border-left: 1px solid var(--border);

  margin-left: 34px;

}

.job {

  position: relative;

  display: grid;

  grid-template-columns: 65px 1fr;

  gap: 20px;

  padding: 30px 0 30px 25px;

  border-top: 1px solid var(--border);

}

.job:first-child {
  border-top: 0;
}

.job::before {

  content: "";

  position: absolute;

  left: -5px;

  top: 38px;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--border2);

}

.job.current::before {
  background: var(--teal);
}

.job-num {

  color: var(--dim);

  font-size: .75rem;

  padding-top: 3px;

}

.job.current .job-num {
  color: var(--teal);
}

.job-head {

  display: flex;

  flex-wrap: wrap;

  align-items: baseline;

  gap: 10px;

  margin-bottom: 5px;

}

.job-head h3 {

  font-size: 1rem;

}

.job-badge {

  color: var(--teal);

  border: 1px solid var(--teal);

  border-radius: 999px;

  padding: 2px 7px;

  font-size: .58rem;

}

.job-co {

  color: var(--muted);

  font-size: .74rem;

}

.job-date {

  color: var(--dim);

  font-size: .66rem;

  margin-left: auto;

}

.job ul {

  list-style: none;

  margin: 15px 0;

}

.job li {

  color: var(--muted);

  font-size: .73rem;

  padding: 4px 0;

}

.job li::before {

  content: "▹ ";

  color: var(--orange);

}

.wtags {

  display: flex;

  flex-wrap: wrap;

  gap: 6px;

}

.wtag {

  color: var(--dim);

  border: 1px solid var(--border2);

  padding: 3px 7px;

  border-radius: 999px;

  font-size: .59rem;

}


/* =========================
   CERTIFICATIONS
========================= */

.cert-grid {

  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(260px, 1fr)
    );

  gap: 12px;

}

.cert {

  display: flex;

  gap: 12px;

  align-items: flex-start;

  background: var(--panel);

  border: 1px solid var(--border);

  border-radius: 8px;

  padding: 16px;

}

.cert .ic {

  color: var(--orange);

  font-size: .8rem;

}

.cert h4 {

  font-size: .74rem;

  font-weight: 600;

}

.cert p {

  color: var(--dim);

  font-size: .63rem;

}


/* =========================
   CONTACT
========================= */

.contact-box {

  background: var(--panel);

  border: 1px solid var(--border);

  border-radius: 13px;

  padding: 50px 30px;

  text-align: center;

  max-width: 850px;

  margin: 0 auto;

}

.contact-box h2 {

  font-size:
    clamp(
      1.5rem,
      3.5vw,
      2.3rem
    );

  line-height: 1.2;

  margin-bottom: 15px;

  letter-spacing: -.7px;

}

.contact-box > p {

  color: var(--muted);

  max-width: 600px;

  margin: 0 auto 10px;

  font-size: .77rem;

}

.contact-sub {

  color: var(--dim) !important;

  font-size: .67rem !important;

  margin-bottom: 25px !important;

}

.contact-btns {

  display: flex;

  justify-content: center;

  gap: 10px;

  flex-wrap: wrap;

}


/* =========================
   FOOTER
========================= */

footer {

  border-top: 1px solid var(--border);

  padding: 30px 24px;

  text-align: center;

  color: var(--dim);

  font-size: .65rem;

}

footer .echo {

  color: var(--teal);

  margin-bottom: 6px;

}

footer p {
  margin: 3px 0;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: .65rem;
  }

  .architecture-shell {
    grid-template-columns: 1fr;
  }

  .architecture-sidebar {

    display: grid;

    grid-template-columns:
      repeat(3, 1fr);

    border-right: 0;

    border-bottom: 1px solid var(--border);

  }

  .incident-flow {
    grid-template-columns: 1fr 1fr;
  }

  .incident-step:nth-child(2) {
    border-right: 0;
  }

  .incident-step:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .incident-step:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: 0;
  }

  .incident-step:nth-child(5) {
    border-top: 1px solid var(--border);
  }

}


@media (max-width: 700px) {

  section {
    padding: 80px 18px;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {

    display: flex;
    flex-direction: column;

    position: absolute;

    top: 58px;
    left: 0;
    right: 0;

    padding: 14px 18px 20px;

    gap: 14px;

    background: rgba(8, 12, 17, .98);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border);

    transform: translateY(-8px);
    opacity: 0;

    pointer-events: none;

    transition: transform .2s, opacity .2s;

  }

  .nav-links.open {

    transform: translateY(0);
    opacity: 1;

    pointer-events: auto;

  }

  .nav-links a {
    font-size: .82rem;
  }

  h1 {
    letter-spacing: -2px;
  }

  .term-body {
    font-size: .7rem;
  }

  .architecture-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .architecture-detail {
    padding: 22px;
  }

  .flow {
    justify-content: flex-start;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .command-grid {
    grid-template-columns: 1fr;
  }

  .incident-flow {
    grid-template-columns: 1fr;
  }

  .incident-step {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .incident-step:last-child {
    border-bottom: 0;
  }

  .decision-columns {
    grid-template-columns: 1fr;
  }

  .timeline {
    margin-left: 10px;
  }

  .job {
    grid-template-columns: 1fr;
    padding-left: 20px;
  }

  .job-num {
    display: none;
  }

  .job-date {
    margin-left: 0;
  }

  .agent-flow {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


@media (max-width: 480px) {

  .hero {
    padding-top: 100px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .case-grid-mini {
    grid-template-columns: 1fr;
  }

  .cloud-stack {
    grid-template-columns: 1fr;
  }

  .agent-flow {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .contact-box {
    padding: 35px 18px;
  }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {

    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;

  }

}