:root {
  --primary: #061a33;
  --secondary: #0a2a52;
  --brand: #0756b8;
  --brand-2: #1677e8;
  --accent: #50c8ff;
  --accent-2: #22d3ee;
  --accent-soft: rgba(80, 200, 255, 0.2);
  --text: #ffffff;
  --muted: #cbd5e1;
  --line: rgba(147, 210, 255, 0.2);
  --glass: rgba(9, 38, 74, 0.66);
  --shadow: 0 28px 90px rgba(1, 12, 30, 0.46), 0 0 46px rgba(22, 119, 232, 0.1);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(22, 119, 232, 0.38), transparent 30rem),
    radial-gradient(circle at 82% 14%, rgba(80, 200, 255, 0.28), transparent 32rem),
    radial-gradient(circle at 40% 72%, rgba(34, 211, 238, 0.12), transparent 34rem),
    linear-gradient(180deg, #051426 0%, var(--primary) 42%, #061426 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(7, 86, 184, 0.28), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(77, 163, 255, 0.2), transparent 20rem),
    radial-gradient(circle at 72% 78%, rgba(6, 58, 120, 0.18), transparent 22rem);
  filter: blur(6px);
  animation: meshBreath 18s ease-in-out infinite alternate;
}

body::after {
  opacity: 0.23;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(77, 163, 255, 0.95) 0 1px, transparent 1.7px);
  background-position: 0 0, 48px 96px;
  background-size: 168px 168px, 260px 260px;
  animation: particleField 38s linear infinite;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin-inline: auto;
}

.narrow {
  --shell: 840px;
}

.section {
  position: relative;
  overflow-x: clip;
  padding: 112px 0;
  isolation: isolate;
  perspective: 1400px;
}

.section::before {
  content: "";
  position: absolute;
  inset: 8% -18% auto;
  height: 320px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, rgba(80, 200, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 78% 30%, rgba(22, 119, 232, 0.16), transparent 24rem);
  opacity: 0.68;
  transform: translateY(var(--section-shift, 0));
  animation: sectionAura 16s ease-in-out infinite alternate;
}

.section:nth-of-type(even)::before {
  background:
    radial-gradient(circle at 74% 42%, rgba(34, 211, 238, 0.11), transparent 24rem),
    radial-gradient(circle at 18% 28%, rgba(22, 119, 232, 0.17), transparent 27rem);
  animation-direction: alternate-reverse;
}

.section-tight {
  padding: 58px 0;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  background: #07111f;
  pointer-events: none;
  animation: loaderExit 0.62s ease 0.8s forwards;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  position: relative;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
}

.loader-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: loadSweep 1s ease-in-out infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--accent), #ffffff);
  box-shadow: 0 0 22px rgba(77, 163, 255, 0.7);
  background-size: 220% 100%;
  animation: progressGlow 4s ease-in-out infinite;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -2;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.24), rgba(7, 86, 184, 0.1) 36%, transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.2s ease;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 22, 43, 0.78);
  backdrop-filter: blur(22px) saturate(145%);
  box-shadow: 0 18px 54px rgba(2, 12, 30, 0.34), inset 0 -1px 0 rgba(80, 200, 255, 0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 239, 255, 0.88));
  box-shadow: 0 14px 34px rgba(2, 10, 24, 0.18), 0 0 28px rgba(77, 163, 255, 0.12);
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.72) 44%, transparent 68%);
  transform: translateX(-130%);
  animation: logoSheen 5.8s ease-in-out infinite;
  pointer-events: none;
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(2, 10, 24, 0.24), 0 0 34px rgba(77, 163, 255, 0.22);
}

.brand img {
  width: 184px;
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 8px 18px rgba(6, 58, 120, 0.14));
}

.brand-mark {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(77, 163, 255, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(77, 163, 255, 0.95), rgba(77, 163, 255, 0.1)),
    radial-gradient(circle at 75% 25%, #fff, transparent 22%);
  box-shadow: 0 0 34px rgba(77, 163, 255, 0.24);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(7, 86, 184, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 50px rgba(1, 12, 30, 0.16);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav-menu ul,
.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  background: rgba(77, 163, 255, 0.13);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(129, 190, 255, 0.08), 0 10px 28px rgba(7, 86, 184, 0.16);
}

.nav-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.nav-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 0.62s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.nav-cta:hover::before,
.btn:hover::before {
  transform: translateX(120%);
}

.nav-cta {
  padding: 0 18px;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  color: #07101f;
  font-size: 0.88rem;
  box-shadow: 0 14px 34px rgba(77, 163, 255, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 138px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.3;
  animation: floatBlob 9s ease-in-out infinite, blobPulse 6s ease-in-out infinite alternate;
}

.blob-one {
  left: -140px;
  top: 18%;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.5), transparent 66%);
}

.blob-two {
  right: -120px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 66%);
  animation-delay: -4s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 72%);
  animation: gridDrift 30s linear infinite;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #d7eaff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: 100%;
  max-width: min(760px, 100%);
  margin-bottom: 24px;
  font-size: 4.8rem;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: normal;
  animation: titleGlow 6.5s ease-in-out infinite;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text,
.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-width: 148px;
  padding: 0 22px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--accent));
  background-size: 180% 180%;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 86, 184, 0.34), 0 0 28px rgba(77, 163, 255, 0.18);
  animation: gradientFlow 7s ease infinite;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.hero-visual {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(191, 219, 254, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow), 0 0 90px rgba(7, 86, 184, 0.2);
  transform-style: preserve-3d;
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
  --hero-scroll: 0px;
  animation: heroFloat 8s ease-in-out infinite;
  will-change: transform;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.58), rgba(255, 255, 255, 0.08), rgba(7, 86, 184, 0.44));
  opacity: 0.55;
}

.hero-copy,
.hero-visual,
.section-head,
.glass-card,
.project-card,
.founder-card,
.feature,
.contact-form {
  width: 100%;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  object-fit: cover;
  animation: imageBreathe 12s ease-in-out infinite alternate;
}

.float-shape {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(77, 163, 255, 0.35);
  border-radius: 8px;
  pointer-events: none;
  transform: rotate(16deg);
  animation: shapeDrift 7s ease-in-out infinite;
}

.shape-one {
  width: 72px;
  height: 72px;
  right: 9%;
  top: -26px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.shape-two {
  width: 44px;
  height: 44px;
  left: -18px;
  bottom: 22%;
  animation-delay: -2s;
}

.metric-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 1px;
  min-width: 132px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(11, 45, 86, 0.82), rgba(5, 20, 40, 0.76));
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  animation: chipFloat 5.4s ease-in-out infinite;
}

.metric-chip strong {
  color: var(--accent);
  font-size: 1.28rem;
  line-height: 1;
}

.metric-chip span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.chip-one {
  right: 5%;
  bottom: -28px;
}

.chip-two {
  left: 5%;
  top: 8%;
  animation-delay: -2.5s;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.045), rgba(77, 163, 255, 0.08));
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 16px 0;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  display: grid;
  place-items: center;
  min-width: 180px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.marquee-track span:hover {
  color: #ffffff;
  border-color: rgba(77, 163, 255, 0.42);
  transform: translateY(-3px);
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.service-grid,
.feature-grid,
.portfolio-grid,
.founder-grid,
.stats-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.feature-grid,
.portfolio-grid,
.founder-grid,
.stats-grid,
.timeline {
  perspective: 1200px;
  perspective-origin: 50% 35%;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card,
.feature,
.contact-form,
.faq,
.slider {
  position: relative;
  border: 1px solid rgba(191, 219, 254, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 18% 0%, rgba(77, 163, 255, 0.1), transparent 36%);
  backdrop-filter: blur(20px) saturate(135%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.075), 0 22px 60px rgba(1, 12, 30, 0.16);
  overflow: hidden;
}

.glass-card::before,
.feature::before,
.project-card::before,
.founder-card::before,
.stats-grid div::before,
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(77, 163, 255, 0.2), transparent 34%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.glass-card:hover::before,
.feature:hover::before,
.project-card:hover::before,
.founder-card:hover::before,
.stats-grid div:hover::before,
.timeline-item:hover::before {
  opacity: 1;
}

.service-card::after,
.feature::after,
.project-card::after,
.founder-card::after,
.timeline-item::after,
.stats-grid > div::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(118deg, transparent 18%, rgba(255, 255, 255, 0.13) 42%, transparent 64%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-32%, 0, 42px);
  transition: opacity 0.35s ease, transform 0.6s ease;
}

.service-card:hover::after,
.feature:hover::after,
.project-card:hover::after,
.founder-card:hover::after,
.timeline-item:hover::after,
.stats-grid > div:hover::after {
  opacity: 0.72;
  transform: translate3d(32%, 0, 42px);
}

.service-card {
  position: relative;
  min-height: 254px;
  padding: 26px;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover,
.project-card:hover,
.founder-card:hover,
.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 163, 255, 0.48);
  box-shadow: 0 34px 82px rgba(1, 12, 30, 0.42), 0 0 52px rgba(34, 211, 238, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.service-card:hover .icon {
  animation: iconHoverFloat 1.8s ease-in-out infinite;
  box-shadow: 0 14px 34px rgba(22, 119, 232, 0.28), 0 0 34px rgba(34, 211, 238, 0.2);
}

.service-card > *,
.feature > *,
.project-card > *,
.founder-card > *,
.timeline-item > *,
.stats-grid > div > * {
  position: relative;
  z-index: 1;
  transform: translateZ(18px);
}

.service-card .icon,
.timeline-item > span,
.stats-grid strong {
  transform: translateZ(34px);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(77, 163, 255, 0.12));
  color: #d7eaff;
  box-shadow: 0 0 30px rgba(77, 163, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.feature p,
.project-card p,
.timeline-item p,
.founder-copy p,
.footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
  align-items: start;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  position: relative;
  min-height: 150px;
  padding: 23px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(20, 78, 137, 0.24), rgba(255, 255, 255, 0.045));
  box-shadow: 0 22px 68px rgba(1, 12, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: opacity 0.25s ease, transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.project-card.hidden {
  display: none;
}

.project-card > div:last-child {
  padding: 24px;
}

.project-card span {
  color: #d7eaff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 900;
  transition: color 0.2s ease, transform 0.2s ease;
}

.project-card a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.project-media {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(77, 163, 255, 0.18), transparent),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #0f172a;
  background-size: auto, 34px 34px, 34px 34px, auto;
  position: relative;
}

.project-media::before,
.project-media::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.project-shot {
  min-height: 300px;
  aspect-ratio: 1440 / 759;
  background: #0f172a;
}

.project-shot::before,
.project-shot::after {
  display: none;
}

.project-shot img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
  transform-origin: center;
  animation: portfolioPan 14s ease-in-out infinite alternate;
}

.project-shot-portrait {
  background: #f4f5f7;
}

.project-shot-portrait img {
  object-fit: contain;
  object-position: center top;
}

.project-card:hover .project-shot img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06) translateY(-4px);
}

.project-media::before {
  inset: 32px 36px auto;
  height: 68px;
}

.project-media::after {
  left: 36px;
  right: 36px;
  bottom: 32px;
  height: 58px;
}

.project-mobile::before {
  inset: 24px auto 24px 50%;
  width: 112px;
  height: auto;
  transform: translateX(-50%);
}

.project-mobile::after {
  display: none;
}

.project-ai {
  background:
    radial-gradient(circle at 50% 48%, rgba(77, 163, 255, 0.34), transparent 28%),
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.18), transparent 22%),
    #0f172a;
}

.project-enterprise {
  background:
    linear-gradient(135deg, rgba(77, 163, 255, 0.2), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 68px),
    #0f172a;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.timeline-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(155deg, rgba(20, 77, 134, 0.2), rgba(255, 255, 255, 0.04));
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.timeline-item:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 163, 255, 0.42);
  box-shadow: 0 22px 58px rgba(2, 10, 24, 0.26);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #111827;
  font-weight: 900;
}

.founder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.founder-card {
  position: relative;
  display: flex;
  min-height: 468px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(155deg, rgba(18, 75, 133, 0.23), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(20px) saturate(130%);
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.founder-card:focus-visible {
  outline: 3px solid rgba(77, 163, 255, 0.54);
  outline-offset: 4px;
}

.founder-image {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3.8;
  min-height: 280px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s ease;
}

.founder-card:hover .founder-image {
  transform: scale(1.04);
}

.founder-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 46%, rgba(7, 13, 24, 0.28) 100%),
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.16), transparent 46%);
  pointer-events: none;
}

.founder-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(77, 163, 255, 0.18), rgba(14, 165, 233, 0.08));
}

.founder-image img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.founder-card:hover .founder-image img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.08);
}

.founder-nabeel::after {
  background:
    radial-gradient(circle at 60% 20%, rgba(77, 163, 255, 0.28), transparent 22%),
    linear-gradient(135deg, rgba(77, 163, 255, 0.18), rgba(59, 130, 246, 0.08));
}

.founder-haider::after {
  background:
    radial-gradient(circle at 45% 20%, rgba(14, 165, 233, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(77, 163, 255, 0.16), rgba(20, 184, 166, 0.1));
}

.founder-haris::after {
  background:
    radial-gradient(circle at 52% 20%, rgba(77, 163, 255, 0.24), transparent 23%),
    linear-gradient(135deg, rgba(77, 163, 255, 0.16), rgba(99, 102, 241, 0.1));
}

.founder-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.founder-copy p {
  min-height: 52px;
  margin-bottom: 22px;
}

.founder-copy a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #d7eaff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.055);
}

.slider {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 34px;
  box-shadow: 0 30px 84px rgba(1, 12, 30, 0.28), 0 0 46px rgba(80, 200, 255, 0.08);
}

.slides {
  position: relative;
  min-height: 172px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial p {
  max-width: 860px;
  color: var(--text);
  font-size: 1.36rem;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  color: var(--muted);
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.slider-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 163, 255, 0.42);
  background: rgba(77, 163, 255, 0.12);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid div {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.stats-grid div:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 163, 255, 0.42);
  box-shadow: 0 22px 64px rgba(2, 10, 24, 0.28);
}

.stats-grid strong {
  display: block;
  color: var(--accent);
  font-size: 3.45rem;
  line-height: 1;
}

.stats-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq {
  overflow: hidden;
}

.faq button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq button span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq button span::before,
.faq button span::after {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.faq button span::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq.open button span::after {
  transform: rotate(0deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  color: var(--text);
  font-weight: 800;
}

.contact-details a {
  color: var(--accent);
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(77, 163, 255, 0.22), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: auto, 28px 28px, 28px 28px, auto;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 24px 70px rgba(1, 12, 30, 0.22);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  box-shadow: 0 34px 96px rgba(1, 12, 30, 0.4), 0 0 76px rgba(34, 211, 238, 0.12);
}

.contact-form::before,
.newsletter form::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.52), transparent 32%, rgba(37, 99, 235, 0.42));
  opacity: 0.34;
  pointer-events: none;
}

.contact-form,
.newsletter form {
  position: relative;
  isolation: isolate;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.72);
  color: var(--text);
  outline: 0;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form textarea {
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(77, 163, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.11);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.78;
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-top-color: #ffffff;
  border-radius: 999px;
  animation: contactSpin 0.72s linear infinite;
}

.contact-form.is-sending .btn-spinner {
  display: inline-block;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #d7eaff;
  font-weight: 800;
}

.form-status.success {
  color: #86efac;
}

.form-status.error {
  color: #fca5a5;
}

.social-bar {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 90;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.74);
  color: var(--muted);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: currentColor;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.16);
  box-shadow: 0 16px 42px rgba(77, 163, 255, 0.22);
}

.social-link.linkedin:hover { color: #0a66c2; }
.social-link.upwork:hover { color: #14a800; }
.social-link.email:hover { color: #063a78; }
.social-link.github:hover { color: #ffffff; }
.social-link.facebook:hover { color: #1877f2; }
.social-link.instagram:hover { color: #e1306c; }
.social-link.twitter:hover { color: #ffffff; }
.social-link.youtube:hover { color: #ff0033; }
.social-link.behance:hover { color: #1769ff; }
.social-link.dribbble:hover { color: #ea4c89; }

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  display: grid;
  justify-items: end;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  animation: whatsappFadeIn 0.6s ease 0.35s forwards;
}

.whatsapp-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.34), 0 10px 28px rgba(0, 0, 0, 0.28);
  outline: 0;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.whatsapp-button::before,
.whatsapp-button::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.whatsapp-button::before {
  inset: -8px;
  border: 1px solid rgba(37, 211, 102, 0.44);
  animation: whatsappPulse 2.8s ease-out infinite;
}

.whatsapp-button::after {
  content: attr(data-tooltip);
  right: calc(100% + 12px);
  top: 50%;
  width: max-content;
  max-width: 210px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.92);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translate(8px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(14px);
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 52px rgba(37, 211, 102, 0.42), 0 12px 34px rgba(0, 0, 0, 0.32);
}

.whatsapp-button:hover::after,
.whatsapp-button:focus-visible::after,
.whatsapp-widget.tooltip-open .whatsapp-button::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.whatsapp-button svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-bubble {
  position: relative;
  width: min(320px, calc(100vw - 112px));
  padding: 14px 42px 14px 16px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.94);
  color: #ffffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32), 0 0 28px rgba(37, 211, 102, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(18px);
}

.whatsapp-bubble::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: rgba(7, 17, 31, 0.94);
  border-right: 1px solid rgba(37, 211, 102, 0.24);
  border-bottom: 1px solid rgba(37, 211, 102, 0.24);
  transform: rotate(45deg);
}

.whatsapp-bubble:not([hidden]) {
  animation: whatsappBubbleIn 0.32s ease both;
}

.whatsapp-bubble-close {
  position: absolute;
  right: 9px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-bubble-close:hover,
.whatsapp-bubble-close:focus-visible {
  background: rgba(37, 211, 102, 0.22);
  transform: scale(1.05);
}

.founder-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.founder-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.76);
  backdrop-filter: blur(18px);
}

.modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
  width: min(860px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.94), rgba(7, 13, 24, 0.94));
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.founder-modal.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 13, 24, 0.72);
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.modal-copy {
  padding: 46px 34px 34px;
}

.modal-copy h2 {
  margin-bottom: 8px;
  font-size: 2.4rem;
}

.modal-copy h3 {
  color: var(--accent);
}

.modal-copy p {
  color: var(--muted);
}

.modal-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.modal-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #d7eaff;
  font-weight: 900;
}

.footer {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(7, 86, 184, 0.22), transparent 26rem),
    rgba(3, 7, 18, 0.72);
  padding: 68px 0 26px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--brand), transparent);
  box-shadow: 0 0 24px rgba(77, 163, 255, 0.5);
  background-size: 200% 100%;
  animation: footerBeam 6s ease-in-out infinite;
}

.footer-grid {
  grid-template-columns: 1.25fr 0.75fr 0.9fr 0.85fr 1.1fr;
  gap: 28px;
}

.footer-grid > * {
  min-width: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-grid > *:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 30px rgba(22, 119, 232, 0.12));
}

.footer h3 {
  font-size: 0.95rem;
  color: #ffffff;
}

.footer a:not(.brand):not(.social-link):not(.back-to-top) {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.footer a:not(.brand):not(.social-link):hover {
  color: var(--text);
  transform: translateX(3px);
  text-shadow: 0 0 18px rgba(77, 163, 255, 0.42);
}

.footer-company .brand {
  width: fit-content;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.footer-contact {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-weight: 700;
}

.newsletter p {
  margin-bottom: 14px;
}

.newsletter form {
  display: grid;
  gap: 10px;
}

.newsletter label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
}

.newsletter input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.72);
  color: var(--text);
  outline: 0;
  padding: 12px 13px;
}

.newsletter .btn {
  width: 100%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(191, 219, 254, 0.16);
  color: var(--muted);
  font-size: 0.9rem;
}

.back-to-top {
  color: var(--accent);
  font-weight: 900;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.wp-content {
  padding-top: 92px;
}

.wp-card {
  padding: 28px;
  margin-bottom: 18px;
}

.wp-card h1 {
  font-size: 3rem;
}

.wp-card h2 {
  font-size: 2rem;
}

.wp-card p,
.wp-card li {
  color: var(--muted);
}

.wp-featured {
  overflow: hidden;
  margin: 22px 0;
  border-radius: 8px;
}

.wp-featured img {
  width: 100%;
  height: auto;
}

.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero .reveal {
  animation: heroReveal 0.9s ease forwards;
}

.fade-up {
  transform: translateY(34px);
}

.fade-left {
  transform: translateX(34px);
}

.fade-right {
  transform: translateX(-34px);
}

.scale-in {
  transform: scale(0.94);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.ripple-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.58s ease-out forwards;
  pointer-events: none;
}

@keyframes loadSweep {
  0%, 100% { transform: scaleX(0.2); opacity: 0.45; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes loaderExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes meshBreath {
  0% { transform: translate3d(-1%, -1%, 0) scale(1); opacity: 0.72; }
  50% { transform: translate3d(1.5%, 1%, 0) scale(1.04); opacity: 0.92; }
  100% { transform: translate3d(0.5%, -1.5%, 0) scale(1.02); opacity: 0.78; }
}

@keyframes particleField {
  to { background-position: 168px 336px, -212px 308px; }
}

@keyframes sectionAura {
  0% { transform: translateY(-18px) scale(0.98); opacity: 0.42; }
  100% { transform: translateY(24px) scale(1.04); opacity: 0.76; }
}

@keyframes progressGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes logoSheen {
  0%, 54% { transform: translateX(-130%); opacity: 0; }
  64% { opacity: 0.55; }
  78%, 100% { transform: translateX(130%); opacity: 0; }
}

@keyframes blobPulse {
  0% { opacity: 0.18; }
  100% { opacity: 0.38; }
}

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

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(77, 163, 255, 0); }
  50% { text-shadow: 0 0 34px rgba(77, 163, 255, 0.16); }
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, var(--hero-scroll), 0) rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y)); }
  50% { transform: translate3d(0, calc(var(--hero-scroll) - 12px), 0) rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y)); }
}

@keyframes iconHoverFloat {
  0%, 100% { transform: translateZ(34px) translateY(0); }
  50% { transform: translateZ(34px) translateY(-5px); }
}

@keyframes imageBreathe {
  0% { transform: translateZ(28px) scale(1); filter: saturate(1) contrast(1); }
  100% { transform: translateZ(28px) scale(1.025); filter: saturate(1.08) contrast(1.03); }
}

@keyframes chipFloat {
  0%, 100% { transform: translate3d(0, 0, 64px); }
  50% { transform: translate3d(0, -8px, 64px); }
}

@keyframes portfolioPan {
  0% { transform: scale(1.01) translate3d(0, 0, 0); }
  100% { transform: scale(1.045) translate3d(0, -8px, 0); }
}

@keyframes footerBeam {
  0%, 100% { background-position: 0% 50%; opacity: 0.78; }
  50% { background-position: 100% 50%; opacity: 1; }
}

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -28px, 0) scale(1.08); }
}

@keyframes shapeDrift {
  0%, 100% { transform: translate3d(0, 0, 46px) rotate(16deg); }
  50% { transform: translate3d(0, -14px, 46px) rotate(28deg); }
}

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

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

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

@keyframes whatsappPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.86);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

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

@keyframes whatsappBubbleIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

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

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

@media (max-width: 1060px) {
  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-menu a {
    padding-inline: 9px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .founder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .nav-menu {
    top: 118px;
  }

  .cursor-glow {
    display: none;
  }

  .fade-left,
  .fade-right {
    transform: translateY(34px);
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .testimonial p {
    font-size: 1.16rem;
  }

  .stats-grid strong {
    font-size: 2.8rem;
  }

  .site-header {
    padding: 10px 0;
  }

  .brand img {
    width: 164px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 72px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .nav-menu ul,
  .nav-menu-list {
    display: grid;
    gap: 4px;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    border-radius: 8px;
    padding: 13px;
  }

  .hero {
    min-height: 0;
    padding: 108px 0 32px;
    text-align: center;
  }

  .hero-grid {
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: 680px;
    margin-inline: auto;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1,
  .hero-text {
    margin-inline: auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .service-grid,
  .feature-grid,
  .portfolio-grid,
  .founder-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    min-height: 0;
  }

  .founder-image {
    min-height: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .social-bar {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 14px;
    display: flex;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 13, 24, 0.78);
    transform: translateX(-50%);
    backdrop-filter: blur(18px);
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 92px;
  }

  .whatsapp-button {
    width: 58px;
    height: 58px;
  }

  .modal-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .modal-image {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 560px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 0;
    padding: 96px 0 28px;
  }

  .brand img {
    width: 152px;
  }

  .section-tight {
    padding: 44px 0;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 1.02;
    max-width: 12ch;
    overflow-wrap: normal;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-text,
  .section-head p {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .hero-text {
    max-width: 32ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .marquee-track span {
    min-width: 142px;
  }

  .project-media {
    min-height: 210px;
  }

  .project-shot,
  .project-shot img {
    min-height: 210px;
  }

  .timeline {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .founder-image {
    min-height: 0;
  }

  .modal-copy {
    padding: 30px 22px 24px;
  }

  .modal-copy h2 {
    font-size: 2rem;
  }

  .slider {
    padding: 22px;
  }

  .slides {
    min-height: 250px;
  }

  .social-bar {
    position: static;
    width: max-content;
    max-width: calc(100% - 24px);
    margin: 0 auto 24px;
    transform: none;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-button {
    width: 54px;
    height: 54px;
  }

  .whatsapp-button svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-button::after {
    display: none;
  }

  .whatsapp-bubble {
    width: min(286px, calc(100vw - 92px));
    font-size: 0.84rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
