:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #626262;
  --line: #dedede;
  --bg: #f7f7f4;
  --paper: #ffffff;
  --gold: #f59c12;
  --blue: #087fbd;
  --red: #d92d20;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 72px;
  height: 54px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: 72px 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 156, 18, 0.3), transparent 24%),
    linear-gradient(110deg, rgba(0, 0, 0, 0.94), rgba(4, 65, 101, 0.9) 58%, rgba(8, 127, 189, 0.72)),
    #050505;
  color: #fff;
  overflow: hidden;
}

.hero-content {
  position: relative;
  isolation: isolate;
}

.hero-content::after {
  position: absolute;
  right: -120px;
  bottom: -190px;
  z-index: -1;
  width: min(560px, 58vw);
  aspect-ratio: 2000 / 1475;
  background: url("/logo.png") center/contain no-repeat;
  content: "";
  opacity: 0.18;
}

.hero-logo {
  display: block;
  width: min(360px, 72vw);
  height: auto;
  margin: 0 0 34px;
}

.hero > div,
.section,
footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.button.secondary {
  color: #fff;
}

.section {
  padding: 72px 32px;
}

.section-head {
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(8, 127, 189, 0.18);
  border-radius: 8px;
}

.card h3 {
  color: var(--blue);
}

.card p,
.split p,
.contact p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  border-top: 4px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.split > p {
  margin: 0;
  font-size: 20px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(245, 156, 18, 0.12), transparent),
    var(--paper);
  border: 1px solid rgba(245, 156, 18, 0.35);
  border-radius: 8px;
  margin-bottom: 72px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  .brand-logo {
    width: 60px;
    height: 45px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 42px;
  }

  .grid,
  .split {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}
