:root {
  color-scheme: light;
  --background: #f4f7fb;
  --surface: #ffffff;
  --surface-muted: #eef3f8;
  --text: #101720;
  --muted: #516173;
  --subtle: #7a8796;
  --border: #d8e0ea;
  --border-strong: #bbc8d6;
  --accent: #0ebe70;
  --sky: #087eb8;
  --coral: #e55757;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--sky);
  font-weight: 750;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  height: 8px;
  border-radius: 4px;
  opacity: 0.28;
  pointer-events: none;
}

.site-shell::before {
  top: 76px;
  right: -118px;
  width: 156px;
  background: var(--coral);
  transform: rotate(-8deg);
}

.site-shell::after {
  bottom: 76px;
  left: -54px;
  width: 184px;
  background: var(--sky);
  transform: rotate(8deg);
}

.page {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 48px 0 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.mark {
  width: 44px;
  height: 44px;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #080a0f;
}

.mark::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 13px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #56f09f;
}

.mark::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  width: 3px;
  height: 26px;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 6px 15px 0 #5cc8ff, 11px 9px 0 #f7c948;
}

.brand-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

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

.hero,
.policy {
  max-width: 820px;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 44px 0 10px;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 28px 0 8px;
  font-size: 18px;
  letter-spacing: 0;
}

p,
li {
  font-size: 16px;
}

p {
  margin: 12px 0 0;
}

ul,
ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

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

.lede {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-muted);
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #000000;
}

.meta {
  margin-top: 18px;
  color: var(--subtle);
  font-size: 14px;
}

.section-note {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}

.footer {
  margin-top: 30px;
  color: var(--subtle);
  font-size: 14px;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 28px, 920px);
    padding-top: 28px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .nav {
    justify-content: flex-start;
  }
}
