/* Nexovate Group — Global styles */
:root {
  --navy-950: #060b14;
  --navy-900: #0b1220;
  --navy-800: #0f172a;
  --navy-700: #1e293b;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --electric: #3b82f6;
  --electric-bright: #60a5fa;
  --cyan: #22d3ee;
  --emerald: #10b981;
  --emerald-soft: rgba(16, 185, 129, 0.12);
  --cyan-soft: rgba(34, 211, 238, 0.1);
  --blue-soft: rgba(59, 130, 246, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(6, 11, 20, 0.06);
  --shadow-md: 0 12px 40px rgba(6, 11, 20, 0.12);
  --shadow-lg: 0 24px 80px rgba(6, 11, 20, 0.18);
  --shadow-glow: 0 0 80px rgba(34, 211, 238, 0.08);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal-stagger > * {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--navy-900);
  color: var(--white);
  z-index: 10000;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}
h3 {
  font-size: 1.2rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 42rem;
}

.muted {
  color: var(--slate-500);
}

/* Layout */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 10vw, 6.5rem);
}

.section--dark {
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 45%, #0c1629 100%);
  color: var(--slate-200);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(59, 130, 246, 0.15), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(34, 211, 238, 0.08), transparent 50%);
  pointer-events: none;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}
.section--dark .lead,
.section--dark .muted {
  color: var(--slate-400);
}
.section--dark .eyebrow {
  color: var(--cyan);
}

.section--soft {
  background: linear-gradient(180deg, var(--slate-100) 0%, var(--white) 100%);
}

.section--border {
  border-block: 1px solid var(--slate-200);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-900) 58%, var(--electric) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(96, 165, 250, 0.35);
  transition: box-shadow 0.3s var(--ease-out), background 0.3s;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: linear-gradient(120deg, var(--navy-950) 0%, #0d1830 58%, #2563eb 100%);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-900), var(--electric));
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}
.logo-mark svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link[aria-expanded="true"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}
.nav-link.is-active {
  color: var(--white);
}

.nav-chevron {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: transform 0.25s var(--ease-out);
}
.nav-item.is-open .nav-chevron {
  transform: rotate(180deg);
}

/* Mega menu */
.mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  top: 100%;
  width: min(720px, 90vw);
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s var(--ease-out),
    transform 0.28s var(--ease-out),
    visibility 0.28s;
}
.nav-item.is-open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Mega menus: one item per row (stacked) */
.mega--stacked .mega-grid {
  grid-template-columns: 1fr;
}

.mega-nav--products {
  width: min(420px, 94vw);
}

.mega-nav--services {
  width: min(650px, 94vw);
}

.mega-nav--services .mega-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .mega-grid {
    grid-template-columns: 1fr;
  }
  .mega-nav--services .mega-grid {
    grid-template-columns: 1fr;
  }
}

.mega-card {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mega-card:hover {
  background: var(--slate-100);
}
.mega-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--electric);
}
.mega-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.mega-card span {
  font-size: 0.8rem;
  color: var(--slate-500);
  line-height: 1.4;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--white);
}
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}
@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.mobile-drawer.is-open {
  pointer-events: auto;
}
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 20, 0.45);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}
.mobile-drawer.is-open .mobile-drawer-backdrop {
  opacity: 1;
}
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.12);
}
.mobile-drawer.is-open .mobile-drawer-panel {
  transform: translateX(0);
}
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--slate-200);
}
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}
.mobile-nav a {
  display: block;
  padding: 0.75rem 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover {
  background: var(--slate-100);
}
.mobile-sub {
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
}
.mobile-sub a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--slate-600);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s,
    background 0.2s,
    color 0.2s;
}
.btn:active {
  transform: scale(0.98);
}
.btn--primary {
  background: linear-gradient(135deg, var(--navy-900), #1e3a5f);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(11, 18, 32, 0.25);
}
.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.35);
}
.btn--secondary {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  border-color: var(--electric);
  color: var(--electric);
}
.btn--ghost {
  color: var(--electric);
  padding-inline: 1rem;
}
.btn--ghost:hover {
  background: var(--blue-soft);
}
.btn--accent {
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}
.btn--lg {
  padding: 0.85rem 1.65rem;
  font-size: 0.95rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  padding-block: clamp(4.5rem, 12vw, 7.5rem);
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(59, 130, 246, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(34, 211, 238, 0.08), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px var(--emerald);
}
.hero-visual {
  position: relative;
  min-height: 280px;
}
.hero-card-stack {
  position: relative;
  height: 320px;
  max-width: 420px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .hero-card-stack {
    margin-inline: 0 0 auto;
  }
}
.floating-card {
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.15rem;
  animation: float 7s ease-in-out infinite;
}
.floating-card:nth-child(1) {
  top: 8%;
  left: 0;
  width: 58%;
  animation-delay: 0s;
}
.floating-card:nth-child(2) {
  top: 38%;
  right: 0;
  width: 62%;
  animation-delay: -2s;
}
.floating-card:nth-child(3) {
  bottom: 4%;
  left: 12%;
  width: 70%;
  animation-delay: -4s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.floating-card h4 {
  font-size: 0.85rem;
  margin: 0 0 0.35rem;
}
.floating-card p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--slate-500);
}
.metric {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--electric);
}

/* Cards & grids */
.grid-3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s var(--ease-out);
}
.card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.section--dark .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(148, 163, 184, 0.15);
  backdrop-filter: blur(8px);
}
.section--dark .card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--blue-soft);
  color: var(--electric);
}
.section--dark .card-icon {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.card h3 {
  margin: 0 0 0.5rem;
}
.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--slate-600);
}
.section--dark .card p {
  color: var(--slate-400);
}

/* Why list */
.why-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--emerald-soft);
  color: var(--emerald);
  display: grid;
  place-items: center;
}

/* Venture cards */
.venture-card {
  position: relative;
  overflow: hidden;
}
.venture-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(59, 130, 246, 0.06));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.venture-card:hover::after {
  opacity: 1;
}

/* Testimonials */
.testimonial {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-700);
  margin: 0 0 1.25rem;
  line-height: 1.65;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate-200), var(--slate-400));
}

/* CTA band */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 3.5rem);
  background: linear-gradient(125deg, var(--navy-900) 0%, #132447 50%, #0c4a6e 100%);
  color: var(--white);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.15), transparent 45%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-band h2 {
  color: var(--white);
  margin: 0 0 0.5rem;
}
.cta-band p {
  margin: 0;
  color: var(--slate-400);
  max-width: 36rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding-block: clamp(3.5rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--slate-100) 0%, var(--white) 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(59, 130, 246, 0.1), transparent);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  margin: 0 0 0.75rem;
}
.page-hero .lead {
  margin: 0;
}

/* Split content */
.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.value-pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--electric);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  font: inherit;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}
.contact-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--slate-200);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(34, 211, 238, 0.12), transparent 50%);
  pointer-events: none;
}
.contact-card h3 {
  color: var(--white);
  position: relative;
}
.contact-card p {
  position: relative;
  color: var(--slate-400);
}
.contact-detail {
  position: relative;
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

/* Blog */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-800), var(--electric));
  position: relative;
}
.blog-card-thumb span {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-900);
}
.blog-card-body {
  padding: 1.25rem;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.blog-card-body time {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* Careers */
.job-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  background: var(--white);
}
@media (min-width: 640px) {
  .job-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.job-meta {
  font-size: 0.85rem;
  color: var(--slate-500);
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  padding-block: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(59, 130, 246, 0.08), transparent);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}
.footer-brand p {
  max-width: 280px;
  font-size: 0.9rem;
  line-height: 1.65;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 0.65rem;
}
.footer-col a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--cyan);
}
.footer-bottom {
  position: relative;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.text-center {
  text-align: center;
}
.mx-auto {
  margin-inline: auto;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mt-2 {
  margin-top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}
