@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --felt-deep: #07140f;
  --felt: #0d241c;
  --felt-mid: #143528;
  --felt-lift: #1c4635;
  --gold: #d4a84b;
  --gold-soft: #e6c57a;
  --ink: #f3efe6;
  --ink-muted: #b7b0a2;
  --line: rgba(212, 168, 75, 0.22);
  --danger: #c45c4a;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(212, 168, 75, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(28, 70, 53, 0.55), transparent 50%),
    linear-gradient(180deg, var(--felt-deep) 0%, var(--felt) 40%, #0a1a14 100%);
  line-height: 1.6;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 20, 15, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner,
.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  color: var(--gold);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  justify-content: flex-end;
}

.nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 15, 0.15) 0%, rgba(7, 20, 15, 0.72) 55%, rgba(7, 20, 15, 0.95) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23d4a84b' stroke-opacity='0.08'%3E%3Cpath d='M0 80h160M80 0v160'/%3E%3Ccircle cx='80' cy='80' r='46'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 70% 30%, #1c4635 0%, transparent 45%);
  background-size: cover, 160px 160px, auto;
  z-index: -1;
}

.hero-copy {
  max-width: 40rem;
  width: 100%;
  margin-inline: auto;
  animation: rise 0.9s ease both;
}

.hero h1,
.page-hero h1,
.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.85rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  color: var(--ink);
}

.hero .brand-lockup {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.hero .brand-lockup span {
  color: var(--gold);
}

.lede {
  color: var(--ink-muted);
  font-size: 1.08rem;
  max-width: 36rem;
  margin: 0 0 1.6rem;
}

.hero .lede {
  margin-inline: auto;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .cta-row {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #1a1205;
}

.btn-primary:hover {
  background: var(--gold-soft);
  color: #1a1205;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(20, 53, 40, 0.45);
}

.page-hero {
  padding: 3rem 0 1.5rem;
  animation: rise 0.7s ease both;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section {
  padding: 2.25rem 0;
}

.section.tight {
  padding-top: 0.5rem;
}

.panel {
  background: rgba(13, 36, 28, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.rank-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 20, 15, 0.65);
}

table.rank-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.rank-table th,
.rank-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(243, 239, 230, 0.08);
  vertical-align: middle;
}

.rank-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(20, 53, 40, 0.55);
}

.rank-table tbody tr {
  transition: background 0.2s ease;
}

.rank-table tbody tr:hover {
  background: rgba(212, 168, 75, 0.06);
}

.rating {
  color: var(--gold-soft);
  font-weight: 700;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 1.6rem 0 0.6rem;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose ul {
  padding-left: 1.15rem;
}

.pros,
.cons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li,
.cons li {
  position: relative;
  padding-left: 1.2rem;
  margin: 0.45rem 0;
  color: var(--ink-muted);
}

.pros li::before,
.cons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
}

.pros li::before {
  background: var(--gold);
}

.cons li::before {
  background: var(--danger);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.faq p {
  color: var(--ink-muted);
  margin: 0.6rem 0 0;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: rgba(7, 20, 15, 0.9);
  padding: 2rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-note {
  color: var(--ink-muted);
  font-size: 0.85rem;
  max-width: 46rem;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 50;
  display: flex;
  gap: 0.6rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: rgba(7, 20, 15, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

.method-list {
  display: grid;
  gap: 0.75rem;
}

.method-list div {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(20, 53, 40, 0.35);
}

.method-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.link-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.link-list a {
  text-decoration: none;
  color: var(--ink);
}

.link-list a:hover {
  color: var(--gold-soft);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    gap: 0.55rem 0.8rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .sticky-cta .btn-ghost {
    display: none;
  }
}
