:root {
  --ink: #0a1b35;
  --paper: #f4f7fb;
  --blue: #1556a4;
  --sky: #90c7ff;
  --muted: #5d6b7d;
  --line: #d5e0ed;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
.shell {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}
.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.nav nav {
  display: flex;
  gap: 26px;
}
.nav nav a,
.footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 15px 19px;
  background: var(--ink);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--blue);
}
.button b,
.text-link b {
  color: var(--sky);
}
.button-small {
  font-size: 13px;
  padding: 10px 13px;
  gap: 12px;
}
.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
  padding: 70px 0 92px;
  background: radial-gradient(
    circle at 80% 30%,
    rgba(144, 199, 255, 0.32),
    transparent 26%
  );
}
.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 800;
}
.hero h1,
.section h2,
.contact h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}
.hero h1 {
  font-size: clamp(50px, 7vw, 88px);
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.lead {
  max-width: 560px;
  font-size: 18px;
  color: #46556a;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}
.text-link {
  font-weight: 800;
  color: inherit;
}
.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 0;
  margin: 34px 0 0;
  color: #536278;
  font-size: 13px;
}
.trust li:before {
  content: "•";
  color: var(--blue);
  padding-right: 7px;
}
.hero-art {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0a1b35, #1556a4);
  color: white;
  padding: 18px;
  border-radius: 15px;
  transform: rotate(2deg);
  box-shadow: 12px 14px 0 var(--sky);
  animation: float 6s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  width: 300px;
  height: 300px;
  right: -100px;
  top: -130px;
}
.orbit-two {
  width: 210px;
  height: 210px;
  left: -130px;
  bottom: -115px;
}
.art-top {
  display: flex;
  justify-content: space-between;
  color: #c8dbf2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
}
.art-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 18px var(--sky);
}
.art-screen {
  position: relative;
  padding: 58px 26px 26px;
}
.art-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 4px;
}
.art-screen strong {
  display: block;
  max-width: 380px;
  font:
    clamp(30px, 4vw, 48px)/1 "Archivo Black",
    sans-serif;
  letter-spacing: -0.03em;
  margin: 22px 0 38px;
}
.art-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.art-cards div {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 13px;
  border-radius: 7px;
}
.art-cards small {
  display: block;
  color: #c7dbf3;
  font-size: 10px;
}
.art-cards b {
  display: block;
  font-size: 12px;
  line-height: 1.25;
  margin-top: 7px;
}
.art-note {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 0 0;
  color: #c7dbf3;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.statement {
  background: var(--ink);
  color: var(--paper);
  padding: 38px 0;
}
.statement p {
  max-width: 1000px;
  font-size: clamp(22px, 3vw, 39px);
  line-height: 1.13;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 500;
}
.statement strong {
  color: var(--sky);
}
.section {
  padding: 120px 0;
}
.section-intro {
  max-width: 690px;
}
.section h2,
.contact h2 {
  font-size: clamp(38px, 5vw, 64px);
}
.section-intro > p:not(.eyebrow) {
  font-size: 18px;
  color: var(--muted);
  max-width: 610px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 54px;
}
.solution {
  min-height: 300px;
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  background: white;
  transition: transform 0.2s ease;
}
.solution:hover {
  transform: translateY(-4px);
}
.solution span {
  font-weight: 800;
  color: var(--blue);
}
.solution h3 {
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 36px 0 12px;
}
.solution p {
  color: var(--muted);
  margin: 0;
}
.solution a {
  margin-top: auto;
  padding-top: 26px;
  color: inherit;
  font-weight: 800;
}
.solution a b {
  color: var(--blue);
}
.solution.featured {
  background: var(--sky);
  border-color: var(--sky);
}
.solution.featured .kicker {
  color: var(--ink);
}
.process-section {
  background: #dceafe;
}
.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #aec5e0;
}
.process li {
  display: grid;
  grid-template-columns: 56px 1fr 1.2fr;
  gap: 15px;
  border-bottom: 1px solid #aec5e0;
  padding: 20px 0;
}
.process span {
  font-weight: 800;
  color: var(--blue);
}
.process p {
  margin: 0;
  color: #4c5d72;
  font-size: 14px;
}
.case {
  margin-top: 55px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
}
.case + .case {
  margin-top: 20px;
}
.case-denise {
  background: #0f5960;
  color: #fffdf9;
}
.case-denise .case-shot {
  background: #dcefeb;
}
.case-denise .case-shot img {
  object-position: top center;
}
.case-denise .case-shot span {
  background: #0f5960;
}
.case-denise .case-copy .eyebrow {
  color: #a9eee4;
}
.case-denise .case-copy p:not(.eyebrow) {
  color: #d7eeea;
}
.case-denise .case-copy .button {
  background: #d8f1ed;
  color: #0f5960;
}
.case-denise .case-copy .button b {
  color: #0f5960;
}
.case-laricas {
  background: #0b0b0b;
}
.case-laricas .case-shot {
  background: #171717;
}
.case-laricas .case-shot img {
  object-fit: cover;
  box-shadow: 10px 12px 0 rgba(0, 0, 0, 0.34);
}
.case-laricas .case-copy .eyebrow,
.case-laricas .case-copy .button b {
  color: #ffbf00;
}
.case-laricas .case-copy .button {
  background: #ffbf00;
  color: #111;
}
.case-shot {
  position: relative;
  min-height: 340px;
  background: #dceafe;
  padding: 22px;
  overflow: hidden;
}
.case-shot img {
  width: 100%;
  height: 100%;
  min-height: 296px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 7px;
  box-shadow: 10px 12px 0 rgba(10, 27, 53, 0.18);
}
.case-shot span {
  position: absolute;
  left: 38px;
  bottom: 38px;
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.case-copy {
  padding: 52px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.case-copy .eyebrow {
  color: var(--sky);
}
.case-copy h3 {
  font:
    clamp(29px, 4vw, 44px)/1 "Archivo Black",
    sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
}
.case-copy p:not(.eyebrow) {
  color: #c8d7e8;
}
.case-copy .button {
  margin-top: auto;
  background: var(--sky);
  color: var(--ink);
}
.audiences {
  border-top: 1px solid var(--line);
}
.audiences > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}
.audiences span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-weight: 700;
  background: white;
}
.contact {
  background: var(--sky);
  padding: 100px 0;
}
.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.contact-layout > div {
  max-width: 760px;
}
.contact .eyebrow {
  color: var(--blue);
}
.contact h2 {
  font-size: clamp(39px, 5vw, 65px);
}
.contact-button {
  flex-shrink: 0;
}
.footer {
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.3fr 2fr 1fr auto;
  gap: 25px;
  align-items: center;
  font-size: 13px;
}
.footer p {
  margin: 0;
  color: var(--muted);
}
.footer small {
  color: var(--muted);
  white-space: nowrap;
}
@keyframes float {
  50% {
    transform: rotate(2deg) translateY(-10px);
  }
}
@media (max-width: 800px) {
  .nav {
    min-height: 70px;
  }
  .nav nav {
    display: none;
  }
  .nav .button {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    min-height: auto;
    padding: 60px 0 70px;
  }
  .hero-art {
    max-width: 570px;
    margin: auto;
  }
  .solution-grid,
  .case,
  .process-layout {
    grid-template-columns: 1fr;
  }
  .process-layout {
    gap: 42px;
  }
  .process li {
    grid-template-columns: 40px 1fr;
  }
  .process li p {
    grid-column: 2;
  }
  .section {
    padding: 80px 0;
  }
  .contact {
    padding: 74px 0;
  }
  .contact-layout {
    display: block;
  }
  .contact-button {
    margin-top: 25px;
  }
  .footer {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .art-screen {
    padding: 44px 18px 18px;
  }
  .art-cards {
    grid-template-columns: 1fr;
  }
  .art-cards div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .art-cards b {
    margin: 0;
    text-align: right;
  }
  .case-shot {
    min-height: 280px;
    padding: 16px;
  }
  .case-shot img {
    min-height: 248px;
  }
  .case-shot span {
    left: 28px;
    bottom: 28px;
  }
  .case-copy {
    min-height: 360px;
    padding: 36px 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
