/* ═══════════════════════════════════════════════════════
   LOCKRIDGE CYBERSECURITY — DESIGN SYSTEM
   Dark / Futuristic / Healthcare Focused
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  --bg:          #050508;
  --bg-2:        #0a0a10;
  --bg-3:        #0e0e18;
  --surface:     #111120;
  --surface-2:   #161628;
  --border:      rgba(99, 102, 241, 0.15);
  --border-glow: rgba(99, 102, 241, 0.35);

  --cyan:        #00d4ff;
  --cyan-dim:    rgba(0, 212, 255, 0.15);
  --cyan-glow:   rgba(0, 212, 255, 0.4);
  --indigo:      #6366f1;
  --indigo-dim:  rgba(99, 102, 241, 0.12);
  --red:         #ef4444;
  --red-dim:     rgba(239, 68, 68, 0.15);
  --green:       #22c55e;
  --amber:       #f59e0b;

  --text-1:      #f8fafc;
  --text-2:      #94a3b8;
  --text-3:      #475569;
  --text-accent: #00d4ff;

  --font-sans:  'Space Grotesk', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── CUSTOM CURSOR ────────────────────────────────────── */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan-glow);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring),
              border-color 0.3s;
}
.cursor-ring.hovering {
  width: 48px; height: 48px;
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
}

/* ── LAYOUT ───────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--cyan);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 56px;
}

.highlight-text {
  color: var(--cyan);
  position: relative;
}

/* ── REVEAL ANIMATIONS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVIGATION ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-bracket { color: var(--text-3); }
.logo-accent { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px !important;
  letter-spacing: 0.08em;
  transition: background 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  background: var(--cyan-dim);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-2);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 5, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-menu a { font-size: 2rem; font-weight: 600; color: var(--text-1); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#matrixCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.07;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  padding-top: 80px;
}

.breach-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 56px;
  padding: 8px 16px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 100px;
  background: rgba(239, 68, 68, 0.06);
  animation: fadeSlideDown 1s var(--ease-smooth) both;
}
.breach-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse-red 1.5s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 4px var(--red); opacity: 1; }
  50% { box-shadow: 0 0 14px var(--red), 0 0 24px rgba(239,68,68,0.4); opacity: 0.8; }
}

.breach-clock-wrapper {
  margin-bottom: 40px;
  animation: fadeSlideUp 1s var(--ease-smooth) 0.3s both;
}

.breach-clock-lead {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--text-2);
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.breach-clock-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.breach-clock-prefix,
.breach-clock-suffix {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--text-2);
  font-weight: 300;
}

.breach-counter-box {
  background: var(--surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  padding: 8px 24px;
  min-width: 100px;
  position: relative;
  overflow: hidden;
}
.breach-counter-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--indigo-dim), transparent);
  pointer-events: none;
}
#secCounter {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cyan);
  display: block;
  text-align: center;
  line-height: 1;
  text-shadow: 0 0 20px var(--cyan-glow);
  transition: all 0.1s;
}

.breach-clock-trail {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--text-2);
  font-weight: 300;
}

.hero-stat {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeSlideUp 1s var(--ease-smooth) 0.6s both;
  opacity: 0;
}
.hero-stat.visible { opacity: 1; }
.stat-count {
  font-family: var(--font-mono);
  font-size: 1.1em;
  color: var(--red);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(239,68,68,0.5);
}

/* ── Stats Strip (healthcare.html) ─────────────────────────────── */
.stats-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
  background: var(--bg-2);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 16px;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: background 0.25s ease;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0,212,255,0.15);
}
.stat-item:hover { background: rgba(0,212,255,0.03); }
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number.red   { color: var(--red);   text-shadow: 0 0 20px rgba(239,68,68,0.4); }
.stat-number.amber { color: var(--amber); text-shadow: 0 0 20px rgba(245,158,11,0.4); }
.stat-number.cyan  { color: var(--cyan);  text-shadow: 0 0 20px rgba(0,212,255,0.4); }
.stat-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 200px;
  margin-bottom: 12px;
}
.stat-source {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  padding: 3px 8px;
  border-radius: 4px;
}
@media (max-width: 680px) {
  .stats-strip {
    flex-direction: column;
  }
  .stat-item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    right: 10%;
    width: 80%;
    height: 1px;
  }
  .stat-item { padding: 28px 24px; }
}
/* ─────────────────────────────────────────────────────────────── */

.hero-question {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
  max-width: 600px;
  margin: 0 auto 48px;
  letter-spacing: -0.02em;
  animation: fadeSlideUp 1s var(--ease-smooth) 0.8s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  animation: fadeSlideUp 1s var(--ease-smooth) 1s both;
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,212,255,0.35), 0 0 0 1px rgba(0,212,255,0.5);
}
.cta-arrow {
  transition: transform 0.3s var(--ease-spring);
}
.hero-cta:hover .cta-arrow { transform: translateX(4px); }

.scroll-hint {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-3);
  animation: fadeIn 1s var(--ease-smooth) 1.5s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── STORY SECTION ────────────────────────────────────── */
.story-section {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.story-script {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 56px 0;
  max-width: 740px;
}

.script-line {
  position: relative;
  padding: 40px 40px 40px 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.script-line:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 40px rgba(99,102,241,0.08);
}
.script-line::before {
  content: '';
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan-glow);
}

.timeline-connector {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--border-glow), var(--border));
  margin-left: 27px;
}

.script-day {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 16px;
}

.script-line p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
}
.script-line p + p { margin-top: 12px; }

.script-sub {
  font-style: italic;
  color: var(--text-3) !important;
  font-size: 0.95rem !important;
}

.story-closer {
  margin-top: 64px;
  text-align: center;
}
.closer-line {
  width: 48px; height: 1px;
  background: var(--red);
  margin: 0 auto 32px;
  box-shadow: 0 0 12px rgba(239,68,68,0.5);
}
.story-closer p {
  font-size: 1.1rem;
  color: var(--text-2);
}
.closer-emphasis {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
  font-weight: 700;
  color: var(--text-1) !important;
  letter-spacing: -0.02em;
  margin-top: 8px;
  position: relative;
  display: inline-block;
}
.closer-emphasis::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(239,68,68,0.6);
}

/* ── CHECKLIST SECTION ────────────────────────────────── */
.checklist-section {
  padding: 120px 0;
  background: var(--bg);
}

.checklist-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.checklist-questions {
  position: relative;
  overflow: hidden;
}

.checklist-q {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.checklist-q.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
/* Slide out to the left on answer */
.checklist-q.slide-out {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
/* Starting position for incoming card — no transition */
.checklist-q.slide-in {
  opacity: 0;
  transform: translateX(50px);
  transition: none;
  pointer-events: none;
}

.checklist-q-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 16px;
}

.checklist-q-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.checklist-q-text {
  font-size: 1.15rem;
  color: var(--text-1);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}

.checklist-buttons {
  display: flex;
  gap: 12px;
}

.check-btn {
  flex: 1;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
  border: 1px solid;
  transition: all 0.25s;
  background: transparent;
  cursor: none;
}
.check-btn-yes {
  border-color: rgba(34, 197, 94, 0.3);
  color: var(--green);
}
.check-btn-yes:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(34,197,94,0.15);
}
.check-btn-no {
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--red);
}
.check-btn-no:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(239,68,68,0.15);
}

.checklist-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
}
.progress-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-spring);
}
.progress-dot.done {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}
.progress-dot.active {
  background: transparent;
  border-color: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 4px var(--cyan-glow); }
  50% { box-shadow: 0 0 12px var(--cyan-glow); }
}

.checklist-result {
  opacity: 0;
  display: none;
  text-align: center;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: opacity 0.5s ease;
}
.checklist-result.visible {
  display: block;
  animation: fadeInResult 0.5s ease forwards;
}
@keyframes fadeInResult {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.checklist-result::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.08), transparent 70%);
  pointer-events: none;
}
/* .visible handled by animation block above */
.result-line {
  width: 48px; height: 2px;
  background: var(--indigo);
  margin: 0 auto 32px;
  box-shadow: 0 0 12px rgba(99,102,241,0.5);
}
.result-text {
  font-size: 1.2rem;
  color: var(--text-2);
  margin-bottom: 8px;
}
.result-emphasis {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.result-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: background 0.3s, box-shadow 0.3s;
}
.result-cta:hover {
  background: var(--cyan-dim);
  box-shadow: 0 0 24px var(--cyan-glow);
}

/* ── WARM SECTION ─────────────────────────────────────── */
.warm-section {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.warm-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.06), transparent 70%);
  pointer-events: none;
}

.warm-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.warm-photo-frame {
  position: relative;
}
.warm-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.warm-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.05), transparent);
}
.photo-initials {
  font-size: 4rem;
  font-weight: 700;
  color: var(--indigo);
  opacity: 0.6;
  font-family: var(--font-mono);
}
.photo-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
}
.warm-photo-border {
  position: absolute;
  inset: -8px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
}
.warm-badge {
  position: absolute;
  bottom: -16px;
  left: 50%; transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cyan);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34,197,94,0.8);
  animation: pulse-red 2s ease-in-out infinite;
}

.warm-quote-mark {
  font-size: 5rem;
  line-height: 0.8;
  color: var(--indigo);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 24px;
}
.warm-message {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.warm-message-body {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.warm-divider {
  width: 48px; height: 1px;
  background: var(--border-glow);
  margin: 32px 0;
}
.warm-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.5;
  margin-bottom: 24px;
}
.warm-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sig-name {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.05em;
}
.sig-cert {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

/* ── SERVICES ─────────────────────────────────────────── */
.services-section {
  padding: 120px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-spring), box-shadow 0.4s;
  transition-delay: var(--card-delay, 0s);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--indigo-dim), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px var(--border-glow);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 40px; height: 40px;
  color: var(--cyan);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-trigger {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 12px;
  font-style: italic;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-section {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition-delay: var(--card-delay, 0s);
}
.testimonial-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 24px; right: 28px;
  font-size: 4rem;
  color: var(--indigo);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-type {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.testimonial-story {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-story em { color: var(--text-1); font-style: normal; font-weight: 500; }

.testimonial-result {
  display: flex;
}
.result-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-3);
  font-style: italic;
}

/* ── RESOURCES ────────────────────────────────────────── */
.resources-section {
  padding: 120px 0;
  background: var(--bg);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 0;
}

.resource-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s var(--ease-smooth), box-shadow 0.3s;
  transition-delay: var(--card-delay, 0s);
  cursor: none;
}
.resource-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.resource-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-dim);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
  width: fit-content;
}

.resource-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.4;
  margin-bottom: 12px;
}

.resource-card p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.resource-read {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.05em;
  transition: gap 0.3s;
}
.resource-card:hover .resource-read { letter-spacing: 0.12em; }

.resources-cta {
  margin-top: 40px;
  text-align: center;
}

.secondary-btn {
  display: inline-block;
  border: 1px solid var(--border-glow);
  color: var(--text-2);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.secondary-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
}

/* ── FINAL CTA ────────────────────────────────────────── */
.final-cta-section {
  padding: 120px 0;
  background: var(--bg-2);
}

.final-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.final-cta-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 48px;
}

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

.form-group { width: 100%; }

.form-group input,
.form-group select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--text-1);
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-3); }
.form-group select { color: var(--text-3); }
.form-group select:valid { color: var(--text-1); }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.form-submit {
  width: 100%;
  background: var(--cyan);
  color: #000;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 32px;
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  cursor: none;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,212,255,0.3);
}
.submit-arrow { transition: transform 0.3s var(--ease-spring); }
.form-submit:hover .submit-arrow { transform: translateX(4px); }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: #030305;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cert-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.92rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

.footer-contact h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer-contact p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-cta-btn {
  display: inline-block;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  transition: background 0.3s, box-shadow 0.3s;
  display: block;
  text-align: center;
}
.footer-cta-btn:hover {
  background: var(--cyan-dim);
  box-shadow: 0 0 16px var(--cyan-glow);
}
.footer-contact-info a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-legal {
  font-size: 0.85rem;
  color: var(--text-3);
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--text-2); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-3);
  opacity: 0.6;
  max-width: 540px;
  line-height: 1.6;
}

/* ── KEYFRAMES ────────────────────────────────────────── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── PAGE-SPECIFIC SHARED STYLES ──────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-glow), transparent);
}
.page-hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-hero-tag::before, .page-hero-tag::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--cyan);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.page-hero p {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.08), transparent 70%);
  top: -200px; left: -200px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%);
  bottom: -100px; right: -100px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .warm-grid { grid-template-columns: 1fr; gap: 48px; }
  .warm-visual { max-width: 320px; }
}

.section-pad { padding: 100px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding-top: 60px; }
  .breach-clock-line { flex-direction: column; gap: 8px; }

  .story-section,
  .checklist-section,
  .warm-section,
  .services-section,
  .testimonials-section,
  .resources-section,
  .final-cta-section { padding: 80px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}

@media (max-width: 480px) {
  .breach-clock-line { font-size: 1rem; }
  .services-grid { gap: 16px; }
  .service-card { padding: 28px 24px; }
}

/* ── SEO / New Sections ─────────────────────────────────────── */
.hero-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 20px;
  animation: fadeSlideDown 0.8s var(--ease-smooth) both;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
  animation: fadeSlideDown 0.9s var(--ease-smooth) both;
}

/* Healthcare Focus Strip */
.healthcare-focus-strip {
  padding: 100px 0;
  background: var(--bg);
}
@media (max-width: 768px) { .healthcare-focus-strip { padding: 64px 0; } }

/* Industries Section */
.industries-section {
  padding: 100px 0;
  background: var(--bg-2);
}
@media (max-width: 768px) { .industries-section { padding: 64px 0; } }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0 40px;
}
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .industries-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-2);
  font-weight: 500;
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s;
}
.industry-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: var(--text-1);
}
.industry-icon {
  width: 32px;
  height: 32px;
  color: var(--cyan);
  opacity: 0.8;
}

.local-area-note {
  text-align: center;
  padding: 24px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.local-area-note strong { color: var(--text-1); }
