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

:root {
  --bg: #090705;
  --bg-accent: #140f0b;
  --surface: rgba(22, 15, 11, 0.84);
  --surface-strong: rgba(31, 21, 15, 0.96);
  --surface-soft: rgba(255, 248, 235, 0.06);
  --line: rgba(212, 178, 104, 0.22);
  --line-strong: rgba(212, 178, 104, 0.42);
  --gold: #d5b166;
  --gold-strong: #f0d7a1;
  --emerald: #0d4538;
  --ruby: #6b1222;
  --text: #f7efe0;
  --text-soft: #cbbca0;
  --text-muted: #99866b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 32px));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(107, 18, 34, 0.26), transparent 34%),
    radial-gradient(circle at 90% 15%, rgba(213, 177, 102, 0.13), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(13, 69, 56, 0.22), transparent 30%),
    linear-gradient(180deg, #120d09 0%, #080605 42%, #0a0807 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 92%);
  opacity: 0.35;
}

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(212, 178, 104, 0.12);
  background: rgba(9, 7, 5, 0.78);
  backdrop-filter: blur(18px);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

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

.brand-logo {
  width: 154px;
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}

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

.brand-copy span {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--gold-strong);
  border-color: rgba(212, 178, 104, 0.24);
  background: rgba(255, 248, 235, 0.05);
}

.header-actions,
.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-header .brand {
  gap: 10px;
}

.site-header .brand-logo {
  width: 144px;
}

.site-header .brand-copy span {
  font-size: 0.9rem;
}

.site-header .brand-copy small {
  font-size: 0.68rem;
}

.site-header .nav-link {
  padding: 8px 12px;
  font-size: 0.88rem;
}

.site-header .header-actions {
  gap: 14px;
}

.site-header .header-actions .btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.74rem;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  list-style: none;
  border-radius: 16px;
  border: 1px solid rgba(212, 178, 104, 0.22);
  background: rgba(255, 248, 235, 0.05);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::marker {
  content: "";
}

.burger-lines,
.burger-lines::before,
.burger-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-strong);
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.burger-lines {
  position: relative;
}

.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger-lines::before {
  top: -6px;
}

.burger-lines::after {
  top: 6px;
}

.mobile-menu[open] .burger-lines {
  background: transparent;
}

.mobile-menu[open] .burger-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] .burger-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(212, 178, 104, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.05), rgba(255, 248, 235, 0.03)),
    rgba(18, 13, 9, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav,
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-actions {
  margin-top: 14px;
}

.mobile-nav .nav-link,
.mobile-actions .btn {
  width: 100%;
  justify-content: flex-start;
}

.mobile-nav .nav-link {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(212, 178, 104, 0.14);
  background: rgba(255, 248, 235, 0.04);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 178, 104, 0.22);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 178, 104, 0.42);
}

.btn-ghost {
  background: rgba(255, 248, 235, 0.04);
  color: var(--text);
}

.btn-solid {
  background:
    linear-gradient(135deg, rgba(240, 215, 161, 0.98), rgba(197, 150, 68, 0.96));
  color: #20150d;
  box-shadow: 0 16px 32px rgba(166, 126, 45, 0.26);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
}

.hero {
  padding: 78px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 178, 104, 0.2);
  background: rgba(255, 248, 235, 0.05);
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 0 0 5px rgba(212, 178, 104, 0.12);
}

.hero h1 {
  margin: 18px 0 18px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-copy,
.section-copy,
.accordion-body,
.inset-card,
.callout,
.footer-note,
.footer-copy {
  color: var(--text-soft);
}

.hero-copy {
  margin: 0 0 28px;
  max-width: 60ch;
  font-size: 1.04rem;
  line-height: 1.8;
}

.trust-row,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  gap: 18px;
  row-gap: 14px;
  margin-bottom: 16px;
}

.trust-pill,
.pill-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 178, 104, 0.16);
  background: rgba(255, 248, 235, 0.04);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-pill::before,
.pill-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-banner {
  position: relative;
  min-height: 0;
  padding: 58px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 178, 104, 0.2), transparent 24%),
    radial-gradient(circle at 78% 16%, rgba(107, 18, 34, 0.32), transparent 30%),
    linear-gradient(135deg, rgba(19, 14, 11, 0.98), rgba(8, 7, 5, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}

.hero-banner::before {
  width: 280px;
  height: 280px;
  right: -48px;
  bottom: -84px;
  background: radial-gradient(circle, rgba(212, 178, 104, 0.3), transparent 66%);
}

.hero-banner::after {
  width: 180px;
  height: 180px;
  top: -44px;
  left: -24px;
  background: radial-gradient(circle, rgba(13, 69, 56, 0.42), transparent 66%);
}

.banner-chip {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 178, 104, 0.22);
  background: rgba(255, 248, 235, 0.06);
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

.banner-frame {
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(212, 178, 104, 0.3);
  border-radius: 24px;
  z-index: 1;
}

.hero-banner-image {
  position: relative;
  z-index: 0;
  width: min(100%, 560px);
  height: auto;
  max-height: 360px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(212, 178, 104, 0.12);
}

.banner-copy {
  position: relative;
  z-index: 1;
  max-width: 24rem;
}

.banner-copy p {
  margin: 0 0 10px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
}

.banner-copy h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.96;
}

.banner-copy span {
  display: block;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section {
  padding: 16px 0 18px;
}

.panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.04), rgba(255, 248, 235, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2,
.panel h2,
.panel h3,
.faq-heading {
  margin: 12px 0 14px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.panel h3 {
  font-size: 1.75rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 26px;
  align-items: start;
}

.section-grid.reverse {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.inset-card,
.list-card,
.callout,
.table-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 178, 104, 0.18);
  background: rgba(255, 248, 235, 0.04);
}

.inset-card,
.list-card,
.callout {
  padding: 22px;
}

.inset-card p:last-child,
.section-copy p:last-child,
.callout p:last-child {
  margin-bottom: 0;
}

.meta-grid,
.feature-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.stat-card,
.feature-card,
.comparison-card {
  min-height: 100%;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 178, 104, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.06), rgba(255, 248, 235, 0.03)),
    rgba(15, 10, 8, 0.78);
}

.stat-card strong,
.feature-card strong,
.comparison-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-card span,
.feature-card span,
.comparison-card span {
  color: var(--text-soft);
  line-height: 1.65;
}

.accordion {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 178, 104, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.04), rgba(255, 248, 235, 0.03)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.accordion + .accordion {
  margin-top: 14px;
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 800;
  color: var(--text);
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 178, 104, 0.24);
  color: var(--gold-strong);
  font-size: 1rem;
}

.accordion[open] summary::after {
  content: "-";
}

.accordion-body {
  padding: 0 24px 24px;
  line-height: 1.8;
}

.toc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.toc-list a {
  display: block;
  min-height: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(212, 178, 104, 0.14);
  background: rgba(255, 248, 235, 0.04);
  color: var(--text-soft);
  font-weight: 700;
  transition: 180ms ease;
}

.toc-list a:hover {
  color: var(--gold-strong);
  border-color: rgba(212, 178, 104, 0.26);
}

.section-copy p,
.accordion-body p,
.callout p,
.footer-copy,
.footer-note {
  margin: 0 0 16px;
  line-height: 1.8;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

.content-list,
.number-list,
.pill-list {
  margin-top: 16px;
}

.content-list li,
.number-list li {
  margin-bottom: 12px;
  color: var(--text-soft);
  line-height: 1.7;
}

.content-list li::marker,
.number-list li::marker {
  color: var(--gold-strong);
  font-weight: 800;
}

.pill-list {
  list-style: none;
  padding: 0;
}

.pill-list li {
  margin: 0;
}

.callout {
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 178, 104, 0.08), transparent 54%);
  pointer-events: none;
}

.callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 16px;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(212, 178, 104, 0.16);
  text-align: left;
}

th {
  color: var(--gold-strong);
  background: rgba(255, 248, 235, 0.04);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

td {
  color: var(--text-soft);
}

tr:last-child td {
  border-bottom: 0;
}

.section-anchor {
  position: relative;
  top: -98px;
}

.breadcrumbs-wrap {
  padding: 18px 0 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.breadcrumbs a {
  color: var(--text-soft);
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--gold-strong);
}

.breadcrumbs-divider {
  color: rgba(212, 178, 104, 0.42);
}

.breadcrumbs [aria-current="page"] {
  color: var(--gold-strong);
}

.site-footer {
  margin-top: 42px;
  padding: 34px 0 52px;
  border-top: 1px solid rgba(212, 178, 104, 0.14);
  background: rgba(9, 7, 5, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 24px;
  align-items: start;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 178, 104, 0.16);
  background: rgba(255, 248, 235, 0.04);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-nav a[aria-current="page"],
.footer-nav a:hover {
  color: var(--gold-strong);
  border-color: rgba(212, 178, 104, 0.28);
}

.footer-copy {
  max-width: 52ch;
}

.faq-section {
  padding-bottom: 32px;
}

@media (max-width: 980px) {
  .header-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 12px 0;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .mobile-menu {
    display: block;
  }

  .site-header .brand {
    gap: 10px;
  }

  .site-header .brand-copy {
    display: none;
  }

  .site-header .brand-logo {
    width: 124px;
  }

  .site-header .header-actions .btn {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .hero-grid,
  .section-grid,
  .section-grid.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-banner {
    padding-top: 54px;
  }

  .hero-banner-image {
    width: min(100%, 500px);
    max-height: 320px;
  }
}

@media (max-width: 720px) {
  .hero-actions,
  .footer-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .footer-actions .btn {
    flex: 1 1 180px;
  }

  .panel,
  .accordion-body,
  .accordion summary {
    padding-left: 18px;
    padding-right: 18px;
  }

  .panel {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .site-header .brand {
    align-items: center;
  }

  .site-header .brand-logo {
    width: 98px;
  }

  .site-header .header-actions {
    gap: 6px;
  }

  .site-header .header-actions .btn {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .mobile-menu summary {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .mobile-menu-panel {
    width: min(300px, calc(100vw - 24px));
    padding: 16px;
  }

  .breadcrumbs-wrap {
    padding-top: 12px;
  }

  .hero-banner {
    padding: 46px 10px 10px;
  }

  .hero-banner-image {
    width: 100%;
    max-height: none;
    border-radius: 20px;
  }

  .banner-chip {
    top: 20px;
    left: 20px;
    padding: 8px 12px;
    font-size: 0.68rem;
  }

  .banner-frame {
    inset: 10px;
  }
}

@media (max-width: 420px) {
  .header-row {
    gap: 6px;
  }

  .site-header .brand-logo {
    width: 88px;
  }

  .site-header .header-actions {
    gap: 4px;
  }

  .site-header .header-actions .btn {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.56rem;
  }

  .mobile-menu summary {
    width: 38px;
    height: 38px;
  }
}
