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

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #1a1a1b 0%, #262627 50%, #1f1f20 100%);
  background-attachment: fixed;
  color: #e7e7e7;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 20% 30%, rgba(254, 229, 165, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(231, 231, 231, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(61, 61, 61, 0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

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

.content-image {
  height: auto;
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(254, 229, 165, 0.15);
}

.content-image-inline {
  height: auto;
  border-radius: 12px;
  margin: 16px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(231, 231, 231, 0.1);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(180%);
  background: rgba(38, 38, 39, 0.85);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(254, 229, 165, 0.3), transparent) 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  height: 44px;
  filter: drop-shadow(0 2px 8px rgba(254, 229, 165, 0.3));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #fee5a5, #e7e7e7);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover::after {
  width: 100%;
}

main {
  padding: 48px 0 72px;
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 56px 20px 48px;
  margin-bottom: 48px;
  position: relative;
  background: linear-gradient(135deg, rgba(61, 61, 61, 0.2) 0%, rgba(38, 38, 39, 0.4) 100%);
  border-radius: 24px;
  border: 1px solid rgba(254, 229, 165, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 100%;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(254, 229, 165, 0.15), transparent 60%, rgba(231, 231, 231, 0.1));
  border-radius: 24px;
  z-index: -1;
  opacity: 0.6;
}

.page-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fee5a5;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(254, 229, 165, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(254, 229, 165, 0.2);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e7e7e7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin: 40px 0 16px;
  position: relative;
  padding-bottom: 8px;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fee5a5, transparent);
  border-radius: 2px;
}

h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: #fee5a5;
}

p {
  margin: 0 0 14px;
  line-height: 1.75;
}

.page-intro {
  font-size: 1.05rem;
  color: #e7e7e7;
  max-width: 820px;
  line-height: 1.8;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(61, 61, 61, 0.9), rgba(38, 38, 39, 0.95));
  color: #e7e7e7;
  font-size: 0.82rem;
  margin-top: 16px;
  border: 1px solid rgba(254, 229, 165, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fee5a5;
  box-shadow: 0 0 8px rgba(254, 229, 165, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

.section {
  padding: 32px 0 24px;
  margin-bottom: 16px;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1240px;
}

.section:last-of-type {
  border-bottom: none;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
  max-width: 100%;
}

.section-muted {
  background: linear-gradient(135deg, rgba(61, 61, 61, 0.3) 0%, rgba(38, 38, 39, 0.5) 100%);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(254, 229, 165, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(254, 229, 165, 0.1);
  position: relative;
  overflow: hidden;
}

.section-muted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(254, 229, 165, 0.08), transparent 50%);
  pointer-events: none;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 8px;
  padding: 0;
  list-style: none;
}

.badge-list li {
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(254, 229, 165, 0.25);
  background: linear-gradient(135deg, rgba(38, 38, 39, 0.95), rgba(61, 61, 61, 0.8));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badge-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.highlight {
  color: #fee5a5;
  font-weight: 600;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.card {
  background: linear-gradient(135deg, rgba(38, 38, 39, 0.95) 0%, rgba(61, 61, 61, 0.7) 100%);
  border-radius: 20px;
  padding: 24px 20px 20px;
  border: 1px solid rgba(254, 229, 165, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(254, 229, 165, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  border-color: rgba(254, 229, 165, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fee5a5;
}

.card p {
  font-size: 0.92rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.note {
  font-size: 0.88rem;
  color: #c5c5c5;
  font-style: italic;
}

.table-wrapper {
  margin: 16px 0 20px;
  border-radius: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(254, 229, 165, 0.15);
  background: linear-gradient(135deg, rgba(38, 38, 39, 0.98) 0%, rgba(61, 61, 61, 0.85) 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

thead {
  background: linear-gradient(135deg, rgba(61, 61, 61, 0.95), rgba(38, 38, 39, 1));
  border-bottom: 2px solid rgba(254, 229, 165, 0.2);
}

th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: #fee5a5;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

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

tbody tr {
  transition: background 0.2s ease;
}

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

tbody tr:nth-child(odd) {
  background: rgba(24, 24, 25, 0.8);
}

tbody tr:hover {
  background: rgba(61, 61, 61, 0.5);
}

.table-caption {
  font-size: 0.86rem;
  padding: 12px 16px;
  background: rgba(24, 24, 25, 0.95);
  color: #c4c4c4;
  border-top: 1px solid rgba(254, 229, 165, 0.1);
}

.list {
  margin: 8px 0 16px 24px;
  padding: 0;
}

.list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 8px;
}

.list li::marker {
  color: #fee5a5;
}

.list-compact {
  margin-top: 0;
  margin-bottom: 10px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 8px;
}

.btn-sta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(135deg, #fee5a5 0%, #e7e7e7 100%);
  color: #262627;
  box-shadow: 0 8px 24px rgba(254, 229, 165, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-sta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-sta:hover::before {
  left: 100%;
}

.btn-sta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(254, 229, 165, 0.4), 0 6px 16px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.btn-sta.secondary {
  background: transparent;
  color: #fee5a5;
  border: 2px solid #fee5a5;
  box-shadow: 0 4px 16px rgba(254, 229, 165, 0.15);
}

.btn-sta.secondary::before {
  background: linear-gradient(90deg, transparent, rgba(254, 229, 165, 0.2), transparent);
}

.btn-sta.secondary:hover {
  background: rgba(254, 229, 165, 0.12);
  border-color: #e7e7e7;
  box-shadow: 0 8px 24px rgba(254, 229, 165, 0.25);
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 8px;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(254, 229, 165, 0.2);
  padding: 6px 14px;
  font-size: 0.82rem;
  background: linear-gradient(135deg, rgba(24, 24, 25, 0.98), rgba(38, 38, 39, 0.95));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: rgba(254, 229, 165, 0.4);
  transform: translateY(-1px);
}

.faq-item {
  padding: 20px 24px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(61, 61, 61, 0.3), rgba(38, 38, 39, 0.5));
  border-radius: 16px;
  border: 1px solid rgba(231, 231, 231, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(254, 229, 165, 0.2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transform: translateX(4px);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(231, 231, 231, 0.08);
}

.faq-question {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fee5a5;
}

.disclaimer {
  font-size: 0.85rem;
  color: #b3b3b3;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(24, 24, 25, 0.98), rgba(38, 38, 39, 0.95));
  border: 2px dashed rgba(254, 229, 165, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
}

.site-footer {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(254, 229, 165, 0.3), transparent) 1;
  padding: 32px 0 36px;
  background: linear-gradient(135deg, rgba(38, 38, 39, 0.95) 0%, rgba(61, 61, 61, 0.8) 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
  color: #bdbdbd;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fee5a5;
}

.tagline {
  font-size: 0.9rem;
  color: #e7e7e7;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .page-hero {
    padding: 40px 20px 36px;
    text-align: left;
  }

  .cta-group {
    justify-content: flex-start;
  }

  h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 0;
  }

  .logo img {
    height: 36px;
  }

  h1 {
    font-size: 1.7rem;
  }

  .page-hero {
    padding: 32px 16px 28px;
  }

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

  .section-muted {
    padding: 20px 16px 18px;
  }
}

