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

:root {
  --bg: #080c12;
  --bg2: #0c1220;
  --surface: #111827;
  --surface2: #182234;
  --navy: #0d1e35;
  --gold: #c9964a;
  --gold2: #dbb86b;
  --gold3: rgba(201,150,74,0.12);
  --text: #f2f0ec;
  --text2: #b8c0cc;
  --muted: #7c8799;
  --border: rgba(255,255,255,0.09);
  --border2: rgba(201,150,74,0.26);
  --radius: 8px;
  --sans: Arial, Helvetica, sans-serif;
}

html { background: var(--bg); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12,18,32,0.96);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
}

.brand span {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.toplinks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.toplinks a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  border: 1px solid transparent;
}

.toplinks a:hover,
.button.secondary:hover {
  color: var(--gold);
  background: var(--gold3);
  border-color: var(--border2);
}

.button.primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.button.primary:hover { background: var(--gold2); }
.button.secondary { border-color: var(--border); color: var(--text); }

.hero {
  background:
    linear-gradient(to right, rgba(8,12,18,0.92), rgba(8,12,18,0.66)),
    url('/images/IMG_0787 Large.jpeg') center / cover;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 22px 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin-top: 20px;
  color: var(--text2);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 22px 76px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.tier-section {
  margin-top: 34px;
}

.tier-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.tier-heading h3 {
  font-size: 24px;
  line-height: 1.2;
}

.tier-heading p {
  max-width: 620px;
  color: var(--text2);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold3);
  border: 1px solid var(--border2);
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.feature-card {
  min-height: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, background .2s;
}

.feature-card:hover {
  border-color: var(--border2);
  background: var(--surface2);
  transform: translateY(-3px);
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold3);
  border: 1px solid var(--border2);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 18px;
}

.feature-card h2,
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.feature-card p,
.article p,
.article li,
.intro {
  color: var(--text2);
}

.feature-card .read {
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.support-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 86px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.sidebar h2 {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sidebar a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--text2);
  font-size: 14px;
}

.sidebar a:hover,
.sidebar a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 52px);
}

.article h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 16px;
}

.article h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 22px;
}

.article h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 17px;
}

.article ul,
.article ol {
  margin: 12px 0 0 22px;
}

.article li { margin-bottom: 8px; }

.note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--gold3);
  border: 1px solid var(--border2);
  color: var(--text);
}
.note.warning {
  background: rgba(220,100,40,0.12);
  border-color: rgba(220,100,40,0.35);
}
pre {
  margin-top: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.6;
}
code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}
pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
}

.related {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-title {
  margin-bottom: 14px;
  font-size: 28px;
}

.intro {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 16px;
}

footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 22px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner a { color: var(--text2); }
.footer-inner a:hover { color: var(--gold); }

@media (max-width: 780px) {
  .topbar-inner { align-items: flex-start; flex-direction: column; }
  .toplinks { justify-content: flex-start; }
  .hero-inner { padding-top: 60px; }
  .support-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .brand span { white-space: normal; }
  .tier-heading { flex-direction: column; }
}
