/* RESET / BASE */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}

:root {
  --bg-main: #0f1117;
  --bg-card: rgba(20, 22, 30, 0.6);
  --bg-card-solid: #1a1d29;
  --border-card: rgba(255, 255, 255, 0.07);

  --text-primary: #fff;
  --text-dim: #ffffff;
  --text-soft: #cfcfcf;

  --accent-blue: #00a3ff;
  --accent-green: #b3d400;

  --accent-grad-from: #00a3ff;
  --accent-grad-to: #b3d400;

  --radius-lg: 1.25rem;
  --radius-md: 0.75rem;

  --nav-height: 4rem;
  --max-width: 1300px;
  --section-pad: clamp(4rem, 4vw, 6rem);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  min-height: 100vh;
  position: relative;
  color: var(--text-primary);
  line-height: 1.5;
  padding-top: var(--nav-height);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: var(--text-primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

/* ---------- HOVER LIFT EFFECT UTILS ---------- */
.hover-lift {
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
  position: relative;
}

.hover-lift:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 30px 60px rgba(0, 163, 255, 0.25),
    0 12px 30px rgba(179, 212, 0, 0.15),
    0 2px 4px rgba(0,0,0,0.8);
  border-color: rgba(0, 163, 255, 0.6);
}

/* subtle alt version for large containers */
.hover-lift-soft {
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
  position: relative;
}
.hover-lift-soft:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    0 24px 50px rgba(0, 163, 255, 0.18),
    0 8px 20px rgba(179, 212, 0, 0.12),
    0 2px 4px rgba(0,0,0,0.8);
  border-color: rgba(179, 212, 0, 0.6);
}

/* BACKGROUND DECOR */
.bg-gradient {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(0, 163, 255, 0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.bg-blur-circle {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.4;
  mix-blend-mode: screen;
  z-index: 0;
}

.circle-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(179, 212, 0, 0.4) 0%,
    transparent 70%
  );
  top: 10%;
  right: 5%;
}

.circle-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 163, 255, 0.4) 0%,
    transparent 70%
  );
  bottom: 5%;
  left: 10%;
}

/* UTILITIES */
.section {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-title {
  font-size: clamp(1.6rem, 1vw + 1rem, 2rem);
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.section-title-green {
  color: var(--accent-green);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.section-desc.bold {
  color: #fff;
  font-weight: 600;
  margin-top: 1.25rem;
}

.blur-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.8);
}

.btn-primary {
  background: linear-gradient(
    100deg,
    var(--accent-grad-from) 0%,
    var(--accent-grad-to) 100%
  );
  color: #0f1117;
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 20px 40px rgba(0, 163, 255, 0.2),
    0 10px 30px rgba(179, 212, 0, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 30px 50px rgba(0, 163, 255, 0.3),
    0 18px 40px rgba(179, 212, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  line-height: 1;
  border: 1px solid var(--border-card);
}

.w-full {
  width: 100%;
}

.accent-gradient {
  background: linear-gradient(
    100deg,
    var(--accent-grad-from) 0%,
    var(--accent-grad-to) 100%
  );
  -webkit-background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.8rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 1rem;
  line-height: 1.2;
  padding: 0.4rem 0.6rem;
  border: 1px solid transparent;
}

.eyebrow-green {
  background: rgba(179, 212, 0, 0.08);
  color: var(--accent-green);
  border-color: rgba(179, 212, 0, 0.4);
}

/* NAVBAR */
.navbar {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: rgba(15, 17, 23, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  width: 100px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 163, 255, 0.4));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.brand-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover {
  opacity: 1;
  color: #fff;
}

/* mobile nav toggle */
.mobile-menu-btn {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* mobile dropdown nav */
.mobile-menu-panel {
  position: fixed;
  top: var(--nav-height);
  right: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.8);
}
.mobile-menu-panel.open {
  display: flex;
}
.mobile-menu-panel .mobile-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  opacity: 0.9;
}
.mobile-menu-panel .mobile-link.highlight {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
}

/* responsive nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

/* HERO */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}

.hero-title {
  font-size: clamp(1.9rem, 1vw + 1rem, 2.4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-desc {
  color: var(--text-dim);
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-bottom: 2rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* UPDATED WITH HOVER EFFECT */
.stat-box {
  min-width: 130px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  background: radial-gradient(
      circle at 0% 0%,
      rgba(0, 163, 255, 0.15) 0%,
      transparent 60%
    ),
    rgba(26, 29, 41, 0.6);

  cursor: default;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, box-shadow;
  position: relative;
}
.stat-box:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 25px 50px rgba(0, 163, 255, 0.25),
    0 10px 24px rgba(179, 212, 0, 0.15),
    0 2px 4px rgba(0,0,0,0.9);
  border-color: rgba(0,163,255,0.6);
}

.stat-num {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* HERO RIGHT */
.hero-right {
  position: relative;
  display: grid;
  gap: 1rem;
}

.profile-card {
  padding: 1.25rem 1.25rem 1rem 1.25rem;
  position: relative;
}

.profile-meta {
  min-height: 3.5rem;
}

.name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}
.tag {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  line-height: 1;
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
  font-weight: 500;
}
.tag-blue {
  background: rgba(0, 163, 255, 0.08);
  border-color: rgba(0, 163, 255, 0.4);
  color: var(--accent-blue);
}

.profile-bio {
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 40ch;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-primary);
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.5rem 0.6rem;
  margin-top: 1rem;
  border: 1px solid transparent;
}
.status-green {
  background: rgba(179, 212, 0, 0.08);
  border-color: rgba(179, 212, 0, 0.4);
  color: var(--accent-green);
}
.status-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

/* floating info cards */
/* UPDATED WITH HOVER EFFECT */
.floating-mini-cards {
  display: grid;
  gap: 1rem;
  max-width: 320px;
}
.mini-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  background: rgba(26, 29, 41, 0.6);

  transition: all 0.22s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, box-shadow;
  position: relative;
}
.mini-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow:
    0 28px 55px rgba(0,163,255,0.22),
    0 10px 24px rgba(179,212,0,0.14),
    0 2px 4px rgba(0,0,0,0.8);
  border-color: rgba(0,163,255,0.6);
}

.mini-label {
  color: var(--text-soft);
  font-size: 0.7rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.mini-value {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-right {
    order: -1;
    max-width: 400px;
  }
}

/* ABOUT / INTRO */
/* UPDATED WITH HOVER EFFECT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-card {
  padding: 1.25rem 1.25rem 1rem;
  border: 1px solid var(--border-card);

  cursor: default;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, box-shadow;
  position: relative;
}
.about-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 30px 60px rgba(0, 163, 255, 0.25),
    0 12px 30px rgba(179, 212, 0, 0.15),
    0 2px 4px rgba(0,0,0,0.8);
  border-color: rgba(179,212,0,0.6);
}

.about-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-dim);
  white-space: pre-line;
}

/* VISION */
.vision-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.25rem;
  border: 1px solid var(--border-card);

  transition: all 0.22s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, box-shadow;
  position: relative;
}
.vision-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 24px 50px rgba(0,163,255,0.18),
    0 8px 20px rgba(179,212,0,0.12),
    0 2px 4px rgba(0,0,0,0.8);
  border-color: rgba(0,163,255,0.6);
}

.vision-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* SERVICES */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1rem;
}

/* UPDATED WITH HOVER EFFECT */
.service-card {
  padding: 1.25rem 1.25rem 1rem;
  border: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
  min-height: 170px;

  cursor: default;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s cubic-bezier(0.16,1,0.3,1),
              background-color 0.22s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, box-shadow;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(0, 163, 255, 0.16) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: background 0.22s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow:
    0 40px 80px rgba(0,163,255,0.28),
    0 16px 32px rgba(179,212,0,0.18),
    0 4px 6px rgba(0,0,0,0.9);
  border-color: rgba(0,163,255,0.7);
}
.service-card:hover::before {
  background: radial-gradient(
    circle at 0% 0%,
    rgba(179,212,0,0.22) 0%,
    transparent 70%
  );
}

.service-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* PROJECTS */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 1rem;
}

/* UPDATED WITH HOVER EFFECT */
.work-card {
  overflow: hidden;
  border: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
  min-height: 220px;
  background: var(--bg-card);
  position: relative;

  transition: all 0.22s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, box-shadow;
}
.work-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 40px 80px rgba(0,163,255,0.28),
    0 16px 32px rgba(179,212,0,0.18),
    0 4px 6px rgba(0,0,0,0.9);
  border-color: rgba(0,163,255,0.7);
}
.work-card:hover .thumb-blue {
  filter: brightness(1.15) saturate(1.2);
  transition: filter 0.22s cubic-bezier(0.16,1,0.3,1);
}

.work-thumb {
  height: 120px;
  border-bottom: 1px solid var(--border-card);
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
}
.thumb-blue {
  background-image: radial-gradient(
      circle at 0% 0%,
      rgba(0, 163, 255, 0.35) 0%,
      transparent 70%
    ),
    linear-gradient(130deg, #007acc 0%, #00528a 60%);
}

.badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-card);
  border-radius: 999px;
  padding: 0.4rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}
.badge-light {
  background: rgba(255, 255, 255, 0.15);
}

.work-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.work-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* CONTACT */
/* UPDATED WITH HOVER EFFECT */
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--border-card);
  max-width: 1100px;
  margin: 0 auto;

  transition: all 0.22s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.22s cubic-bezier(0.16,1,0.3,1),
              border-color 0.22s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, box-shadow;
}
.contact-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    0 28px 55px rgba(0,163,255,0.22),
    0 10px 24px rgba(179,212,0,0.14),
    0 2px 4px rgba(0,0,0,0.8);
  border-color: rgba(179,212,0,0.6);
}

.contact-left .section-title {
  text-align: left;
}
.contact-left .section-desc {
  text-align: left;
  max-width: 45ch;
}
.contact-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}
.contact-list .icon {
  font-size: 1rem;
  width: 1.5rem;
  display: inline-block;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-group {
  display: grid;
  gap: 0.4rem;
}
.input-group label {
  font-size: 0.75rem;
  color: var(--text-soft);
  font-weight: 500;
}
.input-group input,
.input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  line-height: 1.4;
  resize: none;
  font-family: inherit;
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(0, 163, 255, 0.4);
}
textarea {
  min-height: 120px;
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
  .input-row {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  padding: 4rem 1.25rem 6rem;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand {
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.footer-name {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.footer-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-green);
}

.footer-copy {
  max-width: 40ch;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.footer-right {
  display: grid;
  gap: 0.6rem;
  font-size: 0.8rem;
  text-align: right;
  align-content: flex-start;
}
.footer-link {
  color: var(--text-primary);
  opacity: 0.7;
  font-weight: 500;
  transition: opacity 0.2s;
}
.footer-link:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0 auto;
  font-size: 0.75rem;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.4;
}

/* REVEAL ANIMATIONS (on scroll) */
.reveal-up {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }
.delay-5 { transition-delay: 0.25s; }
.delay-6 { transition-delay: 0.3s; }
.delay-7 { transition-delay: 0.35s; }
.delay-8 { transition-delay: 0.4s; }
.delay-9 { transition-delay: 0.45s; }
