:root {
  --navy: #050816;
  --navy-2: #0b1024;
  --blue: #00d4ff;
  --blue-soft: rgba(0, 212, 255, 0.12);
  --orange: #8b5cf6;
  --orange-2: #22d3ee;
  --white: #ffffff;
  --paper: #050816;
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(139, 92, 246, 0.24), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(0, 212, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 50% 90%, rgba(34, 211, 238, 0.12), transparent 30rem),
    linear-gradient(180deg, #050816 0%, #0b1024 45%, #050816 100%);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 8, 22, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand-mark,
.site-nav,
.hero-actions,
.hero-metrics,
.contact-links,
.social-badges,
.site-footer {
  display: flex;
  align-items: center;
}

.brand-mark {
  min-width: 0;
  gap: 10px;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  object-fit: contain;
  background: var(--white);
}

.brand-mark span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(0, 212, 255, 0.12);
  color: var(--white);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--blue));
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--navy);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.section,
.hero-grid,
.contact-section,
.proof-band,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero-section {
  min-height: 86svh;
  padding: 126px 0 34px;
  background:
    linear-gradient(rgba(7, 27, 58, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 58, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.1rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
 color: var(--white);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.1;
}

.hero-lede {
  max-width: 680px;
  color: #dbeafe;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 800;
}

.hero-text,
.section-heading p,
.mission-panel p,
.service-card p,
.why-grid p,
.testimonial-grid p,
.contact-copy p,
.project-card span {
   color: var(--muted);
}

.hero-text {
  max-width: 690px;
  font-size: 1.04rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 34px rgba(7, 27, 58, 0.18);
  transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    color: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.94), rgba(10, 43, 95, 0.86)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 32px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  content: "";
}

.logo-stage {
  position: absolute;
  inset: 50px 50px 112px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(7, 27, 58, 0.08);
}

.logo-stage img {
  width: min(78%, 380px);
  object-fit: contain;
}

.hero-metrics {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.capability-strip {
  border-block: 1px solid rgba(7, 27, 58, 0.1);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.strip-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.strip-track span {
  padding: 17px 26px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 700;
  white-space: nowrap;
}

.section,
.contact-section {
  padding: clamp(76px, 10vw, 128px) 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p {
  max-width: 720px;
  font-size: 1.04rem;
}

.about-grid,
.services-grid,
.project-grid,
.why-grid,
.proof-band,
.proof-images,
.team-grid,
.testimonial-grid,
.contact-section {
  display: grid;
  gap: 18px;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.about-image,
.mission-panel,
.service-card,
.why-grid article,
.project-card,
.team-card,
.testimonial-grid article,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.about-image {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}
.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-panel {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(24px, 4vw, 42px);
}

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

.service-card {
  min-height: 250px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(46, 184, 255, 0.5);
  transform: translateY(-4px);
}

.service-card span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.industry-cloud,
.tech-grid,
.social-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-cloud span,
.tech-grid span,
.social-badges span {
  border: 1px solid rgba(7, 27, 58, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.industry-cloud span {
  padding: 12px 16px;
  font-size: clamp(1rem, 2vw, 1.45rem);
}

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

.project-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.project-card:hover {
  border-color: rgba(255, 138, 31, 0.55);
  transform: translateY(-4px);
}

.project-card.featured {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--blue-soft);
}

.project-card div {
  padding: 20px;
}

.project-card p {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card span {
  display: block;
}

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

.why-grid article {
  padding: 24px;
}

.why-grid strong {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
}

.proof-band {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  padding: clamp(62px, 8vw, 96px) 0;
}

.proof-copy h2 {
  color: var(--navy);
}

.proof-images {
  grid-template-columns: 1fr 0.7fr;
}

.proof-images img {
  width: 100%;
  height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(7, 27, 58, 0.08);
}

.tech-grid span {
  padding: 14px 18px;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.client-logo-grid img {
  width: 100%;
  height: 86px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.06);
}

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

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  background: var(--blue-soft);
}

.team-card div {
  padding: 18px;
}

.team-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.testimonial-grid article {
  padding: 24px;
}

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

.testimonial-grid strong {
  color: var(--navy);
}

.testimonial-grid span {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-section {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-links {
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.contact-links a {
  width: fit-content;
  border-bottom: 2px solid rgba(46, 184, 255, 0.42);
  color: var(--navy);
  font-weight: 900;
}

/* .social-badges span {
  padding: 9px 12px;
  font-size: 0.92rem;
} */

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 27, 58, 0.16);
  border-radius: 7px;
  background: var(--white);
  color: #000000;
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 184, 255, 0.13);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer a {
  color: var(--navy);
  font-weight: 900;
}

[data-reveal] {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 700ms ease, translate 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

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

@media (max-width: 1080px) {
  .services-grid,
  .project-grid,
  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-grid,
  .about-grid,
  .proof-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 108px;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .section,
  .hero-grid,
  .contact-section,
  .proof-band,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-metrics,
  .services-grid,
  .project-grid,
  .why-grid,
  .proof-images,
  .testimonial-grid,
  .team-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: grid;
  }

  .logo-stage {
    inset: 34px 24px 150px;
  }

  .project-card.featured {
    grid-column: span 1;
  }

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

  .proof-images img {
    height: 260px;
  }

  .site-footer {
    display: grid;
  }
}

.social-badges {
  gap: 12px;
}

.social-badge {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 27, 58, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(7, 27, 58, 0.12);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-badge::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  content: "";
  transition: opacity 180ms ease;
}

.social-badge span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.social-badge:hover,
.social-badge:focus-visible {
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(7, 27, 58, 0.22);
  transform: translateY(-3px);
}

.social-badge:hover::before,
.social-badge:focus-visible::before {
  opacity: 1;
}

.social-badge.linkedin::before {
  background: linear-gradient(135deg, #0a66c2, #37a6ff);
}

.social-badge.facebook::before {
  background: linear-gradient(135deg, #1877f2, #42a5ff);
}

.social-badge.instagram::before {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-badge.tiktok::before {
  background: linear-gradient(135deg, #000000, #25f4ee, #fe2c55);
}
.social-badge svg {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-badge span {
  display: none;
}
@media (max-width: 680px) {
  .hero-visual {
    min-height: auto;
    padding: 22px;
    display: grid;
    gap: 16px;
  }

  .hero-visual::before {
    inset: 14px;
  }

  .logo-stage {
    position: relative;
    inset: auto;
    min-height: 220px;
    border-radius: 18px;
  }

  .logo-stage img {
    width: min(72%, 250px);
  }

  .hero-metrics {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 14px;
    gap: 10px;
  }

  .hero-metrics span {
    text-align: center;
    font-size: 0.82rem;
  }

  .hero-metrics strong {
    font-size: 1.45rem;
  }
}