/* ============================================================
   SignalMatrix AI — /contact/ page
   Built on top of foundations.css (canonical tokens). Page-specific
   tokens below are values used by this page that aren't yet part
   of the shared foundation (nav/footer off-white, muted text, etc.)
   ============================================================ */

:root {
  --page-bg: #060A18;
  --page-fg: #EEF1FA;
  --nav-mute: #B4BCD4;
  --nav-dim: #8B95B5;
  --footer-fine: #5F6989;
  --faq-accent: #00D4FF;
  --faq-card-bg: #0D1628;
}

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

body.contact-page {
  margin: 0;
  background: var(--page-bg);
  color: var(--page-fg);
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.contact-page a { text-decoration: none; }
.contact-page a:where(:not([class])) { color: var(--brand-green); }
.contact-page a:where(:not([class])):hover { color: var(--brand-green-soft); }
.contact-page ::selection { background: var(--brand-green); color: var(--page-bg); }
.contact-page input,
.contact-page select,
.contact-page textarea { font-family: 'Inter Tight', sans-serif; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */

.nav {
  position: sticky;
  top: 0;
  z-index: 150;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(10, 15, 30, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img { height: 28px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
  padding-right: 8px;
}

.nav-item { position: relative; }

.nav-item-trigger {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-mute);
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  transition: color 200ms ease;
}
.nav-item-trigger:hover { color: var(--page-fg); }
.nav-item-trigger svg { width: 14px; height: 14px; }

.nav-link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-mute);
  text-decoration: none;
  padding: 8px 0;
  transition: color 200ms ease;
}
.nav-link:hover { color: var(--page-fg); }
.nav-link--active { color: var(--brand-green); }
.nav-link--active:hover { color: var(--brand-green); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 220px;
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--page-fg);
  text-decoration: none;
  transition: background 180ms ease;
}
.nav-dropdown a:hover { background: var(--navy-700); color: var(--page-fg); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  background: var(--brand-green);
  color: var(--page-bg);
  text-decoration: none;
  white-space: nowrap;
  transition: filter 200ms ease, transform 200ms ease;
}
.nav-cta:hover { filter: brightness(1.10); transform: translateY(-2px); color: var(--page-bg); }
.nav-cta svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */

.hero {
  padding: 56px 80px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  animation: fadeUp 0.5s var(--ease-out) both;
}

.hero-inner { max-width: 720px; }

.hero-eyebrow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-eyebrow-rule { display: inline-block; width: 48px; height: 2px; background: var(--brand-green); }
.hero-eyebrow-label { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-green); }

.hero-h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--page-fg);
  margin: 0 0 20px;
  text-wrap: balance;
}

.hero-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: var(--nav-mute);
  margin: 0 0 24px;
  text-wrap: pretty;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--nav-dim);
}
.hero-trust-item svg { width: 14px; height: 14px; stroke: var(--brand-green); flex-shrink: 0; }
.hero-trust-sep { color: rgba(255, 255, 255, 0.15); font-size: 13px; }

/* ------------------------------------------------------------
   MAIN CONTACT SECTION
   ------------------------------------------------------------ */

.contact-main {
  padding: 0 var(--gutter-outer) 96px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: start;
}

.card {
  background: var(--navy-800);
  border: 1px solid var(--stroke-1);
  border-radius: var(--radius-xl);
  padding: var(--card-pad);
}

.form-card h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-mute);
}

.form-field label .required { color: var(--brand-green); }

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--navy-700);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px var(--brand-green-tint);
}
.form-field textarea { resize: vertical; line-height: 1.55; }

.form-select-wrap { position: relative; }
.form-select-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.form-select-wrap select option { background: var(--navy-800); }
.form-select-wrap svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--nav-dim);
  pointer-events: none;
}

.form-submit-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-green);
  color: var(--navy-900);
  font-size: var(--t-button-size);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: filter var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.form-submit:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-2px); }
.form-submit:active:not(:disabled) { filter: brightness(0.95); transform: scale(0.98); }
.form-submit:disabled { cursor: default; }
.form-submit svg { width: 16px; height: 16px; stroke: var(--navy-900); }

.form-privacy {
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
}
.form-privacy svg { width: 12px; height: 12px; stroke: var(--fg-dim); }

/* Right column */

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
}

.direct-contact-card h3 { font-size: 18px; font-weight: 700; color: var(--fg); margin: 0 0 20px; }

.direct-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.direct-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-mute);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--dur-base) var(--ease-out);
}
a.direct-contact-item:hover { color: var(--brand-green); }

.direct-contact-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-green-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.direct-contact-icon svg { width: 16px; height: 16px; stroke: var(--brand-green); }

.book-call-card {
  background: var(--navy-800);
  border: 1.5px solid var(--brand-green);
  border-radius: var(--radius-xl);
  padding: var(--card-pad);
  box-shadow: var(--glow-soft);
}
.book-call-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.book-call-head svg { width: 20px; height: 20px; stroke: var(--brand-green); }
.book-call-head h3 { font-size: 17px; font-weight: 700; color: var(--fg); margin: 0; }
.book-call-card p { font-size: 14px; color: var(--fg-mute); margin: 0 0 16px; line-height: 1.55; }

.book-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1.5px solid var(--brand-green);
  color: var(--brand-green);
  font-size: var(--t-button-size);
  font-weight: 600;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-out);
}
.book-call-btn:hover { background: var(--brand-green-tint); color: var(--brand-green); }
.book-call-btn svg { width: 15px; height: 15px; stroke: var(--brand-green); }

.reassurance-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  background: var(--navy-800);
  border: 1px solid var(--stroke-1);
  border-radius: var(--radius-lg);
}
.reassurance-item { display: flex; align-items: center; gap: 10px; }
.reassurance-item svg { width: 16px; height: 16px; stroke: var(--brand-green); flex-shrink: 0; }
.reassurance-item span { font-size: 14px; color: var(--fg-mute); }

/* ------------------------------------------------------------
   SECTION HEADER (shared: process / industry / faq)
   ------------------------------------------------------------ */

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}
.section-header-rule { display: inline-block; width: 48px; height: 2px; background: var(--brand-green); }
.section-header-eyebrow {
  font-size: 12px;
  font-weight: var(--t-h4-weight);
  letter-spacing: var(--t-h4-track);
  text-transform: uppercase;
  color: var(--brand-green);
}
.section-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: 8px;
  text-wrap: balance;
}

/* ------------------------------------------------------------
   PROCESS SECTION
   ------------------------------------------------------------ */

.process-section {
  padding: 96px var(--gutter-outer);
  background: var(--navy-800);
  border-top: 1px solid var(--stroke-3);
  border-bottom: 1px solid var(--stroke-3);
}
.process-inner { max-width: var(--max-width); margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; position: relative; }

.process-card {
  background: var(--navy-900);
  border: 1px solid var(--stroke-1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.process-card:hover { border-color: var(--brand-green); box-shadow: var(--glow-soft); }

.process-card-head { display: flex; align-items: center; gap: 14px; }
.process-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-green-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-icon svg { width: 20px; height: 20px; stroke: var(--brand-green); }
.process-step-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-green);
}
.process-card h3 { font-size: 18px; font-weight: 700; color: var(--fg); margin: 0; }
.process-card p { font-size: 14px; color: var(--fg-mute); margin: 0; line-height: 1.6; }

/* ------------------------------------------------------------
   INDUSTRY CARDS
   ------------------------------------------------------------ */

.industry-section { padding: 96px var(--gutter-outer); max-width: var(--max-width); margin: 0 auto; }
.industry-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }

.industry-card {
  background: var(--navy-800);
  border: 1px solid var(--stroke-1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.industry-card:hover { color: inherit; }
.industry-card--healthcare:hover { border-color: rgba(0, 212, 255, 0.5); box-shadow: 0 0 32px var(--pillar-automation-glow); }
.industry-card--education:hover { border-color: rgba(0, 255, 136, 0.5); box-shadow: 0 0 32px var(--brand-green-glow); }
.industry-card--service:hover { border-color: rgba(167, 139, 250, 0.5); box-shadow: 0 0 32px var(--pillar-crm-glow); }
.industry-card--product:hover { border-color: rgba(245, 181, 68, 0.5); box-shadow: 0 0 32px var(--amber-glow); }

.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-icon svg { width: 22px; height: 22px; }
.industry-icon--healthcare { background: var(--pillar-automation-tint); }
.industry-icon--healthcare svg { stroke: var(--pillar-automation); }
.industry-icon--education { background: var(--brand-green-tint); }
.industry-icon--education svg { stroke: var(--brand-green); }
.industry-icon--service { background: var(--pillar-crm-tint); }
.industry-icon--service svg { stroke: var(--pillar-crm); }
.industry-icon--product { background: var(--amber-tint); }
.industry-icon--product svg { stroke: var(--amber); }

.industry-card h3 { font-size: 17px; font-weight: 700; color: var(--fg); margin: 0 0 6px; }
.industry-card p { font-size: 13px; color: var(--fg-mute); margin: 0; line-height: 1.55; }

.industry-explore {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
}
.industry-explore svg { width: 13px; height: 13px; }
.industry-card--healthcare .industry-explore { color: var(--pillar-automation); }
.industry-card--healthcare .industry-explore svg { stroke: var(--pillar-automation); }
.industry-card--education .industry-explore { color: var(--brand-green); }
.industry-card--education .industry-explore svg { stroke: var(--brand-green); }
.industry-card--service .industry-explore { color: var(--pillar-crm); }
.industry-card--service .industry-explore svg { stroke: var(--pillar-crm); }
.industry-card--product .industry-explore { color: var(--amber); }
.industry-card--product .industry-explore svg { stroke: var(--amber); }

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */

.faq-section {
  padding: 96px var(--gutter-outer);
  background: var(--page-bg);
  border-top: 1px solid var(--stroke-3);
  border-bottom: 1px solid var(--stroke-3);
}
.faq-container { max-width: 840px; margin: 0 auto; }

.faq-head { margin-bottom: 56px; }
.faq-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.faq-eyebrow-rule { display: inline-block; width: 48px; height: 2px; background: var(--faq-accent); flex-shrink: 0; }
.faq-eyebrow-label { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faq-accent); }
.faq-head h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--faq-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
}
.faq-trigger h3 { font-size: 18px; line-height: 1.4; font-weight: 600; letter-spacing: -0.005em; color: #fff; margin: 0; flex: 1; }

.faq-toggle {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.faq-toggle svg { width: 16px; height: 16px; stroke: rgba(255, 255, 255, 0.65); transition: stroke var(--dur-base) var(--ease-out); }

.faq-item.is-open .faq-toggle {
  background: rgba(0, 212, 255, 0.18);
  border-color: rgba(0, 212, 255, 0.45);
  transform: rotate(180deg);
}
.faq-item.is-open .faq-toggle svg { stroke: var(--faq-accent); }

.faq-panel {
  padding: 0 28px 28px;
  display: none;
}
.faq-item.is-open .faq-panel { display: block; }
.faq-divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin-bottom: 20px; }
.faq-panel p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.65;
  text-wrap: pretty;
}

/* ------------------------------------------------------------
   AUDIT BANNER
   ------------------------------------------------------------ */

.audit-banner {
  padding: 96px var(--gutter-outer);
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.audit-banner h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0 0 24px;
  text-wrap: balance;
}
.audit-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-green);
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: filter var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.audit-banner-cta:hover { filter: brightness(1.1); transform: translateY(-2px); color: var(--navy-900); }
.audit-banner-cta svg { width: 16px; height: 16px; stroke: var(--navy-900); }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */

.site-footer {
  position: relative;
  padding: 96px 80px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 255, 136, 0.05) 0%, transparent 60%),
    var(--page-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo { display: inline-flex; align-items: center; text-decoration: none; }
.footer-brand-logo img { height: 32px; width: auto; display: block; }
.footer-brand-desc { margin: 22px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--nav-mute); max-width: 360px; }

.foot-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.footer-contact-list {
  margin-top: 22px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--nav-mute);
}
.footer-contact-list a { color: var(--nav-mute); text-decoration: none; transition: color 180ms ease; }
.footer-contact-list a:hover { color: var(--brand-green); }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: var(--nav-mute);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.footer-social a:hover { color: var(--page-bg); background: var(--brand-green); border-color: var(--brand-green); }

.footer-col h5 {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-green);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--nav-mute); text-decoration: none; transition: color 180ms ease; }
.footer-col ul a:hover { color: var(--page-fg); }
.footer-col ul a.is-active { color: var(--brand-green); font-weight: 600; }
.footer-col ul a.is-active:hover { color: var(--brand-green); }

.footer-cta-desc { margin: 0 0 18px; font-size: 14px; line-height: 1.55; color: var(--nav-mute); }
.footer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: var(--brand-green);
  color: var(--page-bg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 12px 36px -16px rgba(0, 255, 136, 0.45);
  transition: filter 200ms ease, transform 200ms ease;
}
.footer-cta-btn:hover { filter: brightness(1.1); transform: translateY(-2px); color: var(--page-bg); }

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
}

.footer-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nav-mute);
}

.footer-legal {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--footer-fine);
  text-align: right;
}
.footer-legal a { color: var(--footer-fine); text-decoration: none; transition: color 180ms ease; }
.footer-legal a:hover { color: var(--brand-green); }
