/* Base layout */
*,
*::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;
  background-color: #e7e7e7; /* #E7E7E7 */
  color: #262627; /* #262627 */
  line-height: 1.6;
}

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

.content-image {
  margin: 18px 0;
}

.content-image img {
  display: block;
  height: auto;
  border-radius: 18px;
}

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

a:hover,
a:focus-visible {
  text-decoration: none;
}

main {
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  background-color: #262627;
  color: #e7e7e7;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 124px;
  height: 40px;
}

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

.main-nav a {
  position: relative;
}

/* Hero & sections */
.hero {
  padding: 40px 0 24px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #3d3d3d; /* #3D3D3D */
  margin-bottom: 10px;
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: #fee5a5;
}

h1 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: #262627;
}

h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 32px 0 12px;
  color: #262627;
}

h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  color: #262627;
}

p {
  margin: 0 0 12px;
}

.lead {
  font-size: 16px;
  max-width: 760px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: flex-start;
}

.card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.card-muted {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 45%, #fee5a5 100%);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d3d3d;
}

.card-tag {
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
  background-color: rgba(38, 38, 39, 0.06);
}

.card-body {
  font-size: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: rgba(38, 38, 39, 0.06);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 8px;
}

.pill-accent {
  background-color: #fee5a5;
}

/* Tables */
.table-wrapper {
  margin: 12px 0 18px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

thead {
  background-color: #262627;
  color: #e7e7e7;
}

th,
td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

tbody tr:hover {
  background-color: #fff7e3;
}

/* STA buttons */
.sta-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease-out, color 0.18s ease-out, box-shadow 0.18s ease-out, transform 0.08s ease-out, border-color 0.18s ease-out;
}

.btn-primary {
  background-color: #262627;
  color: #e7e7e7;
  border-color: #262627;
  box-shadow: 0 10px 26px rgba(38, 38, 39, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #3d3d3d;
  border-color: #3d3d3d;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(38, 38, 39, 0.35);
}

.btn-ghost {
  background-color: transparent;
  color: #262627;
  border-color: rgba(38, 38, 39, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background-color: rgba(38, 38, 39, 0.06);
  border-color: #262627;
}

/* Text helpers */
.text-small {
  font-size: 13px;
}

.text-muted {
  color: #3d3d3d;
}

.section {
  padding: 10px 0 4px;
}

.section-divider {
  margin: 30px 0 18px;
  border: none;
  border-top: 1px solid rgba(38, 38, 39, 0.08);
}

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

.list li {
  margin-bottom: 4px;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background-color: #262627;
  color: #e7e7e7;
  padding: 18px 0;
  font-size: 12px;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

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

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: none;
}

.legal-line {
  opacity: 0.8;
}


/* Responsive */
@media (max-width: 900px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .card {
    padding: 18px 16px 14px;
  }
}

@media (max-width: 600px) {
  .site-header-inner {
    padding-inline: 12px;
  }

  .container {
    padding-inline: 12px;
  }

  .hero {
    padding-top: 26px;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
    flex-wrap: wrap;
  }

  .sta-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

