:root {
  --ink: #07111f;
  --ink-soft: #0d1929;
  --ink-card: #101e30;
  --paper: #eef2f6;
  --paper-bright: #f8fafc;
  --blue: #075fe9;
  --blue-bright: #1684ff;
  --cyan: #00d4db;
  --green: #25d366;
  --text: #0b1727;
  --muted: #5f6d7e;
  --line: rgba(8, 25, 45, .12);
  --white: #fff;
  --container: 1220px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 28px 80px rgba(3, 13, 27, .18);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue-bright));
  box-shadow: 0 0 16px rgba(0, 212, 219, .55);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, .88);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.navbar {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
}

.brand__mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, .25));
}

.brand__name {
  display: grid;
  line-height: 1;
}

.brand__name strong {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .12em;
}

.brand__name small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-menu > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color .25s ease;
}

.site-menu > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}

.site-menu > a:hover,
.site-menu > a.is-active {
  color: var(--white);
}

.site-menu > a:hover::after,
.site-menu > a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.nav-cta {
  min-height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 12px 30px rgba(7, 95, 233, .28);
}

.nav-cta svg,
.button svg,
.projects__intro a svg,
.service-card__content > svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.nav-cta:hover {
  box-shadow: 0 18px 36px rgba(7, 95, 233, .4);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border-radius: 13px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

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

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

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

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 78% 35%, rgba(7, 95, 233, .18), transparent 34%),
    var(--ink);
  background-size: 70px 70px, 70px 70px, auto, auto;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  content: "";
  background: linear-gradient(transparent, var(--ink));
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  opacity: .35;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
}

.hero__glow--one {
  top: -180px;
  left: -120px;
  background: var(--blue);
}

.hero__glow--two {
  right: -190px;
  bottom: -150px;
  background: var(--cyan);
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  padding-top: 132px;
  padding-bottom: 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: #9aafc5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 219, .65);
}

.eyebrow--dark {
  color: #536376;
}

.hero h1,
.section-heading h2,
.about__content h2,
.cta-panel h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .99;
}

.hero h1 em,
.section-heading h2 em,
.about__content h2 em,
.cta-panel h2 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(110deg, var(--cyan) 5%, #4d9dff 75%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #aab9ca;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 18px 42px rgba(7, 95, 233, .34);
}

.button--primary svg {
  width: 21px;
  fill: currentColor;
  stroke: none;
}

.button--primary:hover {
  box-shadow: 0 24px 46px rgba(7, 95, 233, .45);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 34px 0 0;
  padding: 0;
  color: #879aae;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__highlights svg {
  width: 15px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__visual {
  position: relative;
  height: min(70vh, 690px);
  min-height: 530px;
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}

.hero-project {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #132236;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .42);
}

.hero-project::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(4, 10, 20, .92));
  pointer-events: none;
}

.hero-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-project--main {
  inset: 3% 3% 4% 8%;
  border-radius: 180px 26px 26px 26px;
}

.hero-project--main img {
  transition: transform 1.2s var(--ease);
}

.hero__visual:hover .hero-project--main img {
  transform: scale(1.04);
}

.hero-project figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: grid;
}

.hero-project figcaption span {
  font-size: 18px;
  font-weight: 800;
}

.hero-project figcaption small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-project--float {
  z-index: 3;
  right: -3%;
  bottom: 8%;
  width: 38%;
  height: 29%;
  border: 6px solid var(--ink);
  border-radius: 18px;
  transform: translateZ(45px);
}

.hero-project--float::after {
  display: none;
}

.hero__stamp {
  position: absolute;
  z-index: 4;
  top: 9%;
  left: -2%;
  width: 168px;
  height: 168px;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, .42));
  transform: translateZ(70px);
}

.hero__stamp::before {
  display: none;
}

.hero__stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #718398;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 19px;
  height: 29px;
  border: 1px solid #4a5d72;
  border-radius: 20px;
}

.scroll-cue span::after {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 3px;
  height: 6px;
  content: "";
  background: var(--cyan);
  border-radius: 4px;
  animation: scroll-dot 1.8s ease infinite;
}

.signature-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 19px 0;
  color: var(--white);
  background: linear-gradient(90deg, #065fe5, #087ddf 54%, #03a9c6);
}

.signature-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.signature-strip__track span {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  white-space: nowrap;
  text-transform: uppercase;
}

.signature-strip__track i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 212, 219, .8);
}

.section {
  padding: clamp(86px, 10vw, 145px) 0;
}

.services {
  background:
    radial-gradient(circle at 94% 4%, rgba(7, 95, 233, .08), transparent 26%),
    var(--paper);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: 1.25fr .75fr;
  margin-bottom: 58px;
}

.section-heading h2,
.about__content h2,
.cta-panel h2,
.contact-card h2 {
  color: var(--text);
  font-size: clamp(34px, 4.3vw, 58px);
}

.section-heading h2 em,
.about__content h2 em {
  color: var(--blue);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.section-heading > p,
.projects__intro > p {
  max-width: 460px;
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  gap: 16px;
  grid-auto-rows: 360px;
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: var(--white);
  background: var(--ink-card);
  border-radius: var(--radius-md);
  isolation: isolate;
}

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

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease), filter .75s ease;
}

.service-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 20, .04) 20%, rgba(5, 11, 20, .92) 96%);
  transition: background .4s ease;
}

.service-card__content {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  align-items: end;
  gap: 18px;
  grid-template-columns: 34px 1fr 42px;
}

.service-card__content > span {
  align-self: start;
  padding-top: 5px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}

.service-card p {
  max-width: 500px;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height .4s ease, opacity .4s ease, margin .4s ease, transform .4s ease;
}

.service-card__content > svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.service-card:hover img {
  filter: saturate(1.12);
  transform: scale(1.055);
}

.service-card:hover .service-card__shade {
  background: linear-gradient(180deg, rgba(5, 11, 20, .02), rgba(5, 11, 20, .95));
}

.service-card:hover p {
  max-height: 70px;
  margin-top: 8px;
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card__content > svg {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
  transform: rotate(-35deg);
}

.projects {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    var(--ink);
  background-size: 74px 74px;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light h2 em {
  color: transparent;
  background: linear-gradient(110deg, var(--cyan), #579fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading--light > p,
.section-heading--light .projects__intro > p {
  color: #8fa0b3;
}

.projects__intro a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.projects__intro a svg {
  width: 17px;
  transition: transform .25s ease;
}

.projects__intro a:hover svg {
  transform: translateX(5px);
}

.project-grid {
  display: grid;
  gap: 14px;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: #132236;
  border: 0;
  border-radius: 18px;
  cursor: zoom-in;
  text-align: left;
}

.project-card--tall {
  grid-row: span 2;
}

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

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(4, 11, 20, .92));
  opacity: .72;
  transition: opacity .35s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s ease;
}

.project-card__info {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  transform: translateY(7px);
  transition: transform .35s var(--ease);
}

.project-card__info small {
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project-card__info strong {
  font-size: 16px;
}

.project-card:hover img {
  filter: saturate(1.15);
  transform: scale(1.06);
}

.project-card:hover::after {
  opacity: 1;
}

.project-card:hover .project-card__info {
  transform: translateY(0);
}

.about {
  color: var(--white);
  background: var(--ink-soft);
}

.about__layout {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: .9fr 1.1fr;
}

.about__visual {
  position: relative;
  min-height: 670px;
}

.about__visual::before {
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;
  width: 66%;
  height: 66%;
  content: "";
  border: 1px solid rgba(0, 212, 219, .25);
  border-radius: 20px;
}

.about__visual > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 160px 24px 24px;
  box-shadow: var(--shadow);
}

.about__visual::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(3, 10, 18, .68));
  border-radius: 160px 24px 24px;
  pointer-events: none;
}

.about__badge {
  position: absolute;
  z-index: 3;
  right: -38px;
  bottom: 44px;
  display: grid;
  width: 200px;
  padding: 25px;
  background: linear-gradient(145deg, var(--blue-bright), var(--blue));
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(7, 95, 233, .32);
}

.about__badge strong {
  font-size: 36px;
  letter-spacing: -.04em;
  line-height: 1;
}

.about__badge span {
  margin-top: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.about__content h2 {
  color: var(--white);
}

.about__content h2 em {
  color: var(--cyan);
}

.about__lead {
  margin: 30px 0 14px;
  color: #c1cedb;
  font-size: 18px;
  line-height: 1.8;
}

.about__content > p:not(.eyebrow):not(.about__lead) {
  margin: 0;
  color: #7f91a5;
  line-height: 1.8;
}

.about__pillars {
  display: grid;
  gap: 2px;
  margin-top: 40px;
}

.about__pillars > div {
  display: grid;
  align-items: center;
  gap: 16px;
  grid-template-columns: 36px 1fr 1.4fr;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.about__pillars span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
}

.about__pillars strong {
  font-size: 14px;
}

.about__pillars small {
  color: #7f91a5;
  font-size: 12px;
}

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 70%, rgba(7, 95, 233, .15), transparent 30%),
    var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 245px;
  padding: 26px 28px 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.process-list li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.process-list li:not(:first-child) {
  padding-left: 28px;
}

.process-list li::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(0, 212, 219, .65);
}

.process-list li:not(:first-child)::before {
  left: 28px;
}

.process-list li > span {
  color: #53687d;
  font-size: 11px;
  font-weight: 800;
}

.process-list li > div {
  margin-top: 70px;
}

.process-list h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.process-list p {
  max-width: 220px;
  margin: 0;
  color: #8294a7;
  font-size: 13px;
}

.cta-panel {
  padding: 0;
  background: var(--paper);
}

.cta-panel__inner {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(115deg, #045bdc, #087be7 52%, #05a8c5);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 75px rgba(7, 95, 233, .23);
  transform: translateY(-1px);
}

.cta-panel__inner::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 22%),
    linear-gradient(90deg, transparent 56%, rgba(3, 11, 21, .34));
  pointer-events: none;
}

.cta-panel__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.cta-panel__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #087be7 0%, rgba(8, 123, 231, .12) 48%, rgba(3, 11, 21, .2));
}

.cta-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-panel__content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 62%;
  padding: clamp(42px, 7vw, 84px);
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel h2 em {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.cta-panel__content > p:not(.eyebrow) {
  max-width: 500px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, .76);
}

.button--white {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(3, 13, 28, .16);
}

.contact-section {
  padding-top: 120px;
  background: var(--paper);
}

.contact-card {
  display: grid;
  overflow: hidden;
  background: var(--paper-bright);
  border: 1px solid rgba(8, 25, 45, .08);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(7, 20, 37, .09);
  grid-template-columns: 1fr .9fr;
}

.contact-card__content {
  padding: clamp(38px, 6vw, 72px);
}

.contact-card h2 {
  max-width: 560px;
}

.contact-card__content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 32px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 4px;
}

.contact-list > a {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 14px;
  text-decoration: none;
  border-radius: 15px;
  grid-template-columns: 48px 1fr;
  transition: background .25s ease, transform .25s ease;
}

.contact-list > a:hover {
  background: #e9eff6;
  transform: translateX(4px);
}

.contact-list > a > span {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--blue);
  background: #e7eef9;
  border-radius: 14px;
  place-items: center;
}

.contact-list svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.contact-list svg .fill {
  fill: currentColor;
  stroke: none;
}

.contact-list div {
  display: grid;
}

.contact-list small {
  color: #788697;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 14px;
}

.contact-list b {
  color: #788697;
  font-size: 11px;
  font-weight: 600;
}

.hours {
  display: grid;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hours span {
  color: #788697;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hours strong {
  margin-top: 3px;
  font-size: 13px;
}

.contact-card__map {
  min-height: 100%;
}

.contact-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
  filter: saturate(.8) contrast(1.04);
}

.site-footer {
  padding: 70px 0 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 1fr 1fr auto;
  padding-bottom: 55px;
}

.brand--footer {
  justify-self: start;
}

.footer-main > p {
  max-width: 420px;
  margin: 0;
  color: #8294a7;
  font-size: 14px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social a,
.footer-bottom a {
  color: #a7b6c6;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-social a:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  color: #55697e;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
}

.whatsapp-fab {
  position: fixed;
  z-index: 95;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--green);
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 15px 34px rgba(4, 20, 13, .34);
  place-items: center;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.whatsapp-fab::before {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(37, 211, 102, .5);
  border-radius: 50%;
  animation: pulse 2.6s infinite;
}

.whatsapp-fab svg {
  width: 27px;
  fill: currentColor;
}

.whatsapp-fab:hover {
  box-shadow: 0 20px 40px rgba(4, 20, 13, .45);
  transform: translateY(-4px) scale(1.04);
}

.lightbox {
  width: min(100% - 32px, 1100px);
  max-width: none;
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  color: var(--white);
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(2, 7, 14, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  display: grid;
  max-height: 88vh;
  margin: 0;
  place-items: center;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .48);
}

.lightbox figcaption {
  margin-top: 12px;
  color: #c5d0db;
  font-size: 13px;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: -20px;
  right: -10px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  place-items: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--delay, 0) * 90ms);
}

.js [data-reveal="left"] {
  transform: translateX(-32px);
}

.js [data-reveal="right"] {
  transform: translateX(32px);
}

.js [data-reveal="zoom"] {
  transform: scale(.94);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] { --delay: 1; }
[data-delay="2"] { --delay: 2; }
[data-delay="3"] { --delay: 3; }
[data-delay="4"] { --delay: 4; }

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

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

@keyframes scroll-dot {
  0%, 100% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  70% { opacity: 1; transform: translateY(8px); }
}

@keyframes pulse {
  0% { opacity: .7; transform: scale(.9); }
  70%, 100% { opacity: 0; transform: scale(1.25); }
}

@media (min-width: 1025px) {
  .services-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .service-card {
    grid-column: span 5;
  }

  .service-card--wide {
    grid-column: span 7;
  }
}

@media (max-width: 1024px) {
  .site-menu {
    gap: 20px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  }

  .hero__visual {
    height: 580px;
    min-height: 0;
  }

  .about__visual {
    min-height: 580px;
  }

  .about__badge {
    right: -16px;
  }

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

  .footer-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 74px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .navbar {
    min-height: 74px;
  }

  .brand__mark {
    width: 50px;
    height: 50px;
  }

  .brand__mark img {
    width: 50px;
    height: 50px;
  }

  .brand__name strong {
    font-size: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    z-index: 99;
    top: 74px;
    right: 16px;
    left: 16px;
    display: grid;
    overflow: hidden;
    gap: 2px;
    padding: 12px;
    background: rgba(10, 23, 39, .98);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(.98);
    transform-origin: top;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s ease;
  }

  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-menu > a:not(.nav-cta) {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
  }

  .site-menu > a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, .06);
  }

  .site-menu > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 5px;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    padding-top: 134px;
    padding-bottom: 120px;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero__visual {
    width: min(100%, 650px);
    height: 650px;
    margin: 0 auto;
  }

  .hero-project--main {
    inset: 0 2% 5% 6%;
  }

  .hero__stamp {
    left: 0;
  }

  .section-heading {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .section-heading > p,
  .projects__intro {
    max-width: 600px;
  }

  .project-grid {
    grid-auto-rows: 250px;
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--tall {
    grid-row: span 1;
  }

  .about__layout {
    gap: 80px;
    grid-template-columns: 1fr;
  }

  .about__visual {
    width: min(100% - 18px, 640px);
    min-height: 620px;
  }

  .process-list {
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li {
    min-height: 220px;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .cta-panel__content {
    width: 72%;
  }

  .cta-panel__image {
    width: 52%;
  }

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

  .contact-card__map iframe {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .brand__name small {
    display: none;
  }

  .hero__layout {
    gap: 52px;
    padding-top: 118px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 58px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__highlights {
    display: grid;
    gap: 9px;
  }

  .hero__visual {
    height: 440px;
  }

  .hero-project--main {
    inset: 0 0 2% 0;
    border-radius: 100px 20px 20px;
  }

  .hero-project figcaption {
    right: 20px;
    bottom: 19px;
    left: 20px;
  }

  .hero-project figcaption span {
    font-size: 15px;
  }

  .hero-project--float {
    right: -2%;
    bottom: -5%;
    width: 44%;
    height: 31%;
  }

  .hero__stamp {
    top: 7%;
    left: -8px;
    width: 126px;
    height: 126px;
  }

  .scroll-cue {
    display: none;
  }

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

  .section-heading h2,
  .about__content h2,
  .cta-panel h2,
  .contact-card h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .section-heading h2 br {
    display: none;
  }

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

  .service-card,
  .service-card--wide {
    min-height: 330px;
    grid-column: auto;
  }

  .service-card__content {
    right: 19px;
    bottom: 19px;
    left: 19px;
    grid-template-columns: 26px 1fr 38px;
  }

  .service-card p {
    max-height: 70px;
    margin-top: 6px;
    opacity: 1;
    transform: none;
  }

  .service-card__content > svg {
    width: 38px;
    height: 38px;
  }

  .project-grid {
    grid-auto-rows: 300px;
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card--wide {
    grid-column: auto;
  }

  .about__layout {
    gap: 64px;
  }

  .about__visual {
    width: calc(100% - 8px);
    min-height: 450px;
  }

  .about__visual > img,
  .about__visual::after {
    border-radius: 90px 20px 20px;
  }

  .about__badge {
    right: -8px;
    bottom: 24px;
    width: 164px;
    padding: 19px;
  }

  .about__badge strong {
    font-size: 28px;
  }

  .about__pillars > div {
    align-items: start;
    grid-template-columns: 28px 1fr;
  }

  .about__pillars small {
    grid-column: 2;
  }

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

  .process-list li,
  .process-list li:not(:first-child) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
  }

  .process-list li:not(:first-child)::before {
    left: 0;
  }

  .process-list li > div {
    margin-top: 32px;
  }

  .process-list p {
    max-width: 400px;
  }

  .cta-panel {
    padding: 0 0 12px;
  }

  .cta-panel__inner {
    min-height: 560px;
    border-radius: 24px;
  }

  .cta-panel__image {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 45%;
    clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%);
  }

  .cta-panel__image::after {
    background: linear-gradient(180deg, #087be7, rgba(8, 123, 231, .08));
  }

  .cta-panel__content {
    align-self: start;
    width: 100%;
    padding: 38px 26px;
  }

  .contact-section {
    padding-top: 74px;
  }

  .contact-card {
    border-radius: 24px;
  }

  .contact-card__content {
    padding: 35px 22px;
  }

  .contact-list > a {
    padding: 12px 5px;
  }

  .contact-list > a:hover {
    background: transparent;
  }

  .contact-card__map iframe {
    min-height: 340px;
  }

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

  .footer-social {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .lightbox__close {
    top: -14px;
    right: -2px;
  }
}

@media (hover: none) {
  .service-card p {
    max-height: 70px;
    margin-top: 6px;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
