:root {
  --background: #111111;
  --surface: #1f1f1f;
  --surface-strong: #2b2b2b;
  --primary: #d99a1e;
  --text: #ffffff;
  --text-muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.34);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(217, 154, 30, 0.16), transparent 34rem),
    linear-gradient(180deg, #151515 0%, var(--background) 42%);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--primary);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: #f2bd55;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--background);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(16px);
}

.header-inner,
.page-shell {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.header-inner {
  padding-block: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 12px 32px var(--shadow);
  color: var(--background);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.eyebrow,
.brand-subtitle,
.hero-kicker,
.last-updated,
.site-footer p {
  margin: 0;
}

.eyebrow {
  font-weight: 850;
  letter-spacing: 0;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.page-shell {
  padding-block: clamp(2rem, 6vw, 4.8rem);
}

.hero {
  max-width: 850px;
  margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
}

.hero-kicker {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  margin: 0.65rem 0 1rem;
  max-width: 880px;
  font-size: clamp(2.15rem, 7vw, 4.65rem);
  font-weight: 950;
}

.last-updated {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.6vw, 1.18rem);
}

.policy-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(31, 31, 31, 0.94);
  box-shadow: 0 24px 70px var(--shadow);
}

.policy-section {
  padding: clamp(1.25rem, 4vw, 2rem);
  border-top: 1px solid var(--line);
}

.policy-section:first-child {
  border-top: 0;
}

.policy-section h2 {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: clamp(1.28rem, 3vw, 1.85rem);
  font-weight: 900;
}

.policy-section p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
}

.policy-section p:first-of-type {
  margin-top: 0;
}

ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-muted);
}

li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem clamp(1rem, 4vw, 2rem);
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at top, rgba(217, 154, 30, 0.18), transparent 26rem),
      var(--background);
  }

  .brand-lockup {
    align-items: flex-start;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .policy-card {
    border-radius: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
