:root {
  --navy-0: #04223a;
  --navy-1: #0b4a78;
  --blue: #007fc5;
  --blue-deep: #005f94;
  --blue-lit: #7ad3ff;
  --ink: #1a171b;
  --soft: #5c6066;
  --paper: #ffffff;
  --paper-2: #f5f7f8;
  --rule: #e2e5e8;
  --w70: rgba(255, 255, 255, .72);
  --w45: rgba(255, 255, 255, .45);
  --w14: rgba(255, 255, 255, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: 78rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 60rem) { .wrap { padding: 0 4rem; } }

.masthead { background: var(--paper); }
.masthead .wrap {
  display: flex; align-items: center;
  min-height: 5.25rem;
}
.logo { display: block; width: 100%; max-width: 14rem; height: auto; }
@media (min-width: 48rem) { .logo { max-width: 17.5rem; } }
.lg-blue { fill: var(--blue); }
.lg-ink { fill: var(--ink); }
.lg-ink-s { fill: var(--ink); stroke: var(--ink); stroke-miterlimit: 10; }

.dot { color: var(--blue); font-weight: 500; }

.foot {
  border-top: 1px solid var(--rule);
  padding: 1.75rem 0 2.5rem;
  font-size: .8125rem; color: var(--soft);
}
.foot .wrap { display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; }
.foot a {
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.foot a:hover { color: var(--blue); border-bottom-color: var(--blue); }

/* Home */
.stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(0, 127, 197, .28) 0%, rgba(0, 127, 197, 0) 58%),
    linear-gradient(115deg, var(--navy-0) 10%, var(--navy-1) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 5.25rem);
}
.bars {
  position: absolute;
  right: 0; bottom: 0;
  width: 100%; height: 62%;
  fill: var(--w14);
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 60rem) { .bars { width: 82%; height: 74%; } }

.hero {
  flex: 1;
  display: flex; align-items: center;
  padding: clamp(3.5rem, 10vh, 7rem) 0 clamp(4rem, 12vh, 8rem);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue-lit); margin: 0 0 1.75rem;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-lit); box-shadow: 0 0 0 0 rgba(122, 211, 255, .55);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(122, 211, 255, .5); }
  70% { box-shadow: 0 0 0 10px rgba(122, 211, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(122, 211, 255, 0); }
}
.home-title {
  font-size: clamp(2.75rem, 8.5vw, 6rem);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 2rem;
  max-width: 16ch;
}
.stage .dot,
.statement__lead .dot { color: var(--blue-lit); }
.hero__sub {
  font-size: clamp(1.0625rem, 2.2vw, 1.375rem);
  font-weight: 300; color: var(--w70);
  margin: 0 0 2.5rem; max-width: 42ch;
}
.caret {
  display: inline-block; width: 1px; height: 1.05em;
  background: var(--w70); vertical-align: -.16em; margin-left: .35rem;
  animation: blink 1.15s step-end infinite;
}
@keyframes blink { 0%,49% { opacity: 1 } 50%,100% { opacity: 0 } }

.cta {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .9rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  font-size: .9375rem; letter-spacing: .02em;
  color: #fff;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.cta:hover { background: #fff; color: var(--navy-0); border-color: #fff; transform: translateY(-1px); }
.cta__arrow { transition: transform .18s ease; }
.cta:hover .cta__arrow { transform: translateY(2px); }

.statement {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.statement .wrap {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 56rem) {
  .statement .wrap { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 4rem; align-items: start; }
}
.statement__lead {
  font-size: clamp(1.5rem, 3.4vw, 2.375rem);
  font-weight: 200; line-height: 1.24; letter-spacing: -.01em;
  margin: 0; max-width: 22ch;
  position: relative; padding-top: 1.75rem;
}
.statement__lead::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 3.5rem; height: 3px; background: var(--blue);
}
.statement__body { font-size: 1.0625rem; color: var(--soft); margin: 0; max-width: 46ch; }
@media (min-width: 56rem) { .statement__body { padding-top: 2rem; } }

.offices { padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); }
.section-label {
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft); margin: 0 0 2rem;
}
.office-list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  column-gap: 3rem; row-gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}
@media (min-width: 44rem) { .office-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72rem) { .office-list { grid-template-columns: repeat(3, 1fr); } }
.office {
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0 2rem;
  display: flex; flex-direction: column; gap: .9rem;
}
.office:last-child { border-bottom: none; }
@media (min-width: 72rem) {
  .office:nth-last-child(-n+2) { border-bottom: none; }
}
.office__country {
  font-size: 1.5rem; font-weight: 300; letter-spacing: -.005em;
  text-transform: lowercase; margin: 0 0 .75rem; line-height: 1.2;
}
.office__company { font-size: 1rem; font-weight: 600; margin: 0 0 .25rem; }
.office__address { font-size: .9375rem; color: var(--soft); margin: 0; line-height: 1.5; }
.office__links { display: flex; flex-direction: column; gap: .35rem; margin-top: auto; }
.office__link {
  font-size: 1rem; color: var(--ink);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: color .15s ease, border-color .15s ease;
  word-break: break-word;
}
.office__link:hover { color: var(--blue); border-bottom-color: var(--blue); }

/* Legal */
.legal {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--rule);
}
.legal__inner { max-width: 46rem; }
.legal-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 3rem;
}
.legal h2 {
  font-size: 1.5rem; font-weight: 300; letter-spacing: -.005em;
  margin: 3rem 0 1rem; line-height: 1.2;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}
.legal h3 {
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--soft); margin: 1.75rem 0 .4rem;
}
.legal p { margin: 0 0 1rem; color: var(--ink); max-width: 62ch; }
.legal p:last-child { margin-bottom: 0; }

.facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: .15rem 2rem;
  margin: 0 0 1.5rem;
  padding: 0;
}
@media (min-width: 36rem) {
  .facts { grid-template-columns: 11rem 1fr; }
}
.facts dt {
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--soft); margin: 1rem 0 0;
}
.facts dd { margin: .15rem 0 0; }
@media (min-width: 36rem) {
  .facts dt { margin: .85rem 0 0; padding-top: .15rem; }
  .facts dd { margin: .85rem 0 0; }
}
.facts a {
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.facts a:hover { color: var(--blue); border-bottom-color: var(--blue); }

.back {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 3rem;
  font-size: .9375rem;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.back:hover { color: var(--blue); border-bottom-color: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
