:root {
  --bg: #fbfaf7;
  --paper: #ffffff;
  --ink: #090908;
  --muted: #66615a;
  --line: #ded9cf;
  --line-strong: #11110f;
  --soft: #f3efe6;
  --accent: #c9a24e;
  --accent-dark: #8a6b24;
  --shadow: 0 24px 70px rgba(36, 30, 18, .1);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 50%, #f5f1e8 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

.shell {
  width: min(1060px, calc(100vw - 32px));
  margin: 0 auto;
}

header {
  padding: 18px 0 0;
}

.topbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(17, 17, 15, .08);
  border-radius: 999px;
  padding: 10px 12px 10px 16px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 55px rgba(35, 28, 15, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
  font-size: 19px;
  text-decoration: none;
}

.mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
}

.mark::before {
  width: 15px;
  height: 20px;
  left: 9px;
  top: 7px;
  border-radius: 2px;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.mark::after {
  width: 8px;
  height: 8px;
  right: 8px;
  top: 7px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
  background: var(--soft);
}

main {
  padding: 58px 0 46px;
}

.hero {
  display: grid;
  gap: 24px;
  padding-bottom: 34px;
}

.eyebrow,
.sectionLabel {
  margin: 0;
  font-family: "SF Mono", "Courier New", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  color: var(--accent-dark);
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro {
  max-width: 760px;
  margin: 0;
  color: #3d3934;
  font-size: 19px;
  line-height: 1.5;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
  font-weight: 850;
}

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

.panel {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 36px);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf9;
  padding: 18px;
}

.card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.card p,
.content p,
.content li,
.faq p {
  color: var(--muted);
  line-height: 1.62;
}

.content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-top: 18px;
}

.content h2,
.faq h2 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.04;
}

.content ol,
.content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.faq {
  margin-top: 18px;
}

.faqItem {
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
  margin-top: 18px;
}

.faqItem h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

footer {
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .topbar {
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

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