/* ============================================================
   CosmicBlue Creations — Global Stylesheet
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* --- Custom Properties --- */
:root {
  --cosmic-900: #030a1a;
  --cosmic-800: #061229;
  --cosmic-700: #0a1e3d;
  --cosmic-600: #0f2d5e;
  --cosmic-500: #1a3f7a;
  --cosmic-400: #2a5ba8;
  --cosmic-300: #4a7fd4;
  --cosmic-200: #7aa8e8;
  --cosmic-100: #b3d0f5;
  --cosmic-50:  #e0edfc;

  --accent-gold: #d4a843;
  --accent-gold-light: #f0d078;
  --accent-cyan: #38d9d9;
  --accent-violet: #8b5cf6;

  --neutral-900: #0f0f12;
  --neutral-800: #1a1a22;
  --neutral-700: #2a2a36;
  --neutral-600: #3d3d4e;
  --neutral-500: #6b6b80;
  --neutral-400: #9898ab;
  --neutral-300: #c4c4d0;
  --neutral-200: #e2e2ea;
  --neutral-100: #f3f3f7;
  --neutral-50:  #fafafe;

  --white: #ffffff;
  --black: #000000;

  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', 'Courier New', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-w: 1280px;
  --section-pad: clamp(4rem, 10vh, 8rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--neutral-200);
  background: var(--cosmic-900);
  line-height: 1.65;
  overflow-x: hidden;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   STARFIELD BACKGROUND
   ============================================================ */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.starfield__layer {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 10%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 20% 90%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 50%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 85%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 55%, rgba(255,255,255,.5) 0%, transparent 100%);
}

.starfield__layer--1 { animation: drift 120s linear infinite; opacity: .4; }
.starfield__layer--2 { animation: drift 80s linear infinite reverse; opacity: .25; transform: scale(1.5); }
.starfield__layer--3 { animation: drift 200s linear infinite; opacity: .15; transform: scale(2); }

@keyframes drift {
  from { transform: translateY(0); }
  to   { transform: translateY(-100vh); }
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}

.header--scrolled {
  background: rgba(3, 10, 26, .88);
  backdrop-filter: blur(20px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(74, 127, 212, .12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.header__wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--white);
}

.header__wordmark span {
  color: var(--cosmic-300);
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--neutral-400);
  transition: color .3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cosmic-300);
  transition: width .3s var(--ease-out-expo);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__nebula {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .15;
  pointer-events: none;
}

.hero__nebula--1 {
  top: -200px; right: -200px;
  background: radial-gradient(circle, var(--cosmic-400), transparent 70%);
}

.hero__nebula--2 {
  bottom: -300px; left: -200px;
  background: radial-gradient(circle, var(--accent-violet), transparent 70%);
  opacity: .08;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Animated logo above the title */
.hero__logo-frame {
  position: relative;
  width: clamp(240px, 26vw, 330px);
  aspect-ratio: 1;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(42, 91, 168, .18) 0%, transparent 70%);
  border-radius: 42px;
  border: 1px solid rgba(74, 127, 212, .15);
  animation: fadeUp .8s .08s var(--ease-out-expo) both, glowPulse 4s ease-in-out infinite;
}

.hero__logo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 42px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(74, 127, 212, .35), transparent 50%, rgba(56, 217, 217, .25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Outer rotating orbit with satellite dot */
.hero__orbit {
  position: absolute;
  inset: -52px;
  border: 1px solid rgba(74, 127, 212, .2);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.hero__orbit::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 24px var(--accent-cyan), 0 0 48px rgba(56, 217, 217, .4);
  transform: translate(-50%, -50%);
}

/* Inner counter-rotating ring for layered motion */
.hero__orbit::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px dashed rgba(56, 217, 217, .18);
  border-radius: 50%;
  animation: rotate 24s linear infinite reverse;
}

.hero__logo {
  width: 62%;
  filter: drop-shadow(0 0 48px rgba(74, 127, 212, .55));
  animation: float 5s ease-in-out infinite, logoPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(74, 127, 212, 0), inset 0 0 0 rgba(74, 127, 212, 0); }
  50%      { box-shadow: 0 0 32px rgba(74, 127, 212, .25), inset 0 0 16px rgba(74, 127, 212, .08); }
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(74, 127, 212, .45)); }
  50%      { filter: drop-shadow(0 0 28px rgba(74, 127, 212, .8)) drop-shadow(0 0 8px rgba(56, 217, 217, .3)); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .15s var(--ease-out-expo) both;
}

.hero__title em {
  font-weight: 700;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cosmic-300), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  color: var(--neutral-400);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  animation: fadeUp .8s .3s var(--ease-out-expo) both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s var(--ease-out-expo) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .3s var(--ease-out-expo);
}

.btn--primary {
  background: linear-gradient(135deg, var(--cosmic-400), var(--cosmic-500));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(42, 91, 168, .35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(42, 91, 168, .5);
}

.btn--ghost {
  border: 1px solid rgba(255,255,255,.15);
  color: var(--neutral-200);
}

.btn--ghost:hover {
  border-color: var(--cosmic-300);
  color: var(--white);
  background: rgba(74, 127, 212, .08);
}

.btn__icon {
  font-size: 1.1em;
}

.btn__logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .25));
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.section__label {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cosmic-300);
  margin-bottom: .75rem;
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section__description {
  font-size: 1.05rem;
  color: var(--neutral-400);
  max-width: 600px;
  font-weight: 300;
}

.section__header {
  margin-bottom: 3.5rem;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__description {
  margin-left: auto;
  margin-right: auto;
}

/* Divider */
.section__divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cosmic-600), transparent);
  margin: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about__grid {
  display: block;
  max-width: 820px;
  margin: 0 auto;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.about__text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0 .75rem;
}

.about__text p {
  color: var(--neutral-400);
  font-weight: 300;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat {
  text-align: center;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(74, 127, 212, .1);
  background: rgba(74, 127, 212, .04);
}

.stat__number {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--cosmic-300);
}

.stat__number--symbol {
  font-size: 2.4rem;
  line-height: .75;
}

.stat__label {
  font-size: .78rem;
  color: var(--neutral-500);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2.25rem;
  border-radius: 16px;
  border: 1px solid rgba(74, 127, 212, .1);
  background: rgba(6, 18, 41, .6);
  backdrop-filter: blur(8px);
  transition: transform .4s var(--ease-out-expo), box-shadow .4s, border-color .4s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cosmic-300), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 127, 212, .25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

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

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(74, 127, 212, .1);
  border: 1px solid rgba(74, 127, 212, .15);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
}

.service-card__desc {
  font-size: .92rem;
  color: var(--neutral-400);
  font-weight: 300;
  line-height: 1.75;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--cosmic-300);
  transition: gap .3s;
}

.service-card__link:hover {
  gap: 10px;
}

/* ============================================================
   DIGITALCLAY3D SHOWCASE
   ============================================================ */
.showcase {
  background: linear-gradient(180deg, transparent, rgba(10, 30, 61, .4), transparent);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(74, 127, 212, .18);
  aspect-ratio: 1382 / 860;
  background: linear-gradient(135deg, var(--cosmic-800), var(--cosmic-700));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .45),
    0 4px 14px rgba(74, 127, 212, .08),
    inset 0 0 0 1px rgba(255, 255, 255, .02);
  transition: transform .5s var(--ease-out-expo), box-shadow .5s;
}

.showcase__visual:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, .55),
    0 8px 24px rgba(74, 127, 212, .15),
    inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.showcase__screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.showcase__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(56, 217, 217, .1);
  border: 1px solid rgba(56, 217, 217, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 2px;
}

.feature-item__text h4 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-item__text p {
  font-size: .88rem;
  color: var(--neutral-500);
  font-weight: 300;
}

/* ============================================================
   TECH STACK / CAPABILITIES
   ============================================================ */
.tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(74, 127, 212, .08);
  background: rgba(6, 18, 41, .4);
  transition: border-color .3s, background .3s;
}

.tech-pill:hover {
  border-color: rgba(74, 127, 212, .2);
  background: rgba(74, 127, 212, .06);
}

.tech-pill__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.tech-pill__name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--neutral-200);
}

.tech-pill__cat {
  font-size: .72rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  text-align: center;
}

.cta__box {
  position: relative;
  padding: 4rem;
  border-radius: 24px;
  border: 1px solid rgba(74, 127, 212, .15);
  background: linear-gradient(135deg, rgba(10, 30, 61, .6), rgba(6, 18, 41, .8));
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 60% 40%, rgba(42, 91, 168, .1) 0%, transparent 50%);
  pointer-events: none;
}

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta__text {
  font-size: 1.05rem;
  color: var(--neutral-400);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-weight: 300;
  position: relative;
}

.cta__actions {
  position: relative;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(74, 127, 212, .08);
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-text {
  font-size: .88rem;
  color: var(--neutral-500);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 320px;
  font-weight: 300;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--neutral-300);
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: .6rem;
}

.footer__links a {
  font-size: .88rem;
  color: var(--neutral-500);
  transition: color .3s;
}

.footer__links a:hover {
  color: var(--cosmic-300);
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 127, 212, .06);
}

.footer__copy {
  font-size: .8rem;
  color: var(--neutral-600);
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(74, 127, 212, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-500);
  transition: border-color .3s, color .3s, background .3s;
}

.footer__socials a:hover {
  border-color: var(--cosmic-300);
  color: var(--cosmic-300);
  background: rgba(74, 127, 212, .08);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}

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

/* Staggered children */
.reveal-group > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group > .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: .24s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: .32s; }
.reveal-group > .reveal:nth-child(6) { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .tech__grid { grid-template-columns: repeat(3, 1fr); }
  .showcase__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__list {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    padding: 100px 2rem 2rem;
    background: rgba(3, 10, 26, .96);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform .4s var(--ease-out-expo);
    gap: 1rem;
  }

  .nav__list--open {
    transform: translateX(0);
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .services__grid { grid-template-columns: 1fr; }
  .tech__grid { grid-template-columns: repeat(2, 1fr); }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: .75rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bar { flex-direction: column; gap: 1rem; text-align: center; }

  .cta__box { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .tech__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr; }
}
