:root {
  --blue: #2448ff;
  --blue-deep: #132ba8;
  --peach: #ff8063;
  --ice: #e9edf5;
  --ink: #111218;
  --white: #ffffff;
  --line: rgba(17, 18, 24, 0.18);
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "Archivo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ice);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-180%);
}

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

.site-header {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(24px, 4vw, 68px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.05;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--blue);
}

.brand-mark::before,
.brand-mark i {
  position: absolute;
  content: "";
}

.brand-mark::before {
  width: 23px;
  height: 9px;
  left: 5px;
  top: 9px;
  background: var(--peach);
}

.brand-mark i {
  width: 10px;
  height: 22px;
  right: 6px;
  bottom: 5px;
  background: var(--white);
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  font-size: 14px;
  font-weight: 600;
}

nav a,
.header-contact {
  position: relative;
}

nav a::after,
.header-contact::after {
  position: absolute;
  content: "";
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -6px;
  background: currentColor;
  transition: right 180ms ease;
}

nav a:hover::after,
.header-contact:hover::after {
  right: 0;
}

.header-contact {
  justify-self: end;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(72px, 10vw, 148px) clamp(28px, 7vw, 110px);
  background: var(--blue);
  color: var(--white);
}

.hero-kicker,
.section-tag,
.section-heading > p,
.approach-intro > p,
.contact-heading > p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 10px;
  border-radius: 999px;
  background: var(--peach);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  margin: 38px 0 32px;
  font-size: clamp(64px, 8.4vw, 136px);
  font-weight: 650;
}

h1 span {
  display: block;
  color: var(--peach);
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.6;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 58px;
  padding: 14px 18px 14px 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-action span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
}

.primary-action:hover {
  transform: translateY(-3px);
  background: var(--ice);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ice);
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
}

.prism {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(30vw, 450px);
  aspect-ratio: 0.82;
  place-items: center;
  border: clamp(18px, 2vw, 30px) solid var(--ink);
  border-radius: 48% 48% 12% 48%;
  background: var(--peach);
  box-shadow: 25px 25px 0 var(--blue);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(82px, 11vw, 170px);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 1;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.signal {
  position: absolute;
  z-index: 2;
  height: 30px;
  border: 5px solid var(--ink);
  border-radius: 999px;
}

.signal-one {
  top: 13%;
  right: -30px;
  width: 210px;
  background: var(--white);
  transform: rotate(-11deg);
}

.signal-two {
  left: -45px;
  bottom: 18%;
  width: 180px;
  background: var(--blue);
  transform: rotate(16deg);
}

.orbit {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 82px;
  height: 82px;
  border: 20px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--ink);
}

.hero-visual > p {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 3;
  margin: 0;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.statement {
  display: grid;
  grid-template-columns: 0.55fr 1.55fr 0.7fr;
  gap: clamp(28px, 5vw, 88px);
  padding: clamp(90px, 12vw, 180px) clamp(24px, 6vw, 100px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-tag {
  color: var(--blue);
}

.statement-copy h2,
.section-heading h2,
.approach-intro h2,
.contact-heading h2 {
  margin-bottom: 30px;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 650;
}

.statement-copy p {
  max-width: 780px;
  margin-bottom: 0;
  color: #4e505d;
  font-size: clamp(18px, 1.5vw, 23px);
}

.statement-note {
  align-self: end;
  padding-top: 18px;
  border-top: 5px solid var(--peach);
}

.statement-note span {
  display: block;
  margin-bottom: 10px;
  color: #6c6f7a;
  font-size: 13px;
}

.statement-note strong {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
}

.capabilities {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 6vw, 100px);
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 48px;
  margin-bottom: clamp(54px, 7vw, 100px);
}

.section-heading > p {
  color: var(--peach);
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.capability-list {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.capability {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 120px;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  min-height: 210px;
  padding: 36px clamp(20px, 4vw, 58px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.capability-title {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 58px);
}

.capability-title span {
  font-size: 13px;
  font-weight: 700;
}

.capability h3 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 650;
}

.capability p {
  max-width: 540px;
  margin: 0;
  font-size: 17px;
}

.capability-blue {
  background: var(--blue);
}

.capability-light {
  background: var(--ice);
  color: var(--ink);
}

.capability-peach {
  background: var(--peach);
  color: var(--ink);
}

.capability-shape {
  justify-self: center;
}

.shape-pill {
  width: 42px;
  height: 100px;
  border: 8px solid var(--white);
  border-radius: 999px;
  transform: rotate(24deg);
}

.shape-cross {
  position: relative;
  width: 72px;
  height: 72px;
}

.shape-cross::before,
.shape-cross::after {
  position: absolute;
  content: "";
  top: 29px;
  left: 0;
  width: 72px;
  height: 14px;
  border-radius: 999px;
  background: var(--blue);
}

.shape-cross::after {
  transform: rotate(90deg);
}

.shape-dot {
  width: 76px;
  height: 76px;
  border: 14px solid var(--ink);
  border-radius: 50%;
}

.approach {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 140px);
  padding: clamp(90px, 12vw, 170px) clamp(24px, 6vw, 100px);
  background: var(--ice);
}

.approach-intro > p {
  margin-bottom: 28px;
  color: var(--blue);
}

.approach-intro h2 {
  position: sticky;
  top: 40px;
  margin-bottom: 0;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 38px 0 44px;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 44px);
}

.process-list p {
  max-width: 600px;
  margin-bottom: 0;
  color: #51535e;
  font-size: 17px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding: clamp(90px, 11vw, 160px) clamp(24px, 6vw, 100px);
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.contact-heading,
.contact-links {
  position: relative;
  z-index: 2;
}

.contact-heading > p {
  margin-bottom: 28px;
  color: var(--peach);
}

.contact-heading h2 {
  margin-bottom: 0;
}

.contact-links {
  align-self: end;
}

.contact-links a {
  display: block;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-links a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-links span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.contact-links strong {
  font-family: var(--display);
  font-size: clamp(21px, 2.2vw, 34px);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-links a:hover strong {
  color: var(--peach);
}

.contact-graphic {
  position: absolute;
  right: -5vw;
  top: -10vw;
  width: 35vw;
  height: 35vw;
  opacity: 0.18;
}

.contact-graphic i {
  position: absolute;
  display: block;
  width: 55%;
  height: 55%;
  border: 4vw solid var(--white);
  border-radius: 50%;
}

.contact-graphic i:nth-child(2) {
  left: 28%;
  top: 28%;
}

.contact-graphic i:nth-child(3) {
  left: 56%;
  top: 56%;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(24px, 6vw, 100px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

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

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

  .prism {
    width: min(58vw, 420px);
  }

  .statement {
    grid-template-columns: 1fr 2fr;
  }

  .statement-note {
    grid-column: 2;
  }

  .section-heading,
  .approach,
  .contact {
    grid-template-columns: 1fr;
  }

  .capability {
    grid-template-columns: 1fr 1fr 76px;
  }

  .approach-intro h2 {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 82px;
    padding: 16px 20px;
  }

  .header-contact {
    font-size: 13px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 70px 24px 78px;
  }

  h1 {
    font-size: clamp(58px, 20vw, 88px);
  }

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

  .prism {
    width: 64vw;
    box-shadow: 16px 16px 0 var(--blue);
  }

  .orbit {
    width: 60px;
    height: 60px;
    border-width: 14px;
  }

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

  .statement-note {
    grid-column: auto;
  }

  .section-heading {
    gap: 24px;
  }

  .capabilities {
    padding-left: 16px;
    padding-right: 16px;
  }

  .capability {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 24px;
  }

  .capability-title {
    gap: 20px;
  }

  .capability-shape {
    display: none;
  }

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

  .contact {
    gap: 50px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
