:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #5f6874;
  --navy: #071b3d;
  --green: #12b765;
  --blue: #168cf2;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --line: #dce3eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Sukhumvit Set", "Thonburi", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f8fafc;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

.site {
  min-height: 100vh;
}

.nav,
.hero,
.section,
.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(7, 27, 61, 0.18);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 56px;
  align-items: center;
  padding: 64px 0 72px;
  border-top: 1px solid var(--line);
}

.hero-copy {
  max-width: 720px;
}

.hero-media {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 800;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  background: var(--navy);
  color: #ffffff;
}

.button.secondary {
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
}

.hero-shot {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(7, 27, 61, 0.22);
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

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

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

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

.panel,
.callout {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.note {
  color: var(--muted);
  font-size: 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.legal {
  max-width: 860px;
}

.legal li {
  margin-bottom: 10px;
}

@media (max-width: 820px) {
  .nav,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    padding-top: 36px;
  }
}
