:root {
  --bg-primary: #070A0F;
  --bg-secondary: #0A0F18;
  --bg-card: #0D1117;
  --bg-card-hover: #141A24;
  --border: #1C2530;
  --border-hover: rgba(34, 211, 238, 0.4);
  --cyan: #22D3EE;
  --cyan-glow: rgba(34, 211, 238, 0.25);
  --blue: #3B82F6;
  --blue-glow: rgba(59, 130, 246, 0.25);
  --emerald: #10B981;
  --text-primary: #F5F7FA;
  --text-secondary: #8B98A8;
  --text-muted: #526071;
  --gradient-main: linear-gradient(135deg, #3B82F6, #22D3EE);
  --gradient-hero: linear-gradient(160deg, #070A0F 0%, #0A0E17 50%, #0D1117 100%);
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 25px var(--cyan-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

a { color:inherit; text-decoration:none; }
ul { list-style:none; }
img { max-width:100%; display:block; }
button { font-family:inherit; cursor:pointer; border:none; outline:none; }

:focus-visible {
  outline:3px solid rgba(34,211,238,0.75);
  outline-offset:3px;
}

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

/* ─── Buttons ─── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; border-radius:50px; font-weight:600; font-size:0.92rem;
  transition: var(--transition); position:relative; overflow:hidden;
}
.btn-primary {
  background: var(--gradient-main); color:#070A0F;
  box-shadow: 0 4px 20px var(--cyan-glow);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow: 0 8px 30px var(--cyan-glow); }
.btn-secondary {
  background:transparent; color:var(--cyan);
  border:1.5px solid var(--border);
}
.btn-secondary:hover { background:rgba(34,211,238,0.08); border-color:var(--cyan); color:var(--text-primary); }

/* ─── Section Helpers ─── */
.section { padding:100px 0; position:relative; }
.section-alt { background:var(--bg-secondary); }
.section-label {
  font-family:var(--font-mono); font-size:0.8rem; text-transform:uppercase;
  letter-spacing:3px; color:var(--cyan); margin-bottom:12px; display:block;
}
.section-title {
  font-size:clamp(1.8rem,4vw,2.7rem); font-weight:800; line-height:1.2; margin-bottom:16px; color:var(--text-primary);
}
.section-subtitle { color:var(--text-secondary); font-size:1.05rem; max-width:620px; }
.section-header { text-align:center; margin-bottom:56px; }
.section-header .section-subtitle { margin:0 auto; }

.gradient-text { background:var(--gradient-main); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ─── Navbar ─── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:18px 0; transition: var(--transition);
}
.navbar.scrolled {
  background:rgba(7,10,15,0.92); backdrop-filter:blur(20px); border-bottom:1px solid var(--border);
  padding:14px 0;
}
.navbar .container { display:flex; align-items:center; justify-content:space-between; }
.nav-logo { font-size:1.4rem; font-weight:800; letter-spacing:-0.5px; display:flex; align-items:center; gap:10px; }
.nav-logo .logo-img { height:44px; width:auto; display:block; }
.footer-brand .nav-logo .logo-img { height:36px; }
.article-nav .nav-logo .logo-img { height:36px; }
.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { font-size:0.88rem; font-weight:500; color:var(--text-secondary); transition:var(--transition); position:relative; }
.nav-links a:hover { color:var(--text-primary); }
.nav-links a.active { color:var(--cyan); }
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background:var(--gradient-main); transition:var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta .btn { padding:10px 22px; font-size:0.85rem; }
.mobile-toggle { display:none; flex-direction:column; gap:5px; background:none; z-index:1001; }
.mobile-toggle span { width:24px; height:2px; background:var(--text-primary); transition:var(--transition); transform-origin:center; }
.mobile-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity:0; }
.mobile-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  min-height:92vh; display:flex; align-items:center; padding-top:100px; padding-bottom:60px;
  background: var(--gradient-hero); position:relative; overflow:hidden;
}
.hero .container { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:2; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px; padding:6px 16px 6px 10px;
  background:rgba(34,211,238,0.06); border:1px solid var(--border); border-radius:50px;
  font-size:0.8rem; color:var(--cyan); margin-bottom:24px; font-family:var(--font-mono);
}
.hero-badge .dot { width:8px; height:8px; border-radius:50%; background:var(--cyan); animation:pulse-dot 2s infinite; }
.hero h1 { font-size:clamp(2.4rem,4.5vw,3.6rem); font-weight:800; line-height:1.15; margin-bottom:24px; letter-spacing:-0.5px; }
.hero h1 .line2 { color:var(--text-secondary); font-weight:700; }
.hero p { color:var(--text-secondary); font-size:1.1rem; max-width:520px; margin-bottom:36px; line-height:1.8; }
.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; }
.hero-visual { position:relative; display:flex; align-items:center; justify-content:center; }
#heroCanvas { width:100%; max-width:520px; aspect-ratio:1; }

/* ─── Omics Domains Infinite Band ─── */
.trusted {
  padding:24px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  background:rgba(13,17,23,0.6); overflow:hidden; position:relative;
}
.trusted-marquee-wrapper {
  overflow:hidden; width:100%; position:relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.trusted-track {
  display:flex; width:max-content; align-items:center;
  animation: marquee-infinite 35s linear infinite;
}
.trusted-track:hover { animation-play-state: paused; }
.trusted-group {
  display:flex; align-items:center; gap:32px; padding-right:32px; shrink:0;
}
.trusted-item {
  font-family:var(--font-mono); font-size:0.82rem; letter-spacing:1.5px; color:var(--text-secondary);
  text-transform:uppercase; transition:var(--transition); white-space:nowrap;
}
.trusted-item:hover { color:var(--cyan); }
.trusted-sep { color:var(--border); font-size:1rem; }

@keyframes marquee-infinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Solutions (Omics Pipelines) ─── */
.solutions-tabs {
  display:flex; justify-content:center; gap:10px; margin-bottom:44px; flex-wrap:wrap;
}
.tab-btn {
  padding:10px 24px; border-radius:50px; font-size:0.85rem; font-weight:600;
  background:var(--bg-card); color:var(--text-secondary); border:1px solid var(--border);
  transition:var(--transition);
}
.tab-btn:hover { border-color:var(--border-hover); color:var(--text-primary); }
.tab-btn.active { background:var(--gradient-main); color:#070A0F; border-color:transparent; box-shadow:0 4px 20px var(--cyan-glow); }
.tab-content { display:none; animation:fadeUp 0.4s ease; }
.tab-content.active { display:block; }
.solution-card {
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:44px; position:relative; overflow:hidden;
}
.solution-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:var(--gradient-main);
}
.solution-info h3 { font-size:1.6rem; font-weight:700; margin-bottom:12px; }
.solution-info p { color:var(--text-secondary); margin-bottom:24px; line-height:1.75; }
.solution-features { display:flex; flex-direction:column; gap:10px; }
.solution-feature {
  display:flex; align-items:center; gap:12px; padding:10px 16px;
  background:rgba(34,211,238,0.03); border:1px solid rgba(28,37,48,0.6); border-radius:8px; font-size:0.88rem; color:var(--text-secondary);
}
.solution-feature .check { color:var(--cyan); font-weight:700; }
.solution-visual {
  background:var(--bg-secondary); border-radius:var(--radius); padding:32px;
  border:1px solid var(--border); display:flex; flex-direction:column; gap:16px; align-items:center;
}
.solution-visual .viz-label { font-family:var(--font-mono); font-size:0.75rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:2px; }
.solution-metrics { display:grid; grid-template-columns:1fr 1fr; gap:16px; width:100%; }
.metric-box {
  background:var(--bg-card); border:1px solid var(--border); border-radius:8px;
  padding:16px; text-align:center;
}
.metric-box .metric-val { font-size:1.5rem; font-weight:800; color:var(--cyan); }
.metric-box .metric-label { font-size:0.75rem; color:var(--text-secondary); margin-top:4px; }

/* ─── 2. WHAT WE ACTUALLY DO ─── */
.what-do-grid {
  display:grid; grid-template-columns:repeat(2, 1fr); gap:24px;
}
.what-do-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:36px; transition:var(--transition); position:relative; display:flex; flex-direction:column; gap:14px;
}
.what-do-card:hover {
  border-color:var(--border-hover); transform:translateY(-4px); box-shadow:var(--shadow-card);
}
.what-do-icon {
  width:44px; height:44px; border-radius:10px; background:rgba(34,211,238,0.08);
  border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  color:var(--cyan); font-size:1.2rem;
}
.what-do-card h3 { font-size:1.15rem; font-weight:700; color:var(--text-primary); letter-spacing:-0.2px; }
.what-do-card p { color:var(--text-secondary); font-size:0.92rem; line-height:1.7; }

/* ─── 1. HOW WE WORK (Timeline) ─── */
.how-timeline-desktop {
  display:grid; grid-template-columns:repeat(5, 1fr); gap:20px; position:relative; margin-top:20px;
}
.how-timeline-desktop::before {
  content:''; position:absolute; top:28px; left:40px; right:40px; height:2px;
  background:var(--border); z-index:1;
}
.how-step {
  position:relative; z-index:2; display:flex; flex-direction:column; gap:16px;
}
.how-step-num {
  width:56px; height:56px; border-radius:50%; background:var(--bg-card);
  border:2px solid var(--border); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:700; font-size:0.85rem; color:var(--cyan);
  transition:var(--transition); margin-bottom:4px;
}
.how-step:hover .how-step-num {
  border-color:var(--cyan); background:rgba(34,211,238,0.1); box-shadow:0 0 20px var(--cyan-glow);
}
.how-step-title {
  font-family:var(--font-mono); font-size:0.85rem; font-weight:700; color:var(--cyan);
  letter-spacing:1px; text-transform:uppercase;
}
.how-step h4 { font-size:1.05rem; font-weight:700; color:var(--text-primary); }
.how-step p { font-size:0.86rem; color:var(--text-secondary); line-height:1.65; }

/* Mobile timeline override handled in responsive section below */

/* ─── 3. WHAT YOU GET (Deliverables) ─── */
.deliverables-disclaimer {
  background:rgba(59,130,246,0.06); border:1px solid var(--border); border-radius:var(--radius);
  padding:16px 24px; text-align:center; max-width:720px; margin:0 auto 40px;
  color:var(--text-secondary); font-size:0.9rem;
}
.deliverables-grid {
  display:grid; grid-template-columns:repeat(4, 1fr); gap:16px;
}
.deliverable-item {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius);
  padding:20px 24px; display:flex; align-items:center; gap:14px; transition:var(--transition);
}
.deliverable-item:hover { border-color:var(--border-hover); background:var(--bg-card-hover); }
.deliverable-icon { color:var(--cyan); font-weight:700; font-size:1rem; min-width:20px; }
.deliverable-text { font-size:0.9rem; font-weight:600; color:var(--text-primary); }

/* ─── 4. WHO WE WORK WITH (Infinite Slider) ─── */
.who-slider-wrapper {
  overflow:hidden; width:100%; position:relative; padding:12px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.who-slider-track {
  display:flex; width:max-content; align-items:stretch;
  animation: infinite-slide-left 28s linear infinite;
}
.who-slider-track:hover, .who-slider-track:focus-within {
  animation-play-state: paused;
}
.who-slider-group {
  display:flex; align-items:stretch; gap:18px; padding-right:18px; flex-shrink:0;
}
.who-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:28px 24px; text-align:center; transition:var(--transition); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  width:240px; flex-shrink:0;
}
.who-card:hover { border-color:var(--border-hover); transform:translateY(-4px); box-shadow:var(--shadow-card); }
.who-icon { font-size:1.8rem; color:var(--cyan); }
.who-card h4 { font-size:0.92rem; font-weight:700; color:var(--text-primary); line-height:1.3; }

@keyframes infinite-slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── 5, 6, 7. INSIGHTS & FEATURED INSIGHT ─── */
.featured-insight {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:48px; margin-bottom:44px; position:relative; overflow:hidden;
  display:grid; grid-template-columns:1.2fr 0.8fr; gap:40px; align-items:center;
  transition:var(--transition);
}
.featured-insight:hover { border-color:var(--border-hover); box-shadow:var(--shadow-card); }
.featured-badge {
  display:inline-block; font-family:var(--font-mono); font-size:0.75rem; color:var(--cyan);
  text-transform:uppercase; letter-spacing:2px; background:rgba(34,211,238,0.1);
  padding:4px 12px; border-radius:50px; border:1px solid rgba(34,211,238,0.2); margin-bottom:16px;
}
.featured-content h3 { font-size:1.8rem; font-weight:800; margin-bottom:14px; line-height:1.3; }
.featured-content p { color:var(--text-secondary); font-size:1rem; margin-bottom:28px; line-height:1.75; }
.featured-visual {
  height:240px; background:var(--bg-secondary); border-radius:var(--radius); border:1px solid var(--border);
  position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden;
}

.insights-grid {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
.insight-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:28px; display:flex; flex-direction:column; justify-content:space-between;
  transition:var(--transition); position:relative; height:100%;
}
.insight-card:hover { border-color:var(--border-hover); transform:translateY(-5px); box-shadow:var(--shadow-card); }
.insight-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }
.insight-cat {
  font-family:var(--font-mono); font-size:0.72rem; color:var(--cyan);
  text-transform:uppercase; letter-spacing:1px; background:rgba(34,211,238,0.08);
  padding:4px 10px; border-radius:4px;
}
.insight-time { font-family:var(--font-mono); font-size:0.75rem; color:var(--text-muted); }
.insight-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:12px; line-height:1.4; color:var(--text-primary); }
.insight-card p { color:var(--text-secondary); font-size:0.88rem; line-height:1.65; margin-bottom:24px; flex-grow:1; }
.insight-link {
  color:var(--cyan); font-weight:600; font-size:0.88rem; display:inline-flex; align-items:center; gap:6px;
  transition:var(--transition); border:none; background:none; padding:0;
}
.insight-link:hover { color:var(--text-primary); transform:translateX(4px); }

/* ─── 8. FAQ SECTION ─── */
.faq-list {
  max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:16px;
}
.faq-item {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden; transition:var(--transition);
}
.faq-item:hover { border-color:rgba(34,211,238,0.3); }
.faq-question {
  width:100%; text-align:left; padding:22px 28px; background:none; border:none;
  color:var(--text-primary); font-size:1.05rem; font-weight:600; display:flex;
  justify-content:space-between; align-items:center; cursor:pointer; gap:16px;
}
.faq-icon {
  font-size:1.2rem; color:var(--cyan); transition:transform 0.3s ease;
}
.faq-item.active .faq-icon { transform:rotate(45deg); }
.faq-answer {
  --faq-open-padding-bottom:22px;
  max-height:0; overflow:hidden; transition:max-height 0.35s ease, padding 0.35s ease;
  padding:0 28px; color:var(--text-secondary); font-size:0.92rem; line-height:1.75;
}
.faq-item.active .faq-answer {
  padding:0 28px 22px 28px; border-top:1px solid rgba(28,37,48,0.5);
}

/* ─── 9. FINAL CTA ─── */
.cta-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0A0F1A 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  text-align:center; padding:120px 0;
}
.cta-section h2 { font-size:clamp(2rem,4vw,3.2rem); font-weight:800; margin-bottom:16px; }
.cta-section p { color:var(--text-secondary); font-size:1.15rem; max-width:600px; margin:0 auto 36px; line-height:1.8; }
.cta-buttons { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* ─── Footer ─── */
.footer { padding:70px 0 28px; border-top:1px solid var(--border); background:#05070B; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-brand p { color:var(--text-secondary); font-size:0.88rem; margin-top:14px; line-height:1.7; max-width:320px; }
.footer-social {
  display:inline-flex; align-items:center; gap:9px; margin-top:18px;
  color:var(--text-secondary); font-size:0.86rem; font-weight:600; transition:var(--transition);
}
.footer-social:hover { color:var(--cyan); transform:translateY(-1px); }
.linkedin-mark {
  width:24px; height:24px; border-radius:5px; display:inline-flex; align-items:center; justify-content:center;
  background:var(--blue); color:#fff; font-family:Arial,sans-serif; font-size:0.8rem; font-weight:700;
}
.footer h4 { font-size:0.82rem; font-weight:700; margin-bottom:18px; text-transform:uppercase; letter-spacing:1px; color:var(--cyan); font-family:var(--font-mono); }
.footer ul li { margin-bottom:12px; }
.footer ul a { color:var(--text-secondary); font-size:0.88rem; transition:var(--transition); }
.footer ul a:hover { color:var(--cyan); }
.footer-bottom a { transition:var(--transition); }
.footer-bottom a:hover { color:var(--cyan); }
.footer-bottom {
  border-top:1px solid var(--border); padding-top:28px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:0.82rem; color:var(--text-muted);
}

/* ─── Formspree States ─── */
.fs-success-msg {
  text-align:center; padding:32px 16px;
}
[data-fs-success]:not([data-fs-active]) { display:none !important; }
.honeypot-field { display:none !important; }
.fs-success-icon {
  width:52px; height:52px; border-radius:50%; background:rgba(16,185,129,0.15);
  border:2px solid var(--emerald); color:var(--emerald); font-size:1.5rem;
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
}
.fs-success-msg p { color:var(--text-secondary); margin-bottom:20px; }
.fs-form-error {
  color:#f87171; font-size:0.85rem; margin-bottom:12px; min-height:0;
}
.fs-field-error {
  display:block; color:#f87171; font-size:0.78rem; margin-top:4px; min-height:14px;
}
[aria-invalid="true"] { border-color:#f87171 !important; }

/* ─── Modal (Contact / Quote) ─── */
.modal-overlay {
  position:fixed; inset:0; background:rgba(4,6,10,0.85); backdrop-filter:blur(10px);
  z-index:2000; display:none; align-items:flex-start; justify-content:center; padding:24px;
  overflow-y:auto; overscroll-behavior:contain;
}
.modal-overlay.open { display:flex; }
.modal {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  max-width:520px; width:100%; max-height:calc(100dvh - 48px); overflow-y:auto;
  padding:40px; position:relative; animation:fadeUp 0.3s ease; margin:auto;
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
  scrollbar-gutter:stable;
}
.modal-close {
  position:absolute; top:20px; right:20px; background:none;
  color:var(--text-muted); font-size:1.5rem; transition:var(--transition);
}
.modal-close:hover { color:var(--text-primary); }
.modal h2 { font-size:1.4rem; font-weight:700; margin-bottom:6px; }
.modal .modal-sub { color:var(--text-secondary); font-size:0.88rem; margin-bottom:24px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:0.8rem; font-weight:600; margin-bottom:6px; color:var(--text-secondary); text-transform:uppercase; letter-spacing:0.5px; font-family:var(--font-mono); }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:11px 14px; border-radius:8px; border:1px solid var(--border);
  background:var(--bg-secondary); color:var(--text-primary); font-size:0.9rem;
  font-family:var(--font-body); outline:none; transition:var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--cyan); box-shadow:0 0 10px rgba(34,211,238,0.15); }
.form-group textarea { resize:vertical; min-height:90px; }
.modal .btn { width:100%; justify-content:center; margin-top:8px; }

/* ─── Article Reader Modal / Page Overlay ─── */
.article-overlay {
  position:fixed; inset:0; background:var(--bg-primary); z-index:2500;
  overflow-y:auto; display:none; opacity:0; transition:opacity 0.3s ease;
}
.article-overlay.open { display:block; opacity:1; }
.article-nav {
  position:sticky; top:0; background:rgba(7,10,15,0.92); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border); z-index:100; padding:16px 0;
}
.article-nav .container { display:flex; justify-content:space-between; align-items:center; }
.back-btn {
  background:none; border:1px solid var(--border); color:var(--text-secondary);
  padding:8px 18px; border-radius:50px; font-size:0.85rem; font-weight:600;
  display:inline-flex; align-items:center; gap:8px; transition:var(--transition);
}
.back-btn:hover { border-color:var(--cyan); color:var(--cyan); }

.article-container {
  max-width:800px; margin:40px auto 80px; padding:0 24px;
}
.article-header { margin-bottom:36px; }
.article-meta-top { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.article-category {
  font-family:var(--font-mono); font-size:0.8rem; color:var(--cyan);
  text-transform:uppercase; letter-spacing:1px; background:rgba(34,211,238,0.1);
  padding:4px 12px; border-radius:50px; border:1px solid rgba(34,211,238,0.2);
}
.article-read-time { font-family:var(--font-mono); font-size:0.8rem; color:var(--text-muted); }
.article-title { font-size:clamp(2rem,3.5vw,2.8rem); font-weight:800; line-height:1.2; margin-bottom:20px; color:var(--text-primary); }
.article-intro { font-size:1.15rem; color:var(--text-secondary); line-height:1.8; border-left:3px solid var(--cyan); padding-left:20px; margin-bottom:36px; }

.article-body { color:var(--text-secondary); font-size:1.02rem; line-height:1.85; }
.article-body h2 { font-size:1.5rem; font-weight:700; color:var(--text-primary); margin:36px 0 16px; }
.article-body h3 { font-size:1.25rem; font-weight:600; color:var(--text-primary); margin:28px 0 12px; }
.article-body p { margin-bottom:20px; }
.article-body ul { margin-bottom:24px; padding-left:20px; list-style:disc; }
.article-body li { margin-bottom:10px; }

.key-takeaways {
  background:var(--bg-card); border:1px solid var(--border); border-left:4px solid var(--cyan);
  border-radius:var(--radius); padding:28px; margin:40px 0;
}
.key-takeaways h3 { font-size:1.15rem; font-weight:700; color:var(--text-primary); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.key-takeaways ul { list-style:none; padding-left:0; margin-bottom:0; }
.key-takeaways li { display:flex; align-items:flex-start; gap:12px; margin-bottom:12px; font-size:0.95rem; color:var(--text-secondary); }
.key-takeaways li:last-child { margin-bottom:0; }
.key-takeaways .bullet-icon { color:var(--cyan); font-weight:700; min-width:16px; }

.related-insights {
  margin-top:56px; border-top:1px solid var(--border); padding-top:40px;
}
.related-insights h3 { font-size:1.3rem; font-weight:700; margin-bottom:24px; }
.related-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.related-card { padding:20px; }
.related-card-title { font-size:0.95rem; font-weight:700; margin-bottom:8px; }

.article-cta {
  background:linear-gradient(135deg, rgba(59,130,246,0.1), rgba(34,211,238,0.1));
  border:1px solid var(--border); border-radius:var(--radius-lg); padding:36px; text-align:center;
  margin-top:56px;
}
.article-cta h4 { font-size:1.4rem; font-weight:700; margin-bottom:12px; }
.article-cta p { color:var(--text-secondary); margin-bottom:20px; font-size:0.95rem; }

/* ─── Scroll Top ─── */
.scroll-top {
  position:fixed; bottom:24px; right:24px; width:44px; height:44px; border-radius:50%;
  background:var(--bg-card); border:1px solid var(--border); color:var(--cyan);
  font-size:1.2rem; display:flex; align-items:center; justify-content:center;
  z-index:900; opacity:0; transform:translateY(20px); pointer-events:none;
  transition:var(--transition); box-shadow:var(--shadow-card);
}
.scroll-top.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.scroll-top:hover { background:var(--bg-card-hover); border-color:var(--cyan); transform:translateY(-4px); box-shadow:var(--shadow-glow); }

/* ─── Animations ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

.fade-in { opacity:0; transform:translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ─── Legal Pages ─── */
.legal-page { min-height:100vh; background:var(--gradient-hero); }
.legal-nav {
  border-bottom:1px solid var(--border); background:rgba(7,10,15,0.92);
  backdrop-filter:blur(20px); padding:16px 0;
}
.legal-nav .container { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.legal-nav .logo-img { height:36px; width:auto; }
.legal-container { max-width:800px; margin:0 auto; padding:72px 24px 96px; }
.legal-container h1 { font-size:clamp(2.2rem,5vw,3.2rem); line-height:1.15; margin-bottom:10px; }
.legal-updated { color:var(--text-muted); font-family:var(--font-mono); font-size:0.8rem; margin-bottom:36px; }
.legal-container h2 { font-size:1.35rem; margin:34px 0 10px; }
.legal-container p { color:var(--text-secondary); margin-bottom:18px; }
.legal-container a { color:var(--cyan); text-decoration:underline; text-underline-offset:3px; }

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

.page-hidden .trusted-track,
.page-hidden .who-slider-track { animation-play-state:paused; }

/* ─── Responsive Optimizations ─── */
@media(max-width:1024px) {
  .hero .container { grid-template-columns:1fr; text-align:center; }
  .hero p { margin:0 auto 36px; }
  .hero-buttons { justify-content:center; }
  .hero-visual { margin-top:20px; }
  .solution-card { grid-template-columns:1fr; padding:32px; }
  .deliverables-grid { grid-template-columns:repeat(3, 1fr); }
  .insights-grid { grid-template-columns:repeat(2, 1fr); }
  .featured-insight { grid-template-columns:1fr; padding:36px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media(max-width:899px) {
  /* Timeline converts to vertical layout on mobile/tablet */
  .how-timeline-desktop { grid-template-columns:1fr; gap:24px; padding-left:20px; }
  .how-timeline-desktop::before {
    top:20px; bottom:20px; left:44px; width:2px; height:auto; right:auto;
  }
  .how-step {
    display:grid; grid-template-columns:48px minmax(0, 1fr); align-items:start;
    column-gap:16px; row-gap:6px;
  }
  .how-step-num {
    grid-column:1; grid-row:1 / span 3;
    width:48px; height:48px; min-width:48px; font-size:0.8rem; margin-bottom:0;
  }
  .how-step-title, .how-step h4, .how-step p { grid-column:2; }
}

@media(max-width:900px) {
  .navbar .nav-logo .logo-img { height:40px; }

  .nav-links {
    display:none; position:fixed; top:0; left:0; right:0; bottom:0;
    background:rgba(7,10,15,0.98); backdrop-filter:blur(24px);
    flex-direction:column; justify-content:center; align-items:center; gap:32px;
    z-index:1000; padding:40px; font-size:1.1rem;
  }
  .nav-links.open { display:flex; }
  .nav-links a { font-size:1.1rem; padding:8px 16px; }
  .nav-cta { display:none; }
  .mobile-toggle { display:flex; padding:8px; }
}

@media(max-width:768px) {
  .btn { min-height:48px; padding:12px 24px; font-size:0.9rem; }

  .hero { padding-top:110px; padding-bottom:40px; min-height:auto; }
  .hero h1 { font-size:2.2rem; }
  .hero p { font-size:0.98rem; }
  #heroCanvas { max-width:320px; }

  .solutions-tabs {
    justify-content:flex-start; flex-wrap:nowrap; overflow-x:auto;
    padding-bottom:12px; margin-bottom:32px; -webkit-overflow-scrolling:touch;
    scrollbar-width:none; scroll-snap-type:x mandatory;
  }
  .solutions-tabs::-webkit-scrollbar { display:none; }
  .tab-btn { flex-shrink:0; scroll-snap-align:start; padding:10px 20px; }

  .solution-card { padding:24px 20px; gap:24px; }
  .solution-info h3 { font-size:1.35rem; }
  .solution-metrics { grid-template-columns:1fr 1fr; gap:10px; }
  .metric-box { padding:12px 8px; }
  .metric-box .metric-val { font-size:1.25rem; }

  .what-do-grid { grid-template-columns:1fr; }
  .what-do-card { padding:24px 20px; }

  .deliverables-grid { grid-template-columns:repeat(2, 1fr); gap:12px; }
  .deliverable-item { padding:16px; gap:10px; }
  .deliverable-text { font-size:0.85rem; }

  .insights-grid { grid-template-columns:1fr; gap:16px; }
  .insight-card { padding:22px; }

  .featured-insight { padding:24px 20px; gap:20px; }
  .featured-content h3 { font-size:1.4rem; }
  .featured-visual { height:180px; }

  .faq-question { padding:18px 20px; font-size:0.95rem; }
  .faq-answer { --faq-open-padding-bottom:18px; padding:0 20px; font-size:0.88rem; }
  .faq-item.active .faq-answer { padding:0 20px 18px 20px; }

  .section { padding:56px 0; }
  .section-header { margin-bottom:36px; }
  .section-title { font-size:1.8rem; }
  .section-subtitle { font-size:0.95rem; }

  .cta-section { padding:80px 0; }
  .cta-section h2 { font-size:1.8rem; }

  .footer { padding:50px 0 24px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; gap:8px; }

  .modal-overlay { padding:12px; }
  .modal { max-height:calc(100dvh - 24px); padding:28px 20px; }
  .modal h2 { font-size:1.25rem; }

  .article-container { padding:0 16px; margin:24px auto 60px; }
  .article-title { font-size:1.8rem; }
  .article-intro { font-size:1rem; padding-left:14px; }
  .key-takeaways { padding:20px; }
  .related-grid { grid-template-columns:1fr; }
  .article-cta { padding:24px 20px; }

  .legal-container { padding:48px 20px 72px; }
}

@media(max-width:480px) {
  .hero h1 { font-size:1.85rem; }
  .deliverables-grid { grid-template-columns:1fr; }
  .hero-buttons { flex-direction:column; width:100%; }
  .hero-buttons .btn { width:100%; }
  .cta-buttons { flex-direction:column; width:100%; }
  .cta-buttons .btn { width:100%; }
}
