:root {
  --ink: #101820;
  --fire: #ff5a2a;
  --air: #d4e0ea;
  --fjord: #8fa9cf;
  --paper: #f7f9fb;
  --white: #ffffff;
  --muted: #667085;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

p {
  margin: 0;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 251, 0.92);
  border-bottom: 1px solid var(--air);
  backdrop-filter: blur(16px);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(143, 169, 207, 0.45), transparent 42%),
    linear-gradient(135deg, var(--paper) 0%, var(--white) 56%, rgba(212, 224, 234, 0.45) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255, 90, 42, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 104px 0 128px;
  max-width: 900px;
}

.eyebrow {
  color: var(--fire);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
}

h1 {
  max-width: 860px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 760;
  margin-bottom: 28px;
}

.hero-copy {
  max-width: 760px;
  color: #475467;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.48;
  margin-bottom: 42px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 750;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

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

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

.button.accent {
  color: var(--white);
  background: var(--fire);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--fjord);
}

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

.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: 72px;
}

h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 740;
}

.section-copy {
  color: #475467;
  font-size: 18px;
  line-height: 1.72;
}

.section-copy p + p {
  margin-top: 22px;
}

.cards {
  display: grid;
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--air);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-meta {
  color: var(--fire);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card h3,
.focus-item h3 {
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.card p,
.focus-item p {
  color: #475467;
  font-size: 16.5px;
  line-height: 1.7;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 34px;
}

.focus-item {
  border-top: 1px solid var(--air);
  padding-top: 24px;
}

.two-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.card.small {
  box-shadow: none;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: #475467;
  line-height: 1.7;
}

li + li {
  margin-top: 8px;
}

.location {
  color: var(--muted);
  margin-top: 24px;
}

.site-footer {
  border-top: 1px solid var(--air);
  padding: 34px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .nav {
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 80px 0 96px;
  }

  .section {
    padding: 72px 0;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .focus-grid,
  .two-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
