/* ── Google Fonts --*/
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Audiowide&display=swap');

/* ── CSS Variables ── */
:root {
  --blue: #0A66C2;
  --blue-dark: #084e96;
  --blue-light: #1d82e8;
  --indigo: #1E293B;
  --orange: #F97316;
  --orange-dark: #d96010;
  --green: #22C55E;
  --bg: #020617;
  --bg-2: #040d1f;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-blue: rgba(10, 102, 194, 0.3);
  --border-hover: rgba(10, 102, 194, 0.5);
  --text: #E2E8F0;
  --text-muted: rgba(226, 232, 240, 0.55);
  --text-dim: rgba(226, 232, 240, 0.3);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-tag: 'Audiowide', cursive;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-blue: 0 20px 60px rgba(10, 102, 194, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* smooths fonts on webkit browsers */
  -moz-osx-font-smoothing: grayscale;
  /* smooths fonts on firefox */
  line-height: 1.6;
}

::selection {
  background: var(--orange);
  /* changes the color of selected text on browser */
  color: #fff;
}

::-webkit-scrollbar {
  /* changes the width of the scrollbar */
  width: 4px;
}

::-webkit-scrollbar-track {
  /* changes the color of the track */
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 2px;
}

img {
  max-width: 100%;
  display: block;
  /* makes images block level */
}

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

ul {
  list-style: none;
}

/* ── Utility Classes ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grad-text {
  background: linear-gradient(135deg, #38bdf8 0%, var(--blue) 40%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  font-family: var(--font-tag);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
}

.section-eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--orange));
}

.section-eyebrow::after {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 530px;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 {
  transition-delay: 0.1s;
}

.reveal.d2 {
  transition-delay: 0.18s;
}

.reveal.d3 {
  transition-delay: 0.26s;
}

.reveal.d4 {
  transition-delay: 0.34s;
}

.reveal.d5 {
  transition-delay: 0.42s;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.3rem;
  border-radius: 9px;
  border: none;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary .btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.45);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  color: #fff;
  border-color: var(--border-blue);
  background: rgba(10, 102, 194, 0.1);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  /* makes the navbar stay at the top of the page */
  top: 0;
  /* sets the navbar to the top of the page */
  left: 0;
  /* sets the navbar to the left of the page */
  right: 0;
  /* sets the navbar to the right of the page */
  z-index: 9999;
  /* brings the navbar to the front of the page */
  height: 90px;
  /* sets the height of the navbar */
  display: flex;
  /* makes the navbar a flex container */
  align-items: center;
  padding: 0 2rem;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(12px);
}

#navbar.scrolled {
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(10, 102, 194, 0.18);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);

}

.nav-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo-full {
  margin-right: auto;
  gap: 0;
}

/* Logo Variants */
.nav-logo-full,
.nav-logo-md,
.nav-logo-sm {
  display: none;
  align-items: center;
  flex-shrink: 0;
}


/* Desktop: full logo (icon + text + tagline) */
@media (min-width: 1025px) {
  .nav-logo-full {
    display: flex;
  }

  .nav-logo-img {
    height: 70px;
  }
}

/* Tablet: icon only */
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-logo-md {
    display: flex;
  }

  .nav-logo-img {
    height: 55px;
  }
}

/* Mobile: icon only */
@media (max-width: 767px) {
  .nav-logo-sm {
    display: flex;
  }

  .nav-logo-img {
    height: 45px;
  }
}

.nav-logo-img {
  height: 100px;
  width: auto;
  margin-top: 15px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(10, 102, 194, 0.4));
  transition: filter 0.3s ease;
}

.nav-logo-icon {
  height: 38px;
}

.nav-logo-full:hover .nav-logo-img,
.nav-logo-md:hover .nav-logo-img,
.nav-logo-sm:hover .nav-logo-img {
  filter: drop-shadow(0 0 18px rgba(249, 115, 22, 0.5));
}

/* Logo Text (Desktop split logo) */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 0;
  margin-left: -25px;
}

.nav-logo-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.17rem;
  background: linear-gradient(135deg, #0f66a4 0%, #50AAFA 30%, #ffa200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-tech {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-top: 3.5px;
  margin-left: 0.3rem;
}

.nav-logo-tagline {
  font-family: audiowide;
  font-size: 0.65rem;
  font-weight: 400;
  font-style: none;
  letter-spacing: 0.1em;
  color: #7cb342;
  margin-top: 1.5px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 55%;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 21px;
  height: 1.8px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

@media (max-width: 900px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Menu */
#mobile-menu {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(2, 6, 23, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(10, 102, 194, 0.15);
  padding: 1.5rem 1.5rem 2rem;
  transform: translateY(-105%);
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.38s;
}

#mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
}

#mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

#mobile-menu ul a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 9px;
  transition: all 0.2s;
}

#mobile-menu ul a:hover {
  color: #fff;
  background: rgba(10, 102, 194, 0.15);
}

.mob-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}

/* Background Layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 65% at 50% -8%, rgba(10, 102, 194, 0.38) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 88% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 55%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 102, 194, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 102, 194, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridDrift 24s linear infinite;
}

@keyframes gridDrift {
  to {
    background-position: 56px 56px;
  }
}

/* Particles Container */
#hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-10vh) translateX(var(--dx));
    opacity: 0;
  }
}

/* Floating Logo Icon */
#hero-float-icon {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  height: 170px;
  opacity: 0.1;
  pointer-events: none;
  animation: floatUpDown 7s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(-50%) translateY(0px);
  }

  50% {
    transform: translateY(-50%) translateY(-20px);
  }
}

@media (max-width: 900px) {
  #hero-float-icon {
    display: none;
  }
}

/* Hero Content */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1rem 0.3rem 0.4rem;
  border-radius: 100px;
  border: 1px solid rgba(10, 102, 194, 0.35);
  background: rgba(10, 102, 194, 0.1);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: 2rem;
  animation: heroFadeUp 0.6s ease both;
}

.badge-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(10, 102, 194, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.badge-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0.6rem;
  animation: heroFadeUp 0.7s ease 0.1s both;
}

.hero-tagline {
  font-family: var(--font-tag);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  display: block;
  margin-bottom: 1.4rem;
  animation: heroFadeUp 0.7s ease 0.2s both;
}

.hero-sub {
  font-size: clamp(0.97rem, 2vw, 1.1rem);
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: heroFadeUp 0.7s ease 0.25s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: heroFadeUp 0.7s ease 0.35s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  padding: 0.9rem 2.1rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(10, 102, 194, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10, 102, 194, 0.55);
}

.btn-hero-primary:hover::before {
  opacity: 1;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 0.9rem 2.1rem;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--orange);
  color: #fff;
  background: rgba(249, 115, 22, 0.08);
  box-shadow: 0 6px 28px rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  animation: heroFadeUp 0.7s ease 0.45s both;
}

.stat-item {
  padding: 1.1rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(226, 232, 240, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 320px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:nth-child(2),
  .stat-item:nth-child(4) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
}

/* ── SERVICES ─────────────────────────────────────────────── */
#services {
  padding: 6rem 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.15rem;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.svc-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue), inset 0 0 0 1px rgba(10, 102, 194, 0.08);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.22), rgba(10, 102, 194, 0.05));
  border: 1px solid rgba(10, 102, 194, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.svc-card:hover .svc-icon {
  transform: scale(1.08);
}

.svc-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.svc-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Hover-expand sublist */
.svc-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.38s ease, margin-top 0.35s ease;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.services-grid {
  align-items: start;
  /* prevents all cards stretching */
}

.svc-card:hover .svc-expand {
  max-height: 300px;
  opacity: 1;
  margin-top: 1.1rem;
}

.svc-expand-inner {
  border-top: 1px solid rgba(10, 102, 194, 0.15);
  padding-top: 0.9rem;
}

.svc-expand ul {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.svc-expand li {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.svc-expand li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── WHY CHOOSE ───────────────────────────────────────────── */
#why {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(10, 102, 194, 0.04) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.065) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(10, 102, 194, 0.3);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-bg-num {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(10, 102, 194, 0.07);
  pointer-events: none;
  line-height: 1;
}

.why-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.22), rgba(10, 102, 194, 0.05));
  border: 1px solid rgba(10, 102, 194, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.why-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.why-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PROJECTS ─────────────────────────────────────────────── */
#projects {
  padding: 6rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

#projects::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05), transparent 65%);
  pointer-events: none;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.proj-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}

.proj-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(10, 102, 194, 0.22);
  border-color: rgba(10, 102, 194, 0.35);
}

.proj-visual {
  height: 190px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-visual-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.proj-card:hover .proj-visual-bg {
  transform: scale(1.06);
}

.proj-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 13, 31, 0.98) 100%);
}

.proj-icon-mark {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.proj-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green);
}

.proj-url {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-tag);
  font-size: 0.6rem;
  color: rgba(226, 232, 240, 0.4);
  letter-spacing: 0.08em;
}

.proj-body {
  padding: 1.5rem;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.proj-tag {
  font-size: 0.69rem;
  font-weight: 500;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  border: 1px solid rgba(10, 102, 194, 0.25);
  color: rgba(226, 232, 240, 0.55);
  background: rgba(10, 102, 194, 0.07);
}

.proj-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.45rem;
}

.proj-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.proj-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1rem;
}

.proj-bullets li {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.58);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.proj-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 5px;
}

.proj-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s, gap 0.2s;
}

.proj-link:hover {
  color: var(--orange);
  gap: 0.6rem;
}

/* ── WORKFLOW ─────────────────────────────────────────────── */
#workflow {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.04) 0%, rgba(30, 41, 59, 0.08) 100%);
  position: relative;
  overflow: hidden;
}

.wf-container {
  position: relative;
  margin-top: 3.5rem;
}

/* Connecting line */
.wf-line {
  position: absolute;
  top: 32px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1.5px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--blue) 15%,
      var(--orange) 85%,
      transparent 100%);
  z-index: 0;
}

.wf-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.wf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.wf-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid rgba(10, 102, 194, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
}

.wf-dot::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--blue), var(--orange)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wf-step:hover .wf-dot {
  background: rgba(10, 102, 194, 0.2);
  border-color: var(--blue);
  transform: scale(1.1);
}

.wf-step:hover .wf-dot::before {
  opacity: 1;
}

.wf-num {
  font-family: var(--font-tag);
  font-size: 0.58rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.wf-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.wf-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .wf-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .wf-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .wf-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials {
  padding: 6rem 0;
  background: var(--bg);
  overflow: hidden;
}

.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.testimonials-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

#testimonials-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}

.tcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 320px;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}

.tcard:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.tcard-stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.tcard-q {
  font-size: 0.86rem;
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.78;
  margin-bottom: 1.5rem;
  font-style: italic;
  padding-left: 0.5rem;
  position: relative;
}

.tcard-q::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(10, 102, 194, 0.18);
  font-family: Georgia, serif;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.tcard-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
}

.tcard-role {
  font-size: 0.73rem;
  color: var(--text-dim);
  margin-top: 0.1rem;
}

/* ── FOUNDERS ─────────────────────────────────────────────── */
#founders {
  padding: 6rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

#founders::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(10, 102, 194, 0.07), transparent 70%);
  pointer-events: none;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

.founder-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--indigo), var(--orange));
}

.founder-card.f2 .founder-stripe {
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.founder-card.f3 .founder-stripe {
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.founder-body {
  padding: 2rem 1.75rem;
}

.founder-photo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid rgba(10, 102, 194, 0.4);
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

#fp-mohit img {
  object-position: center 15%;
  /* adjust Mohit's photo */
}

#fp-vaibhav img {
  object-position: center -10%;
  /* adjust Vaibhav's photo */
}

#fp-aayushi img {
  object-position: center 20%;
  /* adjust Aayushi's photo */
}

.founder-card.f2 .founder-photo {
  background: linear-gradient(135deg, var(--orange), #d96010);
  border-color: rgba(249, 115, 22, 0.4);
}

.founder-card.f3 .founder-photo {
  background: linear-gradient(135deg, var(--green), #16a34a);
  border-color: rgba(34, 197, 94, 0.4);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.2);
  /* zooms in 20% — shows less background, more face */
}

.founder-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(10, 102, 194, 0.12);
  border: 1px solid rgba(10, 102, 194, 0.22);
  color: var(--blue);
  border-radius: 100px;
  padding: 0.22rem 0.8rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
}

.founder-card.f2 .founder-role-badge {
  color: var(--orange);
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.22);
}

.founder-card.f3 .founder-role-badge {
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.22);
}

.founder-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.founder-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.founder-msg {
  font-size: 0.87rem;
  line-height: 1.78;
  color: rgba(226, 232, 240, 0.68);
  border-left: 2.5px solid var(--blue);
  padding-left: 0.9rem;
  font-style: italic;
}

.founder-card.f2 .founder-msg {
  border-color: var(--orange);
}

.founder-card.f3 .founder-msg {
  border-color: var(--green);
}

.founder-socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(10, 102, 194, 0.1);
  border: 1px solid rgba(10, 102, 194, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.fsoc:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ── CONTACT ──────────────────────────────────────────────── */
#contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(10, 102, 194, 0.04) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05), transparent 60%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.contact-ci {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.22), rgba(10, 102, 194, 0.05));
  border: 1px solid rgba(10, 102, 194, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-cl {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 0.22rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-cv {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.contact-cv a {
  color: inherit;
  transition: color 0.2s;
}

.contact-cv a:hover {
  color: var(--blue);
}

.contact-promo {
  background: rgba(10, 102, 194, 0.07);
  border: 1px solid rgba(10, 102, 194, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-promo-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-promo-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact Form */
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}

.form-header-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.form-header-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-group:last-of-type {
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(226, 232, 240, 0.22);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(10, 102, 194, 0.55);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.form-group select option {
  background: #1E293B;
  color: var(--text);
}

.form-group textarea {
  min-height: 110px;
}

#form-submit-btn {
  width: 100%;
  padding: 0.9rem;
  border-radius: 11px;
  border: none;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(10, 102, 194, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

#form-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

#form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(10, 102, 194, 0.5);
}

#form-submit-btn:hover::before {
  opacity: 1;
}

#form-submit-btn:disabled {
  cursor: default;
  opacity: 0.9;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: rgba(2, 6, 23, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4.5rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

#footer-logo {
  margin-bottom: 0.4rem;
}

.footer-logo-img {
  height: 240px;
  margin-left: -63px;
  margin-bottom: -80px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 8px rgba(10, 102, 194, 0.3));
}

.footer-tagline {
  font-family: var(--font-tag);
  font-size: 0.65rem;
  color: var(--orange);
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
}

.footer-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.55rem;
}

.footer-social {
  width: 35px;
  height: 35px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1160px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.79rem;
  color: var(--text-dim);
}

.footer-copy span {
  color: var(--orange);
}

.footer-bottom-tag {
  font-family: audiowide;
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 0.15em;
  opacity: 1;
}