:root {
  color-scheme: light;
  --ink: #07111f;
  --muted: #5f6d7b;
  --paper: #f7f8fb;
  --white: #ffffff;
  --soft: #eef3f8;
  --line: #d9e1ea;
  --blue: #09285a;
  --blue-deep: #061b3e;
  --blue-soft: #e9eff8;
  --gold: #a66f2b;
  --shadow: 0 28px 80px rgba(7, 17, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 150px;
  height: auto;
  background: var(--blue);
}

nav {
  gap: clamp(12px, 3vw, 34px);
  color: #273241;
  font-size: 0.92rem;
}

nav a {
  transition: color 160ms ease;
}

nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 9px 14px;
  color: var(--blue);
  border: 1px solid #b8c9e2;
  background: #f8fbff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  overflow: hidden;
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 96px) clamp(42px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(9, 40, 90, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9, 40, 90, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(9, 40, 90, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  background-size: 80px 80px, 80px 80px, auto, auto;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: 100%;
  max-width: 820px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 8.4vw, 8.1rem);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: #334155;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  font-weight: 850;
  border: 1px solid var(--ink);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button.primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: #b7c2d0;
}

.hero-panel {
  align-self: stretch;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #cdd7e4;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-band div {
  min-height: 168px;
  padding: 34px clamp(20px, 4vw, 56px);
  background: var(--white);
}

.metric {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
}

.signal-band p {
  max-width: 370px;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 760;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 96px);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.5fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
  background: var(--paper);
}

.section-intro h2,
.fit-section h2,
.cta-section h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.section-intro.wide {
  max-width: 920px;
}

.section-intro.wide p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 246px;
  padding: 30px;
  background: var(--white);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #c4d9ff;
  font-size: 0.9rem;
  font-weight: 950;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.method-section {
  color: var(--ink);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.method-section .section-intro.wide p:last-child {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process div {
  padding: 34px;
  background: #fbfdff;
}

.process span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
}

.process p {
  margin-bottom: 0;
  color: var(--muted);
}

.fit-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
  background: var(--paper);
}

.fit-list {
  display: grid;
  gap: 18px;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.fit-list p {
  margin: 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 96px);
  color: var(--ink);
  background: linear-gradient(90deg, var(--white), #edf5ff);
  border-top: 1px solid var(--line);
}

.cta-section h2 {
  max-width: 760px;
}

.cta-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.cta-copy a {
  color: var(--blue);
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 6vw, 96px);
  color: #536273;
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  display: block;
  width: 128px;
  height: auto;
  background: var(--blue);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 360px;
  }

  .hero-panel img {
    min-height: 320px;
  }

  .signal-band,
  .split,
  .process,
  .fit-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    align-items: flex-start;
  }

  .brand span:last-child {
    display: none;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 12px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(3.15rem, 14vw, 4.7rem);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy {
    max-width: 340px;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 300px;
  }

  .hero-panel img {
    min-height: 250px;
  }

  .signal-band div {
    min-height: 130px;
  }

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

  .service-card {
    min-height: auto;
  }

  .cta-section,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
