:root {
  --bg: #06150f;
  --bg-soft: #0b2419;
  --panel: rgba(12, 42, 30, 0.92);
  --panel-strong: #103122;
  --panel-muted: #173d2d;
  --text: #eef7f0;
  --muted: #abc4b1;
  --accent: #d8bf72;
  --accent-strong: #f0cf7a;
  --accent-soft: rgba(216, 191, 114, 0.14);
  --line: rgba(216, 191, 114, 0.18);
  --success: #7dd89b;
  --shadow: 0 24px 70px rgba(1, 8, 5, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 92px;
  --font-main: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(36, 103, 62, 0.45), transparent 30%),
    radial-gradient(circle at top right, rgba(216, 191, 114, 0.12), transparent 24%),
    linear-gradient(180deg, #071a13 0%, #05110c 52%, #030906 100%);
  min-height: 100vh;
  width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(216, 191, 114, 0.03) 50%, transparent 100%),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 40px,
      rgba(255, 255, 255, 0.015) 41px,
      transparent 42px
    );
  pointer-events: none;
  opacity: 0.55;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 8px 0;
  backdrop-filter: blur(16px);
  background: rgba(4, 16, 11, 0.88);
  border-bottom: 1px solid rgba(216, 191, 114, 0.08);
}

.header-wrap {
  position: relative;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.header-wrap > *,
.hero-grid > *,
.content-grid > *,
.footer-top > *,
.two-col > *,
.info-strip > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  flex: none;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-nav ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(216, 191, 114, 0.12);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  min-width: 52px;
  height: 52px;
  border: 1px solid rgba(216, 191, 114, 0.26);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(23, 58, 41, 0.98) 0%, rgba(10, 28, 20, 0.98) 100%);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(1, 8, 5, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 191, 114, 0.42);
  box-shadow: 0 14px 34px rgba(1, 8, 5, 0.34);
}

.menu-toggle:active {
  transform: translateY(0);
}

.menu-toggle-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
  flex: none;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  position: absolute;
  left: 0;
}

.menu-toggle-icon::before {
  top: -6px;
}

.menu-toggle-icon::after {
  top: 6px;
}

.menu-toggle-text {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.nav-toggle:checked + .menu-toggle {
  border-color: rgba(216, 191, 114, 0.48);
  background: linear-gradient(180deg, rgba(29, 73, 52, 0.98) 0%, rgba(12, 32, 23, 0.98) 100%);
}

.nav-toggle:checked + .menu-toggle .menu-toggle-icon {
  opacity: 0;
}

.nav-toggle:checked + .menu-toggle .menu-toggle-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .menu-toggle .menu-toggle-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.cta-button:hover {
  transform: translateY(-1px);
}

.button-solid,
.cta-button {
  background: linear-gradient(135deg, var(--accent-strong), #b78d35);
  color: #102217;
  box-shadow: 0 18px 40px rgba(216, 191, 114, 0.18);
}

.button-ghost {
  border-color: rgba(216, 191, 114, 0.32);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-ghost:hover {
  border-color: rgba(216, 191, 114, 0.55);
}

.hero {
  padding: 42px 0 28px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(216, 191, 114, 0.16);
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(21, 58, 42, 0.96) 0%, rgba(10, 30, 22, 0.98) 60%, rgba(5, 18, 13, 0.98) 100%);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% 40%;
  height: 320px;
  background: radial-gradient(circle, rgba(216, 191, 114, 0.24), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.lead {
  margin: 18px 0 0;
  max-width: 64ch;
  color: #d8e6dd;
  font-size: 1.03rem;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  width: 100%;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(216, 191, 114, 0.16);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 55px rgba(1, 10, 6, 0.32);
}

.section-shell {
  padding: 18px 0 46px;
}

.content-grid {
  display: grid;
  gap: 20px;
}

.section-panel,
.card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 37, 27, 0.98) 0%, rgba(9, 26, 19, 0.98) 100%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.section-panel h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  text-wrap: balance;
}

.section-panel p + p,
.section-panel p + .content-list,
.section-panel p + .table-wrap,
.section-panel .content-list + p,
.section-panel .table-wrap + p,
.section-panel .cta-inline + p {
  margin-top: 14px;
}

.section-panel p,
.card p {
  margin: 0;
  color: #dce9df;
}

.content-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #dce9df;
}

.content-list li + li {
  margin-top: 8px;
}

.ordered-list {
  margin: 16px 0 0;
  padding-left: 22px;
}

.ordered-list li + li {
  margin-top: 8px;
}

.cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
}

.cta-inline::after {
  content: "->";
  font-size: 0.92em;
}

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

.mini-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(216, 191, 114, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.95rem;
}

.table-wrap {
  margin-top: 16px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(216, 191, 114, 0.12);
  text-align: left;
}

th {
  color: var(--accent);
  font-size: 0.94rem;
  font-weight: 800;
}

td {
  color: #deebe1;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.check-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(216, 191, 114, 0.12);
}

.check-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--accent);
}

.check-card ul {
  margin: 0;
  padding-left: 18px;
}

.check-card li + li {
  margin-top: 8px;
}

.summary-box {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(216, 191, 114, 0.12), rgba(125, 216, 155, 0.09));
  border: 1px solid rgba(216, 191, 114, 0.2);
}

.summary-box strong {
  color: var(--accent);
  font-size: 1.08rem;
}

.site-footer {
  padding: 20px 0 40px;
}

.footer-card {
  display: grid;
  gap: 26px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(216, 191, 114, 0.12);
  background: linear-gradient(180deg, rgba(12, 35, 25, 0.98) 0%, rgba(5, 16, 11, 0.98) 100%);
  box-shadow: var(--shadow);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--text);
}

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

.redirect-page {
  display: grid;
  min-height: 100vh;
  padding: 32px 0;
}

.redirect-page main {
  display: grid;
  place-items: center;
}

.redirect-card {
  width: min(560px, 100%);
}

.redirect-card h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.redirect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

@media (max-width: 1080px) {
  .header-wrap {
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    width: 100%;
    grid-column: 1 / -1;
    justify-content: stretch;
    margin-top: 4px;
  }

  .header-actions .button {
    flex: 1 1 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    justify-content: stretch;
  }

  .nav-toggle:checked ~ .site-nav {
    display: block;
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(216, 191, 114, 0.14);
    background: rgba(8, 24, 17, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    justify-content: center;
    min-height: 46px;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .footer-top,
  .two-col,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .hero-card {
    border-radius: 28px;
  }

  .footer-links ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 82px;
  }

  .header-wrap {
    gap: 14px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    gap: 12px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text {
    gap: 0;
  }

  .brand-title {
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .brand-tag {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
  }

  .header-actions {
    gap: 10px;
    margin-top: 2px;
  }

  .site-nav {
    left: 12px;
    right: 12px;
  }

  .site-nav ul {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(var(--container), calc(100vw - 20px));
  }

  .hero {
    padding-top: 24px;
  }

  .hero-card,
  .section-panel,
  .footer-card {
    padding: 18px 16px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.45rem);
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-actions,
  .hero-notes,
  .redirect-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .redirect-actions .button,
  .redirect-actions .cta-button {
    width: 100%;
  }

  .footer-links ul {
    grid-template-columns: 1fr;
  }

  th,
  td {
    padding: 12px;
  }
}

@media (max-width: 520px) {
  .brand-tag {
    display: none;
  }

  .menu-toggle {
    min-width: 96px;
    height: 48px;
    padding: 0 14px;
    gap: 10px;
  }

  .menu-toggle-text {
    font-size: 0.76rem;
  }

  .header-actions {
    flex-direction: column;
  }

  .header-actions .button {
    width: 100%;
  }

  .button,
  .cta-button {
    padding: 12px 16px;
    font-size: 0.96rem;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 8.3vw, 2.2rem);
  }

  .table-wrap {
    overflow-x: visible;
  }

  table {
    min-width: 0;
    table-layout: fixed;
  }

  th,
  td {
    font-size: 0.88rem;
    overflow-wrap: anywhere;
  }
}
