@font-face {
  font-family: Inter;
  src: url("../assets/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/inter-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/inter-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/inter-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #0b2a6b;
  --navy-deep: #081f52;
  --navy-ink: #06173d;
  --gold: #d4af37;
  --gold-soft: #e6cd78;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef1f8;
  --text: #121826;
  --muted: #5d6879;
  --line: rgba(11, 42, 107, 0.12);
  --line-soft: rgba(11, 42, 107, 0.07);
  --display: "Clash Display", "Segoe UI", sans-serif;
  --body: "Satoshi", Inter, "Segoe UI", sans-serif;
  --radius: 6px;
  --page: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(38px, 4.8vw, 62px);
}

h2 {
  font-size: clamp(30px, 3.5vw, 44px);
}

h3 {
  font-size: 21px;
}

p {
  color: var(--muted);
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--navy);
  color: #fff;
}

iconsax-icon {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.container {
  width: min(100% - 48px, var(--page));
  margin-inline: auto;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy-ink);
  font-weight: 600;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}

.btn--primary {
  background: var(--navy);
  color: #fff;
}

.btn--primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-ink);
}

.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn--ghost:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.btn--pill {
  border-radius: 999px;
}

.btn--light {
  background: #fff;
  color: var(--navy-ink);
}

.btn--light:hover {
  background: #f3f5f9;
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(245, 247, 251, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.93);
  border-bottom-color: var(--line-soft);
}

.page-home .site-header--over-hero {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
}

.page-home .site-header--over-hero:not(.is-scrolled) .brand__name,
.page-home .site-header--over-hero:not(.is-scrolled) .brand__name b,
.page-home .site-header--over-hero:not(.is-scrolled) .nav > a {
  color: #fff;
}

.page-home .site-header--over-hero:not(.is-scrolled) .nav > a:hover,
.page-home .site-header--over-hero:not(.is-scrolled) .nav > a.is-active {
  color: var(--gold-soft);
}

.page-home .site-header--over-hero:not(.is-scrolled) .nav__cta {
  background: #fff;
  color: var(--navy-ink) !important;
}

.page-home .site-header--over-hero:not(.is-scrolled) .nav__cta:hover {
  background: var(--gold);
}

.page-home .site-header--over-hero:not(.is-scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.page-home .site-header--over-hero:not(.is-scrolled) .nav-toggle span {
  background: #fff;
}

.page-home .site-header--over-hero.is-scrolled {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
}

body.menu-open.page-home .site-header--over-hero .nav > a,
body.menu-open.page-home .site-header--over-hero .nav > a:hover {
  color: var(--text);
}

body.menu-open.page-home .site-header--over-hero .nav > a.is-active {
  color: var(--navy);
}

body.menu-open.page-home .site-header--over-hero .nav__cta {
  background: var(--navy);
  color: #fff !important;
}

body.menu-open.page-home .site-header--over-hero {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
}

body.menu-open.page-home .site-header--over-hero .brand__name,
body.menu-open.page-home .site-header--over-hero .brand__name b {
  color: var(--text);
}

body.menu-open.page-home .site-header--over-hero .brand__name b {
  color: var(--navy);
}

body.menu-open.page-home .site-header--over-hero .nav-toggle {
  border-color: var(--line);
  background: #fff;
}

body.menu-open.page-home .site-header--over-hero .nav-toggle span {
  background: var(--navy);
}

.page-home main {
  padding-top: 0;
}

.site-header__inner {
  width: min(100% - 40px, 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.brand__name b {
  font-weight: 700;
  color: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 15px;
  color: rgba(70, 80, 97, 0.9);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--navy);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff !important;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s;
}

.nav__cta:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.6px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.3px) rotate(-45deg);
}

/* Hero */
.hero--bleed {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 48px) 0 88px;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 61, 0.82) 0%, rgba(6, 23, 61, 0.55) 42%, rgba(6, 23, 61, 0.28) 70%, rgba(6, 23, 61, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 23, 61, 0.35) 0%, transparent 30%, rgba(6, 23, 61, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero--bleed .hero__title {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.line__inner {
  display: block;
}

/* Services stack â€” full cards that stick and overlap on scroll */
.services-stack {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 64px);
}

.services-stack .section__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}



.services-stack__cards {
  display: grid;
  gap: 0;
  padding-bottom: 12vh;
}

.service-card {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  z-index: calc(1 + var(--i, 0));
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
  min-height: min(460px, 68vh);
  margin-bottom: clamp(28px, 5vh, 56px);
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  transform-origin: center top;
}

.service-card:last-child {
  margin-bottom: 0;
}

.service-card__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.service-card__num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(11, 42, 107, 0.06);
  color: var(--navy);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  color: var(--navy);
}

.service-card__main > p {
  max-width: 40ch;
  margin-bottom: 28px;
  font-size: 16px;
  color: var(--text);
}

.service-card__aside {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 28px 26px;
  border-radius: 22px;
  background: var(--navy-ink);
  color: #fff;
}

.service-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card__aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 23, 61, 0.15) 0%,
    rgba(6, 23, 61, 0.55) 42%,
    rgba(6, 23, 61, 0.92) 100%
  );
  pointer-events: none;
}

.service-card__aside-copy {
  position: relative;
  z-index: 1;
}

.service-card__tag {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card__aside-copy > p:last-child {
  margin: 0;
  max-width: 22ch;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.service-card--promo {
  grid-template-columns: 1fr;
  background:
    linear-gradient(160deg, rgba(6, 23, 61, 0.2), rgba(6, 23, 61, 0.94)),
    url("../assets/texture-navy-mesh.png") center / cover,
    var(--navy-ink);
  border-color: transparent;
  color: #fff;
}

.service-card--promo h3 {
  color: #fff;
}

.service-card--promo .service-card__main > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card--promo .service-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.service-card.is-covered {
  border-color: rgba(11, 42, 107, 0.08);
}

/* Ticker */
.ticker {
  overflow: hidden;
  padding: 18px 0;
  background: var(--navy);
  color: #fff;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  white-space: nowrap;
}

.ticker__track span {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker__track i {
  color: var(--gold);
  font-style: normal;
  font-size: 13px;
}

/* Sections */
.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section--dark {
  position: relative;
  background: var(--navy-ink);
  color: #fff;
  overflow: hidden;
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/texture-navy-arcs.png");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

.section--dark > .container {
  position: relative;
  z-index: 1;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section__head {
  max-width: 660px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__lead {
  margin-top: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.section--dark .eyebrow {
  color: var(--gold);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 66px);
  align-items: center;
}

.about__visual {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 70px -46px rgba(6, 23, 61, 0.6);
}

.about__visual img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}

.about__stat {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}

.about__stat iconsax-icon {
  color: var(--gold);
}

.about__stat strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
}

.about__stat span {
  font-size: 13px;
  color: var(--muted);
}

.about__copy h2 {
  margin-bottom: 18px;
}

.about__copy p + p {
  margin-top: 14px;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pillars li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 100px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft);
  font-size: 14px;
  font-weight: 500;
}

.pillars iconsax-icon {
  color: var(--navy);
}

/* Mission */
.mission__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mission__item {
  padding: 30px 28px 32px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.mission__item:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px var(--line), 0 26px 44px -34px rgba(6, 23, 61, 0.7);
}

.mission__icon,
.svc__icon,
.step__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(11, 42, 107, 0.07);
  color: var(--navy);
}

.mission__item h3 {
  margin-bottom: 10px;
}

/* Services */
.services__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.svc {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.svc:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.075);
}

.svc__media {
  overflow: hidden;
}

.svc__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.svc:hover .svc__media img {
  transform: scale(1.05);
}

.svc--lg .svc__media img {
  aspect-ratio: 16 / 8;
}

.svc__body {
  padding: 26px 26px 30px;
}

.section--dark .svc__icon {
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
}

.svc h3 {
  margin-bottom: 10px;
}

.svc__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.svc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.svc__chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
}

.svc__chips iconsax-icon {
  color: var(--gold);
}

/* Method */
.steps {
  position: relative;
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.steps__line {
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
}

.steps__line i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.step {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.step__num {
  position: absolute;
  top: -14px;
  left: 26px;
  display: grid;
  place-items: center;
  min-width: 52px;
  height: 30px;
  padding: 0 12px;
  border-radius: 100px;
  background: var(--navy);
  color: #fff;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.step__icon {
  margin-top: 16px;
}

.step h3 {
  margin-bottom: 10px;
}

/* Apps */
.apps__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.app-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft);
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.app-chip iconsax-icon {
  color: var(--navy);
}

.app-chip:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px var(--line), 0 22px 40px -32px rgba(6, 23, 61, 0.7);
}

/* Work */
.work .section__head {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.work__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work__filters button {
  padding: 9px 18px;
  border: 0;
  border-radius: 100px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.work__filters button:hover {
  color: var(--navy);
}

.work__filters button[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--navy);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 42px 26px;
}

.work-card.is-hidden {
  display: none;
}

.work-card__meta {
  display: grid;
  gap: 3px;
  margin-top: 22px;
}

.work-card__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-card__meta strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.work-card__url {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.work-card a:hover .work-card__url {
  color: var(--navy);
}

.work__empty {
  margin-top: 26px;
  text-align: center;
}

/* Device mockups */
.device {
  position: relative;
  transition: transform 0.4s var(--ease);
}

.work-card a:hover .device {
  transform: translateY(-6px);
}

.device--laptop {
  padding: 9px 9px 0;
  border-radius: 12px 12px 3px 3px;
  background: linear-gradient(180deg, #223048, #131c2e);
  box-shadow: 0 36px 60px -40px rgba(6, 23, 61, 0.85);
}

.device--laptop::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.device__screen {
  position: relative;
  aspect-ratio: 19 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: #0b1020;
}

.device__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.9s var(--ease);
}

.work-card a:hover .device__screen img {
  transform: scale(1.045);
}

.device__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 42%);
  pointer-events: none;
}

.device__base {
  display: block;
  height: 13px;
  margin: 0 -5.5%;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #27344e, #151d30);
  position: relative;
}

.device__base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 62px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.16);
}

.device__phone {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: -14%;
  width: 19%;
  aspect-ratio: 283 / 611;
  overflow: hidden;
  border-radius: 13px;
  background: #0b1020;
  box-shadow: 0 0 0 4px #121b2c, 0 24px 34px -20px rgba(6, 23, 61, 0.85);
}

.device__phone img {
  position: absolute;
  top: -31.26%;
  left: -379.9%;
  width: 659.4%;
  max-width: none;
  height: auto;
}

/* CTA band */
.cta-band {
  background: #fff;
  border-block: 1px solid var(--line-soft);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.cta-band__inner h2 {
  margin-bottom: 14px;
  color: var(--navy);
}

.cta-band__inner > div > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 46ch;
}

.cta-band__side {
  justify-self: end;
  text-align: right;
}

.cta-band__points {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--text);
}

.cta-band__points li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.cta-band__points iconsax-icon {
  color: var(--gold);
}

/* Footer */
.footer {
  background: var(--navy-ink);
  color: #fff;
  padding: clamp(54px, 6vw, 78px) 0 26px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  max-width: 280px;
}

.footer h4 {
  margin-bottom: 14px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__grid a {
  display: block;
  margin-bottom: 9px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

.footer__grid a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* Inner pages */
.page-intro {
  padding: clamp(44px, 5vw, 70px) 0 clamp(22px, 3vw, 34px);
}

.page-intro .container {
  max-width: 760px;
}

.page-intro p {
  margin-top: 16px;
  font-size: 17px;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-detail {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px var(--line), 0 26px 44px -34px rgba(6, 23, 61, 0.7);
}

.service-detail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-detail__body {
  padding: 26px 26px 30px;
}

.service-detail .svc__icon {
  background: rgba(11, 42, 107, 0.07);
  color: var(--navy);
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
}

.service-detail h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-detail ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 14.5px;
  color: var(--muted);
}

.service-detail li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-detail li iconsax-icon {
  color: var(--gold);
}

.service-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 14px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-points div {
  display: flex;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.contact-points iconsax-icon {
  color: var(--gold);
  margin-top: 3px;
}

.contact-points strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
}

.contact-points span {
  font-size: 14px;
  color: var(--muted);
}

.contact-form {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft), 0 36px 60px -48px rgba(6, 23, 61, 0.6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 42, 107, 0.1);
}

.form-info,
.form-status {
  margin-top: 12px;
  font-size: 13px;
}

.form-info a,
.legal-main a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.request-preview {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface-2);
  font-size: 13px;
  white-space: pre-wrap;
  font-family: var(--body);
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  padding: 22px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.legal-aside strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
}

.legal-aside a {
  display: block;
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--muted);
}

.legal-aside a:hover,
.legal-aside a[aria-current="page"] {
  color: var(--navy);
}

.legal-main section + section {
  margin-top: 26px;
}

.legal-main h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.legal-main p + p {
  margin-top: 10px;
}

.draft-note {
  margin-bottom: 26px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: var(--surface);
  font-size: 14px;
  color: var(--muted);
}

/* Reveal */
.motion-ready .reveal {
  opacity: 0;
}

.motion-ready .reveal.is-in {
  opacity: 1;
}

.no-gsap .reveal {
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.no-gsap .reveal.is-in {
  transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .about__grid,
  .cta-band__inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    min-height: 0;
    top: calc(var(--header-h) + 12px);
    margin-bottom: clamp(20px, 4vh, 36px);
    padding: 24px 22px;
  }

  .service-card__aside {
    min-height: 220px;
  }

  .service-card h3 {
    font-size: clamp(24px, 6vw, 30px);
  }


  .hero--bleed {
    min-height: 78vh;
    padding-bottom: 72px;
  }

  .services__grid,
  .service-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .apps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-band__side {
    justify-self: start;
    text-align: left;
  }

  .cta-band__points li {
    justify-content: flex-start;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 30px 50px -40px rgba(6, 23, 61, 0.8);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
    color: var(--text);
  }

  .nav a:hover,
  .nav a.is-active {
    color: var(--navy);
  }

  .page-home .site-header--over-hero:not(.is-scrolled) .nav.is-open > a {
    color: var(--text);
  }

  .page-home .site-header--over-hero:not(.is-scrolled) .nav.is-open > a:hover,
  .page-home .site-header--over-hero:not(.is-scrolled) .nav.is-open > a.is-active {
    color: var(--navy);
  }

  .page-home .site-header--over-hero:not(.is-scrolled) .nav.is-open .nav__cta {
    background: var(--navy);
    color: #fff !important;
  }

  .nav__cta {
    margin-top: 14px;
    justify-content: center;
    border-bottom: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .mission__row,
  .steps__list,
  .services__featured {
    grid-template-columns: 1fr;
  }

  .steps__line {
    display: none;
  }

  .work .section__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 32px);
  }

  .services__grid,
  .apps__grid,
  .footer__grid,
  .service-details,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__seal {
    width: 66px;
    height: 66px;
    right: -6px;
    top: -18px;
  }

  .hero__seal img {
    width: 46px;
    height: 46px;
  }

  .hero__badge {
    left: 10px;
    bottom: 14px;
    padding: 11px 14px;
  }

  .work__grid {
    grid-template-columns: 1fr;
  }

  .device__phone {
    width: 24%;
    bottom: -12%;
  }

  .brand__name {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .service-card {
    transform: none !important;
    opacity: 1 !important;
  }
}
