:root {
  --bg: #0d0d0f;
  --surface: #141416;
  --surface-2: #1a1a1d;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, .72);
  --subtle: rgba(255, 255, 255, .54);
  --line: rgba(255, 255, 255, .18);
  --line-strong: rgba(255, 255, 255, .38);
  --blue: #0f5bdd;
  --blue-hover: #2b72f0;
  --paper: #f7f7f5;
  --paper-ink: #09090a;
  --paper-muted: #3b3b40;
  --max: 1760px;
  --gutter: clamp(24px, 4vw, 70px);
  --header: 132px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  text-rendering: geometricPrecision;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue-hover);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  min-height: var(--header);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 var(--gutter) 0 clamp(24px, 3vw, 55px);
  background: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  width: 126px;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  flex: 0 0 auto;
}

.brand img {
  width: 104px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255,255,255,.88);
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.button,
.nav .button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 2px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.nav .button {
  border-color: rgba(255,255,255,.8);
  background: transparent;
  min-width: 106px;
}

.button:hover,
.text-button:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

.nav .button:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.hero {
  min-height: calc(100vh - var(--header));
  display: flex;
  align-items: flex-end;
  padding: clamp(86px, 10vw, 150px) var(--gutter) clamp(72px, 8vw, 110px);
  background:
    linear-gradient(180deg, rgba(0,0,0,.24), rgba(13,13,15,.86)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero.compact {
  min-height: 430px;
  align-items: center;
}

.hero-content {
  width: min(1050px, 100%);
}

.kicker {
  margin: 0 0 18px;
  color: #9bbcff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 14px;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  max-width: 920px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.48;
}

.section {
  padding: clamp(82px, 8vw, 118px) var(--gutter);
}

.section.dark {
  background:
    linear-gradient(180deg, rgba(13,13,15,.70), #0d0d0f 260px),
    url("https://static.wixstatic.com/media/c837a6_41007e02b626433b850e5cfc4f2fb91d~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_78,enc_avif,quality_auto/c837a6_41007e02b626433b850e5cfc4f2fb91d~mv2.jpg");
  background-size: cover;
  background-position: center top;
}

.section.paper {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-head {
  width: min(980px, 100%);
  margin-bottom: clamp(36px, 5vw, 58px);
}

.section-head p,
.copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.paper .section-head p,
.paper .copy p {
  color: var(--paper-muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
}

.media {
  min-height: 420px;
  background: #111;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.grid {
  display: grid;
  border: 1px solid var(--line-strong);
  background: rgba(18,18,20,.88);
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 280px;
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.grid.three .card:nth-child(3n),
.grid.two .card:nth-child(2n) {
  border-right: 0;
}

.grid.three .card:nth-last-child(-n + 3),
.grid.two .card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: #000;
}

.metric {
  min-height: 170px;
  padding: 34px 26px;
  border-right: 1px solid var(--line-strong);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.cta {
  padding: clamp(76px, 7vw, 104px) var(--gutter);
  background: #000;
  text-align: center;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(320px, 1fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
}

.contact-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-strong);
  background: rgba(18,18,20,.88);
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.46);
  background: rgba(0,0,0,.24);
  color: #fff;
  padding: 0 14px;
  border-radius: 0;
}

.field input {
  height: 48px;
}

.field textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(180px, .62fr) minmax(280px, 1fr);
  gap: clamp(34px, 5vw, 64px);
  padding: clamp(64px, 6vw, 82px) var(--gutter) 34px;
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-logo {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: #111;
}

.footer-logo img {
  width: 78px;
}

.footer-contact p,
.footer-copy,
.newsletter label {
  margin: 0 0 12px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
}

.footer-links a {
  width: max-content;
}

.footer-links .start {
  margin-top: 12px;
  border-bottom: 1px solid #fff;
}

.newsletter h2 {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.25;
}

.newsletter input[type="email"] {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  color: #fff;
}

.newsletter .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 20px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.5;
}

.newsletter button {
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.45);
}

.social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}

@media (max-width: 1100px) {
  .grid.three,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three .card:nth-child(3n) {
    border-right: 1px solid var(--line-strong);
  }

  .grid.three .card:nth-child(2n) {
    border-right: 0;
  }

  .grid.three .card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line-strong);
  }

  .grid.three .card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  :root { --header: 112px; }

  .site-header {
    min-height: 0;
    padding: 0 24px 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: 100px;
    min-height: 100px;
  }

  .brand img {
    width: 84px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero,
  .hero.compact {
    min-height: 520px;
  }

  .split,
  .split.reverse,
  .grid.two,
  .grid.three,
  .metric-grid,
  .contact-layout,
  .site-footer,
  .form-row {
    grid-template-columns: 1fr;
  }

  .media,
  .media img {
    min-height: 320px;
  }

  .card,
  .grid.two .card,
  .grid.three .card,
  .grid.two .card:nth-child(2n),
  .grid.three .card:nth-child(2n),
  .grid.three .card:nth-child(3n),
  .grid.two .card:nth-last-child(-n + 2),
  .grid.three .card:nth-last-child(-n + 2),
  .grid.three .card:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .card:last-child {
    border-bottom: 0;
  }

  .metric,
  .metric:nth-child(2n),
  .metric:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .footer-copy {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .nav .button {
    min-width: 100%;
  }

  .social {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
