:root {
  --primary: #0055ff;
  --primary-dark: #003fc0;
  --navy: #012236;
  --navy-2: #012b43;
  --ink: #000407;
  --text: #4f5863;
  --light: #f3f7ff;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 22px 55px rgba(0, 31, 70, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Figtree, sans-serif;
  background: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.site-container {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  padding: 120px 0;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #012236;
  display: grid;
  place-items: center;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}
.page-loader img {
  width: 190px;
  border-radius: 22px;
  animation: pulse 1s infinite alternate;
}
.page-loader.done {
  opacity: 0;
  visibility: hidden;
}
@keyframes pulse {
  to {
    opacity: 0.35;
    transform: scale(0.96);
  }
}
.topbar {
  height: 44px;
  background: #001d2d;
  color: #d9e6ee;
  font-size: 14px;
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-info,
.socials {
  display: flex;
  gap: 28px;
  align-items: center;
}
.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  transition: 0.25s ease;
}
.socials a:hover {
  color: var(--primary);
  background: #fff;
}
.socials svg,
.footer-social svg {
  width: 17px;
  height: 17px;
  overflow: visible;
}
.socials svg *,
.footer-social svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.socials svg path:first-child,
.footer-social svg path:first-child,
.socials svg rect:first-child,
.footer-social svg rect:first-child {
  vector-effect: non-scaling-stroke;
}
.socials a[aria-label="Facebook"] path,
.footer-social a[aria-label="Facebook"] path,
.socials a[aria-label="LinkedIn"] rect,
.footer-social a[aria-label="LinkedIn"] rect {
  fill: currentColor;
  stroke: none;
}
.socials .social-dot,
.footer-social .social-dot {
  fill: currentColor;
  stroke: none;
}
.site-header {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.3s;
}
.site-header.sticky {
  position: fixed;
  top: 0;
  background: rgba(1, 34, 54, 0.96);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
  animation: drop 0.35s ease;
}
@keyframes drop {
  from {
    transform: translateY(-100%);
  }
}
.nav-wrap {
  height: 92px;
  display: flex;
  align-items: center;
}
.logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
}

.clients {
  background: #f4f7fb;
}
.clients .center-heading {
  max-width: 820px;
  margin-inline: auto;
}
.clients-intro {
  max-width: 670px;
  margin: 22px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.client-card {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(1, 34, 54, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.client-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 85, 255, 0.35);
  box-shadow: 0 22px 45px rgba(1, 34, 54, 0.12);
}
.client-card img {
  width: 100%;
  height: 92px;
  object-fit: contain;
}
.client-card-dark {
  background: #05131f;
}
.client-wordmark strong {
  color: var(--navy);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.desktop-nav {
  display: flex;
  gap: 5px;
  margin-left: 54px;
}
.nav-link {
  display: flex;
  align-items: center;
  min-height: 106px;
  padding: 0 14px;
  color: #fff;
  font-weight: 600;
  transition: color 0.25s ease;
}
.nav-link:hover {
  color: #9ec0ff;
}
.nav-group {
  position: relative;
}
.nav-group > button {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 34px 14px;
  cursor: pointer;
  font-weight: 600;
}
.nav-group > button:after {
  content: "⌄";
  font-size: 11px;
  margin-left: 7px;
}
.dropdown {
  position: absolute;
  left: 0;
  top: 82px;
  width: 230px;
  padding: 15px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.25s;
  display: grid;
  z-index: 20;
}
.dropdown.mega {
  grid-template-columns: 1fr 1fr;
  width: 460px;
}
.dropdown a {
  padding: 10px 12px;
  color: #26313a;
  font-size: 15px;
  border-radius: 4px;
}
.dropdown a:hover {
  color: var(--primary);
  background: #eef4ff;
}
.nav-group:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}
.icon-button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.icon-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  width: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 17px 24px;
  border-radius: 20px;
  font-weight: 700;
  transition: 0.25s;
}
.button span {
  font-size: 20px;
}
.white-button {
  background: #fff;
  color: #00131f;
}
.primary-button {
  background: var(--primary);
  color: #fff;
}
.primary-button:hover,
.white-button:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.outline-button {
  color: #fff;
  border: 1px solid #fff;
}
.outline-button:hover {
  background: #fff;
  color: var(--navy);
}
.hero {
  min-height: 900px;
  padding: 252px 0 220px;
  position: relative;
  color: #fff;
  background: #111;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/optimized/hero.webp") center 42% / cover no-repeat;
  filter: grayscale(1);
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/media/bg-banner.ebbee70a.png") center/cover
    no-repeat;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
}
.eyebrow:before {
  content: "";
  width: 46px;
  height: 2px;
  background: currentColor;
}
.eyebrow.light {
  color: #fff;
}
.hero h1 {
  font-size: clamp(64px, 7vw, 100px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  font-weight: 800;
}
.hero-copy {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.65;
  color: #e7eef3;
  margin: 0 0 38px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}
.round-badge {
  position: absolute;
  z-index: 3;
  right: 4.5%;
  bottom: 6%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #000407;
  color: #fff;
  display: grid;
  place-items: center;
}
.round-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}
.round-badge text {
  fill: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 4px;
}
.round-arrow {
  font-size: 55px;
  color: var(--primary);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.two-column {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.about-collage {
  height: 620px;
  position: relative;
}
.about-main {
  position: absolute;
  width: 82%;
  height: 520px;
  object-fit: cover;
  left: 0;
  top: 0;
  border-radius: 0 120px 0 0;
}
.about-small {
  position: absolute;
  width: 58%;
  right: 0;
  bottom: 0;
  border: 12px solid #fff;
}
.since {
  position: absolute;
  left: -48px;
  bottom: 40px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 58px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #b7c1ca;
  letter-spacing: 0.1em;
}
.section-heading h2,
.center-heading h2,
.split-heading h2,
.faq-content h2,
.contact-copy h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.section-heading h2 em {
  color: var(--primary);
  font-style: normal;
}
.with-play {
  display: flex;
  gap: 34px;
  align-items: flex-start;
}
.play-seal {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  background: var(--primary);
  font-size: 28px;
  position: relative;
  cursor: pointer;
}
.play-seal:after {
  content: "BEST • CONSULTING • AGENCY •";
  position: absolute;
  inset: 11px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 7px;
  letter-spacing: 1px;
}
.muted {
  color: var(--text);
  line-height: 1.7;
  margin: 34px 0;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}
.check-grid li {
  font-weight: 600;
}
.check-grid li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 12px;
}
.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.mini-cards > div {
  padding: 18px 22px;
  background: #f1f6ff;
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.mini-cards img {
  width: 48px;
  height: 48px;
}
.mini-cards strong {
  font-size: 17px;
}
.process {
  color: #fff;
  background: var(--navy) url("../assets/media/bg-process.5f7d7a0e.png")
    center/cover;
}
.split-heading {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}
.split-heading > p {
  color: #c8d3da;
  line-height: 1.7;
  margin: 0 0 5px;
}
.split-heading.dark h2 {
  color: var(--ink);
}
.split-heading.dark > p {
  color: var(--text);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.process-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  padding: 48px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
}
.process-card:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.process-icon {
  position: relative;
  width: 140px;
  height: 140px;
  background: #082e43;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.process-icon img {
  width: 64px;
}
.process-icon b {
  position: absolute;
  right: -7px;
  top: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--primary);
  border-radius: 50%;
}
.process-card h3 {
  font-size: 24px;
  margin: 5px 0 12px;
}
.process-card p {
  color: #aebdc6;
  line-height: 1.55;
}
.process-card a {
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid;
}
.projects {
  position: relative;
  background: #fff url("../assets/media/bg-project.be656d08.png") left
    center/auto 100% no-repeat;
}
.projects:after {
  content: "";
  position: absolute;
  right: 0;
  top: 70px;
  width: 35%;
  height: 75%;
  background: url("../assets/media/bg-project2.62b4bb7e.png") right top/contain
    no-repeat;
  pointer-events: none;
}
.center-heading {
  text-align: center;
  margin-bottom: 58px;
  position: relative;
  z-index: 2;
}
.center-heading .eyebrow {
  justify-content: center;
}
.center-heading .eyebrow:after {
  content: "";
  width: 46px;
  height: 2px;
  background: currentColor;
}
.project-slider {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 40px 0 20px;
}
.slider-track {
  display: flex;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.project-card {
  flex: 0 0 min(395px, 76vw);
  height: 510px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: 0.35s;
}
.project-card:hover {
  transform: translateY(-38px);
}
.project-card:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 14, 30, 0.92));
}
.project-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card > div {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
  color: #fff;
}
.project-card span {
  font-size: 13px;
}
.project-card h3 {
  font-size: 27px;
  margin: 8px 0;
}
.project-card a {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.slider-controls button,
.testimonial-arrows button {
  width: 54px;
  height: 54px;
  border: 1px solid #cad2d9;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  transition: 0.2s;
}
.slider-controls button:hover,
.testimonial-arrows button:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pricing {
  background: rgba(204, 221, 255, 0.22);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 43, 84, 0.08);
}
.price-top {
  background: var(--navy);
  color: #fff;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.featured .price-top {
  background: var(--primary);
}
.price-top img {
  width: 68px;
}
.price-top span {
  font-weight: 600;
}
.price-top h3 {
  font-size: 48px;
  margin: 5px 0;
}
.price-top sup {
  font-size: 23px;
}
.price-top small {
  font-size: 14px;
  font-weight: 400;
}
.price-card ul {
  list-style: none;
  padding: 32px 36px 14px;
  margin: 0;
}
.price-card li {
  padding: 12px 0;
  color: #58636d;
}
.price-card li:before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  margin-right: 12px;
}
.price-button {
  margin: 10px 36px 36px;
  border: 1px solid #ccd5dd;
  border-radius: 8px;
  display: flex;
}
.price-button:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.team {
  padding: 100px 0;
  background: #f4f7fb;
}
.team .center-heading {
  margin-bottom: 42px;
}
.team .center-heading .eyebrow {
  margin-bottom: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-grid article {
  text-align: center;
}
.team-grid article > div {
  height: 425px;
  background: var(--navy);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.team-grid article > div:before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  background: #07344d;
}
.team-grid img {
  height: 100%;
  width: 100%;
  margin: auto;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
  transition: 0.35s;
}
.team-grid article:hover img {
  transform: scale(1.04);
}
.team-grid h3 {
  font-size: 25px;
  margin: 22px 0 5px;
}
.team-grid p {
  color: var(--primary);
  margin: 0;
}
.testimonials {
  background: #fff;
}
.faq {
  background: #f4f7fb;
}
.testimonial-arrows {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.testimonial-viewport {
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s ease;
}
.testimonial-track article {
  flex: 0 0 calc(50% - 12px);
  background: var(--navy);
  color: #fff;
  padding: 50px;
  border-radius: 20px;
}
.testimonial-track .quote {
  width: 60px;
  margin-bottom: 25px;
}
.testimonial-track article > p {
  font-size: 26px;
  line-height: 1.55;
  margin: 0 0 30px;
}
.person {
  display: flex;
  gap: 18px;
  align-items: center;
}
.person > img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.person h3 {
  margin: 0 0 4px;
}
.person span {
  color: #aebdc6;
}
.stars {
  color: #ffb800;
  margin-top: 5px;
  letter-spacing: 3px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.faq-image {
  position: relative;
}
.faq-image > img:first-child {
  width: 100%;
}
.support-badge {
  position: absolute;
  right: -20px;
  bottom: 25px;
  width: 185px;
}
.faq-content h2 {
  margin-bottom: 38px;
}
.accordion article {
  border-bottom: 1px solid #d8dee4;
}
.accordion button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
}
.accordion button b {
  font-size: 25px;
  color: var(--primary);
}
.accordion article > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.35s;
}
.accordion article > div > p {
  overflow: hidden;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.accordion article.open > div {
  grid-template-rows: 1fr;
}
.accordion article.open > div > p {
  padding-bottom: 25px;
}
.accordion article.open button {
  color: var(--primary);
}
.blog {
  position: relative;
  padding: 130px 0 90px;
}
.blog:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 620px;
  background: var(--navy);
  border-radius: 50px;
}
.center-heading.light {
  color: #fff;
}
.blog-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.blog-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blog-card:hover .blog-image img {
  transform: scale(1.06);
}
.blog-image span {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--primary);
  color: #fff;
  padding: 13px 22px;
  font-weight: 700;
}
.blog-body {
  padding: 28px;
}
.blog-body > p {
  color: #67727c;
  font-size: 13px;
  font-weight: 700;
}
.blog-body h3 {
  font-size: 23px;
  line-height: 1.35;
  margin: 15px 0 24px;
}
.blog-body > a {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-strip {
  background: #3377ff;
  color: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
}
.contact-image {
  align-self: stretch;
  position: relative;
  min-height: 370px;
}
.contact-image span {
  position: absolute;
  inset: 0;
  background: #6c9aff;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
}
.contact-image img {
  position: absolute;
  inset: 0 auto 0 8%;
  width: 88%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}
.contact-copy {
  padding: 70px 0 70px 60px;
}
.contact-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.contact-items > div {
  display: flex;
  gap: 14px;
  align-items: center;
}
.contact-items b {
  font-size: 36px;
}
.contact-items span {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}
.footer {
  background: var(--navy);
  color: #d3dce2;
  padding-top: 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 65px;
  padding-bottom: 75px;
}
.footer-logo {
  width: 130px;
  border-radius: 16px;
}
.footer p {
  line-height: 1.7;
}
.footer h3 {
  color: #fff;
  margin: 0 0 23px;
  font-size: 22px;
}
.footer-grid > div > a {
  display: block;
  padding: 7px 0;
}
.footer-grid > div > a:hover {
  color: #fff;
  transform: translateX(4px);
}
.newsletter {
  height: 52px;
  background: #fff;
  display: flex;
  margin: 18px 0 24px;
}
.newsletter input {
  border: 0;
  padding: 0 16px;
  min-width: 0;
  flex: 1;
  outline: 0;
}
.newsletter button {
  width: 52px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid #536a78;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}
.footer-social a:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 0;
}
.copyright .site-container {
  display: flex;
  justify-content: space-between;
}
.copyright a {
  color: #fff;
}
.drawer {
  position: fixed;
  z-index: 101;
  right: 0;
  top: 0;
  height: 100vh;
  width: min(430px, 90vw);
  background: #fff;
  padding: 45px;
  transform: translateX(105%);
  transition: 0.35s;
  overflow: auto;
}
.drawer.open {
  transform: none;
}
.drawer > img {
  width: 140px;
  border-radius: 16px;
  margin: 30px 0;
}
.drawer-close {
  position: absolute;
  right: 25px;
  top: 15px;
  border: 0;
  background: none;
  font-size: 40px;
  cursor: pointer;
}
.drawer nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-weight: 700;
}
.drawer-contact {
  margin-top: 45px;
}
.drawer-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(0, 4, 7, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.drawer-backdrop.open {
  visibility: visible;
  opacity: 1;
}
.search-overlay {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(0, 17, 29, 0.96);
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.search-overlay.open {
  visibility: visible;
  opacity: 1;
}
.search-overlay form {
  width: min(740px, 85vw);
  display: flex;
  border-bottom: 2px solid #fff;
}
.search-overlay input {
  flex: 1;
  padding: 22px 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 30px;
}
.search-overlay button {
  border: 0;
  background: none;
  color: #fff;
  font-size: 18px;
}
.search-close {
  position: absolute;
  right: 5%;
  top: 5%;
  font-size: 45px !important;
}
.back-to-top {
  position: fixed;
  z-index: 30;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.3s;
}
.back-to-top.show {
  opacity: 1;
  transform: none;
}
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal {
  transform: translateY(35px);
}
.reveal-left {
  transform: translateX(-55px);
}
.reveal-right {
  transform: translateX(55px);
}
.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .topbar-info span:first-child {
    display: none;
  }
  .white-button {
    display: none;
  }
  .two-column,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .about-collage {
    max-width: 650px;
  }
  .process-card {
    grid-template-columns: 120px 1fr;
  }
  .pricing-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-image {
    display: none;
  }
  .contact-copy {
    padding-left: 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .site-container {
    width: min(100% - 30px, 1320px);
  }
  .topbar {
    display: none;
  }
  .site-header {
    top: 0;
  }
  .nav-wrap {
    height: 76px;
  }
  .hero {
    min-height: 760px;
    padding: 175px 0 200px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .round-badge {
    width: 150px;
    height: 150px;
  }
  .section {
    padding: 80px 0;
  }
  .two-column {
    gap: 45px;
  }
  .about-collage {
    height: 470px;
  }
  .about-main {
    height: 390px;
  }
  .since {
    left: -24px;
    font-size: 38px;
  }
  .with-play {
    display: block;
  }
  .play-seal {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }
  .section-heading h2,
  .center-heading h2,
  .split-heading h2,
  .faq-content h2,
  .contact-copy h2 {
    font-size: 36px;
  }
  .check-grid,
  .mini-cards,
  .split-heading,
  .pricing-grid,
  .team-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    grid-template-columns: 90px 1fr;
    padding: 35px 0;
  }
  .process-card:nth-child(odd) {
    border-right: 0;
  }
  .process-icon {
    width: 80px;
    height: 80px;
  }
  .process-icon img {
    width: 40px;
  }
  .process-icon b {
    width: 35px;
    height: 35px;
  }
  .testimonial-track article {
    flex-basis: 100%;
    padding: 32px;
  }
  .testimonial-track article > p {
    font-size: 21px;
  }
  .contact-copy {
    padding: 60px 0;
  }
  .contact-items {
    grid-template-columns: 1fr;
  }
  .copyright .site-container {
    display: grid;
    gap: 10px;
  }
  .topbar-info {
    gap: 12px;
  }
  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    gap: 36px;
  }
  .blog:before {
    height: 530px;
  }
}

/* Source parity adjustments verified against the rendered original. */
.topbar {
  background: var(--primary);
  color: #fff;
}
.site-header {
  position: relative;
  top: 0;
  background: #000407;
}
.site-header.sticky {
  position: fixed;
  top: 0;
  background: rgba(0, 4, 7, 0.97);
}
.nav-wrap {
  height: 106px;
}
.nav-group > button {
  padding-top: 40px;
  padding-bottom: 40px;
}
.dropdown {
  top: 96px;
}
.white-button {
  border-radius: 0;
}
.hero {
  padding: 180px 0 259px;
}
@media (max-width: 720px) {
  .site-header {
    position: relative;
  }
  .nav-wrap {
    height: 76px;
  }
  .hero {
    padding: 120px 0 200px;
  }
}

/* Hero and agency motion reproduced from the source behavior. */
.hero-entrance {
  animation: hero-clip-left 1.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s both;
}
.hero-rise {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  animation: hero-rise 0.8s ease forwards;
}
.hero-rise-1 {
  animation-delay: 0.5s;
}
.hero-rise-2 {
  animation-delay: 0.62s;
}
.hero-rise-3 {
  animation-delay: 0.74s;
}
.hero-rise-4 {
  animation-delay: 0.86s;
}
@keyframes hero-clip-left {
  from {
    opacity: 0;
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.hero .button,
.about .primary-button {
  gap: 5px;
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.hero .outline-button:hover {
  color: var(--primary);
  background: transparent;
  border-color: var(--primary);
}
.about-collage {
  width: 100%;
  max-width: 500px;
  height: 525px;
}
.about-collage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 377px;
  height: 495px;
  background: var(--primary);
}
.about-main {
  left: 30px;
  top: 0;
  width: 377px;
  height: 495px;
  border-radius: 0;
  object-fit: cover;
}
.about-small {
  top: 70px;
  right: 10px;
  bottom: auto;
  width: 213px;
  height: 269px;
  object-fit: cover;
  border: 2px solid var(--ink);
}
.since {
  left: auto;
  right: -40px;
  bottom: 65px;
  writing-mode: initial;
  transform: rotate(90deg);
  font-size: 32px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: 0;
  -webkit-text-stroke: 1px #99bbff;
}
.play-seal::after {
  content: none;
}
.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-42%, -50%);
  font-size: 22px;
}
.seal-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
}
.seal-text text {
  fill: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.aos-rise {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.aos-rise.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.clip-left,
.clip-right {
  opacity: 0;
  transition:
    opacity 1.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    transform 1.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    clip-path 1.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.clip-left {
  transform: translateX(-5%);
  clip-path: inset(0 100% 0 0);
}
.clip-right {
  transform: translateX(5%);
  clip-path: inset(0 0 0 100%);
}
.agency-media.visible .clip-left,
.agency-media.visible .clip-right {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
}
.about .muted {
  font-size: 16px;
  line-height: 24px;
}
.about .check-grid li {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.about .mini-cards strong {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}
.about .mini-cards > div {
  padding: 0;
  background: transparent;
}
.about .mini-cards > div > img {
  width: 60px;
  height: 60px;
  padding: 12px;
  border-radius: 50%;
  background: #eef4ff;
}
@media (max-width: 720px) {
  .hero-entrance,
  .hero-rise {
    animation-duration: 0.65s;
  }
  .about-collage {
    transform: scale(0.78);
    transform-origin: left top;
    margin-bottom: -105px;
  }
  .clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .client-card {
    min-height: 120px;
    padding: 18px;
  }
  .client-card img {
    height: 68px;
  }
  .client-wordmark strong {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile parity: contained canvas, source-like header and stacked sections. */
@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  main,
  section,
  footer {
    width: 100%;
    max-width: 100%;
  }
  .site-container {
    width: calc(100% - 32px);
  }
  .site-header,
  .site-header.sticky {
    background: #000407;
  }
  .nav-wrap {
    height: 76px;
  }
  .logo img {
    width: 58px;
    height: 58px;
    border-radius: 9px;
  }
  .nav-actions {
    gap: 4px;
  }
  .icon-button {
    width: 40px;
    height: 40px;
    padding: 7px;
  }
  .icon-button svg {
    width: 23px;
  }
  .hero {
    min-height: 760px;
    padding: 122px 0 190px;
    background-position: center top;
  }
  .hero h1 {
    max-width: 360px;
    font-size: clamp(43px, 12.5vw, 52px);
    line-height: 1.04;
  }
  .hero-copy {
    max-width: 355px;
    font-size: 16px;
    line-height: 1.65;
  }
  .hero-buttons {
    gap: 18px;
  }
  .hero .button {
    min-width: 0;
  }
  .round-badge {
    right: -12px;
    bottom: -8px;
    width: 150px;
    height: 150px;
  }
  .round-badge text {
    font-size: 16px;
  }
  .about-collage {
    width: 100%;
    max-width: 100%;
    height: 455px;
    margin-bottom: 0;
    transform: none;
  }
  .about-collage::before {
    left: 0;
    top: 28px;
    width: calc(100% - 48px);
    height: 405px;
  }
  .about-main {
    left: 16px;
    width: calc(100% - 64px);
    height: 405px;
  }
  .about-small {
    right: 0;
    top: 62px;
    width: 47%;
    height: 230px;
  }
  .since {
    right: -36px;
    bottom: 74px;
    left: auto;
    font-size: 27px;
  }
  .section-heading h2,
  .center-heading h2,
  .split-heading h2,
  .faq-content h2,
  .contact-copy h2 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.12;
  }
  .clients .center-heading {
    margin-bottom: 42px;
  }
  .process-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
  }
  .process-icon {
    width: 72px;
    height: 72px;
  }
  .faq-layout,
  .contact-layout {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }
  .faq-image,
  .faq-content,
  .contact-copy {
    min-width: 0;
    max-width: 100%;
  }
  .support-badge {
    right: 0;
    width: 145px;
  }
  .search-overlay form {
    width: calc(100% - 40px);
  }
  .search-overlay input {
    min-width: 0;
    font-size: 20px;
  }
  .search-overlay form > button {
    flex: 0 0 auto;
    padding-inline: 8px;
    font-size: 15px;
  }
  .drawer {
    width: min(360px, 100vw);
    max-width: 100%;
    padding: 36px 30px;
  }
  .drawer > img {
    width: 110px;
  }
  .footer-logo {
    width: 110px;
  }
}
