/* =================================================================
   OmniRank.ai — visual stack
   Extends the GTXO Consulting ecosystem (dark mode, terminal aesthetic).
   Own accent: indigo. GTXO teal appears as a secondary nod.
   ================================================================= */

/* ---------------- TOKENS ---------------- */
:root {
  /* Surfaces */
  --bg:             #09090B;
  --bg-elevated:    #18181B;
  --bg-card:        #1C1C21;
  --surface:        #27272A;
  --border:         #2E2E33;
  --border-subtle:  #222226;

  /* Text */
  --fg:             #FAFAFA;
  --fg-secondary:   #A1A1AA;
  --fg-muted:       #71717A;

  /* Electric blue — OmniRank's primary, matched to wordmark */
  --accent:         #3B82F6;
  --accent-bright:  #60A5FA;
  --accent-dim:     #2563EB;
  --accent-glow:    rgba(59, 130, 246, 0.20);

  /* Emerald — for ".ai" / success markers, matched to wordmark */
  --emerald:        #22C55E;
  --emerald-bright: #34D399;

  /* GTXO teal — kept for the parent badge nod */
  --gtxo:           #2DD4BF;
  --gtxo-dim:       #14B8A6;

  /* Semantic */
  --green:          #34D399;
  --amber:          #FBBF24;
  --red:            #F87171;

  /* Type — matched to GTXO Consulting parent site
     Inter Tight: display + body
     Instrument Serif: italic emphasis words only
     JetBrains Mono: data + labels */
  --font-display:   "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:      "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif:     "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-mono:      "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii / shadow */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-lg: 0 32px 60px -16px rgba(0,0,0,0.5);

  /* Spacing */
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(59,130,246,0.14), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(34,197,94,0.06), transparent 60%),
    var(--bg);
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------------- TYPE ----------------
   Display uses Inter Tight 800 (matches GTXO Consulting parent site).
   Italic emphasis words inside headlines switch to Instrument Serif via .emph. */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 5.5vw + 1rem, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var(--fg);
}
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
  color: var(--fg);
}
.emph {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 55%, #22C55E 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--fg-secondary);
  margin: 0;
  text-wrap: pretty;
  max-width: 62ch;
}
.mono { font-family: var(--font-mono); font-feature-settings: "ss01" 1, "ss02" 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 16px;
}
.eyebrow .dash {
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r);
  padding: 12px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.btn .arr { font-weight: 600; transition: transform 200ms ease; }
.btn:hover .arr { transform: translateX(3px); }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-bright); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-elevated); border-color: var(--surface); }
.btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }

/* ---------------- STATUS BADGE ---------------- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  font-size: 12px;
  color: var(--fg-secondary);
  margin-bottom: 20px;
}
.status-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* ---------------- NAV ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,9,11,0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand-block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-svg {
  height: 28px;
  width: auto;
  display: block;
}
.brand--foot .brand-svg { height: 30px; }
.brand-by {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  padding-left: 12px;
  border-left: 1px solid var(--border-subtle);
  align-self: center;
}
.brand-by a {
  color: var(--gtxo);
  text-decoration: none;
}
.brand-by a:hover { color: var(--gtxo-dim); }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-size: 14px;
  color: var(--fg-secondary);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 160ms ease, background 160ms ease;
}
.nav-links a:hover { color: var(--fg); background: var(--bg-elevated); }
.nav-actions { display: flex; gap: 12px; align-items: center; }

/* ---------------- HERO ---------------- */
.hero { padding: 80px 0 100px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 100%; }
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
  color: var(--fg-muted);
  font-size: 12px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* ---------------- TERMINAL ---------------- */
.terminal {
  background: linear-gradient(180deg, #15151A 0%, #0D0D11 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 60px 100px -40px var(--accent-glow);
  overflow: hidden;
  position: relative;
}
.terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(59,130,246,0.08), transparent 60%);
  pointer-events: none;
}
.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.t-name {
  margin-left: auto;
  font-size: 11px;
  color: var(--fg-muted);
}
.terminal-body {
  margin: 0;
  padding: 20px 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--fg-secondary);
  white-space: pre;
  min-height: 360px;
  position: relative;
  z-index: 1;
  overflow-x: auto;
}
.terminal-body .cmd  { color: var(--fg); }
.terminal-body .ok   { color: var(--green); }
.terminal-body .warn { color: var(--amber); }
.terminal-body .dim  { color: var(--fg-muted); }
.terminal-body .acc  { color: var(--accent-bright); }
.terminal-body .teal { color: var(--gtxo); }
.terminal-body .bar-on  { color: var(--accent); }
.terminal-body .bar-off { color: var(--surface); }
.terminal-body .you  { color: var(--accent-bright); font-weight: 500; }
.terminal-body .green { color: var(--emerald-bright); }
.terminal-body .cursor {
  display: inline-block;
  width: 0.55em;
  height: 1em;
  background: var(--accent-bright);
  vertical-align: -2px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.terminal-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--fg-muted);
  position: relative;
  z-index: 1;
}
.status-good { color: var(--green); }
.ml-auto { margin-left: auto; }

/* ---------------- SECTIONS ---------------- */
.section { padding: 96px 0; }

/* Light beige band — alternates with the dark surfaces.
   Cards inside inherit a light surface via CSS variable overrides. */
.section--light {
  background: #F4EFE6;
  color: #18181C;
  --bg-card: #FFFFFF;
  --border: #E5DFD2;
  --border-subtle: #EDE7DB;
  --fg: #18181C;
  --fg-secondary: #4F4F58;
  --fg-muted: #8A8A93;
  --surface: #DCD4C2;
  position: relative;
}
.section--light .h2,
.section--light .display { color: #18181C; }
.section--light .eyebrow { color: #6B6B73; }
.section--light .eyebrow .dash { background: currentColor; }
.section--light .lead { color: #4F4F58; }
.section--light .f-meta li {
  background: rgba(0,0,0,0.035);
  border-color: rgba(0,0,0,0.06);
  color: #6B6B73;
}
.section--light .ind-icon {
  background: rgba(59,130,246,0.10);
  border-color: rgba(59,130,246,0.22);
  color: var(--accent-dim);
}
.section--light .f-num { color: var(--accent-dim); }
.section--light .p-num { color: var(--accent-dim); }
.section--light .feature--gtxo {
  background:
    linear-gradient(135deg, rgba(45,212,191,0.10), transparent 60%),
    #FFFFFF;
  border-color: rgba(45,212,191,0.32);
}
.section--light .feature--gtxo .f-num { color: var(--gtxo-dim); }
.section--light .f-link { color: var(--accent-dim); }
.section--light .f-link:hover { color: var(--accent); }
.section--light .ind-link { color: var(--accent-dim); }
.section--light .rec-n .u { color: var(--accent-dim); }
.section--light .rec-arrow { color: #16A34A; }
.section--light .quote blockquote { color: #18181C; }
.section--light .q-mark { color: var(--accent-dim); }
.section--light .q-avatar { background: linear-gradient(135deg, var(--accent), var(--accent-dim)); color: #fff; }
.section--light .q-name { color: #18181C; }
.section--light .ind-card--ghost {
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.025), rgba(0,0,0,0.025) 8px, transparent 8px, transparent 16px);
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

/* ---------------- BUILT BY GTXO STRIP ---------------- */
.builtby {
  background: #F4EFE6;
  padding: 56px 0;
  border-top: 1px solid #E5DFD2;
}
.builtby-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.builtby-copy { color: #4F4F58; }
.builtby-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A8A93;
  margin: 0 0 10px;
}
.builtby-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 2.4vw + 0.5rem, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #18181C;
  margin: 0 0 12px;
  max-width: 22ch;
}
.builtby-h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 55%, #22C55E 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.builtby-p { font-size: 15px; line-height: 1.55; max-width: 56ch; margin: 0; color: #4F4F58; }
.builtby-logo {
  display: inline-block;
  text-decoration: none;
}
.builtby-logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform 200ms ease;
}
.builtby-logo:hover img { transform: translateY(-1px); }
.builtby-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dim);
  text-decoration: none;
}
.builtby-cta:hover { color: var(--accent); }
@media (max-width: 720px) {
  .builtby-inner { grid-template-columns: 1fr; gap: 24px; }
  .builtby-logo img { height: 44px; }
}

/* ---------------- THE SHIFT ---------------- */
.shift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shift-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px 24px;
  position: relative;
  overflow: hidden;
}
.shift-card--accent {
  border-color: rgba(59,130,246,0.35);
  background:
    linear-gradient(180deg, rgba(59,130,246,0.08), transparent 60%),
    var(--bg-card);
}
.shift-card--accent::after {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 70%;
  height: 80%;
  background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.shift-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw + 1rem, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 16px;
}
.shift-n .u {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: .55em;
  color: var(--accent-bright);
  margin-left: 4px;
}
.shift-l { font-size: 15px; color: var(--fg-secondary); line-height: 1.5; margin-bottom: 12px; }
.shift-src { font-size: 11px; color: var(--fg-muted); }

/* ---------------- PLATFORM ---------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.feature:hover { border-color: var(--surface); transform: translateY(-2px); }
.f-num {
  font-size: 11px;
  color: var(--accent-bright);
  letter-spacing: 0.02em;
}
.f-h {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
}
.f-p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.55;
  margin: 0;
}
.f-meta {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.f-meta li {
  font-size: 11px;
  color: var(--fg-muted);
  padding: 4px 8px;
  background: rgba(255,255,255,0.025);
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}
.f-link {
  font-size: 12px;
  color: var(--accent-bright);
  margin-top: auto;
  transition: color 160ms ease;
}
.f-link:hover { color: var(--accent); }
.feature--gtxo {
  background:
    linear-gradient(135deg, rgba(45,212,191,0.06), transparent 60%),
    var(--bg-card);
  border-color: rgba(45,212,191,0.22);
}
.feature--gtxo .f-num { color: var(--gtxo); }

/* ---------------- PROCESS ---------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.p-num {
  font-size: 11px;
  color: var(--accent-bright);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.p-h {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin: 0;
}
.p-p {
  font-size: 13.5px;
  color: var(--fg-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ---------------- INDUSTRIES ---------------- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ind-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 200ms ease;
}
.ind-card:hover { border-color: var(--surface); }
.ind-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.18);
  color: var(--accent-bright);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.ind-icon svg { width: 18px; height: 18px; }
.ind-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--fg);
  margin: 0;
}
.ind-card p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.55;
  margin: 0;
}
.ind-card--ghost {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.015), rgba(255,255,255,0.015) 8px, transparent 8px, transparent 16px);
  border-style: dashed;
}
.ind-link {
  font-size: 12px;
  color: var(--accent-bright);
  margin-top: auto;
}

/* ---------------- RECEIPTS ---------------- */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.rec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rec-arrow { font-size: 11px; color: var(--green); margin-bottom: 4px; }
.rec-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.rec-n .u {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: .5em;
  color: var(--accent-bright);
  margin-left: 4px;
}
.rec-l { font-size: 13px; color: var(--fg-secondary); }
.rec-sub { font-size: 11px; color: var(--fg-muted); margin-top: auto; padding-top: 8px; }

.quote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  margin: 0;
  max-width: 880px;
}
.quote blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.35rem, 1.5vw + 0.8rem, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.q-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2.2em;
  line-height: 0;
  position: relative;
  top: 0.3em;
  color: var(--accent-bright);
  margin-right: 6px;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.q-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
}
.q-name { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--fg); }
.q-role { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }

/* ---------------- CTA ---------------- */
.cta-section {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(99,102,241,0.18), transparent 60%),
    transparent;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-inner .status-badge { margin-inline: auto; }
.cta-h { margin: 0 0 20px; }
.cta-section .lead { margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------- FOOTER ---------------- */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 28px;
  color: var(--fg-secondary);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}
.brand--foot { margin-bottom: 12px; }
.foot-tag { font-size: 14px; color: var(--fg-secondary); margin: 12px 0 0; max-width: 32ch; }
.foot-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot-links h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin: 0 0 14px;
}
.foot-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: 14px; color: var(--fg-secondary); transition: color 160ms ease; }
.foot-links a:hover { color: var(--fg); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 12px;
  color: var(--fg-muted);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1100px) {
  .features, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .rec-grid { grid-template-columns: repeat(2, 1fr); }
  .shift-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .foot-top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .features, .ind-grid, .process-grid, .rec-grid { grid-template-columns: 1fr; }
  .foot-links { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 48px 0 72px; }
  .quote { padding: 28px; }
  .terminal-body { font-size: 11px; padding: 16px; }
}
