@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --bg:        #111a14;
  --bg-alt:    #0e1711;
  --bg-card:   #192119;
  --bg-card2:  #1d271d;
  --gold:      #c9a84c;
  --gold-lt:   #dfc06a;
  --gold-dk:   #a8872e;
  --gold-dim:  rgba(201, 168, 76, 0.14);
  --border:    rgba(201, 168, 76, 0.2);
  --border-hv: rgba(201, 168, 76, 0.55);
  --text:      #ddd8cc;
  --text-sub:  #8a9e8c;
  --white:     #f4efe6;
  --r:         5px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ─── LAYOUT ─── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .3px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background .22s, color .22s, border-color .22s;
  white-space: nowrap;
  line-height: 1;
}
.btn-outline {
  padding: .55rem 1.35rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }
.btn-fill {
  padding: .6rem 1.5rem;
  background: var(--gold);
  color: var(--bg);
  border: 1.5px solid var(--gold);
}
.btn-fill:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--bg); }
.btn-lg { padding: .85rem 2.25rem; font-size: 1rem; }

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(17, 26, 20, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
}
.logo-gem { display: flex; align-items: center; }
.logo-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: .2px;
}
.logo-name em { color: var(--gold); font-style: normal; }
.header-actions { display: flex; gap: .6rem; align-items: center; }

/* ─── HERO ─── */
.hero {
  padding: 5.5rem 1.5rem 4.5rem;
  background: linear-gradient(160deg, #0b1610 0%, var(--bg) 65%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after { content: ''; width: 26px; height: 1px; background: var(--gold); opacity: .45; }
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.22;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 .gold { color: var(--gold); }
.hero-lead {
  font-size: 1.03rem;
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.hero-visual {
  max-width: 960px;
  margin: 3.5rem auto 0;
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

/* ─── LOGO IMAGE ─── */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ─── BANNER SLIDER ─── */
.banner-img {
  display: block;
  width: 100%;
  animation: bannerShow 20s linear infinite;
}
.banner-img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.banner-img:nth-child(2) { animation-delay: 5s; }
.banner-img:nth-child(3) { animation-delay: 10s; }
.banner-img:nth-child(4) { animation-delay: 15s; }

@keyframes bannerShow {
  0%    { opacity: 1; }
  20%   { opacity: 1; }
  25%   { opacity: 0; }
  95%   { opacity: 0; }
  100%  { opacity: 1; }
}

/* ─── INTRO STRIP ─── */
.intro-strip {
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.intro-strip p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ─── SECTION ─── */
.section { padding: 4.5rem 1.5rem; }
.section-alt { background: var(--bg-alt); }

.section-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.section-label::before { content: '◆'; font-size: .45rem; }
.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  color: var(--white);
  margin-bottom: .65rem;
  line-height: 1.25;
}
.section-body {
  color: var(--text-sub);
  font-size: .98rem;
  max-width: 640px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

/* ─── CARDS ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.15rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.65rem 1.4rem;
  transition: border-color .2s;
}
.card:hover { border-color: var(--border-hv); }
.card-icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: .8rem;
  line-height: 1;
}
.card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.card p { font-size: .9rem; color: var(--text-sub); line-height: 1.65; }

/* ─── TABLE ─── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
table { width: 100%; border-collapse: collapse; }
thead { background: var(--bg-card2); }
thead th {
  padding: .8rem 1.1rem;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(odd)  { background: rgba(249, 245, 236, .025); }
tbody tr:nth-child(even) { background: var(--bg-card); }
tbody tr:hover { background: var(--gold-dim); }
tbody td { padding: .78rem 1.1rem; font-size: .91rem; color: var(--text); vertical-align: middle; }

/* ─── STEPS ─── */
.steps { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.25rem; }
.step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.15rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--gold);
  margin-top: .05rem;
}
.step p { color: var(--text-sub); font-size: .93rem; margin: 0; line-height: 1.65; }

/* ─── FAQ ─── */
.faqs { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
.faq {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.faq-q {
  padding: 1rem 1.4rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  line-height: 1.5;
}
.faq-q::before { content: '◆'; color: var(--gold); font-size: .45rem; flex-shrink: 0; margin-top: .48rem; }
.faq-a {
  padding: .85rem 1.4rem 1rem 2.85rem;
  color: var(--text-sub);
  font-size: .91rem;
  line-height: 1.72;
  border-top: 1px solid var(--border);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 3.5rem 1.5rem 2.75rem;
  background: linear-gradient(160deg, #0b1610 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 3.5vw, 2.3rem);
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.25;
}
.page-hero h1 .gold { color: var(--gold); }
.page-hero p {
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto;
  font-size: .97rem;
  line-height: 1.75;
}

/* ─── PROSE (inner page content blocks) ─── */
.prose { max-width: 840px; margin: 0 auto; }
.prose h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin: 2.75rem 0 .8rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  line-height: 1.3;
}
.prose h2::before { content: '◆'; color: var(--gold); font-size: .48rem; flex-shrink: 0; }
.prose h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--gold);
  margin: 1.75rem 0 .6rem;
}
.prose p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: .97rem;
}
.prose ul, .prose ol {
  color: var(--text);
  margin: .75rem 0 1.2rem 1.4rem;
  line-height: 1.8;
  font-size: .95rem;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .4rem; }
.prose li::marker { color: var(--gold); }
.prose strong { color: var(--white); font-weight: 600; }

/* ─── GEM DIVIDER ─── */
.gem-div {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 2.5rem 0;
}
.gem-div::before, .gem-div::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.gem-div span { color: var(--gold); font-size: .6rem; opacity: .6; }

/* ─── CTA BLOCK ─── */
.cta-block { text-align: center; margin: 2.5rem 0 1rem; }
.cta-note { color: var(--text-sub); font-size: .85rem; margin-top: .7rem; }

/* ─── FOOTER ─── */
footer {
  background: #0b1410;
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
}
.footer-wrap { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand p {
  color: var(--text-sub);
  font-size: .85rem;
  margin-top: .6rem;
  max-width: 250px;
  line-height: 1.6;
}
.footer-nav h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--gold);
  margin-bottom: .85rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .42rem; list-style: none; }
.footer-nav ul a { color: var(--text-sub); font-size: .87rem; transition: color .2s; }
.footer-nav ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-disclaimer {
  color: var(--text-sub);
  font-size: .77rem;
  line-height: 1.65;
  max-width: 700px;
}
.footer-age {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(138, 158, 140, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: .7rem;
  color: var(--text-sub);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 3.5rem 1rem 3.5rem; }
  .section { padding: 3rem 1rem; }
  .page-hero { padding: 2.75rem 1rem 2.25rem; }
  .intro-strip { padding: 2rem 1rem; }
  .header-actions .btn-outline { display: none; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  footer { padding: 2.5rem 1rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .cards { grid-template-columns: 1fr; }
  .logo-name { font-size: 1.15rem; }
}
