
:root {
  --bg: #ffffff;
  --surface: #f7f7f6;
  --surface-2: #eeedea;
  --surface-dark: #0c0c0c;

  --ink: #0c0c0c;
  --muted: #555555;
  --faint: #8a8a8a;
  --text-inverse: #f0ebe0;

  --line: #e2e0dc;
  --line-soft: #ebe9e5;
  --line-dark: rgba(255,255,255,.1);

  --accent: #d93a12;
  --accent-d: #b52e0b;
  --accent-soft: #fdece7;

  --go: #1a7a3e;
  --go-soft: #e6f0e9;
  --gold: #9e7718;
  --gold-soft: #f5f0e0;

  --sc-green: #3a6b1f;
  --sc-amber: #8a6a00;
  --sc-red: #a0301a;

  --shadow: 0 1px 3px rgba(0,0,0,.04), 0 6px 20px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-accent: 0 4px 14px rgba(217,58,18,.18);

  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 14px;
  font-weight: 400;
}

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

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 58px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand .mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.brand .logo-icon {
  width: 32px;
  height: 32px;
  flex: none;
}

.brand i {
  font-style: normal;
  color: var(--accent);
}

nav.links {
  display: flex;
  gap: 24px;
  margin-left: 4px;
}

nav.links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  transition: color .2s ease;
}

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

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width .2s ease;
}

nav.links a:hover::after {
  width: 100%;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s ease;
}

.tg:hover {
  background: var(--accent);
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
  border-radius: 1px;
  transition: .25s ease;
}

.burger.on span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.burger.on span:nth-child(2) {
  opacity: 0;
}

.burger.on span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}

.mobile-nav a:hover {
  background: var(--surface);
  color: var(--accent);
}

.hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--go);
  box-shadow: 0 0 0 3px rgba(26,122,62,.18);
}

h1.hero-t {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 20ch;
  color: var(--ink);
}

h1.hero-t em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  margin-top: 18px;
  font-size: 15px;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.65;
}

.search {
  margin-top: 28px;
  display: flex;
  align-items: center;
  max-width: 480px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.search:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.search svg {
  margin: 0 4px 0 16px;
  flex: none;
  color: var(--faint);
}

.search input {
  flex: 1;
  border: 0;
  background: none;
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 12px;
  color: var(--ink);
  outline: none;
}

.search input::placeholder {
  color: var(--faint);
}

.search button {
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  padding: 0 22px;
  align-self: stretch;
  cursor: pointer;
  transition: background .2s ease;
}

.search button:hover {
  background: var(--accent-d);
}

.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
  padding: 6px;
}

.search-dropdown .search-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  transition: background .15s ease;
  cursor: pointer;
}

.search-dropdown .search-item:hover,
.search-dropdown .search-item.on {
  background: var(--surface);
}

.search-dropdown .search-name {
  flex: 1;
}

.search-dropdown .search-slug {
  font-size: 11px;
  color: var(--faint);
  font-weight: 500;
}

.search-dropdown .search-no {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--faint);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats b {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.hero-stats span {
  font-size: 10px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 8px;
  font-weight: 700;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 56px 0 20px;
  flex-wrap: wrap;
}

.sec-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.sec-head .label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--faint);
  margin-bottom: 3px;
}

.updated {
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.updated .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--go);
}

.ledger {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lrow {
  display: grid;
  grid-template-columns: 40px 148px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  transition: background .18s ease, transform .18s ease;
}

.lrow:last-child {
  border-bottom: 0;
}

.lrow:hover {
  background: var(--surface);
  transform: translateY(-1px);
}

.lrow.vip {
  background: linear-gradient(90deg, var(--gold-soft), transparent 50%);
}

.lrow.vip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.rank {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--faint);
  text-align: center;
}

.lrow.vip .rank {
  color: var(--gold);
}

.logo {
  width: 148px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  overflow: hidden;
  padding: 12px;
}

.logo img,
.wl img,
.biglogo img {
  width: 100%;
  height: 100%;
}

.info .name {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent-d);
}

.chip.vip {
  background: var(--gold-soft);
  color: var(--gold);
}

.chip.new {
  background: #e6f0e9;
  color: var(--go);
}

.info .bonus {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}

.stars {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold);
  white-space: nowrap;
}

.stars i {
  color: var(--line);
  font-style: normal;
}

.btn-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(217,58,18,.18);
}

.btn-go:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217,58,18,.22);
}

.btn-go svg {
  transition: transform .2s ease;
}

.btn-go:hover svg {
  transform: translateX(3px);
}

.ring {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex: none;
  background: conic-gradient(var(--rc) calc(var(--p) * 1%), var(--line) 0);
  align-content: center;
}

.ring::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--bg);
}

.ring b {
  position: relative;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
}

.ring small {
  position: relative;
  font-size: 8px;
  color: var(--faint);
  font-weight: 700;
  letter-spacing: .06em;
  margin-top: 1px;
}

.ring.r-green { --rc: var(--sc-green); }
.ring.r-amber { --rc: var(--sc-amber); }
.ring.r-red   { --rc: var(--sc-red); }

.site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.site-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: all .2s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.site-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.site-card .logo-wrap {
  width: 100%;
  height: 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 10px 16px;
  position: relative;
}

.site-card .logo-wrap img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.site-card .logo-fallback {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.site-card .card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.site-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.site-card .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
  margin-top: 4px;
}

.site-card .card-foot .go {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s ease;
}

.site-card:hover .card-foot .go {
  gap: 8px;
}

.paginator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.paginator a,
.paginator span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  transition: all .18s ease;
}

.paginator a {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
}

.paginator a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.paginator span.on {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bg);
}

.paginator .dots {
  color: var(--faint);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.scard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .2s ease;
  box-shadow: var(--shadow-sm);
}

.scard:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.scard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scard .slogo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  overflow: hidden;
}

.scard .ring {
  width: 44px;
  height: 44px;
}

.scard .ring::before {
  width: 36px;
  height: 36px;
}

.scard .ring b {
  font-size: 13px;
}

.scard h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.scard .stags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.scard .stags span {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 3px 7px;
  border-radius: 4px;
}

.scard p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.scard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  margin-top: 2px;
}

.scard-foot .pts {
  font-size: 11px;
  color: var(--faint);
  font-weight: 600;
}

.scard-foot .go {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s ease;
}

.scard:hover .scard-foot .go {
  gap: 8px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 6px;
  flex-wrap: wrap;
}

.pager button {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
  transition: all .18s ease;
}

.pager button:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.pager button.on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.pager button:disabled {
  opacity: .35;
  cursor: default;
}

.pager .dots {
  color: var(--faint);
  padding: 0 2px;
}

.seo-strip {
  margin: 56px 0 10px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.seo-strip .sec-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 24px;
}

.seo-strip .sec-head h2 {
  width: 100%;
  text-align: center;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.seo-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s ease;
}

.seo-grid a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.seo-grid a span {
  color: var(--faint);
  font-size: 15px;
  transition: transform .2s ease;
}

.seo-grid a:hover span {
  transform: translateX(3px);
}

.crumb {
  font-size: 12px;
  color: var(--muted);
  padding: 24px 0 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.crumb a:hover {
  color: var(--accent);
}

.crumb b {
  color: var(--ink);
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 28px;
  padding: 20px 0 56px;
  align-items: start;
}

.sitehead {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.sitehead .biglogo {
  width: 172px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 26px;
  flex: none;
  overflow: hidden;
  padding: 8px;
}

.sitehead .ht {
  flex: 1;
  min-width: 220px;
}

.sitehead h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.sitehead .sd {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
  max-width: 48ch;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  background: var(--go-soft);
  color: var(--go);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}

.status .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--go);
  position: relative;
}

.status .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--go);
  opacity: .4;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(.8); opacity: .5; }
  100% { transform: scale(2); opacity: 0; }
}

.head-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: none;
}

.head-aside .ring {
  width: 88px;
  height: 88px;
}

.head-aside .ring::before {
  width: 72px;
  height: 72px;
}

.head-aside .ring b {
  font-size: 22px;
}

.sitehead .cta {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  transition: all .2s ease;
  box-shadow: var(--shadow-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.sitehead .cta:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
}

.block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}

.block h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.block h3::before {
  content: "";
  width: 16px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  flex: none;
}

.prose p {
  font-size: 14px;
  color: #3a352e;
  line-height: 1.75;
  margin-bottom: 12px;
}

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

.prose strong {
  font-weight: 700;
  color: var(--ink);
}

.sbars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sbar .lbl {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.sbar .lbl strong {
  font-weight: 800;
}

.sbar .track {
  height: 7px;
  background: var(--surface);
  border-radius: 99px;
  overflow: hidden;
}

.sbar .fill {
  height: 100%;
  border-radius: 99px;
}

.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feat div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
}

.feat .ck {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--go-soft);
  color: var(--go);
  display: grid;
  place-items: center;
  flex: none;
  font-size: 11px;
  font-weight: 800;
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-q .pm {
  font-size: 18px;
  color: var(--accent);
  transition: transform .25s ease;
  flex: none;
}

.faq-item.open .pm {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: #3a352e;
  font-size: 13.5px;
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 15px;
}

aside {
  position: sticky;
  top: 78px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box .big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 8px;
  transition: background .2s ease;
  box-shadow: var(--shadow-accent);
}

.cta-box .big:hover {
  background: var(--accent-d);
}

.cta-box small {
  display: block;
  font-size: 11px;
  color: var(--faint);
  margin-top: 10px;
  line-height: 1.5;
}

.ibox {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.ibox h5 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--faint);
  font-weight: 700;
  margin-bottom: 8px;
}

.ibox p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
}

.widget {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.widget-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.widget-head h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
}

.widget-head .label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--faint);
}

.wrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-soft);
  transition: background .18s ease;
}

.wrow:last-child {
  border-bottom: 0;
}

.wrow:hover {
  background: var(--surface);
}

.wrow .wl {
  width: 82px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: var(--surface-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
  flex: none;
  overflow: hidden;
  padding: 4px;
}

.wrow .wn {
  flex: 1;
  min-width: 0;
}

.wrow .wn b {
  font-size: 12px;
  font-weight: 700;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wrow .wn small {
  font-size: 10px;
  color: var(--muted);
}

.wrow .wg {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  border: 1.4px solid var(--accent);
  padding: 5px 10px;
  border-radius: 6px;
  transition: all .2s ease;
  white-space: nowrap;
}

.wrow .wg:hover {
  background: var(--accent);
  color: #fff;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.page-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.page-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.page-prose {
  font-size: 14.5px;
  line-height: 1.8;
  color: #2a2825;
}

.page-prose h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}

.page-prose h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 28px 0 10px;
  letter-spacing: 0.02em;
}

.page-prose p {
  margin-bottom: 16px;
}

.page-prose ul,
.page-prose ol {
  margin: 0 0 16px 22px;
}

.page-prose li {
  margin-bottom: 8px;
}

.page-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-prose a:hover {
  color: var(--accent-d);
}

.page-prose strong {
  font-weight: 700;
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}

.contact-card h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--faint);
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.contact-card a:hover {
  color: var(--accent-d);
}

.contact-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.cat-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}

.cat-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cat-hero p {
  font-size: 15px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
}

.faq-section {
  margin: 56px auto;
  max-width: 720px;
  padding: 0 20px;
}

.faq-section .sec-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 28px;
}

.faq-section .faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-section .faq-q {
  font-size: 15px;
  padding: 18px 0;
}

.faq-section .faq-a {
  font-size: 14px;
  color: var(--muted);
}

.site-footer {
  background: var(--surface-dark);
  color: #b8b3a8;
  margin-top: 40px;
  padding: 52px 0 24px;
}

.f-brand-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-dark);
  flex-wrap: wrap;
}

.f-brand-left {
  flex: 1;
  min-width: 260px;
}

.f-brand-big {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #f0ebe0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-brand-big .logo-icon {
  width: 28px;
  height: 28px;
  flex: none;
}

.f-brand-big i {
  color: var(--accent);
  font-style: normal;
}

.f-tagline {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 44ch;
  color: #8a8478;
}

.f-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.f-soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: #c4bdb0;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .2s ease;
}

.f-soc-btn:hover {
  background: rgba(255,255,255,.1);
  color: #f0ebe0;
  border-color: rgba(255,255,255,.15);
}

.f-soc-btn svg {
  flex: none;
  opacity: .7;
}

.f-soc-admin {
  background: rgba(217,58,18,.1);
  border-color: rgba(217,58,18,.2);
  color: #e08a6e;
}

.f-soc-admin:hover {
  background: rgba(217,58,18,.18);
  border-color: rgba(217,58,18,.3);
  color: #f0ebe0;
}

.f-links {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-dark);
}

.f-col h5 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #6b6560;
  font-weight: 700;
  margin-bottom: 14px;
}

.f-col ul {
  list-style: none;
}

.f-col li {
  margin-bottom: 9px;
}

.f-col li a {
  font-size: 13px;
  color: #b8b3a8;
  transition: color .18s ease;
}

.f-col li a:hover {
  color: var(--accent);
}

.f-payments {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  flex-wrap: wrap;
}

.f-pmt-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6b6560;
}

.f-pmt-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.f-pmt {
  font-size: 11.5px;
  font-weight: 600;
  color: #8a8478;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: .04em;
}

.f-warning {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0;
  padding: 18px 20px;
  background: rgba(217,58,18,.08);
  border: 1px solid rgba(217,58,18,.15);
  border-radius: 10px;
}

.f-warn-badge {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.f-warn-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: #b8a898;
}

.f-warn-text a {
  color: #d49a80;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.f-warn-text a:hover {
  color: #f0ebe0;
}

.fbar {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.fbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fbar small {
  font-size: 11.5px;
  color: #6b6560;
}

.f-sep {
  color: #4a4540;
  font-size: 12px;
}

.f-meta {
  font-size: 11.5px;
  color: #6b6560;
  transition: color .18s ease;
}

.f-meta:hover {
  color: var(--accent);
}

.age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #8a8478;
}

.age b {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 5px;
}

.forum {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  background: var(--go);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s ease;
}

.forum:hover {
  background: #146b32;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
  }
  aside {
    position: static;
  }
}

@media (max-width: 760px) {
  /* Nav */
  nav.links,
  .nav-right .tg span,
  .nav-right .forum span {
    display: none;
  }
  .burger {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 48px 0 36px;
  }
  h1.hero-t {
    font-size: clamp(30px, 8vw, 42px);
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-stats b {
    font-size: 24px;
  }

  /* Ledger */
  .lrow {
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
    padding: 12px 14px;
  }
  .lrow .logo,
  .lrow .stars {
    display: none;
  }

  /* Footer */
  .f-brand-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .f-links {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 28px 0;
  }
  .f-payments {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Inner page */
  .sitehead {
    flex-direction: column;
    align-items: stretch;
  }
  .head-aside {
    flex-direction: row;
    justify-content: center;
  }
  .sitehead .cta {
    justify-content: center;
  }

  /* Features */
  .feat {
    grid-template-columns: 1fr;
  }

  /* SEO */
  .seo-grid {
    grid-template-columns: 1fr;
  }

  /* Cards */
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .f-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .f-warning {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .fbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-stats {
    gap: 20px;
  }
}