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

:root {
  --bg: #07090d;
  --bg-soft: #0b1117;
  --panel: #101820;
  --panel-strong: #14212b;
  --panel-hover: #182631;
  --line: #223240;
  --line-soft: rgba(148, 163, 184, 0.18);
  --text: #eef5f8;
  --muted: #a7b4bd;
  --dim: #8a97a2;
  --cyan: #26d9e8;
  --green: #4ade80;
  --violet: #9d7dff;
  --amber: #f6c453;
  --red: #ff6b7a;
  --shadow: rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background:
    linear-gradient(rgba(38, 217, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 217, 232, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  background: var(--cyan);
  color: #031014;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

/* Background video — subtle, behind all content; loaded desktop-only via JS */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  display: none; /* shown by JS only after it can play (desktop, motion-ok) */
}
.bg-video.is-on { display: block; }
/* Readability overlay: darkens the video so text/contrast stay intact */
.bg-video-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: none;
  background: linear-gradient(rgba(7, 9, 13, 0.55), rgba(7, 9, 13, 0.72));
}
.bg-video.is-on ~ .bg-video-overlay { display: block; }
@media (prefers-reduced-motion: reduce) {
  .bg-video, .bg-video-overlay { display: none !important; }
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text span {
  color: var(--cyan);
}

.brand-sub {
  margin-top: 0.22rem;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cyan);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--panel);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-cta,
.btn-primary {
  border-color: rgba(38, 217, 232, 0.6);
  background: #06232a;
  color: var(--cyan);
}

.btn-secondary {
  border-color: rgba(157, 125, 255, 0.5);
  color: #d7ceff;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--panel-hover);
  border-color: var(--cyan);
}

.btn:focus-visible,
.nav-cta:focus-visible,
.nav-links a:focus-visible,
.card-link:focus-visible,
.brand:focus-visible,
.footer-col a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
}

.mobile-toggle span {
  position: relative;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.mobile-toggle span::before {
  top: -7px;
}

.mobile-toggle span::after {
  top: 7px;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 5.2rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

h1,
.page-title {
  margin-top: 1rem;
  max-width: 760px;
  font-size: 4.05rem;
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-copy,
.page-copy,
.section-copy {
  max-width: 720px;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.section-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.metric-strip {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  min-height: 96px;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.68);
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 0.45rem;
  color: var(--dim);
  font-size: 0.82rem;
}

.terminal {
  border: 1px solid rgba(38, 217, 232, 0.24);
  border-radius: 8px;
  background: rgba(9, 15, 22, 0.86);
  box-shadow: 0 24px 70px var(--shadow);
  overflow: hidden;
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(20, 33, 43, 0.75);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: var(--red); }
.dot.amber { background: var(--amber); }
.dot.green { background: var(--green); }

.terminal-title {
  margin-left: 0.5rem;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 800;
}

.terminal-body {
  min-height: 360px;
  max-height: 360px;
  overflow-y: auto;
  cursor: text;
  padding: 1.2rem;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88rem;
  color: var(--muted);
  scrollbar-width: thin;
  scrollbar-color: rgba(38, 217, 232, 0.4) transparent;
}
.terminal-body::-webkit-scrollbar { width: 8px; }
.terminal-body::-webkit-scrollbar-thumb { background: rgba(38, 217, 232, 0.35); border-radius: 8px; }

.terminal-line {
  margin-bottom: 0.55rem;
  white-space: pre-wrap;
  word-break: break-word;
}

.t-prompt { color: var(--cyan); }
.t-good { color: var(--green); }
.t-warn { color: var(--amber); }
.t-risk { color: var(--red); }

/* Interactive terminal input */
.term-input-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0; }
.term-prompt { flex: 0 0 auto; }
.term-input {
  flex: 1 1 auto; min-width: 0;
  background: transparent; border: 0; outline: 0; padding: 0;
  color: var(--text); font-family: inherit; font-size: inherit;
  caret-color: var(--cyan);
}
.term-input::placeholder { color: var(--dim); opacity: 0.75; }
.term-input:disabled { opacity: 0.5; }

main {
  position: relative;
  z-index: 1;
}

section,
.page-section {
  padding: 4.8rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-title {
  margin-top: 0.85rem;
  font-size: 2.65rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card,
.service-card,
.quote-card,
.case-card,
.logo-tile,
.intel-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.service-card,
.case-card,
.quote-card,
.intel-card {
  padding: 1.25rem;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.service-card.featured {
  border-color: rgba(38, 217, 232, 0.42);
  background: rgba(10, 35, 42, 0.76);
}

.icon-chip {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(38, 217, 232, 0.32);
  background: rgba(38, 217, 232, 0.08);
  color: var(--cyan);
  margin-bottom: 1rem;
}

.service-card h2,
.service-card h3,
.case-card h3,
.quote-card h3,
.intel-card h3 {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 850;
}

.service-card h2 {
  font-size: 1.22rem;
}

.service-card p,
.case-card p,
.quote-card p,
.intel-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0.24rem 0.55rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.78rem;
  font-weight: 750;
}

.card-link {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--cyan);
  font-weight: 850;
  text-decoration: none;
}

.split-band {
  border-block: 1px solid var(--line-soft);
  background: rgba(11, 17, 23, 0.74);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.logo-tile {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.logo-name {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  word-break: break-word;
}

.logo-type {
  margin-top: 0.4rem;
  color: var(--dim);
  font-size: 0.8rem;
  font-weight: 750;
}

.trust-note {
  margin-top: 1rem;
  color: var(--dim);
  font-size: 0.88rem;
}

.logo-orbit {
  position: relative;
  aspect-ratio: 1.3;
  min-height: 680px;
  border: 1px solid rgba(38, 217, 232, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(38, 217, 232, 0.09), transparent 38%),
    radial-gradient(circle at 20% 30%, rgba(157, 125, 255, 0.06), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(74, 222, 128, 0.05), transparent 30%),
    rgba(8, 13, 19, 0.82);
  overflow: visible;
  box-shadow: inset 0 0 80px rgba(38, 217, 232, 0.04), 0 24px 70px rgba(0, 0, 0, 0.22);
}

.logo-orbit::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(38, 217, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 217, 232, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 0, transparent 74%);
  pointer-events: none;
}

.orbit-ring {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--ring-size);
  height: var(--ring-size);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  border: 1px solid rgba(38, 217, 232, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.5s ease;
  animation: orbit-spin 90s linear infinite;
  will-change: transform;
}

/* glowing satellite that orbits the ring as it rotates */
.orbit-ring::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px 2px rgba(38, 217, 232, 0.6);
  animation: orbit-dot-pulse 2.6s ease-in-out infinite;
}

.orbit-ring:nth-child(1) { animation-duration: 72s; }

.orbit-ring:nth-child(2) {
  border-color: rgba(157, 125, 255, 0.07);
  border-style: dashed;
  animation-duration: 96s;
  animation-direction: reverse;
}
.orbit-ring:nth-child(2)::after {
  background: #9d7dff;
  box-shadow: 0 0 12px 2px rgba(157, 125, 255, 0.6);
}

.orbit-ring:nth-child(3) {
  border-color: rgba(74, 222, 128, 0.06);
  animation-duration: 120s;
}
.orbit-ring:nth-child(3)::after {
  background: var(--green);
  box-shadow: 0 0 12px 2px rgba(74, 222, 128, 0.55);
}

@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes orbit-dot-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* hover brings the orbit to life */
.logo-orbit:hover .orbit-ring { border-color: rgba(38, 217, 232, 0.22); }
.logo-orbit:hover .orbit-ring:nth-child(2) { border-color: rgba(157, 125, 255, 0.22); }
.logo-orbit:hover .orbit-ring:nth-child(3) { border-color: rgba(74, 222, 128, 0.2); }
.logo-orbit:hover .orbit-core { animation: orbit-core-pulse 1.8s ease-in-out infinite; }

@keyframes orbit-core-pulse {
  0%, 100% { box-shadow: 0 0 46px rgba(38, 217, 232, 0.2), 0 0 120px rgba(38, 217, 232, 0.06); }
  50% { box-shadow: 0 0 70px rgba(38, 217, 232, 0.42), 0 0 150px rgba(38, 217, 232, 0.14); }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-ring::after, .logo-orbit:hover .orbit-core { animation: none; }
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) perspective(720px) rotateX(4deg);
  z-index: 5;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 217, 232, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 217, 232, 0.18), rgba(7, 9, 13, 0.96) 68%);
  box-shadow: 0 0 46px rgba(38, 217, 232, 0.2), 0 0 120px rgba(38, 217, 232, 0.06);
  text-align: center;
}

.orbit-core img {
  width: 58px;
  height: 58px;
  margin-bottom: 0.75rem;
}

.orbit-core strong {
  display: block;
  max-width: 140px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.15;
}

.orbit-core span {
  display: block;
  margin-top: 0.35rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-nodes {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.logo-node {
  --node-size: 92px;
  --logo-scale: 0.72;
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter:
    drop-shadow(0 22px 22px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 14px rgba(38, 217, 232, 0.08));
}

.logo-node:hover {
  transform: translate(-50%, -50%) scale(1.12);
  filter:
    drop-shadow(0 28px 28px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 22px rgba(38, 217, 232, 0.16));
  z-index: 10;
}

.logo-circle {
  position: relative;
  width: var(--node-size);
  height: var(--node-size);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  transform: perspective(760px) rotateX(5deg) rotateY(-5deg);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 36% 27%, #ffffff 0 30%, #edf4f7 47%, #c4d2dc 70%, #7f94a4 100%);
  box-shadow:
    inset 9px 10px 16px rgba(255, 255, 255, 0.9),
    inset -13px -18px 24px rgba(26, 49, 63, 0.28),
    inset 0 -5px 10px rgba(8, 19, 28, 0.16),
    0 18px 32px rgba(0, 0, 0, 0.48),
    0 0 0 7px rgba(38, 217, 232, 0.045),
    0 0 28px rgba(38, 217, 232, 0.075);
}

.logo-circle::before,
.logo-circle::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.logo-circle::before {
  inset: 8% 12% 48% 13%;
  z-index: 1;
  background:
    radial-gradient(ellipse at 32% 20%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.24) 42%, transparent 70%);
  mix-blend-mode: screen;
}

.logo-circle::after {
  inset: 4px;
  z-index: 1;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.96),
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    inset -8px -11px 16px rgba(20, 40, 56, 0.18);
}

.logo-circle img {
  position: relative;
  z-index: 2;
  width: calc(var(--logo-scale) * 100%);
  height: calc(var(--logo-scale) * 100%);
  object-fit: contain;
  transform: translateY(-1px) scale(1.02);
  filter:
    drop-shadow(0 2px 1px rgba(255, 255, 255, 0.25))
    drop-shadow(0 7px 6px rgba(5, 13, 20, 0.24));
}

.logo-circle.logo-wide img {
  width: 96%;
  height: auto;
  max-height: 70%;
}

.logo-circle.logo-dark {
  border-color: rgba(107, 246, 255, 0.42);
  background:
    radial-gradient(circle at 34% 26%, #314250 0 20%, #172431 50%, #061017 100%);
  box-shadow:
    inset 10px 12px 18px rgba(255, 255, 255, 0.16),
    inset -16px -20px 26px rgba(0, 0, 0, 0.48),
    0 18px 34px rgba(0, 0, 0, 0.56),
    0 0 0 7px rgba(38, 217, 232, 0.07),
    0 0 30px rgba(38, 217, 232, 0.13);
}

.logo-circle.logo-dark::before {
  background:
    radial-gradient(ellipse at 30% 16%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1) 42%, transparent 72%);
}

.logo-circle.logo-dark img {
  width: 86%;
  max-height: 62%;
  filter:
    brightness(1.2)
    contrast(1.12)
    drop-shadow(0 8px 8px rgba(0, 0, 0, 0.42));
}

.logo-circle img[src*="google"],
.logo-circle img[src*="youtube"],
.logo-circle img[src*="apple"],
.logo-circle img[src*="paypal"] {
  --logo-scale: 0.76;
}

.logo-circle img[src*="hackerone"],
.logo-circle img[src*="geeksforgeeks"],
.logo-circle img[src*="tripadvisor"],
.logo-circle img[src*="pinterest"],
.logo-circle img[src*="lg"] {
  --logo-scale: 0.78;
}

.logo-circle img[src*="fiverr"],
.logo-circle img[src*="udemy"],
.logo-circle img[src*="paytm"] {
  --logo-scale: 0.82;
}

/* Square logos that fill their viewBox — must inscribe inside the circle */
.logo-circle img[src*="linkedin"],
.logo-circle img[src*="hackerrank"] {
  --logo-scale: 0.60;
}

/* Logos with content extending to viewBox edges */
.logo-circle img[src*="x.svg"],
.logo-circle img[src*="accenture"] {
  --logo-scale: 0.56;
}

.logo-circle img[src*="udacity"] {
  --logo-scale: 0.64;
}

/* Hotstar — wide wordmark with star rays needs tighter bounds */
.logo-circle img[src*="hotstar"] {
  width: 74%;
  height: auto;
  max-height: 52%;
}

.logo-node.logo-xl { --node-size: 130px; }
.logo-node.logo-lg { --node-size: 108px; }
.logo-node.logo-md { --node-size: 92px; }
.logo-node.logo-sm { --node-size: 76px; }

.logo-node.logo-xl .logo-circle {
  box-shadow:
    inset 10px 12px 19px rgba(255, 255, 255, 0.9),
    inset -17px -21px 27px rgba(33, 55, 70, 0.26),
    inset 0 -7px 13px rgba(14, 26, 36, 0.16),
    0 24px 46px rgba(0, 0, 0, 0.52),
    0 0 0 8px rgba(38, 217, 232, 0.06),
    0 0 32px rgba(38, 217, 232, 0.08);
}

.logo-caption {
  display: none;
}

.logo-caption small {
  display: none;
}

.quote-card {
  min-height: 270px;
}

.quote-mark {
  color: var(--cyan);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.quote-card blockquote {
  margin-top: 0.65rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.page-hero {
  padding: 4.2rem 0 2rem;
  border-bottom: 1px solid var(--line-soft);
}

.breadcrumb {
  color: var(--dim);
  font-size: 0.88rem;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
}

.detail-list {
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.detail-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--muted);
}

.detail-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 0.65rem;
  border-radius: 50%;
  background: var(--cyan);
}

.process {
  counter-reset: step;
}

.process .card {
  padding: 1.2rem;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--cyan);
  font-weight: 900;
}

.intel-meter {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
  border: 1px solid var(--line-soft);
  margin: 1rem 0;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.severity-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(16, 24, 32, 0.72);
}

.severity-table th,
.severity-table td {
  padding: 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.severity-table tr:last-child td {
  border-bottom: none;
}

.severity-table th {
  color: var(--text);
  background: rgba(20, 33, 43, 0.9);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 1.3rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.78);
}

.contact-methods {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.contact-method {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.method-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(38, 217, 232, 0.28);
  color: var(--cyan);
}

.method-label {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.method-value {
  color: var(--text);
  font-size: 0.94rem;
  word-break: break-word;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 0.38rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 9, 13, 0.72);
  color: var(--text);
  padding: 0.78rem 0.85rem;
  font: inherit;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23a7b4bd' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
}

textarea {
  min-height: 134px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(38, 217, 232, 0.35);
  border-color: var(--cyan);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line-soft);
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(0, 0.75fr));
  gap: 1.5rem;
}

.footer-copy {
  margin-top: 1rem;
  max-width: 430px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-col h2,
.footer-col h3 {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0.45rem 0;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--dim);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-orbit {
    min-height: 580px;
    overflow: hidden;
  }

  .orbit-core {
    width: 140px;
    height: 140px;
  }

  .logo-node.logo-xl { --node-size: 110px; }
  .logo-node.logo-lg { --node-size: 92px; }
  .logo-node.logo-md { --node-size: 78px; }
  .logo-node.logo-sm { --node-size: 66px; }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .brand-sub {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(7, 9, 13, 0.97);
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 14px 1.4rem;
    background: rgba(7, 9, 13, 0.98);
    border-top: 1px solid var(--line-soft);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 0.9rem;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: rgba(16, 24, 32, 0.68);
  }

  .nav-links .nav-cta {
    width: 100%;
  }

  .hero {
    padding: 3.2rem 0 2.6rem;
  }

  h1,
  .page-title {
    font-size: 2.55rem;
    line-height: 1.08;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-head {
    display: block;
  }

  .section-head .btn {
    margin-top: 1rem;
  }

  .metric-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .logo-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .logo-orbit {
    aspect-ratio: 1;
    min-height: 340px;
    padding: 0;
    overflow: hidden;
  }

  .logo-orbit::before {
    display: none;
  }

  .orbit-ring {
    display: block;
  }

  .orbit-core {
    width: 100px;
    height: 100px;
  }

  .orbit-core img {
    width: 36px;
    height: 36px;
    margin-bottom: 0.4rem;
  }

  .orbit-core strong {
    font-size: 0.62rem;
    max-width: 90px;
  }

  .logo-node.logo-xl { --node-size: 52px; }
  .logo-node.logo-lg { --node-size: 46px; }
  .logo-node.logo-md { --node-size: 40px; }
  .logo-node.logo-sm { --node-size: 34px; }

  .logo-node:hover {
    transform: translate(-50%, -50%);
    z-index: auto;
  }

  .logo-caption {
    display: none;
  }

  .terminal-body {
    min-height: 260px;
    font-size: 0.8rem;
  }

  .service-card {
    min-height: auto;
  }

  .quote-card {
    min-height: auto;
  }

  section,
  .page-section {
    padding: 3.2rem 0;
  }

  .footer-grid,
  .footer-bottom {
    display: block;
  }

  .footer-col {
    margin-top: 1.4rem;
  }

  .footer-bottom span {
    display: block;
    margin-top: 0.4rem;
  }
}

@media (max-width: 560px) {
  .logo-orbit {
    min-height: 280px;
  }

  .orbit-core {
    width: 80px;
    height: 80px;
  }

  .orbit-core img {
    width: 28px;
    height: 28px;
    margin-bottom: 0.3rem;
  }

  .orbit-core strong {
    font-size: 0.52rem;
    max-width: 72px;
  }

  .logo-node.logo-xl { --node-size: 42px; }
  .logo-node.logo-lg { --node-size: 38px; }
  .logo-node.logo-md { --node-size: 34px; }
  .logo-node.logo-sm { --node-size: 28px; }
}

@media (max-width: 430px) {
  .brand-text {
    font-size: 0.78rem;
  }

  h1,
  .page-title {
    font-size: 2.15rem;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .contact-method {
    grid-template-columns: 36px 1fr;
  }

  .method-icon {
    width: 36px;
    height: 36px;
  }
}

/* ===== Security Maturity check ===== */
.quiz-wrap { max-width: 680px; margin: 0 auto; }
.quiz-card {
  position: relative;
  border: 1px solid rgba(38, 217, 232, 0.22);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  background: radial-gradient(circle at 50% 0%, rgba(38, 217, 232, 0.08), transparent 62%), rgba(9, 15, 22, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  animation: quiz-fade 0.35s ease;
}
@keyframes quiz-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.quiz-step {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
}
.quiz-progress { height: 5px; border-radius: 99px; background: rgba(38, 217, 232, 0.12); overflow: hidden; margin-bottom: 1.5rem; }
.quiz-progress-fill { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, #26d9e8, #9d7dff); transition: width 0.4s ease; }
.quiz-q { font-size: clamp(1.15rem, 2.6vw, 1.5rem); font-weight: 800; line-height: 1.3; margin-bottom: 1.4rem; }
.quiz-options { display: grid; gap: 0.7rem; }
.quiz-option {
  text-align: left; font: inherit; color: var(--text);
  padding: 0.9rem 1.1rem; border-radius: 12px; cursor: pointer;
  border: 1px solid rgba(38, 217, 232, 0.18); background: rgba(38, 217, 232, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.quiz-option:hover { border-color: rgba(38, 217, 232, 0.5); background: rgba(38, 217, 232, 0.09); transform: translateX(3px); }
.quiz-option.sel { border-color: var(--cyan); background: rgba(38, 217, 232, 0.16); box-shadow: 0 0 0 1px rgba(38, 217, 232, 0.4) inset; }
.quiz-back { margin-top: 1.3rem; background: none; border: 0; color: var(--dim); font: inherit; cursor: pointer; padding: 0; }
.quiz-back:hover { color: var(--cyan); }

/* result */
.quiz-result { text-align: center; }
.quiz-gauge { position: relative; width: 150px; height: 150px; margin: 0.8rem auto 0.4rem; }
.quiz-gauge-arc { transition: stroke-dashoffset 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.quiz-gauge-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.quiz-gauge-num strong { font-size: 2.2rem; font-weight: 800; line-height: 1; color: var(--text); }
.quiz-gauge-num span { font-size: 0.78rem; color: var(--dim); margin-top: 0.2rem; }
.quiz-band { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.quiz-band.good { color: #4ade80; }
.quiz-band.warn { color: #f5b549; }
.quiz-band.risk { color: #ff5c7c; }
.quiz-copy { color: var(--muted); max-width: 460px; margin: 0 auto 1.6rem; }
.quiz-gaps-title { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.8rem; }
.quiz-gaps { display: grid; gap: 0.6rem; text-align: left; margin-bottom: 1.7rem; }
.quiz-gap {
  display: block; padding: 0.85rem 1.05rem; border-radius: 12px; text-decoration: none;
  border: 1px solid rgba(38, 217, 232, 0.16); background: rgba(8, 13, 19, 0.55);
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.quiz-gap:hover { border-color: rgba(38, 217, 232, 0.45); transform: translateX(3px); }
.quiz-gap strong { display: block; color: var(--text); font-size: 0.96rem; margin-bottom: 0.15rem; }
.quiz-gap span { display: block; color: var(--muted); font-size: 0.86rem; }
.quiz-actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) {
  .quiz-card { padding: 1.5rem 1.1rem; }
  .quiz-actions { flex-direction: column; }
  .quiz-actions .btn { width: 100%; justify-content: center; }
}
.quiz-note { color: var(--dim); font-size: 0.82rem; max-width: 460px; margin: 0 auto 1.5rem; }

/* quiz: scanning reveal + verdict + benchmark */
.quiz-scan { text-align: left; min-height: 260px; }
.quiz-scanlog { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 0.86rem; margin-top: 1.1rem; }
.quiz-scanline { color: var(--cyan); opacity: 0; margin-bottom: 0.5rem; animation: quiz-line 0.28s ease forwards; }
.quiz-scanline.good { color: var(--green); }
@keyframes quiz-line { from { opacity: 0; transform: translateX(-8px); } to { opacity: 0.92; transform: none; } }
.quiz-verdict { color: #f5b549; font-weight: 800; font-size: 0.98rem; margin: 0 auto 0.9rem; max-width: 480px; }
.quiz-bench { color: var(--dim); font-size: 0.8rem; margin: 0 auto 1.5rem; max-width: 440px; }

/* quiz interaction polish */
@keyframes quiz-slide-in { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.quiz-card.quiz-slide { animation: quiz-slide-in 0.4s cubic-bezier(0.22, 1, 0.36, 1); }

.quiz-dots { display: flex; gap: 0.4rem; }
.quiz-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(38, 217, 232, 0.18); transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.quiz-dot.done { background: rgba(38, 217, 232, 0.55); }
.quiz-dot.active { background: var(--cyan); transform: scale(1.35); box-shadow: 0 0 8px rgba(38, 217, 232, 0.6); }

.quiz-option { display: flex; align-items: center; gap: 0.7rem; }
.quiz-opt-num { flex: 0 0 auto; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 0.78rem; font-weight: 800; color: var(--cyan); background: rgba(38, 217, 232, 0.12); border: 1px solid rgba(38, 217, 232, 0.25); transition: background 0.2s ease, color 0.2s ease; }
.quiz-opt-label { flex: 1 1 auto; }
.quiz-option.sel .quiz-opt-num { background: var(--cyan); color: #04222a; border-color: var(--cyan); }
.quiz-option.sel::after { content: "✓"; margin-left: auto; color: var(--cyan); font-weight: 800; }
.quiz-option:disabled { cursor: default; opacity: 0.5; }
.quiz-option.sel { opacity: 1; }
.quiz-option:disabled:hover { transform: none; }

.quiz-react { min-height: 1.4rem; margin-top: 0.95rem; font-size: 0.9rem; font-weight: 700; opacity: 0; transform: translateY(4px); transition: opacity 0.25s ease, transform 0.25s ease; }
.quiz-react.show { opacity: 1; transform: none; }
.quiz-react.good { color: var(--green); }
.quiz-react.ok { color: #f5b549; }
.quiz-react.bad { color: #ff6b7a; }

.quiz-intro { text-align: center; }
.quiz-intro .quiz-actions { justify-content: center; }
.quiz-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 1.2rem 0 1.6rem; }
.quiz-pill { font-size: 0.78rem; color: #cfe9ee; border: 1px solid rgba(38, 217, 232, 0.28); border-radius: 999px; padding: 0.3rem 0.85rem; background: rgba(38, 217, 232, 0.06); }

/* hero trust micro-strip */
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.45rem 1.4rem; list-style: none; margin-top: 1.4rem; padding: 0; }
.hero-trust li { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--dim); font-size: 0.85rem; }
.hero-trust li::before { content: "✓"; color: var(--green); font-weight: 800; }

/* "What's at stake" risk cards (problem-first) */
.risk-card { display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid var(--line-soft); border-top: 2px solid var(--red); border-radius: 12px; background: rgba(16, 24, 32, 0.6); transition: transform 0.2s ease, border-color 0.25s ease; }
.risk-card:hover { transform: translateY(-3px); border-color: rgba(255, 107, 122, 0.45); }
.risk-tag { font-weight: 800; color: var(--text); font-size: 1.02rem; margin-bottom: 0.6rem; }
.risk-card p { color: var(--muted); font-size: 0.92rem; flex: 1 1 auto; margin: 0 0 0.95rem; }
.risk-card .card-link { margin-top: auto; }

/* technologies-we-test grid */
.tech-card { padding: 1.25rem; border: 1px solid var(--line-soft); border-radius: 12px; background: rgba(16, 24, 32, 0.55); }
.tech-card h3 { font-size: 0.95rem; margin-bottom: 0.7rem; }

/* Floating "Get Assessment" CTA */
.float-cta {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 900;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.3rem; border-radius: 999px;
  border: 1px solid rgba(38, 217, 232, 0.7); background: #06232a; color: var(--cyan);
  font-weight: 800; font-size: 0.94rem; text-decoration: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4), 0 0 22px rgba(38, 217, 232, 0.18);
  opacity: 0; transform: translateY(16px) scale(0.96); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}
.float-cta::before {
  content: ""; width: 16px; height: 16px; flex: 0 0 16px;
  background: currentColor;
  -webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}
.float-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.float-cta:hover { background: var(--panel-hover); border-color: var(--cyan); transform: translateY(-2px); }
@media (max-width: 600px) {
  .float-cta { right: 0.9rem; bottom: 0.9rem; padding: 0.75rem 1.1rem; font-size: 0.88rem; }
}

/* process step timelines */
.process .step-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.35rem; }
.process .step-head h3 { margin: 0; }
.step-time { flex: 0 0 auto; font-size: 0.71rem; font-weight: 800; letter-spacing: 0.03em; color: var(--cyan); background: rgba(38, 217, 232, 0.1); border: 1px solid rgba(38, 217, 232, 0.25); border-radius: 999px; padding: 0.18rem 0.6rem; white-space: nowrap; }
.process-total { margin-top: 1.5rem; text-align: center; }

/* closing CTA band + promise/guarantee */
.cta-band { text-align: center; }
.cta-band > .container { max-width: 760px; }
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; line-height: 1.12; }
.cta-band > .container > p { color: var(--muted); max-width: 560px; margin: 1rem auto 0; }
.promise-list { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: center; list-style: none; padding: 0; margin: 1.6rem auto; }
.promise-list li { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text); font-size: 0.9rem; font-weight: 600; }
.promise-list li::before { content: "✓"; color: var(--green); font-weight: 800; }
.cta-band .hero-actions { justify-content: center; }

/* ===== Mobile UX / performance (content unchanged) ===== */


/* On phones/tablets, stop the decorative orbit motion (saves battery, smoother scroll) */
@media (max-width: 820px) {
  .orbit-ring,
  .orbit-ring::after,
  .logo-orbit:hover .orbit-core { animation: none !important; }
  /* Bigger, easier-to-tap footer links */
  .footer-col a { padding: 0.5rem 0; margin: 0.05rem 0; }
}

@media (max-width: 820px) {
  /* easier-to-tap inline CTAs and bottom links */
  .card-link { display: inline-block; padding: 0.4rem 0; }
  .footer-bottom a { display: inline-block; padding: 0.3rem 0.15rem; }
}

/* Legal pages (privacy policy etc.) — uses the site design system */
.legal { max-width: 820px; }
.legal-meta { color: var(--dim); font-size: 0.9rem; margin-top: 0.4rem; }
.legal-summary { border: 1px solid var(--line-soft); border-left: 3px solid var(--cyan); border-radius: 10px; background: rgba(16, 24, 32, 0.6); padding: 1.1rem 1.3rem; margin: 1.9rem 0 2.4rem; color: var(--text); }
.legal h2 { font-size: 1.18rem; margin: 2.2rem 0 0.8rem; padding-left: 0.9rem; border-left: 3px solid var(--cyan); }
.legal p { color: var(--muted); margin-bottom: 0.9rem; }
.legal ul { color: var(--muted); padding-left: 1.4rem; margin-bottom: 0.9rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--cyan); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal code { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 0.85em; background: rgba(38, 217, 232, 0.08); border: 1px solid rgba(38, 217, 232, 0.2); border-radius: 4px; padding: 0.05em 0.35em; color: var(--cyan); }
