@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.76);
  --ink: #111217;
  --ink-soft: #2a2b31;
  --muted: #62656f;
  --muted-2: #858895;
  --line: rgba(17, 18, 23, 0.1);
  --line-strong: rgba(17, 18, 23, 0.16);
  --gold: #b8892f;
  --gold-2: #d5b56d;
  --gold-soft: #fbf7ef;
  --blue-soft: #eef4ff;
  --graphite: #1f2026;
  --green: #2f7d4f;
  --danger: #9f3a38;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-soft: 0 24px 70px rgba(17, 18, 23, 0.08);
  --shadow-card: 0 18px 42px rgba(17, 18, 23, 0.09);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(184, 137, 47, 0.12), transparent 34rem),
    radial-gradient(circle at 92% 8%, rgba(135, 157, 198, 0.14), transparent 35rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 18, 23, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 23, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), transparent 38rem);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: 96px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  color: var(--ink);
}

p {
  color: var(--muted);
  line-height: 1.75;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.text-balance {
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.gold {
  color: var(--gold);
}

.section-kicker {
  margin-bottom: 18px;
}

.section-title {
  max-width: 820px;
  font-size: clamp(2.05rem, 4vw, 3.85rem);
  line-height: 1.04;
  font-weight: 720;
}

.section-lead {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
}

.legal-note {
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.65;
}
