:root {
  --ink: #061a3d;
  --ink-soft: #17335c;
  --sky: #69b7ee;
  --sky-soft: #d9edf9;
  --paper: #f7f9fb;
  --paper-warm: #fbfaf6;
  --line: #d9e1ea;
  --muted: #617188;
  --graphite: #20252d;
  --green: #697a5d;
  --coral: #b96255;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 26, 61, 0.12);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 251, 0.98) 45%, #eef4f8 100%),
    var(--paper);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(217, 225, 234, 0.72);
  background: rgba(247, 249, 251, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(247, 249, 251, 0.94);
  box-shadow: 0 14px 42px rgba(6, 26, 61, 0.08);
}

.top-strip {
  display: flex;
  justify-content: center;
  padding: 8px 20px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  background: var(--ink);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  width: 150px;
  min-height: 48px;
}

.brand img {
  width: 148px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

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

.nav-menu a {
  min-height: 44px;
  padding: 11px 15px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), transform 140ms var(--ease-out);
}

.nav-menu a:hover {
  color: var(--ink);
  background: rgba(105, 183, 238, 0.14);
}

.nav-menu a:active,
.button:active,
.text-link:active {
  transform: translateY(1px);
}

.nav-menu .nav-cta {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.section-panel,
.split-section,
.fit-section,
.growth-section,
.what-section,
.contact-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 72px 0 54px;
}

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

.hero-copy {
  padding: 28px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Geist", "Manrope", system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 800;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 800;
}

h3 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 750;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid var(--ink);
  transition: transform 140ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.button-primary {
  gap: 10px;
  color: var(--white);
  background: var(--ink);
}

.button-primary span {
  display: inline-block;
  transition: transform 180ms var(--ease-out);
}

.button-primary:hover {
  background: #0a2452;
}

.button-primary:hover span {
  transform: translateX(4px);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
}

.button-secondary:hover {
  border-color: var(--sky);
  background: var(--sky-soft);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  --tilt-x: 0;
  --tilt-y: 0;
}

.logo-plate {
  position: absolute;
  top: 22px;
  right: 0;
  width: min(430px, 88%);
  padding: 28px;
  border: 1px solid rgba(217, 225, 234, 0.9);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translate3d(calc(var(--tilt-x) * 1px), calc(var(--tilt-y) * 1px), 0);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
  will-change: transform;
}

.logo-plate img {
  aspect-ratio: 1.28;
  width: 100%;
  object-fit: contain;
}

.signal-board {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(380px, 80%);
  padding: 22px;
  color: var(--white);
  background: var(--graphite);
  box-shadow: 0 24px 80px rgba(32, 37, 45, 0.28);
  transform: translate3d(calc(var(--tilt-x) * -0.7px), calc(var(--tilt-y) * -0.7px), 0);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
  will-change: transform;
}

.signal-header,
.signal-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-header {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-row {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.signal-row strong {
  position: relative;
  color: var(--sky);
  font-weight: 800;
}

.signal-row strong::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 5px;
  height: 5px;
  background: currentColor;
  transform: translateY(-50%);
  animation: statusBlink 1800ms var(--ease-out) infinite;
}

.signal-meter {
  height: 8px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.signal-meter span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--sky), #a8d971);
  animation: meterPulse 2600ms var(--ease-out) infinite;
}

.intro-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.intro-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 20px 0;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.intro-track span {
  padding: 9px 18px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: var(--white);
}

@media (min-width: 921px) {
  .intro-track {
    flex-wrap: wrap;
    justify-content: center;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    animation: none;
  }

  .intro-track span:nth-child(n + 7) {
    display: none;
  }
}

.split-section,
.process-section,
.fit-section,
.growth-section,
.creative-section,
.what-section,
.faq-section,
.contact-section {
  padding: 96px 0;
}

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

.section-heading p,
.fit-copy p,
.creative-layout p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading.narrow {
  display: block;
  max-width: 850px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
  align-items: start;
}

.service-panel,
.growth-grid article,
.what-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.service-panel {
  min-height: 440px;
  padding: clamp(28px, 4vw, 48px);
}

.service-panel-large {
  background:
    linear-gradient(135deg, rgba(105, 183, 238, 0.18), rgba(255, 255, 255, 0.82) 42%),
    var(--white);
}

.service-panel-offset {
  margin-top: 86px;
  background:
    linear-gradient(135deg, rgba(105, 122, 93, 0.16), rgba(255, 255, 255, 0.86) 50%),
    var(--white);
}

.panel-number {
  width: max-content;
  margin-bottom: 38px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(6, 26, 61, 0.18);
  background: rgba(255, 255, 255, 0.65);
}

.service-panel p,
.process-rail p,
.growth-grid p,
.what-grid p,
.faq-content p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--sky);
  background: var(--white);
}

.process-section,
.creative-section,
.faq-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-head {
  max-width: 860px;
  margin-bottom: 48px;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process-rail article {
  padding: 28px 26px 0 0;
  border-right: 1px solid var(--line);
}

.process-rail article:last-child {
  border-right: 0;
}

.process-rail span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--coral);
  font-weight: 800;
}

.process-rail h3 {
  font-size: 25px;
  line-height: 1.08;
}

.fit-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 46px;
  margin-top: 40px;
}

.fit-copy {
  position: sticky;
  top: 132px;
  align-self: start;
  padding: 28px 0;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 2px solid var(--sky);
}

.fit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.fit-list div {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.fit-list h3 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.08;
}

.fit-list p {
  max-width: 690px;
  margin: 12px 0 0;
  color: var(--muted);
}

.growth-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
}

.growth-copy {
  padding-top: 14px;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.growth-grid article,
.what-grid article {
  padding: 28px;
}

.growth-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.growth-grid h3,
.what-grid h3 {
  font-size: 24px;
  line-height: 1.1;
}

.creative-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: end;
}

.creative-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.creative-tags span {
  padding: 10px 14px;
  color: var(--ink-soft);
  font-weight: 800;
  border: 1px solid var(--line);
  background: var(--white);
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 14px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 18px 0;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-left: 20px;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms var(--ease-out);
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms var(--ease-out);
}

.faq-content p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-content p {
  padding-bottom: 24px;
}

.contact-section {
  padding-bottom: 70px;
}

.contact-card {
  padding: clamp(34px, 7vw, 82px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 26, 61, 0.94), rgba(6, 26, 61, 0.82)),
    var(--ink);
}

.contact-card h2,
.contact-card .eyebrow {
  color: var(--white);
}

.contact-card p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-details span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.contact-card .button-primary {
  border-color: var(--sky);
  background: var(--sky);
  color: var(--ink);
}

.contact-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 54px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 150px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

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

.site-footer .footer-company {
  color: var(--ink-soft);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  max-width: 560px;
  font-size: 14px;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid rgba(105, 183, 238, 0.8);
  outline-offset: 3px;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms var(--ease-out) var(--delay, 0ms),
    transform 620ms var(--ease-out) var(--delay, 0ms);
}

.reveal-ready .service-panel.reveal,
.reveal-ready .growth-grid article.reveal,
.reveal-ready .what-grid article.reveal {
  transform: translateY(32px) scale(0.98);
}

.reveal-ready .service-panel.reveal.is-visible,
.reveal-ready .growth-grid article.reveal.is-visible,
.reveal-ready .what-grid article.reveal.is-visible {
  transform: translateY(0) scale(1);
}

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

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

@keyframes meterPulse {
  0%,
  100% {
    transform: scaleX(0.92);
    transform-origin: left center;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@keyframes statusBlink {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(-50%) scale(0.72);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@media (max-width: 920px) {
  .top-strip {
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 104px 20px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
  }

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

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

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

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

  .hero-grid,
  .section-heading,
  .service-layout,
  .fit-grid,
  .growth-section,
  .creative-layout,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

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

  .logo-plate {
    width: 88%;
  }

  .signal-board {
    width: 82%;
  }

  .service-panel-offset {
    margin-top: 0;
  }

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

  .process-rail article {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-rail article:last-child {
    border-bottom: 0;
  }

  .fit-copy {
    position: static;
  }

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

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

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

@media (max-width: 640px) {
  .nav-shell,
  .section-panel,
  .split-section,
  .fit-section,
  .growth-section,
  .what-section,
  .contact-section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    width: 124px;
  }

  .brand img {
    width: 124px;
    height: 50px;
  }

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

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-lead,
  .section-heading p,
  .fit-copy p,
  .creative-layout p,
  .contact-card p {
    font-size: 16px;
  }

  .hero-visual {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .logo-plate {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 18px;
    transform: none;
  }

  .signal-board {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .split-section,
  .process-section,
  .fit-section,
  .growth-section,
  .creative-section,
  .what-section,
  .faq-section,
  .contact-section {
    padding: 68px 0;
  }

  .service-panel,
  .growth-grid article,
  .what-grid article {
    padding: 24px;
  }

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

  .hero-actions {
    display: grid;
  }

  .contact-card {
    margin-inline: -14px;
  }
}

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

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