:root {
  color-scheme: light;
  --page: #f9f8fb;
  --panel: #ffffff;
  --soft: #d8d7db;
  --ink: #17181c;
  --muted: #5c5d66;
  --line: rgba(23, 24, 28, 0.12);
  --accent: #ff5a3d;
  --accent-dark: #b92f21;
  --mint: #dff3e8;
  --lavender: #ece7ff;
  --shadow: 0 24px 70px rgba(23, 24, 28, 0.14);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(249, 248, 251, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(23, 24, 28, 0.12);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover,
nav a[aria-current="page"] {
  background: var(--panel);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 72px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(48px, 9vw, 96px) clamp(20px, 7vw, 92px);
  background:
    linear-gradient(110deg, rgba(249, 248, 251, 0.98) 0%, rgba(249, 248, 251, 0.78) 48%, rgba(216, 215, 219, 0.74) 100%),
    var(--soft);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: linear-gradient(to bottom, rgba(249, 248, 251, 0), var(--page));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 13vw, 142px);
  line-height: 0.9;
  font-weight: 800;
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: #33343b;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.35;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--line);
}

.button.primary {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.card {
  position: absolute;
  width: min(470px, 70vw);
  aspect-ratio: 370 / 222;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.card-one {
  right: max(24px, 7vw);
  top: 120px;
  transform: rotate(-8deg);
}

.card-two {
  right: max(6px, 3vw);
  top: 330px;
  transform: rotate(7deg);
}

.card-three {
  right: max(210px, 21vw);
  top: 470px;
  transform: rotate(-3deg);
}

.section {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 7vw, 92px);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
}

h3 {
  margin: 28px 0 8px;
  font-size: 19px;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 24, 28, 0.06);
}

.links-band {
  background: var(--ink);
}

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

.link-grid a {
  min-height: 150px;
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
}

.link-grid span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.link-grid strong {
  display: block;
  margin-top: 38px;
  font-size: 26px;
}

.document {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(46px, 8vw, 88px) clamp(20px, 5vw, 48px) 80px;
}

.document-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.document .document-header h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
}

.document section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.document h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.document ul {
  padding-left: 22px;
}

.text-link,
.document a:not(.button) {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(20px, 7vw, 92px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
    align-items: start;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .card {
    width: min(330px, 80vw);
    border-radius: 24px;
  }

  .card-one {
    top: 390px;
    right: 24px;
  }

  .card-two {
    top: 510px;
    right: -30px;
  }

  .card-three {
    display: none;
  }

  .two-column,
  .link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 58px;
  }

  .lead {
    font-size: 20px;
  }

  .button {
    width: 100%;
  }
}
