/* Base layout and typography */
:root {
  --color-light: #E7E7E7;
  --color-accent: #FEE5A5;
  --color-dark: #3D3D3D;
  --color-deep: #262627;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #3D3D3D 0, #262627 45%, #000 100%);
  color: var(--color-light);
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(12, 12, 14, 0.94), rgba(7, 7, 9, 0.85));
  border-bottom: 1px solid rgba(231, 231, 231, 0.12);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-mark img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.2rem;
  color: rgba(231, 231, 231, 0.82);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FEE5A5, #FFFFFF);
  transition: width 0.2s ease-out;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

.nav-link[aria-current="page"] {
  color: #FFFFFF;
}

/* Layout */
.page-main {
  flex: 1;
}

.section-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 3rem;
  display: grid;
  gap: 2rem;
}

.section-main {
  min-width: 0;
}

.section-aside {
  min-width: 0;
}

/* Hero / titles */
.page-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(254, 229, 165, 0.88);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.page-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(231, 231, 231, 0.9);
  margin-bottom: 1.75rem;
}

.page-meta-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(231, 231, 231, 0.2);
  background: radial-gradient(circle at 0 0, rgba(254, 229, 165, 0.12), rgba(38, 38, 39, 0.96));
  padding: 1.2rem 1.3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.page-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.page-meta-big {
  font-size: 1.1rem;
  font-weight: 600;
}

.page-meta-list {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
}

.page-meta-list strong {
  font-weight: 600;
}

/* CTA (STA) buttons */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out, color 0.12s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #FEE5A5, #FFFFFF);
  color: #161618;
  box-shadow: 0 0 0 1px rgba(254, 229, 165, 0.12), 0 18px 40px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.7);
}

.btn-outline {
  background: transparent;
  border-color: rgba(231, 231, 231, 0.4);
  color: rgba(231, 231, 231, 0.9);
}

.btn-outline:hover {
  border-color: #FEE5A5;
  background: rgba(254, 229, 165, 0.05);
}

.cta-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Content blocks */
.content {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(231, 231, 231, 0.9);
}

.content p {
  margin: 0 0 1rem;
}

.content p:last-child {
  margin-bottom: 0;
}

.content h2,
.content h3 {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin: 2rem 0 0.75rem;
  color: #FFFFFF;
}

.content h3 {
  margin-top: 1.5rem;
}

.content ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.content li {
  margin-bottom: 0.4rem;
}

.content-2col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

/* Data tables */
.table-wrap {
  margin: 1.2rem 0 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(231, 231, 231, 0.18);
  background: radial-gradient(circle at 0 0, rgba(254, 229, 165, 0.09), rgba(24, 24, 26, 0.98));
  overflow: hidden;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.table thead {
  background: rgba(12, 12, 14, 0.96);
}

.table th,
.table td {
  padding: 0.6rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.table th {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(231, 231, 231, 0.9);
}

.table tbody tr:nth-child(odd) {
  background: rgba(231, 231, 231, 0.02);
}

.table tbody tr:nth-child(even) {
  background: rgba(231, 231, 231, 0.06);
}

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

.table--tight td,
.table--tight th {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

/* Aside cards */
.aside-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(231, 231, 231, 0.2);
  background: radial-gradient(circle at 100% 0, rgba(254, 229, 165, 0.16), rgba(17, 17, 19, 0.98));
  padding: 1.4rem 1.3rem;
  margin-bottom: 1.4rem;
}

.aside-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.aside-body {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(231, 231, 231, 0.9);
}

.aside-body p {
  margin: 0 0 0.6rem;
}

.aside-body p:last-child {
  margin-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(254, 229, 165, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(254, 229, 165, 0.16);
  margin-bottom: 0.6rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FEE5A5;
}

.aside-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.aside-note {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(231, 231, 231, 0.16);
  padding: 1.6rem 1.5rem 2.1rem;
  background: radial-gradient(circle at top, rgba(254, 229, 165, 0.06), rgba(7, 7, 9, 0.98));
  color: rgba(231, 231, 231, 0.8);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.footer-link {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  font-size: 0.78rem;
}

.footer-link:hover {
  color: #FFFFFF;
}

/* Responsive */
@media (max-width: 960px) {
  .section-shell {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
  }

  .page-meta-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-2col {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1.1rem;
  }

  .section-shell,
  .site-footer {
    padding-inline: 1.1rem;
  }

  .section-shell,
  .section-shell--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav {
    gap: 1rem;
  }

  .page-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding-inline: 0.95rem;
  }

  .section-shell,
  .site-footer {
    padding-inline: 0.95rem;
  }

  .page-meta-card {
    padding-inline: 1rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

