:root {
  color-scheme: dark;
  --bg: #060a14;
  --bg-2: #0a1224;
  --panel: rgba(15, 23, 43, 0.78);
  --panel-solid: #0f172b;
  --line: rgba(150, 180, 255, 0.14);
  --line-2: rgba(150, 180, 255, 0.26);
  --text: #e9eefb;
  --muted: #97a4c3;
  --teal: #35e0c2;
  --teal-2: #1fb8d6;
  --gold: #f6c453;
  --pink: #ff7aa2;
  --danger: #ff6b6b;
  --ok: #4ade80;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(53, 224, 194, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(91, 140, 255, 0.10), transparent 60%),
    var(--bg);
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #7ff5e0; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 4.8vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 750; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: #000; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 20px; }
.narrow { max-width: 780px; }
.page-pad { padding-block: 48px 72px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: #c9d3ea; }
.kicker { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; font-weight: 700; color: var(--teal); margin-bottom: 0.8em; }
.mono { font-family: var(--mono); }
.hide { display: none !important; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); background: rgba(6, 10, 20, 0.72); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 20px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: -0.02em; font-size: 1.08rem; white-space: nowrap; }
.brand:hover { color: #fff; }
.mark { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; overflow-x: auto; scrollbar-width: none; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { color: #c3cde6; text-decoration: none; font-size: 0.93rem; padding: 8px 12px; border-radius: 999px; white-space: nowrap; }
.nav-links a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.nav-links a[aria-current='page'] { color: #fff; background: rgba(53, 224, 194, 0.1); }
.nav-toggle, .nav-links .nav-menu-cta { display: none; }

/* Mobile and tablet: hamburger menu */
@media (max-width: 860px) {
  .nav { gap: 10px; min-height: 60px; }
  .nav-cta { margin-left: auto; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; flex: none;
    width: 44px; height: 44px; padding: 0 11px; border-radius: 12px; cursor: pointer;
    border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.04); color: var(--text);
  }
  .nav-toggle span { display: block; height: 2px; border-radius: 2px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-open .nav-toggle { background: rgba(53, 224, 194, 0.12); border-color: var(--teal); }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .js .nav-links { display: none; }
  .js .nav-open .nav-links {
    display: flex; flex-direction: column; gap: 2px; margin: 0;
    position: absolute; top: 100%; left: 0; right: 0; overflow: visible;
    padding: 10px 20px 20px; background: var(--bg);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    max-height: calc(100vh - 60px); overflow-y: auto;
  }
  .js .nav-open .nav-links a { padding: 14px; font-size: 1.05rem; border-radius: 12px; }
  .js .nav-open .nav-links .nav-menu-cta { display: none; margin-top: 8px; padding: 14px; color: #03121a; }

  /* Without JavaScript, links stay visible as a scrollable row. */
  html:not(.js) .nav { flex-wrap: wrap; padding-block: 10px; }
  html:not(.js) .nav-toggle { display: none; }
  html:not(.js) .nav-links { order: 3; width: 100%; margin-left: 0; }
}
@media (max-width: 440px) {
  .js .nav-cta { display: none; }
  .js .nav-toggle { margin-left: auto; }
  .js .nav-open .nav-links .nav-menu-cta { display: flex; }
}
@media (prefers-reduced-motion: reduce) { .nav-toggle span { transition: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 999px; padding: 12px 22px; font: inherit; font-weight: 700; font-size: 0.98rem; text-decoration: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease; line-height: 1.1; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-2)); color: #03121a; box-shadow: 0 8px 30px rgba(53, 224, 194, 0.25); }
.btn-primary:hover { color: #03121a; box-shadow: 0 10px 40px rgba(53, 224, 194, 0.4); }
.btn-gold { background: linear-gradient(135deg, #ffd978, var(--gold)); color: #1a1200; }
.btn-gold:hover { color: #1a1200; }
.btn-ghost { background: rgba(255, 255, 255, 0.04); border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 0.88rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Cards and grids */
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } }
.section { padding-block: 72px; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.badge { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: rgba(53, 224, 194, 0.14); color: var(--teal); vertical-align: middle; }
.badge-gold { background: rgba(246, 196, 83, 0.16); color: var(--gold); }
.badge-pink { background: rgba(255, 122, 162, 0.16); color: var(--pink); }

/* Hero */
.hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 32px; align-items: center; padding-block: 48px 24px; }
.hero h1 span { background: linear-gradient(90deg, var(--teal), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { max-width: 560px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 28px; }
.stat b { display: block; font-size: 1.9rem; letter-spacing: -0.02em; line-height: 1.1; }
.stat span { color: var(--muted); font-size: 0.86rem; }
.ladder-note { margin-top: 18px; font-size: 0.92rem; color: #d7c38e; }
@media (max-width: 900px) { .hero { grid-template-columns: minmax(0, 1fr); padding-top: 28px; } .hero-globe { order: -1; max-width: 520px; margin-inline: auto; width: 100%; } }

.globe-wrap, .globe-card { position: relative; }
canvas.globe { width: 100%; aspect-ratio: 1 / 1; display: block; touch-action: none; cursor: grab; max-width: 100%; }
canvas.globe:active { cursor: grabbing; }
.globe-tip { position: absolute; pointer-events: none; background: rgba(8, 13, 26, 0.94); border: 1px solid var(--line-2); border-radius: 10px; padding: 6px 10px; font-size: 0.82rem; white-space: nowrap; transform: translate(-50%, -120%); z-index: 5; }
.globe-hint { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); font-size: 0.78rem; color: var(--muted); background: rgba(6, 10, 20, 0.6); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }

/* Steps, pricing, faq */
.step { counter-increment: step; }
.step h3::before { content: counter(step); display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(53, 224, 194, 0.16); color: var(--teal); font-size: 0.9rem; margin-right: 10px; }
.steps { counter-reset: step; }
.price-card { display: flex; flex-direction: column; gap: 10px; position: relative; }
.price-card .price { font-size: 2.3rem; font-weight: 800; letter-spacing: -0.03em; }
.price-card .price small { font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.price-card ul { margin: 0 0 12px; padding-left: 18px; color: #c9d3ea; }
.price-card li { margin-bottom: 6px; }
.price-card .btn { margin-top: auto; }
.price-card.featured { border-color: rgba(246, 196, 83, 0.5); background: linear-gradient(180deg, rgba(246, 196, 83, 0.08), var(--panel)); }
.ribbon { position: absolute; top: -12px; right: 18px; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--teal); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { margin: 12px 0 0; color: #c9d3ea; }

/* Pin cards */
.pin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.pin-card { display: flex; gap: 12px; align-items: center; padding: 14px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); text-decoration: none; color: var(--text); border-left: 3px solid var(--pin, var(--teal)); min-width: 0; }
.pin-card:hover { border-color: var(--line-2); color: #fff; }
.pin-card img, .pin-card .pin-dot { width: 44px; height: 44px; border-radius: 10px; flex: none; object-fit: cover; background: #111a30; }
.pin-card .pin-dot { display: grid; place-items: center; font-weight: 800; color: #03121a; background: var(--pin, var(--teal)); }
.pin-card b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pin-card span { display: block; font-size: 0.82rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.empty { padding: 28px; border: 1px dashed var(--line-2); border-radius: var(--radius); color: var(--muted); text-align: center; }

/* Profile */
.profile-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px; align-items: start; }
@media (max-width: 860px) { .profile-grid { grid-template-columns: minmax(0, 1fr); } }
.profile-card { border-top: 3px solid var(--pin, var(--teal)); }
.profile-head { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.profile-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0; }
.pin-logo { width: 96px; height: 96px; border-radius: 20px; object-fit: cover; flex: none; background: #111a30; }
.pin-logo-fallback { display: grid; place-items: center; font-size: 2.4rem; font-weight: 800; color: #03121a; background: var(--pin); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 22px 0; }
.facts div { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; }
.facts dt { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.facts dd { margin: 2px 0 0; font-weight: 700; }
@media (max-width: 520px) { .facts { grid-template-columns: minmax(0, 1fr); } }
.share { display: flex; flex-wrap: wrap; gap: 10px; }

/* Forms */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field label, .field .label { font-weight: 650; font-size: 0.92rem; }
.field .hint { font-size: 0.8rem; color: var(--muted); }
input[type='text'], input[type='url'], input[type='number'], input[type='search'], input[type='email'], textarea, select {
  width: 100%; font: inherit; color: var(--text); background: rgba(3, 7, 16, 0.6); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 11px 13px; min-width: 0;
}
textarea { resize: vertical; min-height: 120px; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(53, 224, 194, 0.18); }
.row-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
@media (max-width: 560px) { .row-2 { grid-template-columns: minmax(0, 1fr); } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span { display: inline-flex; flex-direction: column; padding: 8px 14px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.03); font-weight: 650; font-size: 0.92rem; cursor: pointer; }
.chip span small { font-weight: 500; color: var(--muted); font-size: 0.74rem; }
.chip input:checked + span { border-color: var(--teal); background: rgba(53, 224, 194, 0.12); box-shadow: inset 0 0 0 1px var(--teal); }
.chip input:disabled + span { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }
.chip input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.swatch { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; padding: 0; }
.swatch[aria-pressed='true'] { border-color: #fff; }
input[type='color'] { width: 38px; height: 32px; border: 1px solid var(--line-2); border-radius: 8px; background: transparent; padding: 2px; }
.logo-drop { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; min-width: 0; }
.logo-drop input[type='file'] { min-width: 0; max-width: 100%; flex: 1 1 160px; font-size: 0.85rem; color: var(--muted); }
.logo-drop img, .logo-drop .ph { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; background: #111a30; border: 1px dashed var(--line-2); }
.form-error { color: var(--danger); font-weight: 600; min-height: 1.4em; }
.hp { position: absolute; left: -5000px; }

/* Claim page */
.claim-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 28px; align-items: start; }
@media (max-width: 960px) { .claim-layout { grid-template-columns: minmax(0, 1fr); } }
.claim-side { position: sticky; top: 84px; }
@media (max-width: 960px) { .claim-side { position: static; } }
.tile-search { display: flex; gap: 8px; margin-bottom: 12px; }
.quick-picks { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.quick-picks button { font: inherit; font-size: 0.82rem; padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.03); color: var(--text); cursor: pointer; }
.quick-picks button:hover { border-color: var(--teal); }
.tile-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.tile-price { font-size: 1.8rem; font-weight: 800; }
.legend { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
.legend i { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.preview-pin { margin-top: 6px; }

/* Payment */
.pay-panel { display: grid; gap: 18px; }
.pay-amount { font-size: clamp(2rem, 6vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.pay-grid { display: grid; grid-template-columns: minmax(0, 1fr) 210px; gap: 22px; align-items: start; }
@media (max-width: 640px) { .pay-grid { grid-template-columns: minmax(0, 1fr); } }
.qr { background: #fff; padding: 10px; border-radius: 14px; width: 210px; max-width: 100%; }
.qr svg { width: 100%; height: auto; display: block; }
.copy-line { display: flex; gap: 8px; align-items: center; background: rgba(3, 7, 16, 0.6); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 8px 8px 8px 12px; min-width: 0; }
.copy-line code { font-family: var(--mono); font-size: 0.86rem; overflow-wrap: anywhere; flex: 1; min-width: 0; }
.warn { background: rgba(246, 196, 83, 0.08); border: 1px solid rgba(246, 196, 83, 0.3); border-radius: 12px; padding: 12px 14px; font-size: 0.9rem; color: #f1dca8; }
.ok-box { background: rgba(74, 222, 128, 0.08); border: 1px solid rgba(74, 222, 128, 0.35); border-radius: 12px; padding: 16px; }
.bad-box { background: rgba(255, 107, 107, 0.08); border: 1px solid rgba(255, 107, 107, 0.35); border-radius: 12px; padding: 16px; }
.status-line { display: flex; align-items: center; gap: 10px; font-weight: 650; }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--line-2); border-top-color: var(--teal); animation: spin 0.9s linear infinite; flex: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation: none; } html { scroll-behavior: auto; } }

/* Blog */
.blog-hero { padding-block: 48px 24px; }
.cat-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 30px; }
.cat-nav a { text-decoration: none; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line-2); color: #c9d3ea; font-size: 0.9rem; }
.cat-nav a:hover, .cat-nav a[aria-current='page'] { border-color: var(--teal); color: #fff; background: rgba(53, 224, 194, 0.08); }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 960px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: minmax(0, 1fr); } }
.post-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text); transition: border-color 0.2s ease, transform 0.2s ease; }
.post-card:hover { border-color: var(--line-2); transform: translateY(-2px); color: #fff; }
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; background: #0d1528; }
.post-card .pc-body { padding: 16px 18px 20px; display: grid; gap: 8px; }
.post-card h3 { font-size: 1.08rem; margin: 0; }
.post-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.pc-meta { font-size: 0.78rem; color: var(--muted); }
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.pager a, .pager span { padding: 8px 14px; border-radius: 10px; border: 1px solid var(--line-2); text-decoration: none; color: var(--text); }
.pager span[aria-current] { background: rgba(53, 224, 194, 0.14); border-color: var(--teal); }
.crumbs { font-size: 0.86rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; align-items: start; }
@media (max-width: 1020px) { .article-layout { grid-template-columns: minmax(0, 1fr); } }
.article-head h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
.article-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.hero-img { border-radius: var(--radius); overflow: hidden; margin: 0 0 28px; border: 1px solid var(--line); }
.hero-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.prose { font-size: 1.07rem; line-height: 1.75; color: #d8e0f2; }
.prose h2 { font-size: 1.55rem; margin: 1.8em 0 0.6em; color: var(--text); }
.prose h3 { font-size: 1.2rem; margin: 1.5em 0 0.5em; color: var(--text); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.45em; }
.prose blockquote { margin: 1.5em 0; padding: 4px 0 4px 18px; border-left: 3px solid var(--teal); color: #c9d3ea; }
.prose figure { margin: 2em 0; }
.prose figure img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.prose figcaption { font-size: 0.86rem; color: var(--muted); margin-top: 8px; text-align: center; }
.prose code { font-family: var(--mono); font-size: 0.9em; background: rgba(255, 255, 255, 0.06); padding: 2px 6px; border-radius: 6px; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 0.95rem; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line-2); padding: 8px 10px; text-align: left; }
.prose th { background: rgba(255, 255, 255, 0.04); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.disclosure { font-size: 0.88rem; color: var(--muted); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.aside-stack { display: grid; gap: 18px; position: sticky; top: 84px; }
@media (max-width: 1020px) { .aside-stack { position: static; } }
.aside-card h2 { font-size: 1.05rem; }
.aside-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.aside-card li a { text-decoration: none; color: #d8e0f2; font-size: 0.93rem; }
.aside-card li a:hover { color: var(--teal); }
.cta-band { margin: 36px 0; padding: 26px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(53, 224, 194, 0.12), rgba(246, 196, 83, 0.10)); border: 1px solid var(--line-2); }
.cta-band h2 { margin-top: 0; font-size: 1.35rem; }
.related { margin-top: 48px; }
.sponsor-slot:empty { display: none; }
.sponsor-banner { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-radius: 14px; border: 1px solid rgba(246, 196, 83, 0.35); background: rgba(246, 196, 83, 0.06); text-decoration: none; color: var(--text); margin-bottom: 24px; }
.sponsor-banner img, .sponsor-banner .pin-dot { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; flex: none; }
.sponsor-banner .pin-dot { display: grid; place-items: center; font-weight: 800; background: var(--pin, var(--gold)); color: #1a1200; }
.sponsor-banner small { display: block; color: var(--gold); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 800; }
.sponsor-banner span { color: var(--muted); font-size: 0.9rem; }

/* Tables (admin) */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; font-size: 0.86rem; min-width: 900px; }
table.data th, table.data td { padding: 9px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.data th { background: rgba(255, 255, 255, 0.04); position: sticky; top: 0; }
table.data td .btn { margin: 2px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding-block: 48px 28px; background: rgba(3, 6, 14, 0.6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer-grid a { display: block; color: #b8c3de; text-decoration: none; font-size: 0.92rem; padding: 3px 0; }
.footer-grid a:hover { color: var(--teal); }
.footer-grid .brand { display: inline-flex; margin-bottom: 10px; }
.footer-h { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 10px; }
.footer-about p { font-size: 0.9rem; max-width: 340px; }
.footnote { margin-top: 32px; font-size: 0.8rem; color: var(--muted); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }

.toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: #0f1a33; border: 1px solid var(--line-2); padding: 10px 16px; border-radius: 12px; z-index: 100; font-size: 0.9rem; box-shadow: var(--shadow); }
