/* LuckyGEM — Style 2: GEM Minimal Prestige */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #111a14;
  --bg-elevated: #161f19;
  --bg-soft: #1a241e;
  --gold: #c9a84c;
  --gold-hover: #d4b65e;
  --gold-muted: rgba(201, 168, 76, 0.35);
  --text: #f2efe6;
  --text-muted: #a8a397;
  --table-row: #f9f5ec;
  --table-row-alt: #f3eee3;
  --table-text: #1a1a1a;
  --border: 1px solid var(--gold-muted);
  --max: 1080px;
  --font: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--gold-hover);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 26, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.header-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-solid {
  background: var(--gold);
  color: var(--bg);
}

.btn-solid:hover {
  background: var(--gold-hover);
  color: var(--bg);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: var(--border);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-visual {
  border: var(--border);
  overflow: hidden;
  width: 100%;
  margin-top: 0.5rem;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sections */
.section {
  padding: 4.5rem 0;
  border-bottom: var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-head h2 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.section-head p {
  color: var(--text-muted);
}

.icon-gem {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.prose {
  color: var(--text-muted);
}

.prose p + p {
  margin-top: 1rem;
}

.prose h2,
.prose h3 {
  color: var(--text);
  margin: 2rem 0 0.85rem;
}

.prose h2 {
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.prose h3 {
  font-size: 1.15rem;
  font-weight: 650;
}

.prose ul,
.prose ol {
  margin: 1rem 0 1rem 1.25rem;
  color: var(--text-muted);
}

.prose li + li {
  margin-top: 0.45rem;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

/* Cards — flat, thin gold border, no shadows */
.card {
  background: var(--bg-elevated);
  border: var(--border);
  padding: 1.75rem;
}

.card + .card {
  margin-top: 1rem;
}

.cards-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card h3 {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.list-block {
  background: var(--bg-elevated);
  border: var(--border);
  padding: 1.75rem 2rem;
}

.list-block h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.list-block ul {
  list-style: none;
  margin: 0;
}

.list-block li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.list-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.list-block.pros h3 {
  color: var(--gold);
}

/* Tip */
.tip {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border: var(--border);
  border-left: 2px solid var(--gold);
  background: var(--bg-soft);
  color: var(--text-muted);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 560px;
}

thead th {
  background: var(--bg-elevated);
  color: var(--gold);
  font-weight: 700;
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--gold);
  letter-spacing: 0.02em;
}

tbody td {
  padding: 0.85rem 1.1rem;
  background: var(--table-row);
  color: var(--table-text);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  vertical-align: top;
}

tbody tr:nth-child(even) td {
  background: var(--table-row-alt);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: var(--border);
  background: var(--bg-elevated);
  padding: 1.35rem 1.5rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

.step {
  border: var(--border);
  background: var(--bg-elevated);
  padding: 1.5rem;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Banner / media */
.media-block {
  margin: 2rem 0;
  border: var(--border);
  overflow: hidden;
  width: 100%;
}

.media-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: var(--border);
}

.page-hero h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 38rem;
  font-size: 1.05rem;
}

.content-page {
  padding: 3rem 0 4.5rem;
}

/* Footer */
.site-footer {
  border-top: var(--border);
  padding: 3rem 0 2rem;
  background: #0d1410;
}

.footer-brand {
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  height: 34px;
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.82rem;
  border-top: var(--border);
  padding-top: 1.5rem;
}

/* Utility */
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

@media (max-width: 600px) {
  .header-cta .btn:not(.btn-primary-mobile) {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }
}
