/* BeyondRecon — Landing Page styles */

:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --bg-3: #18181d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f4f4f5;
  --ink-dim: #a1a1aa;
  --ink-mute: #71717a;
  --accent: #e0312a;          /* crimson */
  --accent-dim: #b51e1a;
  --accent-glow: rgba(224, 49, 42, 0.35);
  --blue: #1f7bff;            /* logo blue, accent */
  --blue-dim: #0a4fb8;
  --green: #22c55e;
  --amber: #f59e0b;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Inter", sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --pad-section: 120px;
  --pad-x: 64px;
  --max-w: 1280px;
}

[data-density="compact"] {
  --pad-section: 80px;
}
[data-density="spacious"] {
  --pad-section: 160px;
}

[data-theme="blue"] {
  --accent: #2563eb;
  --accent-dim: #1d4ed8;
  --accent-glow: rgba(37, 99, 235, 0.35);
}
[data-theme="green"] {
  --accent: #22c55e;
  --accent-dim: #16a34a;
  --accent-glow: rgba(34, 197, 94, 0.35);
}
[data-theme="amber"] {
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.35);
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* layout */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--pad-section) 0;
  position: relative;
}

.section-divider {
  border-top: 1px solid var(--line);
}

/* Eyebrow */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.2s ease;
  font-family: var(--sans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 1px var(--accent-dim), 0 8px 24px -8px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 32px -8px var(--accent-glow);
}
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.04);
}
.btn-mono {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 48px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 17px;
}
.brand img {
  width: 32px;
  height: 32px;
  display: block;
}
.brand-name {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.brand-name span:last-child {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-dim);
  margin-left: auto;
}
.nav-links a {
  transition: color 0.15s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
}
.status-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* HERO */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.6;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-left .eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero h1 .highlight {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 6px;
  background: var(--accent);
  transform: rotate(-2deg);
  opacity: 0.85;
}
.hero p.sub {
  font-size: 19px;
  color: var(--ink-dim);
  max-width: 540px;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-item .num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-meta-item .num .accent {
  color: var(--accent);
}
.hero-meta-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

/* Terminal */
.terminal {
  background: linear-gradient(180deg, #0e0e12 0%, #08080a 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 32px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 80px -20px var(--accent-glow);
  position: relative;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line);
}
.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2a2a30;
}
.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }
.terminal-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  margin-left: 12px;
  flex: 1;
  text-align: center;
}
.terminal-title b {
  color: var(--ink-dim);
  font-weight: 500;
}
.terminal-body {
  padding: 20px 22px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.65;
  min-height: 420px;
  max-height: 420px;
  overflow: hidden;
  position: relative;
}
.term-line { display: block; white-space: pre-wrap; word-break: break-all; }
.term-prompt { color: var(--accent); }
.term-user { color: var(--blue); }
.term-path { color: var(--ink-dim); }
.term-out { color: var(--ink-dim); }
.term-ok { color: var(--green); }
.term-warn { color: var(--amber); }
.term-crit { color: var(--accent); font-weight: 600; }
.term-dim { color: var(--ink-mute); }
.term-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--ink);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s infinite step-end;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* MARQUEE */
.marquee {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.marquee-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  text-align: center;
  margin-bottom: 24px;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-dim);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section header */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.sec-head .eyebrow {
  margin-bottom: 24px;
}
.sec-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-wrap: balance;
}
.sec-head h2 .accent { color: var(--accent); }
.sec-head .desc {
  color: var(--ink-dim);
  font-size: 17px;
  text-wrap: pretty;
}

/* Services grid */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service {
  background: var(--bg);
  padding: 36px 32px 32px;
  position: relative;
  transition: background 0.2s ease;
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.service:hover {
  background: var(--bg-2);
}
.service:hover .service-arrow {
  transform: translate(4px, -4px);
  color: var(--accent);
}
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--accent);
  background: rgba(224, 49, 42, 0.06);
}
.service h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service p {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.service-tag {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-mute);
}
.service-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--ink-mute);
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Methodology */
.method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.method-steps {
  display: flex;
  flex-direction: column;
}
.method-step {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: start;
  cursor: pointer;
  transition: background 0.15s ease;
}
.method-step:last-child { border-bottom: 1px solid var(--line); }
.method-step:hover { background: rgba(255, 255, 255, 0.015); }
.method-step.active { background: rgba(224, 49, 42, 0.04); }
.method-step.active .method-num { color: var(--accent); }
.method-step.active .method-step-name { color: var(--ink); }
.method-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.method-step-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-dim);
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.method-step-desc {
  color: var(--ink-mute);
  font-size: 14px;
  margin-top: 6px;
  font-family: var(--mono);
}
.method-step-time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  padding-top: 6px;
  text-align: right;
}

.method-detail {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.method-detail-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.method-detail h3 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-weight: 700;
}
.method-detail p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.method-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.method-checklist li {
  display: flex;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
}
.method-checklist li::before {
  content: "▸";
  color: var(--accent);
  flex-shrink: 0;
}

/* Stats */
.stats-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.stat {
  background: var(--bg-2);
  padding: 0 32px;
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--ink);
}
.stat-num .accent { color: var(--accent); }
.stat-num .pre { color: var(--ink-mute); font-size: 0.6em; font-weight: 500; }
.stat-lbl {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* Report preview */
.report {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.report-mock {
  background: linear-gradient(135deg, #1a1a1f 0%, #0e0e12 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.report-mock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}
.report-mock-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.report-mock-head .title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.report-mock-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
}
.report-mock-head .badge {
  font-family: var(--mono);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.severity-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.severity {
  padding: 14px 12px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}
.severity.crit { border-color: rgba(224, 49, 42, 0.3); background: rgba(224, 49, 42, 0.05); }
.severity.high { border-color: rgba(245, 158, 11, 0.25); background: rgba(245, 158, 11, 0.04); }
.severity-count {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.severity.crit .severity-count { color: var(--accent); }
.severity.high .severity-count { color: var(--amber); }
.severity.med .severity-count { color: #eab308; }
.severity.low .severity-count { color: var(--ink-dim); }
.severity-lbl {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-top: 6px;
}
.findings {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.finding {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  align-items: center;
  font-size: 13px;
}
.finding .sev {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 6px;
  border-radius: 3px;
  text-align: center;
}
.finding .sev.c { background: var(--accent); color: #fff; }
.finding .sev.h { background: rgba(245, 158, 11, 0.2); color: var(--amber); }
.finding .sev.m { background: rgba(234, 179, 8, 0.15); color: #eab308; }
.finding .name {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
}
.finding .cve {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
}

.report-right h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 24px;
  text-wrap: balance;
}
.report-right h2 .accent { color: var(--accent); }
.report-right p {
  color: var(--ink-dim);
  font-size: 17px;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.report-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-bottom: 36px;
}
.report-feature {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.report-feature .ico {
  color: var(--accent);
  margin-bottom: 8px;
}
.report-feature h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.report-feature p {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.5;
}

/* Trust / certifications */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cert {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: var(--bg-2);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.cert:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.cert-name {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.cert-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-card {
  background: linear-gradient(135deg, #18080a 0%, #0e0e12 60%);
  border: 1px solid var(--accent-dim);
  border-radius: var(--r-lg);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 100px -20px var(--accent-glow);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.4;
}
.cta-card .eyebrow { justify-content: center; margin-bottom: 24px; }
.cta-card h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 20px;
  text-wrap: balance;
  position: relative;
}
.cta-card h2 .accent { color: var(--accent); font-style: italic; }
.cta-card p {
  color: var(--ink-dim);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 36px;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Footer */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  font-size: 14px;
  color: var(--ink-dim);
  transition: color 0.15s ease;
}
.footer ul a:hover { color: var(--ink); }
.footer-brand p {
  color: var(--ink-dim);
  font-size: 14px;
  max-width: 320px;
  margin: 16px 0;
  line-height: 1.6;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
}

/* corner ticks (decorative) */
.corner-ticks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.corner-ticks span {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
}
.corner-ticks span:nth-child(1) { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.corner-ticks span:nth-child(2) { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.corner-ticks span:nth-child(3) { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.corner-ticks span:nth-child(4) { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  :root { --pad-x: 32px; --pad-section: 80px; }
  .hero-inner, .method, .report, .sec-head { grid-template-columns: 1fr; gap: 40px; }
  .services { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 120px; }
  .cta-card { padding: 48px 24px; }
}
