/* ============================================================
   ScaleWeb.in — Design System
   Web • Visibility • Growth
   Navy #0F172A | Blue #2563EB | Orange #F97316 | White
   ============================================================ */

:root {
  --navy-900: #0B1120;
  --navy-800: #0F172A;
  --navy-700: #1E293B;
  --navy-600: #334155;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --orange-500: #F97316;
  --orange-400: #FB923C;
  --white: #FFFFFF;
  --text: #F1F5F9;
  --text-muted: #A6B4C8;
  --border: rgba(148, 163, 184, 0.16);
  --card: rgba(30, 41, 59, 0.55);
  --card-hover: rgba(30, 41, 59, 0.85);
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 40px rgba(2, 6, 23, 0.45);
  --gradient-brand: linear-gradient(135deg, #F97316 0%, #FB923C 35%, #3B82F6 70%, #2563EB 100%);
  --gradient-cta: linear-gradient(135deg, #F97316, #FB5607);
  --font-head: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--navy-800);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--orange-500); color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; color: var(--white); }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.2rem); color: var(--text-muted); }

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

/* ---------- Layout ---------- */
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 6.5rem) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}
.section-head.center .eyebrow::after {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--gradient-cta);
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(249, 115, 22, 0.45); }

.btn-secondary {
  border: 1.5px solid var(--border);
  background: rgba(30, 41, 59, 0.4);
  color: var(--white);
}
.btn-secondary:hover { border-color: var(--blue-500); background: rgba(37, 99, 235, 0.12); transform: translateY(-2px); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  font-weight: 600;
  color: var(--orange-400);
  transition: gap 0.25s var(--ease), color 0.2s;
}
.btn-link:hover { gap: 0.7rem; color: var(--orange-500); }
.btn-link svg { width: 17px; height: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 17, 32, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; min-height: 44px; }
.brand img { width: 34px; height: auto; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--white); }
.brand-name span { color: var(--orange-500); }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background-color 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(148, 163, 184, 0.08); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { content: ""; display: block; }
.nav-cta { margin-left: 0.6rem; min-height: 44px; padding: 0.55rem 1.3rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--white);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 1.2rem;
    background: rgba(11, 17, 32, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0.3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { min-height: 48px; font-size: 1.05rem; }
  .nav-cta { margin: 0.5rem 0 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(72px + clamp(4rem, 10vw, 7rem)) 0 clamp(4rem, 9vw, 6.5rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 38% at 18% 8%, rgba(37, 99, 235, 0.22), transparent),
    radial-gradient(ellipse 42% 34% at 85% 18%, rgba(249, 115, 22, 0.14), transparent),
    var(--navy-900);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
}
.hero-inner { max-width: 780px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}
.hero h1 { margin-bottom: 1.3rem; }
.hero .lead { max-width: 620px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }
.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.hero-tagline .sep { color: var(--orange-500); }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }

.card {
  position: relative;
  padding: 1.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), border-color 0.3s, background-color 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(59, 130, 246, 0.45); background: var(--card-hover); }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.16), rgba(37, 99, 235, 0.16));
  border: 1px solid var(--border);
  color: var(--orange-400);
}
.card-icon svg { width: 25px; height: 25px; }
.card:nth-child(even) .card-icon { color: var(--blue-500); }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.96rem; }
.card .btn-link { margin-top: 1.1rem; font-size: 0.93rem; }

/* Feature list (why us) */
.feature {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.25s, border-color 0.25s;
}
.feature:hover { background: var(--card); border-color: var(--border); }
.feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-400);
}
.feature-icon svg { width: 21px; height: 21px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- Process ---------- */
.process-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); counter-reset: step; }
.step {
  position: relative;
  padding: 1.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.93rem; color: var(--text-muted); }

/* ---------- Work / Portfolio ---------- */
.work-card {
  display: grid;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.work-card:hover { border-color: rgba(249, 115, 22, 0.4); transform: translateY(-4px); }
@media (min-width: 800px) { .work-card { grid-template-columns: 1.15fr 1fr; } }

.browser-mock {
  background: linear-gradient(150deg, #16213E 0%, #0F172A 60%, #1A2540 100%);
  padding: 2.2rem clamp(1.2rem, 4vw, 2.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.browser-frame {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: var(--navy-700);
  border-bottom: 1px solid var(--border);
}
.browser-bar .dots { display: flex; gap: 5px; }
.browser-bar .dots i { width: 10px; height: 10px; border-radius: 50%; }
.browser-bar .dots i:nth-child(1) { background: #F87171; }
.browser-bar .dots i:nth-child(2) { background: #FBBF24; }
.browser-bar .dots i:nth-child(3) { background: #34D399; }
.browser-url {
  flex: 1;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--navy-800);
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  text-align: center;
}
.browser-body { padding: 1.6rem; min-height: 180px; display: flex; flex-direction: column; justify-content: center; gap: 0.8rem; }
.browser-body .mock-title { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--white); }
.browser-body .mock-line { height: 9px; border-radius: 5px; background: var(--navy-600); }
.browser-body .mock-line.short { width: 62%; }
.browser-body .mock-line.shorter { width: 38%; }
.browser-body .mock-chip {
  align-self: flex-start;
  margin-top: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gradient-cta);
  color: var(--navy-900);
}

.work-info { padding: clamp(1.6rem, 4vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.work-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.1rem; }
.tag {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(30, 41, 59, 0.5);
}
.work-info h3 { font-size: 1.45rem; margin-bottom: 0.7rem; }
.work-info p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 1rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(249, 115, 22, 0.4); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  min-height: 48px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex-shrink: 0; width: 19px; height: 19px; color: var(--orange-400); transition: transform 0.3s var(--ease); }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.3rem; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 90% at 20% 10%, rgba(37, 99, 235, 0.35), transparent),
    radial-gradient(ellipse 50% 80% at 85% 90%, rgba(249, 115, 22, 0.28), transparent),
    var(--navy-700);
  border: 1px solid var(--border);
}
.cta-band h2 { max-width: 620px; margin-inline: auto; margin-bottom: 1rem; }
.cta-band p { max-width: 520px; margin-inline: auto; color: var(--text-muted); margin-bottom: 2rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; } }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--text); }
.field label .req { color: var(--orange-400); }
.field input, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: rgba(15, 23, 42, 0.6);
  color: var(--white);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #64748B; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.field .error-msg { display: none; font-size: 0.82rem; color: #FCA5A5; margin-top: 0.35rem; }
.field.invalid input, .field.invalid textarea { border-color: #F87171; }
.field.invalid .error-msg { display: block; }

.form-status { display: none; padding: 1rem 1.2rem; border-radius: 10px; font-size: 0.95rem; margin-top: 1.1rem; }
.form-status.success { display: block; background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.4); color: #6EE7B7; }
.form-status.error { display: block; background: rgba(248, 113, 113, 0.12); border: 1px solid rgba(248, 113, 113, 0.4); color: #FCA5A5; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Contact info side */
.contact-aside { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-line { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-line .feature-icon { width: 42px; height: 42px; }
.contact-line strong { display: block; font-family: var(--font-head); font-size: 0.97rem; color: var(--white); }
.contact-line a, .contact-line span { font-size: 0.93rem; color: var(--text-muted); }
.contact-line a:hover { color: var(--orange-400); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(72px + clamp(3rem, 7vw, 5rem)) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
.page-hero .hero-bg { opacity: 0.85; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { max-width: 640px; }

/* ---------- Service detail blocks ---------- */
.service-block {
  display: grid;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
}
@media (min-width: 880px) { .service-block { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.service-block + .service-block { margin-top: 1.6rem; }
.service-block .card-icon { margin-bottom: 1rem; }
.service-block h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin-bottom: 0.8rem; }
.service-block > div > p { color: var(--text-muted); margin-bottom: 1.2rem; }
.check-list { display: grid; gap: 0.7rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; color: var(--text); }
.check-list li svg { flex-shrink: 0; width: 19px; height: 19px; margin-top: 0.15rem; color: var(--orange-400); }

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.4rem;
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
}
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--white); }
.stat .num span { color: var(--orange-500); }
.stat .lbl { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  background: var(--navy-900);
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  margin-bottom: 2.5rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.9rem; max-width: 280px; }
.footer-tagline { font-family: var(--font-head); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-muted); margin-top: 0.8rem; }
.footer-tagline .sep { color: var(--orange-500); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange-400); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 0.3rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.5);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}
.footer-social a:hover { color: var(--orange-400); border-color: var(--orange-500); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: #7C8BA1;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.skip-link {
  position: absolute;
  top: -48px; left: 1rem;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--orange-500);
  color: var(--navy-900);
  font-weight: 600;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
