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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  background-color: #262627;
  color: #e7e7e7;
}

a {
  color: #fee5a5;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

.img-original {
  max-width: none;
  height: auto;
}

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

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

/* Header */
.site-header {
  background-color: #262627;
  border-bottom: 1px solid #3d3d3d;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}

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

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

.brand-logo {
  width: 140px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #e7e7e7;
  padding: 6px 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fee5a5;
  transition: width 0.2s ease-out;
}

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

/* Hero / main */
main {
  flex: 1 0 auto;
}

.hero {
  padding: 40px 0 24px;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
}

.hero-subtitle {
  font-size: 16px;
  color: #e7e7e7;
  max-width: 640px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(254, 229, 165, 0.08);
  color: #fee5a5;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

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

/* Content */
.content {
  padding: 8px 0 48px;
}

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

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

.content-main {
  font-size: 15px;
  line-height: 1.7;
}

.content-aside {
  border-radius: 16px;
  border: 1px solid #3d3d3d;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at 0 0, rgba(254, 229, 165, 0.12), transparent 60%), #262627;
  font-size: 13px;
  line-height: 1.6;
}

.content-aside h2,
.content-aside h3 {
  margin-top: 0;
}

/* Headings inside content */
.content-main h1 {
  font-size: 28px;
  margin: 0 0 18px;
}

.content-main h2 {
  font-size: 20px;
  margin: 28px 0 12px;
  font-weight: 600;
}

.content-main h3 {
  font-size: 17px;
  margin: 22px 0 10px;
  font-weight: 600;
}

.content-main p {
  margin: 0 0 10px;
}

.content-main ul {
  margin: 8px 0 16px 1.1em;
  padding-left: 0;
}

.content-main li {
  margin-bottom: 4px;
}

.muted {
  color: #b8b8b8;
}

/* Tables */
.table-wrapper {
  margin: 16px 0 22px;
  border-radius: 12px;
  border: 1px solid #3d3d3d;
  overflow: hidden;
  background: #262627;
}

.table-wrapper {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

thead {
  background: #3d3d3d;
}

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

th {
  font-weight: 600;
}

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

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

/* CTA buttons (STA) */
.cta-block {
  margin: 18px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background-color 0.12s ease-out, color 0.12s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background-color: #fee5a5;
  color: #262627;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: #fee5a5;
  border: 1px solid rgba(254, 229, 165, 0.9);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  margin-left: 8px;
  font-size: 12px;
}

/* Chips / labels */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
}

.chip {
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid #3d3d3d;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #b8b8b8;
}

/* Footer */
.site-footer {
  flex-shrink: 0;
  border-top: 1px solid #3d3d3d;
  padding: 14px 0 18px;
  font-size: 12px;
  color: #b8b8b8;
}

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

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

.footer-links a {
  font-size: 12px;
  color: #e7e7e7;
}

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

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-title {
    font-size: 24px;
  }
}

