/* ────────────────────────────────────────────────
   SYED MAVAID ABBAS — SHARED STYLESHEET
   Clean white · Cobalt blue · Playfair + Inter
──────────────────────────────────────────────── */

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

:root {
  --black:       #0a0a0a;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-800:    #1f2937;
  --accent:      #0057ff;
  --accent-dark: #0040cc;
  --accent-light:#e8f0ff;
  --green:       #059669;
  --sans:        'Inter', sans-serif;
  --serif:       'Playfair Display', serif;
  --nav-h:       72px;
}

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

body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.1; letter-spacing: -0.5px; }
h4, h5, h6 { font-family: var(--sans); }

/* ── NAV LOGO ── */
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark { display: block; flex-shrink: 0; }
.nav-wordmark {
  font-family: var(--sans); font-size: 15px; font-weight: 800;
  letter-spacing: -.4px; color: var(--black); white-space: nowrap;
}
.nav-wordmark-last { font-weight: 400; color: var(--gray-400); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, box-shadow .3s;
}
.site-nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 20px rgba(0,0,0,.07);
}
.nav-logo {
  font-family: var(--sans); font-size: 16px; font-weight: 800;
  letter-spacing: -.3px; color: var(--black);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  padding: 4px 0; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--black); border-color: var(--accent);
}
.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 7px !important;
  border-bottom: none !important; font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent) !important; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: .3s; }

/* ── PAGE HEADER ── */
.page-header {
  padding: calc(var(--nav-h) + 64px) 64px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.page-header .container { max-width: 1200px; margin: 0 auto; }
.page-header .label {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.page-header h1 {
  font-size: clamp(40px, 5vw, 64px); font-weight: 800;
  color: var(--black); max-width: 720px; margin-bottom: 20px;
}
.page-header h1 em { font-style: italic; color: var(--accent); }
.page-header p {
  font-size: 18px; line-height: 1.75; color: var(--gray-600); max-width: 600px;
}

/* ── CONTAINER / SECTION ── */
.container { max-width: 1200px; margin: 0 auto; }
.section { padding: 100px 64px; }
.section-sm { padding: 72px 64px; }

/* ── LABELS & TITLES ── */
.label {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 800; color: var(--black); line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub {
  font-size: 17px; line-height: 1.75; color: var(--gray-600);
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 700; transition: all .22s;
  cursor: pointer; border: none;
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,87,255,.28); }
.btn-outline { border: 2px solid var(--gray-200); color: var(--black); background: transparent; }
.btn-outline:hover { border-color: var(--black); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,87,255,.3); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── TAGS ── */
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-size: 11px; font-weight: 700; letter-spacing: .4px;
  background: var(--gray-100); color: var(--gray-600);
  padding: 5px 12px; border-radius: 100px;
}
.tag-accent { background: var(--accent-light); color: var(--accent); }
.tag-dark { background: var(--black); color: var(--white); }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(0,87,255,.09);
  transform: translateY(-4px);
}
.card-body { padding: 32px; }

/* ── ICON BOX ── */
.icon-box {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; flex-shrink: 0;
}

/* ── PILL BADGES ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 6px 14px;
  border-radius: 100px; background: var(--gray-100); color: var(--gray-700);
}
.pill-accent { background: var(--accent); color: var(--white); }
.pill-green { background: #d1fae5; color: #065f46; }
.pill-outline { background: transparent; border: 1.5px solid var(--gray-200); color: var(--gray-700); }

/* ── STAT ── */
.stat-num {
  font-family: var(--serif); font-size: 48px; font-weight: 800;
  line-height: 1; color: var(--black); margin-bottom: 6px;
}
.stat-num span { color: var(--accent); }
.stat-lbl { font-size: 13px; font-weight: 500; color: var(--gray-600); }

/* ── MARQUEE ── */
.marquee-wrap {
  padding: 24px 0; overflow: hidden;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.marquee-track {
  display: flex; gap: 52px; align-items: center;
  width: max-content; animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray-400); white-space: nowrap;
}
@keyframes marquee-scroll {
  0%  { transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black); color: rgba(255,255,255,.5);
  padding: 60px 64px 32px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .brand-name {
  font-size: 18px; font-weight: 800; color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.4);
  max-width: 260px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; font-size: 16px; color: rgba(255,255,255,.6);
  transition: all .2s;
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-col h5 {
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.25);
}
.footer-bottom strong { color: rgba(255,255,255,.4); }

/* ── FADE ANIMATIONS ── */
.fade { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade.in { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-24px); transition: opacity .6s ease, transform .6s ease; }
.fade-left.in { opacity: 1; transform: translateX(0); }

/* ── ACTIVE NAV ── */
.nav-links a[aria-current="page"] { color: var(--black); border-bottom-color: var(--accent); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--gray-200); margin: 0; }

/* ════════════════════════════════════════════════
   PREMIUM LAYER — animations, effects, new sections
════════════════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR ── */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--accent) 0%, #7c3aed 60%, var(--accent) 100%);
  background-size: 200%; animation: bar-shimmer 3s linear infinite;
  width: 0; transition: width .12s linear;
  box-shadow: 0 0 12px rgba(0,87,255,.5);
}
@keyframes bar-shimmer { 0%{background-position:0%} 100%{background-position:200%} }

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 9990;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,.06) 0%, transparent 65%);
  transform: translate(-50%,-50%);
  transition: left .18s ease, top .18s ease;
  will-change: left, top;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ── HERO ENTRANCE ── */
.hero-anim {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.hero-anim--in { opacity: 1; transform: translateY(0); }
.hero-anim-photo {
  opacity: 0; transform: translateX(32px) scale(.97);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.hero-anim-photo--in { opacity: 1; transform: translateX(0) scale(1); }

/* ── STAGGER ITEMS ── */
.stagger-item {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.stagger-item.in { opacity: 1; transform: translateY(0); }

/* ── SHIMMER GRADIENT TEXT ── */
.shimmer-text {
  background: linear-gradient(90deg, var(--accent) 0%, #7c3aed 40%, var(--accent) 80%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 4s linear infinite;
}
@keyframes text-shimmer { 0%{background-position:0%} 100%{background-position:200%} }

/* ── GLOW CARD (spotlight follows cursor) ── */
.glow-card { position: relative; overflow: hidden; }
.glow-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at var(--mx,50%) var(--my,50%),
    rgba(0,87,255,.1) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s; border-radius: inherit;
}
.glow-card:hover::before { opacity: 1; }
.glow-card > * { position: relative; z-index: 1; }

/* ── 3D TILT CARD ── */
.tilt-card { will-change: transform; transition: box-shadow .3s; }

/* ── AURORA HERO BG ── */
.hero-aurora {
  position: absolute; top: 40%; right: -80px;
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,87,255,.07) 0%, rgba(124,58,237,.05) 40%, transparent 70%);
  filter: blur(48px);
  transform: translate(-50%,-50%);
  transition: transform .6s ease;
  animation: aurora-float 8s ease-in-out infinite;
}
@keyframes aurora-float {
  0%,100%{ transform: translate(-50%,-50%) scale(1); }
  50%    { transform: translate(-50%,-50%) scale(1.08); }
}

/* ── HOW I WORK — PROCESS ── */
.process-section { background: var(--gray-50); }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--gray-200);
  border-radius: 18px; overflow: hidden; margin-top: 52px;
}
.process-step {
  background: var(--white); padding: 44px 32px;
  transition: background .25s, transform .25s;
  cursor: default;
}
.process-step:hover { background: #fafbff; }
.process-num {
  font-family: var(--serif); font-size: 72px; font-weight: 800;
  color: var(--gray-100); line-height: 1; margin-bottom: 20px;
  transition: color .3s;
}
.process-step:hover .process-num { color: var(--accent-light); }
.process-icon { font-size: 28px; margin-bottom: 14px; }
.process-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.process-desc { font-size: 13px; line-height: 1.7; color: var(--gray-500); }

/* ── TOOLS GRID ── */
.tools-section { background: var(--white); }
.tools-cat-section { margin-bottom: 36px; }
.tools-cat-section:last-child { margin-bottom: 0; }
.tools-cat-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.tools-cat-label {
  font-size: 10px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gray-400); white-space: nowrap;
}
.tools-cat-header::after {
  content: ''; flex: 1; height: 1px; background: var(--gray-200);
}
.tools-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.tool-tile {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  transition: all .22s; cursor: default; min-width: 0;
}
.tool-tile:hover {
  background: var(--white); border-color: var(--accent);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,87,255,.09);
}
.tool-tile-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.tool-tile-name { font-size: 13px; font-weight: 600; color: var(--gray-700); white-space: nowrap; }
/* AI tools — subtle purple glow border */
.tool-tile--ai {
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, #7c3aed33, #0057ff33) border-box;
  border: 1px solid transparent;
}
.tool-tile--ai:hover {
  background: linear-gradient(#faf8ff, #faf8ff) padding-box,
              linear-gradient(135deg, #7c3aed, #0057ff) border-box;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(124,58,237,.12);
}
.tool-tile--ai .tool-tile-name { color: var(--gray-700); }
.ai-badge {
  font-size: 9px; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase; padding: 2px 6px; border-radius: 4px;
  background: linear-gradient(135deg, #7c3aed, #0057ff);
  color: white; margin-left: auto; flex-shrink: 0;
}

/* ── MARQUEE dual-row ── */
.marquee-wrap-v2 {
  background: var(--black); overflow: hidden;
  padding: 20px 0; display: flex; flex-direction: column; gap: 0;
}
.marquee-row { display: flex; overflow: hidden; }
.marquee-row + .marquee-row { margin-top: 12px; }
.marquee-row .marquee-track { animation-duration: 28s; }
.marquee-row:nth-child(2) .marquee-track { animation-direction: reverse; animation-duration: 35s; }
.marquee-wrap-v2 .marquee-item { color: rgba(255,255,255,.28); }
.marquee-wrap-v2 .marquee-item:hover { color: rgba(255,255,255,.6); }

/* ── FULL-WIDTH STATEMENT QUOTE ── */
.statement-section {
  background: var(--black); padding: 100px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.statement-section::before {
  content: '"';
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 400px; font-weight: 800;
  color: rgba(255,255,255,.03); line-height: 1; pointer-events: none;
  user-select: none;
}
.statement-text {
  font-family: var(--serif); font-size: clamp(24px,3.5vw,42px);
  font-weight: 700; line-height: 1.4; color: var(--white);
  max-width: 900px; margin: 0 auto 32px;
  font-style: italic;
}
.statement-text em { color: var(--accent); font-style: normal; }
.statement-byline { font-size: 14px; color: rgba(255,255,255,.3); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ── AVAILABILITY BANNER ── */
.avail-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1a2e 100%);
  border: 1px solid rgba(0,87,255,.2);
  border-radius: 16px; padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-top: 60px; flex-wrap: wrap;
}
.avail-left { display: flex; align-items: center; gap: 16px; }
.avail-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--green);
  flex-shrink: 0; box-shadow: 0 0 0 4px rgba(5,150,105,.2);
  animation: pulse-ring 2s ease infinite;
}
@keyframes pulse-ring {
  0%  { box-shadow: 0 0 0 0 rgba(5,150,105,.4); }
  70% { box-shadow: 0 0 0 10px rgba(5,150,105,0); }
  100%{ box-shadow: 0 0 0 0 rgba(5,150,105,0); }
}
.avail-text { font-size: 16px; font-weight: 700; color: var(--white); }
.avail-sub { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 3px; }

/* ── SOCIAL ICONS SVG ── */
.soc-icon { display: inline-flex; align-items: center; justify-content: center; }
.soc-icon svg { display: block; }

/* ── HERO SOCIAL STRIP ── */
.hero-social {
  display: flex; align-items: center; gap: 16px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.hero-social-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray-400); white-space: nowrap;
}
.hero-social-links { display: flex; gap: 10px; align-items: center; }
.hero-social-link {
  width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid var(--gray-200); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: all .2s;
}
.hero-social-link:hover { background: var(--black); border-color: var(--black); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.12); }
.hero-social-link.li:hover { background: #0077b5; border-color: #0077b5; color: var(--white); }
.hero-social-link.tw:hover { background: #000; border-color: #000; color: var(--white); }
.hero-social-link.ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; color: var(--white); }
.hero-social-link.gh:hover { background: #24292e; border-color: #24292e; color: var(--white); }

/* ── FLOATING SOCIAL SIDEBAR ── */
.social-sidebar {
  position: fixed; left: 28px; bottom: 60px; z-index: 200;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.social-sidebar::after {
  content: ''; display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gray-300), transparent);
  margin-top: 4px;
}
.sidebar-soc {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--gray-200); background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: all .22s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.sidebar-soc:hover { transform: scale(1.12) translateX(3px); box-shadow: 0 6px 20px rgba(0,87,255,.18); border-color: var(--accent); color: var(--accent); background: var(--white); }
@media (max-width: 1200px) { .social-sidebar { display: none; } }

/* ── FOOTER SOCIAL UPGRADE ── */
.footer-social-link {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.6);
  transition: all .2s;
}
.footer-social-link:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

/* ── CARD ILLUSTRATIONS (work + blog visuals) ── */
.work-vis, .blog-vis {
  position: relative; overflow: hidden; display: block;
}
.card-illustration {
  width: 100%; height: 100%; position: absolute; inset: 0;
}
/* pulse animation for map dots */
@keyframes dot-pulse {
  0%,100% { r: 5; opacity: .9; }
  50%      { r: 9; opacity: .4; }
}
.map-pulse { animation: dot-pulse 2.4s ease-in-out infinite; }
.map-pulse-2 { animation: dot-pulse 2.4s ease-in-out infinite .8s; }
.map-pulse-3 { animation: dot-pulse 2.4s ease-in-out infinite 1.6s; }

/* dashboard bar rise */
@keyframes bar-rise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
.bar-anim { transform-origin: bottom; animation: bar-rise .8s cubic-bezier(.22,1,.36,1) forwards; }

/* node flow pulse */
@keyframes flow-dot { 0%{opacity:0} 50%{opacity:1} 100%{opacity:0} }
.flow-1 { animation: flow-dot 2s ease-in-out infinite; }
.flow-2 { animation: flow-dot 2s ease-in-out infinite .5s; }
.flow-3 { animation: flow-dot 2s ease-in-out infinite 1s; }
.flow-4 { animation: flow-dot 2s ease-in-out infinite 1.5s; }

/* search bar pulse */
@keyframes search-blink { 0%,100%{opacity:1} 50%{opacity:0} }
.cursor-blink { animation: search-blink 1.2s step-end infinite; }

/* ── SOCIAL PROOF STRIP ── */
.social-proof-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 64px;
}
.social-proof-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.sp-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--gray-500);
}
.sp-item svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 768px) { .social-proof-strip { padding: 18px 24px; } .social-proof-inner { gap: 20px; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-nav { padding: 0 32px; }
  .section, .section-sm { padding-left: 32px; padding-right: 32px; }
  .page-header { padding-left: 32px; padding-right: 32px; }
  .site-footer { padding: 48px 32px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .statement-section { padding: 72px 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); padding: 24px 32px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    gap: 16px;
  }
  .nav-hamburger { display: flex; }
  .section { padding: 72px 24px; }
  .page-header { padding: calc(var(--nav-h) + 40px) 24px 56px; }
  .site-footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
  .tools-row { gap: 8px; }
  .tool-tile-name { font-size: 12px; }
  .statement-section { padding: 64px 24px; }
  .avail-banner { padding: 24px; }
}
