:root {
  --bg: #05070f;
  --bg-alt: #0b0f1e;
  --card: rgba(13, 18, 37, 0.85);
  --text: #f5f7fb;
  --muted: #a8b3cf;
  --accent: #63f5c9;
  --accent-dark: #2fb48a;
  --border: rgba(255, 255, 255, 0.1);
  --font: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  top: 0;
  left: 0;
  transform: translate3d(-999px, -999px, 0);
  background: radial-gradient(
    circle,
    rgba(114, 255, 223, 0.55),
    rgba(99, 245, 201, 0) 70%
  );
  mix-blend-mode: color-dodge;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.6s ease;
  z-index: -2;
}

.cursor-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(99, 245, 201, 0.45),
    transparent 65%
  );
  filter: blur(20px);
  opacity: 0.7;
}

.cursor-trail {
  position: fixed;
  width: 420px;
  height: 120px;
  pointer-events: none;
  top: 0;
  left: 0;
  transform: translate3d(-999px, -999px, 0);
  background: radial-gradient(
      ellipse at center,
      rgba(99, 245, 201, 0.3),
      rgba(99, 245, 201, 0) 70%
    ),
    linear-gradient(
      90deg,
      rgba(99, 245, 201, 0),
      rgba(99, 245, 201, 0.55),
      rgba(99, 245, 201, 0)
    );
  mix-blend-mode: color-dodge;
  opacity: 0;
  filter: blur(35px);
  transition: opacity 0.6s ease;
  z-index: -3;
  border-radius: 999px;
}

body.is-using-pointer .cursor-glow {
  opacity: 0.28;
}

body.is-clicking .cursor-glow {
  opacity: 0.4;
}

body.is-using-pointer .cursor-trail {
  opacity: 0.18;
}

body.is-clicking .cursor-trail {
  opacity: 0.32;
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }

  .cursor-trail {
    display: none;
  }
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

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

section {
  position: relative;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 7, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(99, 245, 201, 0.4),
    0 0 20px rgba(99, 245, 201, 0.45);
  flex-shrink: 0;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturation(0.7);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 7, 15, 0.9), rgba(5, 7, 15, 0.5));
  z-index: -1;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.slogan {
  font-weight: 600;
  margin: 1rem 0 2rem;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #041b14;
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.hero-grid article {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(5, 7, 15, 0.65);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.motion-pill {
  padding: 1rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 245, 201, 0.4);
  background: rgba(4, 12, 18, 0.8);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
  max-width: 220px;
}

.motion-pill span {
  display: block;
  font-weight: 600;
  color: var(--accent);
}

.motion-pill small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.3rem;
}

.section {
  padding: 5rem 0;
}

.section.dark {
  background: var(--bg-alt);
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.checklist li span {
  flex: 1;
}

.media-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.media-card img {
  border-radius: 18px;
  margin-bottom: 1rem;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.overlay-note {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(5, 7, 15, 0.85);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.performance-card {
  background: radial-gradient(circle at top right, rgba(99, 245, 201, 0.15), rgba(5, 7, 15, 0.95));
}

.performance-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.metric {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.service-card,
.media-card,
.photo-card,
.gallery-card,
.industry-card,
.contact-card,
.contact-panel {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.44, 1),
    border-color 0.35s ease, box-shadow 0.45s ease, background 0.45s ease;
}

.service-card:hover,
.media-card:hover,
.photo-card:hover,
.gallery-card:hover,
.industry-card:hover,
.contact-card:hover,
.contact-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 245, 201, 0.35);
  box-shadow: 0 25px 60px rgba(1, 34, 36, 0.55),
    0 10px 30px rgba(99, 245, 201, 0.25);
}

.service-card ul {
  margin-top: auto;
  padding-left: 1.2rem;
  color: var(--muted);
}

.industries-slider {
  margin-top: 3rem;
}

.industry-card {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: var(--accent);
}

.values-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.values-grid article {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.media-gallery {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.gallery-card {
  margin: 0;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gallery-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1.25rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.gallery-card figcaption span {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.visuals {
  background: linear-gradient(145deg, rgba(5, 7, 15, 1), rgba(12, 21, 38, 1));
}

.visuals-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.photo-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-card img,
.photo-card img,
.gallery-card img {
  transition: transform 0.6s ease, filter 0.6s ease;
}

.media-card:hover img,
.photo-card:hover img,
.gallery-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

.photo-note {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.photo-note h3 {
  margin: 0;
}

.photo-note span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.visuals-cta {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

[data-animate="glow"] {
  animation: gentleGlow 10s ease-in-out infinite;
}

[data-animate="float"] {
  animation: floatPulse 7s ease-in-out infinite;
}

[data-animate="pulse"] {
  animation: pulseRing 3.5s ease-in-out infinite;
}

[data-animate="orbit"] {
  animation: orbitDrift 12s linear infinite;
}

.numbered {
  padding-left: 1rem;
  color: var(--muted);
}

.numbered li {
  margin-bottom: 0.75rem;
}

.contact {
  background: linear-gradient(135deg, rgba(5, 7, 15, 1), rgba(10, 32, 43, 0.95));
}

.contact-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 2rem;
}

.contact-line {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-line .label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--muted);
}

.contact-line span:last-child,
.contact-line a {
  color: var(--text);
}

.contact-line a {
  text-decoration: none;
}

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

.contact-social {
  margin-top: 2rem;
}

.x-link {
  gap: 0.6rem;
  font-size: 0.92rem;
}

.x-link .fa-x-twitter {
  font-size: 1.35rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.caption {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(99, 245, 201, 0.35);
  padding: 2.5rem;
  background: radial-gradient(circle at 20% 20%, rgba(99, 245, 201, 0.12), rgba(5, 7, 15, 0.95));
  min-height: 100%;
  box-shadow: var(--shadow);
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(99, 245, 201, 0.2), transparent 45%);
  opacity: 0.4;
  pointer-events: none;
}

.contact-panel .panel-header {
  position: relative;
  z-index: 1;
}

.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.contact-highlights li {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-highlights li span {
  display: block;
  font-weight: 600;
}

.contact-highlights li small {
  color: var(--muted);
  margin-top: 0.2rem;
  display: block;
}

.contact-highlights li.is-active {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(99, 245, 201, 0.25);
}

.panel-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: #03040a;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links h4 {
  margin-bottom: 0.75rem;
}

.grid-background {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
      circle at 1px 1px,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 0
    ),
    linear-gradient(120deg, rgba(99, 245, 201, 0.07), transparent 60%);
  background-size: 40px 40px;
  z-index: -3;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    inset: 70px 1rem auto;
    background: rgba(5, 7, 15, 0.95);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    flex-direction: column;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 8rem;
  }
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

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

@keyframes gentleGlow {
  0% {
    box-shadow: 0 10px 30px rgba(99, 245, 201, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 25px 50px rgba(99, 245, 201, 0.2);
    border-color: rgba(99, 245, 201, 0.35);
  }
  100% {
    box-shadow: 0 10px 30px rgba(99, 245, 201, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

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

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 245, 201, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(99, 245, 201, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 245, 201, 0);
  }
}

@keyframes orbitDrift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(6px, -8px) rotate(2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

