:root {
  --page-bg: #090909;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.055);
  --border: rgba(223, 90, 1, 0.22);
  --border-strong: rgba(223, 90, 1, 0.48);
  --text: #f4f4f4;
  --muted: rgba(244, 244, 244, 0.72);
  --soft: rgba(244, 244, 244, 0.55);
  --accent: rgb(223, 90, 1);
  --accent-soft: rgba(255, 173, 115, 0.92);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(223, 90, 1, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(223, 90, 1, 0.09), transparent 28%),
    linear-gradient(180deg, #111111 0%, #090909 38%, #050505 100%);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration: none;
  overflow-wrap: anywhere;
}

a:hover {
  text-decoration: underline;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  padding: 28px 0 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  box-shadow: 0 0 24px rgba(223, 90, 1, 0.32);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.nav-link,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(223, 90, 1, 0.34);
  background: rgba(223, 90, 1, 0.11);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
  max-width: 100%;
  text-align: center;
}

.nav-link.is-active {
  background: rgba(223, 90, 1, 0.2);
  border-color: rgba(223, 90, 1, 0.56);
  color: var(--text);
}

.nav-link:hover,
.button-link:hover {
  transform: translateY(-1px);
  border-color: rgba(223, 90, 1, 0.5);
  background: rgba(223, 90, 1, 0.16);
  text-decoration: none;
}

.hero {
  position: relative;
  width: 100%;
  padding: 32px 32px 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before,
.section-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(223, 90, 1, 0) 0%,
    rgba(223, 90, 1, 0.95) 22%,
    var(--accent-soft) 50%,
    rgba(223, 90, 1, 0.95) 78%,
    rgba(223, 90, 1, 0) 100%
  );
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(223, 90, 1, 0.16);
  border: 1px solid rgba(223, 90, 1, 0.3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

.lead {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.meta-row,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.meta-pill {
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
}

.section-grid {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.section-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-card {
  position: relative;
  min-width: 0;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.section-card h2 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.section-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.section-card p:last-child,
.section-card ul:last-child {
  margin-bottom: 0;
}

.section-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.section-card li + li {
  margin-top: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.mini-card {
  min-width: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(223, 90, 1, 0.18);
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.95rem;
}

.footer-note {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(223, 90, 1, 0.08);
  border: 1px solid var(--border-strong);
  color: var(--muted);
}

.policy-sections {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.policy-card {
  position: relative;
  min-width: 0;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(223, 90, 1, 0) 0%,
    rgba(223, 90, 1, 0.95) 22%,
    var(--accent-soft) 50%,
    rgba(223, 90, 1, 0.95) 78%,
    rgba(223, 90, 1, 0) 100%
  );
}

.hero,
.section-card,
.policy-card,
.mini-card,
.meta-pill,
.footer-note {
  max-width: 100%;
}

.hero p,
.section-card p,
.policy-card p,
.mini-card,
.meta-pill,
.footer-note,
.section-card li,
.policy-card li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.policy-card h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.policy-card h3 {
  margin: 18px 0 10px;
  font-size: 1rem;
  color: var(--text);
}

.policy-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.policy-card p:last-child,
.policy-card ul:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-card li + li {
  margin-top: 8px;
}

.split-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 820px) {
  .section-grid.two-up,
  .info-grid,
  .split-highlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(var(--max-width), calc(100% - 20px));
    padding: 20px 0 44px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .section-card,
  .policy-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .nav-link,
  .button-link {
    width: 100%;
  }

  .nav-links,
  .action-row {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: calc(100% - 16px);
    padding: 16px 0 32px;
  }

  .hero {
    padding: 20px 14px 18px;
    border-radius: 18px;
  }

  .section-card,
  .policy-card {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .meta-row {
    gap: 10px;
  }

  .meta-pill {
    width: 100%;
  }
}
