/* ═══════════════════════════════════════════════════════
   Dahiyaa.com  —  Main Stylesheet
   Aesthetic: Dark-tech editorial with neon accents
   ═══════════════════════════════════════════════════════ */

:root {
  --primary:   #00d4ff;
  --secondary: #ff6b35;
  --accent:    #7c3aed;
  --dark:      #080b12;
  --dark2:     #0d1117;
  --dark3:     #141a24;
  --card:      #111827;
  --border:    rgba(255,255,255,.07);
  --text:      #e2e8f0;
  --muted:     #94a3b8;
  --white:     #ffffff;
  --ff-head:   'Syne', sans-serif;
  --ff-body:   'DM Sans', sans-serif;
  --ff-mono:   'Space Mono', monospace;
  --radius:    12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --shadow:    0 4px 24px rgba(0,0,0,.5);
  --glow:      0 0 40px rgba(0,212,255,.15);
}

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

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

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Custom Cursor ─────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%,-50%);
  transition: transform .1s;
}
.cursor-dot  { width: 6px; height: 6px; background: var(--primary); }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(0,212,255,.5); transition: all .15s ease; }
@media (hover:none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Typography ────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { color: var(--muted); line-height: 1.8; }
a  { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

/* ── Layout Utilities ──────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }

/* ── Section Labels ────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-mono); font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--primary);
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.2);
  padding: .3rem .9rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-label::before { content: '//'; opacity: .6; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--dark);
  box-shadow: 0 0 20px rgba(0,212,255,.3);
}
.btn-primary:hover { background: #33ddff; transform: translateY(-2px); box-shadow: 0 0 32px rgba(0,212,255,.5); color: var(--dark); }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid rgba(0,212,255,.4);
}
.btn-outline:hover { background: rgba(0,212,255,.08); border-color: var(--primary); transform: translateY(-2px); color: var(--primary); }

.btn-secondary {
  background: var(--secondary); color: var(--white);
  box-shadow: 0 0 20px rgba(255,107,53,.25);
}
.btn-secondary:hover { background: #ff7f4f; transform: translateY(-2px); color: var(--white); }

/* ── Navigation ─────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 0;
  background: rgba(8,11,18,.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition), background var(--transition);
}
#site-header.scrolled { padding: .7rem 0; }

.nav-wrap {
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand-text {
  font-family: var(--ff-head); font-weight: 800; font-size: 1.5rem;
  color: var(--white); letter-spacing: -.02em;
}
.brand-text span { color: var(--primary); }
.brand-logo { height: 40px; }

.nav-links { list-style: none; display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  display: block; padding: .5rem .9rem; border-radius: 8px;
  color: var(--muted); font-weight: 500; font-size: .9rem;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.06); }
.nav-links .nav-cta {
  background: var(--primary); color: var(--dark) !important;
  font-weight: 700; margin-left: .5rem;
  box-shadow: 0 0 16px rgba(0,212,255,.25);
}
.nav-links .nav-cta:hover { background: #33ddff; transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 8rem 0 6rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,212,255,.07) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(124,58,237,.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 90% 10%, rgba(255,107,53,.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(0,212,255,.06); border: 1px solid rgba(0,212,255,.2);
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
  font-family: var(--ff-mono); font-size: .75rem; color: var(--primary);
  animation: fadeInDown .6s ease both;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.4); } }
@keyframes fadeInDown { from { opacity:0; transform: translateY(-16px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform: translateY(24px); }  to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }

.hero h1 { margin-bottom: 1.2rem; animation: fadeInUp .7s .1s ease both; }
.hero h1 .highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text;
}
.hero p.lead {
  font-size: 1.15rem; color: var(--muted); max-width: 580px;
  margin-bottom: 2rem; animation: fadeInUp .7s .2s ease both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp .7s .3s ease both; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  animation: fadeInUp .7s .4s ease both; flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--ff-head); font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hero-stat .num span { color: var(--primary); }
.hero-stat .lbl { font-size: .8rem; color: var(--muted); margin-top: .2rem; }

/* Floating cards */
.hero-visual {
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  width: 480px; display: none;
}
@media (min-width: 1100px) { .hero-visual { display: block; } }
.float-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow); position: absolute;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-card:nth-child(1) { top: 0; right: 60px; width: 220px; animation-delay: 0s; }
.float-card:nth-child(2) { top: 140px; right: 0; width: 190px; animation-delay: 1s; }
.float-card:nth-child(3) { top: 270px; right: 80px; width: 200px; animation-delay: 2s; }
.float-card .fc-label { font-family: var(--ff-mono); font-size: .65rem; color: var(--muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .1em; }
.float-card .fc-value { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.float-card .fc-sub   { font-size: .75rem; color: var(--primary); margin-top: .2rem; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.card:hover { border-color: rgba(0,212,255,.2); transform: translateY(-4px); box-shadow: var(--glow); }
.card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
  background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.2);
}
.service-icon.orange { background: rgba(255,107,53,.1); border-color: rgba(255,107,53,.2); }
.service-icon.purple { background: rgba(124,58,237,.1); border-color: rgba(124,58,237,.2); }
.service-icon.green  { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.2); }
.service-icon.pink   { background: rgba(236,72,153,.1); border-color: rgba(236,72,153,.2); }
.card h3 { margin-bottom: .6rem; }
.card p  { font-size: .9rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.2rem; font-size: .85rem; font-weight: 600;
  color: var(--primary); font-family: var(--ff-mono);
}
.card .card-link:hover { gap: .8rem; color: var(--white); }

/* ── Process Steps ────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--ff-mono); font-size: 3rem; font-weight: 700;
  color: rgba(0,212,255,.12); line-height: 1; min-width: 60px;
  transition: color var(--transition);
}
.process-step:hover .step-num { color: rgba(0,212,255,.35); }
.step-content h3 { margin-bottom: .5rem; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  position: relative; transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(0,212,255,.12);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--dark);
  font-family: var(--ff-mono); font-size: .7rem; font-weight: 700;
  padding: .25rem .8rem; border-radius: 100px; letter-spacing: .1em; white-space: nowrap;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card h3 { font-size: 1rem; color: var(--muted); font-weight: 500; margin-bottom: .5rem; }
.price-amount {
  font-family: var(--ff-head); font-size: 2.8rem; font-weight: 800;
  color: var(--white); margin-bottom: .3rem;
}
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-period { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; margin-bottom: 1.8rem; }
.price-features li {
  display: flex; align-items: center; gap: .6rem;
  padding: .45rem 0; border-bottom: 1px solid var(--border);
  font-size: .88rem; color: var(--muted);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓'; color: var(--primary); font-weight: 700;
  font-family: var(--ff-mono); font-size: .8rem; min-width: 14px;
}
.price-features li.no::before { content: '✕'; color: rgba(255,255,255,.2); }
.price-features li.no { opacity: .5; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-text { font-style: italic; margin-bottom: 1.2rem; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: .9rem; color: var(--dark);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--white); }
.author-role { font-size: .78rem; color: var(--muted); }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 500;
  color: var(--muted); margin-bottom: .5rem; font-family: var(--ff-mono);
  letter-spacing: .05em;
}
.form-control {
  width: 100%; background: var(--dark3); border: 1px solid var(--border);
  border-radius: 8px; padding: .85rem 1.1rem;
  color: var(--white); font-size: .95rem; font-family: var(--ff-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-control:focus {
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 0 0 3px rgba(0,212,255,.08);
}
.form-control::placeholder { color: rgba(148,163,184,.4); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, rgba(0,212,255,.08) 0%, rgba(124,58,237,.08) 100%);
  border: 1px solid rgba(0,212,255,.12);
  border-radius: 24px; padding: 4rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -80px; left: 50%; width: 400px; height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,212,255,.1), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p  { margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Blog Card ────────────────────────────────────────────── */
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.2); }
.blog-thumb {
  height: 200px; background: linear-gradient(135deg, var(--dark3), var(--card));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.blog-body { padding: 1.5rem; }
.blog-meta {
  display: flex; gap: 1rem; margin-bottom: .75rem;
  font-family: var(--ff-mono); font-size: .7rem; color: var(--muted);
}
.blog-tag {
  background: rgba(0,212,255,.08); color: var(--primary);
  padding: .15rem .6rem; border-radius: 4px; font-size: .7rem;
  font-family: var(--ff-mono);
}
.blog-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.blog-body p  { font-size: .85rem; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  padding: 9rem 0 4rem; background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,255,.06), transparent),
    var(--dark2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-label { font-size: .75rem; color: var(--muted); font-family: var(--ff-mono); margin-bottom: .2rem; }
.ci-value { font-weight: 500; color: var(--white); font-size: .95rem; }

/* ── Portfolio ───────────────────────────────────────────── */
.portfolio-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--dark3); border: 1px solid var(--border);
  cursor: pointer;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(8,11,18,.85);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
  padding: 1.5rem; text-align: center;
}
.portfolio-thumb {
  width: 100%; height: 100%; object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--muted);
}

/* ── Alert / Flash ────────────────────────────────────────── */
.alert {
  padding: 1rem 1.2rem; border-radius: 8px; margin-bottom: 1rem;
  font-size: .9rem; display: flex; align-items: center; gap: .7rem;
}
.alert-success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); color: #6ee7b7; }
.alert-error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.25);  color: #fca5a5; }
.alert-info    { background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.2);   color: var(--primary); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark2); border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-brand .brand-text { font-family: var(--ff-head); font-weight: 800; font-size: 1.4rem; color: var(--white); display: block; margin-bottom: .6rem; }
.footer-brand p { font-size: .88rem; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--dark3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem; text-decoration: none;
  transition: all var(--transition); font-family: sans-serif;
}
.footer-social a:hover { background: rgba(0,212,255,.1); border-color: rgba(0,212,255,.3); color: var(--primary); }

.footer-col h4 { font-size: .85rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--white); text-transform: uppercase; letter-spacing: .08em; font-family: var(--ff-mono); }
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: .5rem; }
.footer-col a   { color: var(--muted); font-size: .88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }

.footer-contact p  { font-size: .88rem; margin-bottom: .6rem; color: var(--muted); }
.footer-contact a  { color: var(--muted); }
.footer-contact a:hover { color: var(--primary); }
.btn-footer-cta {
  display: inline-block; margin-top: 1rem; padding: .65rem 1.4rem;
  background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.3);
  color: var(--primary); border-radius: 8px; font-size: .85rem; font-weight: 600;
  transition: all var(--transition); font-family: var(--ff-head);
}
.btn-footer-cta:hover { background: var(--primary); color: var(--dark); }

.footer-bottom {
  max-width: 1180px; margin: 3rem auto 0; padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: var(--muted); margin: 0; }

/* ── Dividers / Decorations ──────────────────────────────── */
.divider {
  display: flex; align-items: center; gap: 1rem; margin: 2rem 0;
  color: var(--muted); font-size: .8rem; font-family: var(--ff-mono);
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8,11,18,.97); padding: 5rem 2rem 2rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; padding: .8rem 1rem; }
  .nav-toggle { display: flex; z-index: 1000; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .cta-band { padding: 3rem 1.5rem; }
}

/* ── Scroll Animations ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Misc Utilities ──────────────────────────────────────── */
.tag {
  display: inline-block; padding: .2rem .7rem; border-radius: 4px;
  font-size: .72rem; font-family: var(--ff-mono); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}
.tag-blue   { background: rgba(0,212,255,.1);  color: var(--primary); }
.tag-orange { background: rgba(255,107,53,.1); color: var(--secondary); }
.tag-purple { background: rgba(124,58,237,.1); color: #a78bfa; }
.tag-green  { background: rgba(16,185,129,.1); color: #6ee7b7; }

img { max-width: 100%; height: auto; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
