@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,600;0,700;1,300&display=swap');

:root {
  --color-light-gray: #E7E7E7;
  --color-cream: #FEE5A5;
  --color-dark-gray: #3D3D3D;
  --color-almost-black: #262627;
  --color-accent: #FEE5A5;
  --color-accent-dark: #3D3D3D;
  --color-bg: #101014;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #262627 0, #101014 45%, #000 100%);
  color: var(--color-light-gray);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.site-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 16px 40px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 8px;
  border-bottom: 1px solid rgba(231, 231, 231, 0.12);
  margin-bottom: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrap img {
  height: 38px;
  width: auto;
  display: block;
}

.brand-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(231, 231, 231, 0.7);
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
  font-weight: 500;
  color: rgba(231, 231, 231, 0.78);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #ffffff);
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

main {
  flex: 1;
}

main h1 {
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 30px);
  margin: 0 0 16px;
}

main h2,
main h3 {
  font-weight: 600;
  margin: 32px 0 12px;
}

p {
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 14px;
}

.muted {
  color: rgba(231, 231, 231, 0.72);
}

.highlight-box {
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  background: radial-gradient(circle at top left, rgba(254, 229, 165, 0.18), rgba(38, 38, 39, 0.9));
  border: 1px solid rgba(254, 229, 165, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.highlight-box strong {
  font-weight: 600;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.content-grid-single {
  max-width: 100%;
}

.table-card {
  background: rgba(14, 14, 18, 0.9);
  border-radius: 14px;
  border: 1px solid rgba(231, 231, 231, 0.08);
  padding: 18px 18px 12px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.table-card h2,
.table-card h3 {
  margin-top: 4px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}

.info-table thead {
  background: rgba(254, 229, 165, 0.06);
}

.info-table th,
.info-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(231, 231, 231, 0.06);
}

.info-table th {
  font-weight: 600;
  color: var(--color-cream);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.012);
}

.info-table tbody tr:hover {
  background: rgba(254, 229, 165, 0.06);
}

.info-table td:first-child {
  white-space: nowrap;
  padding-right: 16px;
  font-weight: 500;
  color: rgba(231, 231, 231, 0.9);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(254, 229, 165, 0.7);
  color: var(--color-cream);
  background: radial-gradient(circle at top left, rgba(254, 229, 165, 0.2), rgba(61, 61, 61, 0.9));
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F5C75D;
  box-shadow: 0 0 0 3px rgba(245, 199, 93, 0.35);
}

.sta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 10px;
}

.sta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-cream), #ffffff);
  color: #181818;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
  text-decoration: none;
  white-space: nowrap;
}

.sta-button.secondary {
  background: linear-gradient(135deg, #262627, #3D3D3D);
  color: #FEE5A5;
  border: 1px solid rgba(254, 229, 165, 0.7);
}

.sta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  filter: brightness(1.03);
}

.sta-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.65);
}

.sta-inline {
  margin: 10px 0 4px;
}

.pill-note {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(254, 229, 165, 0.1);
  border: 1px solid rgba(254, 229, 165, 0.45);
  font-size: 12px;
  color: rgba(231, 231, 231, 0.9);
}

.section-block {
  margin-bottom: 26px;
}

.section-block:last-child {
  margin-bottom: 0;
}

.content-image-wrap {
  margin: 14px 0 8px;
}

.content-image-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(231, 231, 231, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65);
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 8px;
}

.image-row img {
  display: block;
  max-width: calc(50% - 5px);
  flex: 1 1 220px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(231, 231, 231, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65);
}

.callout {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(254, 229, 165, 0.08);
  border: 1px solid rgba(254, 229, 165, 0.28);
  font-size: 13px;
}

.subtle {
  font-size: 13px;
  color: rgba(231, 231, 231, 0.8);
}

ul {
  padding-left: 18px;
  margin: 0 0 12px;
}

li {
  margin-bottom: 6px;
}

footer {
  border-top: 1px solid rgba(231, 231, 231, 0.12);
  padding: 16px 0 6px;
  margin-top: 32px;
  font-size: 12px;
  color: rgba(231, 231, 231, 0.7);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-nav {
  display: flex;
  gap: 14px;
}

.footer-nav a {
  font-weight: 500;
  font-size: 12px;
  color: rgba(231, 231, 231, 0.78);
}

@media (max-width: 880px) {
  .content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .site-wrapper {
    padding-inline: 14px;
  }

  main h1 {
    font-size: 22px;
  }

  .highlight-box {
    padding: 14px 14px 12px;
  }

  .table-card {
    padding: 14px 12px 10px;
  }

  .info-table {
    font-size: 12px;
  }

  .info-table th {
    font-size: 11px;
  }

  .sta-row {
    flex-direction: row;
  }
}

