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

html,
body {
  margin: 0;
  padding: 0;
}

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

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

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */
.site-header {
  border-bottom: 1px solid rgba(231, 231, 231, 0.1);
  background: #262627;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  color: #fee5a5;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  padding-bottom: 4px;
}

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

.hero {
  padding: 40px 0 32px;
  background: radial-gradient(circle at top left, #3d3d3d 0, #262627 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}

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

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #42c07b;
}

.hero h1 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 14px;
  font-weight: 700;
}

.hero-lead {
  font-size: 15px;
  max-width: 640px;
  margin-bottom: 18px;
  color: #e7e7e7;
}

.hero-highlight {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(61, 61, 61, 0.85);
  font-size: 12px;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #b5b5b5;
}

.hero-meta strong {
  color: #fee5a5;
}

.hero-card {
  border-radius: 16px;
  background: linear-gradient(145deg, #3d3d3d, #262627);
  border: 1px solid rgba(231, 231, 231, 0.18);
  padding: 20px 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.hero-card-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fee5a5;
  margin-bottom: 10px;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 13px;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.hero-card-bullet {
  margin-top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fee5a5;
  flex-shrink: 0;
}

.hero-card-note {
  font-size: 11px;
  color: #b5b5b5;
}

/* Content sections */
.section {
  padding: 32px 0;
}

.section + .section {
  border-top: 1px solid rgba(231, 231, 231, 0.07);
}

.section-header {
  margin-bottom: 18px;
}

.section-title {
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 600;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b5b5b5;
}

.section p {
  font-size: 14px;
  margin: 0 0 12px;
  color: #e7e7e7;
}

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

.section strong {
  font-weight: 600;
}

/* Tables */
.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px;
  background: rgba(38, 38, 39, 0.7);
  border-radius: 10px;
  overflow: hidden;
}

thead {
  background: #3d3d3d;
}

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

th {
  font-weight: 600;
  color: #fee5a5;
}

tbody tr:nth-child(even) {
  background: rgba(38, 38, 39, 0.9);
}

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

/* Lists */
ul,
ol {
  margin: 0 0 12px 20px;
  padding: 0;
  font-size: 14px;
}

li + li {
  margin-top: 4px;
}

.section-image {
  margin: 16px 0 20px;
  display: flex;
  justify-content: center;
}

.section-image img {
  width: 100%;
  max-width: 780px;
  border-radius: 14px;
  border: 1px solid rgba(231, 231, 231, 0.16);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

/* STA buttons (Login & Registration) */
.sta-cta {
  margin: 24px 0 8px;
}

.sta-cta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b5b5b5;
  margin-bottom: 8px;
}

.sta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, box-shadow 0.15s ease, transform 0.06s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #fee5a5;
  color: #262627;
  border-color: #fee5a5;
  box-shadow: 0 0 0 1px rgba(38, 38, 39, 0.2),
    0 10px 24px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
  background: #ffe08c;
  border-color: #ffe08c;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #e7e7e7;
  border-color: rgba(231, 231, 231, 0.4);
}

.btn-secondary:hover {
  background: rgba(231, 231, 231, 0.08);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Page-specific helpers */
.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.meta-card {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(38, 38, 39, 0.9);
  border: 1px solid rgba(231, 231, 231, 0.09);
  font-size: 13px;
}

.meta-card-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fee5a5;
  margin-bottom: 4px;
}

.tagline {
  font-size: 13px;
  color: #b5b5b5;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(231, 231, 231, 0.08);
  padding: 18px 0 20px;
  font-size: 12px;
  color: #b5b5b5;
}

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

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

.footer-links a {
  color: #e7e7e7;
}

.footer-links a:hover {
  color: #fee5a5;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 840px) {
  .container {
    padding: 0 24px;
  }

  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .hero-card {
    order: -1;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 20px 20px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

