@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --color-light-gray: #E7E7E7;
  --color-soft-yellow: #FEE5A5;
  --color-dark-gray: #3D3D3D;
  --color-deep-dark: #262627;
  --color-accent: #FEE5A5;
  --color-bg: #121213;
  --max-width: 1200px;
}

*,
*::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;
  background: radial-gradient(circle at top, #1e1f22 0, #050506 60%, #000000 100%);
  color: var(--color-light-gray);
  line-height: 1.6;
}

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

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

main img {
  border-radius: 16px;
}

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

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

header.site-header {
  border-bottom: 1px solid rgba(231, 231, 231, 0.08);
  background: rgba(12, 12, 14, 0.95);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

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

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(231, 231, 231, 0.6);
}

.brand-country {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-soft-yellow);
}

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

.nav-link {
  padding: 6px 0;
  position: relative;
  color: rgba(231, 231, 231, 0.8);
}

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

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link--active {
  color: #ffffff;
}

main {
  flex: 1 0 auto;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 40px;
  align-items: flex-start;
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254, 229, 165, 0.9);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 700;
  margin: 0 0 12px;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(231, 231, 231, 0.9);
  margin: 0 0 20px;
}

.hero-note {
  font-size: 13px;
  color: rgba(231, 231, 231, 0.7);
  border-left: 2px solid rgba(254, 229, 165, 0.9);
  padding-left: 12px;
}

.hero-card {
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top left, rgba(254, 229, 165, 0.16), transparent 55%),
              radial-gradient(circle at bottom right, rgba(61, 61, 61, 0.7), #111115);
  border: 1px solid rgba(231, 231, 231, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.8);
}

.hero-card-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}

.hero-card-subtitle {
  font-size: 12px;
  color: rgba(231, 231, 231, 0.7);
  margin: 0 0 12px;
}

.hero-card-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.hero-card-stat-label {
  font-size: 11px;
  color: rgba(231, 231, 231, 0.7);
}

.hero-card-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.hero-card-footnote {
  font-size: 11px;
  color: rgba(231, 231, 231, 0.6);
}

.section {
  padding: 20px 0;
}

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

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

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

.section-description {
  font-size: 14px;
  color: rgba(231, 231, 231, 0.78);
  margin: 0;
}

.text-block {
  font-size: 14px;
  color: rgba(231, 231, 231, 0.9);
}

.text-block p {
  margin: 0 0 10px;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: rgba(21, 21, 24, 0.98);
  border: 1px solid rgba(231, 231, 231, 0.06);
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(231, 231, 231, 0.85);
}

.feature-list li + li {
  margin-top: 4px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 13px;
}

.info-table th,
.info-table td {
  padding: 8px 10px;
  border: 1px solid rgba(231, 231, 231, 0.12);
}

.info-table th {
  text-align: left;
  background: rgba(38, 38, 39, 0.92);
  color: var(--color-soft-yellow);
  font-weight: 600;
  font-size: 12px;
}

.info-table td {
  background: rgba(17, 17, 20, 0.96);
}

.info-table tr:nth-child(even) td {
  background: rgba(14, 14, 17, 0.96);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(38, 38, 39, 0.9);
  color: rgba(231, 231, 231, 0.88);
  font-size: 11px;
  margin-bottom: 8px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-soft-yellow);
}

.sta-block {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254, 229, 165, 0.15), rgba(61, 61, 61, 0.9));
  border: 1px solid rgba(254, 229, 165, 0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.btn-sta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}

.btn-sta--login {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

.btn-sta--register {
  background: #262627;
  color: #FEE5A5;
  border: 1px solid rgba(254, 229, 165, 0.7);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
}

.btn-sta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.btn-sta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.pill-note {
  font-size: 11px;
  color: rgba(14, 14, 17, 0.9);
  background: rgba(254, 229, 165, 0.9);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 600;
}

.list {
  padding-left: 18px;
  margin: 0 0 10px;
  font-size: 14px;
}

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

.faq-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 14px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-q {
  font-weight: 600;
}

.faq-a {
  margin-left: 4px;
}

.page-simple {
  padding: 40px 0 32px;
}

.page-simple h1 {
  font-size: clamp(26px, 3.5vw, 32px);
  margin: 0 0 14px;
}

.page-simple .lead {
  font-size: 15px;
  color: rgba(231, 231, 231, 0.88);
  margin-bottom: 18px;
}

footer.site-footer {
  border-top: 1px solid rgba(231, 231, 231, 0.07);
  background: #050506;
  padding: 18px 0;
  margin-top: 30px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: rgba(231, 231, 231, 0.6);
}

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

.footer-link {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

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

  .hero {
    padding-top: 28px;
  }
}

@media (max-width: 520px) {
  .sta-block {
    padding: 12px 12px;
  }

  .btn-sta {
    flex: 1 1 auto;
    justify-content: center;
  }

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