@charset "UTF-8";

:root {
  --color-bg: #262627;
  --color-bg-alt: #3D3D3D;
  --color-text: #E7E7E7;
  --color-accent: #FEE5A5;
  --color-accent-soft: #FEE5A526;
  --color-border: #3D3D3D;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  background: radial-gradient(circle at top, #3D3D3D 0, #262627 38%, #000 100%);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.page-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(38, 38, 39, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 231, 231, 0.06);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.brand-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(231, 231, 231, 0.66);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  color: rgba(231, 231, 231, 0.85);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  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:focus-visible::after {
  width: 100%;
}

.main-nav a:hover {
  text-decoration: none;
  color: #ffffff;
}

.page-main {
  flex: 1 0 auto;
  padding: 32px 0 72px;
}

.hero {
  margin-bottom: 40px;
  padding: 8px 0 12px;
  border-bottom: 1px solid rgba(231, 231, 231, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.hero-primary {
  padding-bottom: 10px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(231, 231, 231, 0.78);
  margin-bottom: 10px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
}

.page-title {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(231, 231, 231, 0.88);
  margin: 0 0 12px;
}

.hero-note {
  font-size: 13px;
  color: rgba(231, 231, 231, 0.75);
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(231, 231, 231, 0.82);
  border: 1px solid rgba(254, 229, 165, 0.3);
  margin-bottom: 12px;
}

.hero-highlight-badge {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero-stat-panel {
  position: relative;
  background: radial-gradient(circle at top, rgba(254, 229, 165, 0.18) 0, rgba(15, 15, 15, 0.98) 55%, #050505 100%);
  border-radius: 22px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(231, 231, 231, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.stat {
  flex: 1;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(231, 231, 231, 0.7);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.stat-subvalue {
  font-size: 11px;
  color: rgba(231, 231, 231, 0.7);
}

.hero-legal {
  font-size: 11px;
  color: rgba(231, 231, 231, 0.6);
  margin-top: 10px;
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 4px;
}

.cta-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(231, 231, 231, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out, transform 0.08s ease-out, box-shadow 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #ffffff);
  color: #262627;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.75);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9);
  background: linear-gradient(135deg, #ffe08b, #ffffff);
  text-decoration: none;
}

.btn-outline {
  background: rgba(20, 20, 20, 0.6);
  border-color: rgba(254, 229, 165, 0.7);
  color: var(--color-accent);
}

.btn-outline:hover {
  background: rgba(254, 229, 165, 0.12);
  text-decoration: none;
}

.btn-pill-soft {
  padding-inline: 18px;
  font-size: 12px;
}

.section {
  margin-bottom: 32px;
}

.section-card {
  padding: 28px 4px 26px;
  border-top: 1px solid rgba(231, 231, 231, 0.18);
}

.section-card:first-of-type {
  border-top: none;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #ffffff;
}

.section-subtitle {
  font-size: 13px;
  color: rgba(231, 231, 231, 0.76);
  margin: 0 0 12px;
}

.section-body p {
  margin: 0 0 10px;
}

.muted {
  color: rgba(231, 231, 231, 0.72);
}

.accent {
  color: var(--color-accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(254, 229, 165, 0.06);
  border: 1px solid rgba(254, 229, 165, 0.35);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(231, 231, 231, 0.86);
  margin-bottom: 8px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(231, 231, 231, 0.18);
  color: rgba(231, 231, 231, 0.85);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 13px;
}

.info-table th,
.info-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(231, 231, 231, 0.09);
}

.info-table th {
  text-align: left;
  font-weight: 600;
  color: var(--color-accent);
  font-size: 12px;
}

.info-table tr:last-of-type th,
.info-table tr:last-of-type td {
  border-bottom: none;
}

.info-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.24);
}

.info-table caption {
  caption-side: top;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(231, 231, 231, 0.9);
}

.list {
  margin: 6px 0 10px 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 4px;
}

.list-compact li {
  margin-bottom: 2px;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(231, 231, 231, 0.12);
  margin-top: 14px;
  padding-top: 14px;
}

.faq-question {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #ffffff;
}

.faq-answer {
  font-size: 13px;
  margin: 0;
}

.section-image {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  margin: 14px 0 10px;
  border: 1px solid rgba(231, 231, 231, 0.16);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);
  object-fit: cover;
}

.section-divider {
  height: 1px;
  border: 0;
  margin: 24px 0 20px;
  background: linear-gradient(90deg, transparent 0, rgba(231, 231, 231, 0.4) 20%, rgba(231, 231, 231, 0.05) 80%, transparent 100%);
}

.section-heading {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #ffffff;
}

.section-heading-small {
  font-size: 15px;
  font-weight: 600;
  margin: 12px 0 6px;
  color: #ffffff;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 10px;
}

.badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(254, 229, 165, 0.08);
  border: 1px solid rgba(254, 229, 165, 0.42);
  color: rgba(231, 231, 231, 0.9);
}

.kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.kpi {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(231, 231, 231, 0.15);
  font-size: 12px;
}

.kpi-label {
  font-weight: 500;
  margin-right: 4px;
}

.kpi-value {
  color: var(--color-accent);
}

.two-column-text {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 18px;
}

.note {
  font-size: 12px;
  color: rgba(231, 231, 231, 0.72);
}

.blockquote {
  margin: 10px 0;
  padding: 10px 12px;
  border-left: 3px solid rgba(254, 229, 165, 0.75);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 0 12px 12px 0;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid rgba(231, 231, 231, 0.06);
  padding: 18px 0 22px;
  font-size: 12px;
  color: rgba(231, 231, 231, 0.7);
  background: rgba(10, 10, 10, 0.98);
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(231, 231, 231, 0.8);
  font-size: 12px;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-meta {
  font-size: 11px;
  color: rgba(231, 231, 231, 0.65);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stat-panel {
    order: -1;
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid rgba(231, 231, 231, 0.08);
    padding-top: 10px;
  }

  .hero-primary {
    padding: 0 0 16px;
  }

  .hero-stat-panel {
    padding: 16px 16px 14px;
  }

  .grid-2,
  .grid-3,
  .two-column-text {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-inline {
    flex-direction: column;
  }
}

