:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-2: #eef3f1;
  --ink: #15191f;
  --muted: #5e6874;
  --line: rgba(21, 25, 31, 0.12);
  --gold: #b18a22;
  --green: #28715f;
  --blue: #245f9e;
  --plum: #76506d;
  --shadow: rgba(21, 25, 31, 0.1);
  --max: 1120px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.site-nav__inner {
  width: min(var(--max), calc(100vw - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav__brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a,
.button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 11px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.site-nav__links a:hover {
  background: var(--surface-2);
}

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

.button--secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 9vw, 104px) 0;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.hero__actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__media {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 24px 60px var(--shadow);
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.band {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.band--white {
  background: var(--surface);
}

.section {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 76px) 0;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(21, 25, 31, 0.06);
}

.card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--surface-2);
  padding: 4px 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.card p,
.article p,
.article li,
.qa p {
  color: var(--muted);
  line-height: 1.72;
}

.card a {
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article {
  max-width: 820px;
}

.article h2 {
  margin-top: 38px;
}

.article ul {
  padding-left: 20px;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.proof-item {
  border-left: 5px solid var(--blue);
  background: var(--surface);
  padding: 16px 18px;
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
}

.qa {
  display: grid;
  gap: 14px;
}

.qa__item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.footer {
  background: var(--ink);
  color: #ffffff;
}

.footer__inner {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer a {
  color: #ffffff;
}

@media (max-width: 860px) {
  .site-nav__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .site-nav__links {
    justify-content: flex-start;
  }

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

  .hero__media {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .site-nav__links a,
  .button {
    width: 100%;
  }

  .site-nav__links,
  .hero__actions,
  .actions {
    width: 100%;
  }

  h1 {
    font-size: 40px;
  }
}
