/* site70 — magazine layout in violet/indigo, hat-tipped from torzon-market-links.com */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #f7f5fb; color: #1f1b2d; font: 16px/1.6 Roboto, -apple-system, "Segoe UI", system-ui, sans-serif; }
a { color: #4a2987; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* Page wrapper */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* Top warning bar */
.alert-bar {
    background: linear-gradient(90deg, #401753 0%, #59316b 100%);
    color: #fde7ff; padding: 10px 0;
    font-size: 13px; letter-spacing: 0.3px;
    text-align: center;
    border-bottom: 2px solid #31cafd;
}
.alert-bar b { color: #ffd1f5; }

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e7e3f0;
    padding: 18px 0;
}
.site-header .wrap {
    display: flex; align-items: center; gap: 18px;
}
.brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: #1f1b2d;
}
.brand img { width: 48px; height: 48px; border-radius: 6px; }
.brand .name { font-weight: 700; font-size: 19px; color: #2a1845; }
.brand .name span { color: #59316b; font-weight: 500; }
.brand .tag { font-size: 12px; color: #6b6485; }

.top-nav {
    margin-left: auto;
    display: flex; gap: 22px;
    font-size: 14px;
}
.top-nav a { color: #4a3a6b; font-weight: 500; padding: 6px 2px; border-bottom: 2px solid transparent; }
.top-nav a:hover { color: #401753; border-bottom-color: #31cafd; text-decoration: none; }
.top-nav a.on { color: #401753; border-bottom-color: #59316b; }

/* Hero */
.hero {
    background:
        radial-gradient(ellipse at 18% 0%, rgba(60,190,242,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(89,49,107,0.25) 0%, transparent 55%),
        linear-gradient(180deg, #2a1845 0%, #3f345f 100%);
    color: #fff;
    padding: 56px 0 48px;
    border-bottom: 1px solid #1c0d36;
}
.hero h1 {
    font-size: 38px; line-height: 1.18; font-weight: 700;
    margin-bottom: 14px; letter-spacing: -0.5px;
}
.hero h1 span { color: #31cafd; }
.hero p {
    font-size: 17px; line-height: 1.6; max-width: 780px;
    color: #e3d8ff; margin-bottom: 24px;
}
.hero .meta {
    display: flex; gap: 24px; flex-wrap: wrap;
    font-size: 13px; color: #c1b9d8;
}
.hero .meta b { color: #fff; }

/* Link box (the six big mirror cards directly under hero) */
.link-grid {
    margin: -28px auto 36px;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 12px;
}
.link-card {
    background: #fff;
    border: 1px solid #e2dcef;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 6px 20px rgba(40,18,80,0.08);
    display: flex; flex-direction: column; gap: 8px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.link-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(40,18,80,0.14); border-color: #59316b; }
.link-card.is-rotator { border-left: 4px solid #31cafd; }
.link-card.is-mirror  { border-left: 4px solid #4fa34e; }
.link-card .lc-head {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: #6b6485; letter-spacing: 0.4px; text-transform: uppercase;
}
.link-card .lc-tag {
    background: #f0eaf8; color: #59316b;
    padding: 3px 9px; border-radius: 12px; font-weight: 600; font-size: 11px;
}
.link-card.is-rotator .lc-tag { background: #def4fc; color: #176e93; }
.link-card.is-mirror  .lc-tag { background: #e0f3df; color: #2e6e2d; }
.link-card .lc-onion {
    font: 13px/1.4 "JetBrains Mono", "SF Mono", Consolas, monospace;
    color: #2a1845;
    word-break: break-all;
}
.link-card .lc-foot {
    display: flex; gap: 14px; font-size: 12px; color: #6b6485;
}
.link-card .lc-foot span b { color: #2e6e2d; }

/* Section blocks */
.section { padding: 38px 0; border-top: 1px solid #ece6f7; }
.section h2 {
    font-size: 26px; font-weight: 700; color: #2a1845;
    margin-bottom: 18px; letter-spacing: -0.3px;
}
.section h2::before { content: ""; display: inline-block; width: 5px; height: 22px; background: #59316b; margin-right: 12px; vertical-align: -3px; border-radius: 3px; }
.section h3 { font-size: 18px; color: #401753; margin: 22px 0 10px; font-weight: 600; }
.section p  { margin-bottom: 14px; color: #34304a; }
.section ul, .section ol { margin: 0 0 16px 24px; color: #34304a; }
.section ul li, .section ol li { margin: 6px 0; }

/* 2-column article block (image left, text right) */
.article-row {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: start;
    margin-bottom: 16px;
}
.article-row.reverse { grid-template-columns: 1.4fr 1fr; }
.article-row.reverse .a-pic { order: 2; }
.a-pic {
    background: linear-gradient(135deg, #3f345f 0%, #59316b 100%);
    border-radius: 12px;
    aspect-ratio: 16/10;
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-align: center;
    box-shadow: 0 4px 14px rgba(40,18,80,0.12);
    overflow: hidden; position: relative;
    padding: 16px;
}
.a-pic::before {
    content: ""; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0, transparent 8px, rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.04) 16px);
}
.a-pic .ico { font-size: 64px; line-height: 1; opacity: 0.95; z-index: 1; }
.a-pic .lbl { z-index: 1; font-size: 13px; margin-top: 8px; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.92; }
.a-text h3 { margin-top: 0; }

/* Spec strip (small info cards) */
.spec-strip {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px;
    margin: 14px 0 6px;
}
.spec-strip .si {
    background: #fff; border: 1px solid #ece6f7; border-radius: 8px;
    padding: 12px 14px;
}
.spec-strip .si .k { color: #6b6485; font-size: 12px; letter-spacing: 0.3px; text-transform: uppercase; }
.spec-strip .si .v { color: #2a1845; font-weight: 700; font-size: 16px; margin-top: 3px; }
.spec-strip .si .v.ok { color: #2e6e2d; }
.spec-strip .si .v.no { color: #a24b4b; }

/* Note / inline notice */
.callout {
    background: #faf6ff;
    border: 1px solid #d9ccf0;
    border-left: 4px solid #59316b;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 18px 0;
}
.callout.warn { background: #fff4f4; border-color: #f0c8c8; border-left-color: #a24b4b; }
.callout b { color: #2a1845; }

/* Tier cards */
.tiers {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px;
    margin-top: 14px;
}
.tier {
    background: #fff; border: 1px solid #ece6f7; border-radius: 10px;
    padding: 18px;
}
.tier h3 { color: #401753; margin: 0 0 8px; font-size: 17px; }
.tier .pill { display: inline-block; padding: 3px 10px; background: #f0eaf8; color: #59316b; border-radius: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px; }
.tier ul { margin: 10px 0 0 18px; font-size: 14px; }

/* FAQ */
.faq details {
    background: #fff; border: 1px solid #ece6f7; border-radius: 8px;
    margin: 8px 0; padding: 0;
}
.faq summary {
    cursor: pointer; padding: 14px 18px;
    font-weight: 600; color: #2a1845; list-style: none;
    font-size: 15px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+ "; color: #59316b; font-weight: 700; margin-right: 6px; }
.faq details[open] summary::before { content: "− "; color: #4fa34e; }
.faq details > p { padding: 0 18px 14px; margin: 0; color: #34304a; }

/* Footer */
.site-foot {
    background: #2a1845; color: #c1b9d8;
    padding: 28px 0 22px; margin-top: 40px;
    font-size: 13px;
    border-top: 4px solid #59316b;
}
.site-foot .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.site-foot a { color: #e3d8ff; }
.site-foot .legal { font-size: 12px; color: #8a82a8; }

/* Mobile */
@media (max-width: 720px) {
    .site-header .wrap { flex-wrap: wrap; }
    .top-nav { margin-left: 0; flex-wrap: wrap; gap: 14px; }
    .hero { padding: 36px 0 32px; }
    .hero h1 { font-size: 26px; }
    .link-grid { grid-template-columns: 1fr; margin-top: -16px; }
    .article-row, .article-row.reverse { grid-template-columns: 1fr; }
    .article-row.reverse .a-pic { order: 0; }
    .section { padding: 28px 0; }
    .section h2 { font-size: 20px; }
}
