:root {
  --night: #061a2f;
  --night-2: #071322;
  --blue: #0a3d73;
  --electric: #1e88ff;
  --cyan: #4fd8ff;
  --white: #ffffff;
  --soft: #f4f7fb;
  --text: #d9e7f7;
  --muted: #8da5bd;
  --dark-muted: #6b7280;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(8, 28, 51, 0.82);
  --panel-2: rgba(10, 61, 115, 0.32);
  --shadow: 0 24px 80px rgba(0, 19, 45, 0.42);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(180deg, #061a2f 0%, #071322 44%, #081a2c 100%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.045;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--night);
  background: var(--white);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 260ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 24px;
  transition: transform 360ms var(--ease);
}

.nav-shell {
  width: min(100%, 1180px);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 8px 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  background: rgba(5, 18, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 48px rgba(0, 20, 48, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(30, 136, 255, 0.34);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition: color 300ms var(--ease), background-color 300ms var(--ease), transform 300ms var(--ease);
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.nav-cta {
  color: var(--night);
  background: var(--white);
  font-weight: 800;
}

.nav-cta:hover {
  color: var(--night);
  background: var(--cyan);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  position: relative;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 320ms var(--ease);
}

.nav-toggle span:first-child {
  top: 17px;
}

.nav-toggle span:last-child {
  bottom: 17px;
}

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

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

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 132px 0 46px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.cta-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay,
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 26, 47, 0.94) 0%, rgba(6, 26, 47, 0.72) 42%, rgba(6, 26, 47, 0.26) 100%),
    linear-gradient(180deg, rgba(6, 26, 47, 0.38) 0%, rgba(6, 26, 47, 0.84) 100%);
}

.hero::after,
.cta-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--night));
}

.hero-content {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding-bottom: 86px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 960px;
  font-size: 5.9rem;
  font-weight: 800;
}

h2 {
  font-size: 3.7rem;
  font-weight: 800;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.14;
}

p {
  text-wrap: pretty;
}

.hero-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 8px 7px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), background-color 360ms var(--ease), color 360ms var(--ease);
}

.button i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-style: normal;
  transition: transform 360ms var(--ease), background-color 360ms var(--ease);
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:hover i {
  transform: translate(2px, -1px);
}

.button-primary {
  color: var(--night);
  background: linear-gradient(135deg, var(--cyan), var(--electric));
  box-shadow: 0 16px 34px rgba(30, 136, 255, 0.3);
}

.button-primary i {
  color: var(--white);
  background: rgba(6, 26, 47, 0.92);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-secondary i {
  color: var(--night);
  background: var(--white);
}

.hero-proof {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

.hero-panel {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 24px;
  background: rgba(6, 22, 40, 0.78);
}

.hero-panel strong {
  display: block;
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.65rem;
}

.hero-panel span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-header p,
.cta-content p,
.contact-card p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.stat-grid article,
.service-card,
.process-step,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 54px rgba(0, 12, 30, 0.24);
}

.stat-grid article {
  min-height: 170px;
  padding: 26px;
}

.stat-grid strong {
  display: block;
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.stat-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}

.section-header.narrow {
  display: block;
  max-width: 820px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 18px;
  margin-bottom: 14px;
  scrollbar-width: thin;
}

.filter-button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: background-color 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease);
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--night);
  background: var(--cyan);
}

.filter-button:hover {
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0b243f;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 58px rgba(0, 10, 26, 0.22);
  transition: transform 520ms var(--ease), opacity 420ms var(--ease);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 674px;
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 820ms var(--ease), filter 820ms var(--ease);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 15, 28, 0.92) 100%);
}

.gallery-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
}

.gallery-card span,
.gallery-card small {
  display: block;
}

.gallery-card span {
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.gallery-card small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.74);
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.services-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.process-step {
  min-height: 306px;
  padding: 28px;
}

.service-card span,
.process-step span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cyan);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.service-card p,
.process-step p {
  margin: 18px 0 0;
  color: var(--muted);
}

.ai-section {
  background: linear-gradient(180deg, rgba(10, 61, 115, 0.22), rgba(6, 26, 47, 0));
}

.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.ai-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.ai-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ai-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: var(--night);
  background: var(--cyan);
  border-radius: 999px;
  font-weight: 900;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.compare-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.compare-grid figcaption {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.cta-section {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.cta-overlay {
  background:
    linear-gradient(90deg, rgba(6, 26, 47, 0.94) 0%, rgba(6, 26, 47, 0.78) 48%, rgba(6, 26, 47, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 26, 47, 0.16), rgba(6, 26, 47, 0.86));
}

.cta-content h2 {
  max-width: 860px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-card {
  min-height: 260px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background:
    linear-gradient(135deg, rgba(30, 136, 255, 0.18), rgba(79, 216, 255, 0.06)),
    rgba(255, 255, 255, 0.055);
}

.footer {
  padding: 46px 0 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.footer p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 240ms var(--ease);
}

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

.footer-proof {
  text-align: right;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease);
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 20, 0.74);
  backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  width: min(100%, 860px);
  max-height: min(92dvh, 900px);
  overflow: auto;
  padding: 34px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(8, 30, 54, 0.97), rgba(4, 16, 30, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 30px 120px rgba(0, 10, 28, 0.58);
  transform: translateY(22px) scale(0.98);
  transition: transform 380ms var(--ease);
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

.modal-intro {
  padding-right: 48px;
  margin-bottom: 24px;
}

.modal-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  transition: border-color 220ms var(--ease), background-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: #061a2f;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(79, 216, 255, 0.12);
  outline: none;
}

.form-wide {
  grid-column: 1 / -1;
}

.file-field small {
  color: var(--muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 800;
}

.form-status.is-error {
  color: #ffb4b4;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

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

  h2 {
    font-size: 3rem;
  }

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

  .gallery-card.wide {
    grid-column: span 2;
  }

  .footer-grid,
  .split-grid,
  .ai-grid,
  .section-header {
    grid-template-columns: 1fr;
  }

  .footer-proof {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 12px;
    padding: 0 14px;
  }

  .nav-shell {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    background: rgba(5, 18, 34, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 260ms var(--ease), transform 260ms var(--ease);
  }

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

  .nav-links a,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .container,
  .hero-content,
  .hero-panel {
    width: min(100% - 32px, 1320px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 940px;
    padding-top: 104px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .hero-panel,
  .stat-grid,
  .compare-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .gallery-card,
  .gallery-card.tall {
    min-height: 360px;
  }

  .gallery-card.wide {
    grid-column: span 1;
  }

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

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .modal {
    padding: 12px;
  }

  .modal-panel {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 880px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead,
  .section-copy p:not(.eyebrow),
  .section-header p,
  .cta-content p,
  .contact-card p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.tall {
    min-height: 300px;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

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

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