/* scoped-by:v3-css-scoper */
/* v2-matching typography — Outfit display + JetBrains Mono code/URLs.
   Loaded in addition to the per-domain design-variant fonts.fcefjcfa-css so
   onion URLs always render in the right mono even when the variant
   picks a different body face. */
@import url('https://fonts.fcefjcfa-googleapis.fcefjcfa-com/css2?family=Outfit:wght@400;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --primary: #2e739d;
  --accent: #fecc00;
  --bg: #1a1a1a;
  --panel: #fecc00;
  --secondary: #1e2921;
  --fg: #ffffff;
  --fg-muted: #9ca3af;
  --fg-dim: #6b7280;
  --border: rgba(255,255,255,.06);
  --border-strong: rgba(255,255,255,.10);
  --primary-soft: color-mix(in srgb, var(--primary) 14%, transparent);
  --primary-glow: color-mix(in srgb, var(--primary) 40%, transparent);
  --radius: 12px;
  --radius-lg: calc(12px + 4px);
  --max-w: 1240px;
  --prose-w: 68ch;
  /* v2-matching stack: prefer Outfit for display, JetBrains Mono for
     onions + code. Falls back to the design-variant-picked family if
     the Google font doesn't load. */
  --font-heading: 'Outfit', 'Familjen Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,.25);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.35), 0 0 0 1px var(--border);
  --tx: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin:0; padding:0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  font-feature-settings: 'cv11','ss01','ss03','ss04';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background — subtle aurora that shifts slowly on large viewports */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(55rem 28rem at 85% -10%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 70%),
    radial-gradient(40rem 22rem at -10% 110%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 70%);
}
body > * { position: relative; z-index: 1; }

::selection { background: var(--primary-glow); color: #000; }

/* Links */
a { color: var(--primary); text-decoration: none; transition: color .2s var(--tx); }
a:not(.fcefjcfa-btn):not(.fcefjcfa-brand):not(.fcefjcfa-pill):not([class*="header"]):not([class*="breadcrumb"]) {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 1px;
}
a:hover { filter: brightness(1.1); text-decoration: none; }

.fcefjcfa-container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* Header — v2-polished centered layout; design_variants nav_style
   applies to the nav group specifically. */
header.fcefjcfa-site {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--border);
  padding: .85rem 1.5rem;
}
header.fcefjcfa-site .fcefjcfa-row {
  display: flex; align-items: center; gap: 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
  flex-wrap: wrap;
}
header.fcefjcfa-site nav {
  flex: 1; min-width: 0;
  display: flex; flex-wrap: wrap; gap: .3rem 1.25rem;
  justify-content: flex-end;
}
header.fcefjcfa-site nav a {
  font-size: .82rem; font-weight: 500;
  color: var(--fg-muted);
  padding: .35rem .1rem;
  transition: color .15s var(--tx);
  white-space: nowrap;
}
header.fcefjcfa-site nav a:hover,
header.fcefjcfa-site nav a.fcefjcfa-active {
  color: var(--primary); text-decoration: none;
}
@media (max-width: 760px) {
  header.site .row {
    justify-content: center;
  }
  header.site nav { justify-content: center; gap: .2rem .8rem; }
}
header.fcefjcfa-site .fcefjcfa-brand {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1.1rem; letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--fg); text-decoration: none;
}
header.fcefjcfa-site .fcefjcfa-brand .fcefjcfa-brand-mark {
  width: 32px; height: 32px; display: block;
  flex-shrink: 0; border-radius: 6px;
  filter: drop-shadow(0 0 12px var(--primary-glow));
  transition: transform .2s var(--tx);
}
header.fcefjcfa-site .fcefjcfa-brand:hover .fcefjcfa-brand-mark {
  transform: rotate(-6deg) scale(1.05);
}
header.fcefjcfa-site .fcefjcfa-brand .fcefjcfa-brand-text {
  line-height: 1; white-space: nowrap;
}
header.fcefjcfa-site .fcefjcfa-brand::after {
  content: "VENDOR";
  font: 600 .62rem/1 var(--font-mono); letter-spacing: .14em;
  color: var(--primary); padding: .22rem .55rem;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  border-radius: 999px; margin-left: .15rem;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}
@media (max-width: 480px) {
  header.site .brand::after { display: none; }
}
header.fcefjcfa-site .fcefjcfa-row {
          display: flex; flex-direction: column; align-items: center;
          padding: 1.4rem 0 1rem; gap: .8rem; text-align: center;
        }
        header.fcefjcfa-site nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .2rem 1.4rem; }
        header.fcefjcfa-site nav a {
          color: var(--fg-muted); font-size: .85rem; padding: .2rem 0;
          font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
        }
        header.fcefjcfa-site nav a:hover { color: var(--primary); }

/* Main */
main { padding: 2.2rem 0 4rem; animation: fadeIn .4s var(--tx) both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Breadcrumbs */
.fcefjcfa-breadcrumbs {
  font-size: .82rem; color: var(--fg-muted);
  margin: 0 0 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: .01em;
}
.fcefjcfa-breadcrumbs a { color: var(--fg-muted); }
.fcefjcfa-breadcrumbs a:hover { color: var(--primary); }
.fcefjcfa-breadcrumbs .fcefjcfa-sep { margin: 0 .5em; opacity: .4; font-size: .9em; }
.fcefjcfa-breadcrumbs [aria-current="page"] { color: var(--fg); font-weight: 500; }

/* Article prose */
article.fcefjcfa-page { max-width: var(--prose-w); margin: 0 auto; }
article.fcefjcfa-page.fcefjcfa-post { max-width: var(--prose-w); }
article.fcefjcfa-page h1, .fcefjcfa-hero h1 {
  font-family: var(--font-heading);
}
article.fcefjcfa-page h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 0 0 .4rem; letter-spacing: -.025em; line-height: 1.1;
  font-weight: 700;
}
article.fcefjcfa-page .fcefjcfa-byline {
  color: var(--fg-muted); margin: 0 0 2rem; font-size: .88rem;
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--border);
  display: flex; gap: .6rem; flex-wrap: wrap; align-items: center;
}
article.fcefjcfa-page h2 {
  margin-top: 2.8rem; padding-bottom: .45rem; letter-spacing: -.015em;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 650; line-height: 1.2;
  border-bottom: 1px solid var(--border);
}
article.fcefjcfa-page h3 {
  margin-top: 2rem; font-size: 1.18rem; font-weight: 600;
  color: color-mix(in srgb, var(--primary) 70%, white 30%);
  letter-spacing: -.01em;
}
article.fcefjcfa-page h4 { margin-top: 1.5rem; font-size: 1.02rem; color: var(--fg); }
article.fcefjcfa-page p { margin: .9em 0; }
article.fcefjcfa-page ul, article.fcefjcfa-page ol { padding-left: 1.35rem; }
article.fcefjcfa-page li { margin: .3em 0; }
article.fcefjcfa-page li::marker { color: var(--primary); }
article.fcefjcfa-page strong { color: var(--fg); font-weight: 600; }
article.fcefjcfa-page img {
  max-width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}
article.fcefjcfa-page hr {
  border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0;
}

/* Quotes */
article.fcefjcfa-page blockquote {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.25rem; margin: 1.4rem 0;
  color: var(--fg); font-style: italic;
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
article.fcefjcfa-page blockquote p:first-child { margin-top: 0; }
article.fcefjcfa-page blockquote p:last-child { margin-bottom: 0; }

/* Inline code + pre */
article.fcefjcfa-page code {
  background: color-mix(in srgb, var(--panel) 60%, transparent);
  border: 1px solid var(--border);
  padding: .1em .42em; border-radius: 5px;
  font: .86em var(--font-mono); color: color-mix(in srgb, var(--primary) 40%, var(--fg) 60%);
}
article.fcefjcfa-page pre {
  background: #05080e; color: #d6dce7;
  padding: 1.1rem 1.3rem; border-radius: var(--radius); overflow-x: auto;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  font: .87rem/1.55 var(--font-mono); margin: 1.25rem 0;
}
article.fcefjcfa-page pre code { background: none; border: 0; padding: 0; color: inherit; font-size: inherit; }

/* Tables */
article.fcefjcfa-page table {
  border-collapse: collapse; width: 100%; margin: 1.5rem 0;
  font-size: .94rem; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
article.fcefjcfa-page thead { background: color-mix(in srgb, var(--panel) 80%, transparent); }
article.fcefjcfa-page th {
  text-align: left; padding: .7rem 1rem; font-weight: 600;
  color: var(--fg); letter-spacing: .01em;
  border-bottom: 1px solid var(--border-strong);
  font-size: .85rem; text-transform: uppercase;
}
article.fcefjcfa-page td {
  padding: .65rem 1rem; border-bottom: 1px solid var(--border);
  vertical-align: top;
}
article.fcefjcfa-page tr:last-child td { border-bottom: 0; }
article.fcefjcfa-page tbody tr:hover { background: color-mix(in srgb, var(--primary) 4%, transparent); }

/* Hero — vertical padding varies by layout rhythm */
.fcefjcfa-hero {
  padding: 4.6rem 0 clamp(2rem, 4vw, 3.5rem);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.fcefjcfa-hero::before {
  content: ""; position: absolute; top: -20%; left: 50%; width: 65rem; height: 40rem;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--primary-soft), transparent 70%);
  pointer-events: none; z-index: 0; filter: blur(20px);
}
.fcefjcfa-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(55rem 30rem at center top, black, transparent 85%);
  -webkit-mask-image: radial-gradient(55rem 30rem at center top, black, transparent 85%);
  opacity: .4;
}
.fcefjcfa-hero > .fcefjcfa-container { position: relative; z-index: 1; text-align: center; }
.fcefjcfa-hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  margin: 0 auto .9rem; letter-spacing: -.035em; line-height: 1.02;
  font-weight: 750; max-width: 20ch;
  background: linear-gradient(180deg, var(--fg), color-mix(in srgb, var(--fg) 60%, var(--primary) 40%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fcefjcfa-hero p.fcefjcfa-lede {
  color: var(--fg-muted); font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 55ch; margin: 0 auto 1.6rem; line-height: 1.55;
}

/* Buttons — shape + shadow vary by design bundle */
.fcefjcfa-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--primary); color: #000;
  padding: .7rem 1.3rem; border-radius: 2px; font-weight: 600;
  border: 0; cursor: pointer; font-size: .95rem;
  transition: transform .15s var(--tx), box-shadow .2s var(--tx), filter .2s var(--tx);
  box-shadow: 0 1px 0 0 rgba(255,255,255,.2) inset, 0 3px 0 0 color-mix(in srgb, var(--primary) 60%, #000);
}
.fcefjcfa-btn::after { content: "→"; font-size: 1.05em; transition: transform .2s var(--tx); }
.fcefjcfa-btn:hover {
  filter: brightness(1.08); transform: translateY(-1px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 35%, transparent), 0 1px 0 0 rgba(255,255,255,.25) inset;
}
.fcefjcfa-btn:hover::after { transform: translateX(3px); }
.fcefjcfa-btn:active { transform: translateY(0); }
.fcefjcfa-btn.fcefjcfa-secondary {
  background: transparent; color: var(--fg);
  border: 1px solid var(--border-strong); box-shadow: none;
}
.fcefjcfa-btn.fcefjcfa-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* Grids + cards — surface treatment varies by design bundle */
.fcefjcfa-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.fcefjcfa-card {
  background: var(--panel);
  border: 1px solid transparent;
  border-radius: 12px; padding: 1.4rem 1.5rem;
  transition: transform .25s var(--tx), border-color .25s var(--tx), box-shadow .25s var(--tx);
  backdrop-filter: none;
  
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.fcefjcfa-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  box-shadow: var(--shadow-lg);
}
.fcefjcfa-card h3 {
  margin-top: 0; color: var(--primary); font-size: 1.08rem;
  letter-spacing: -.005em; font-weight: 600;
}

/* Pills */
.fcefjcfa-pill {
  display: inline-flex; align-items: center;
  padding: .2em .7em; font-size: .76rem;
  background: color-mix(in srgb, var(--panel) 60%, transparent);
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--fg-muted); letter-spacing: .01em; font-weight: 500;
}

/* Blog list */
.fcefjcfa-blog-list { display: grid; gap: 1rem; max-width: var(--prose-w); margin: 0 auto; }
.fcefjcfa-blog-list .fcefjcfa-post {
  padding: 1.4rem 1.6rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--panel) 55%, transparent);
  transition: transform .25s var(--tx), border-color .25s var(--tx), box-shadow .25s var(--tx);
}
.fcefjcfa-blog-list .fcefjcfa-post:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
  box-shadow: var(--shadow-md);
}
.fcefjcfa-blog-list .fcefjcfa-post h2 {
  margin: 0 0 .3rem; border: 0; padding: 0; font-size: 1.25rem;
  line-height: 1.3;
}
.fcefjcfa-blog-list .fcefjcfa-post h2 a { color: var(--fg); background-image: none; padding: 0; }
.fcefjcfa-blog-list .fcefjcfa-post h2 a:hover { color: var(--primary); }
.fcefjcfa-blog-list .fcefjcfa-post .fcefjcfa-meta {
  color: var(--fg-muted); font-size: .82rem; margin: 0 0 .6rem;
  font-family: var(--font-mono); letter-spacing: .02em;
}
.fcefjcfa-blog-list .fcefjcfa-post p { color: var(--fg-muted); margin: 0; font-size: .95rem; }

/* Comments */
.fcefjcfa-comments {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border);
  max-width: var(--prose-w); margin-left: auto; margin-right: auto;
}
.fcefjcfa-comments h2 { border: 0; padding: 0; margin: 0 0 .5rem; }
.fcefjcfa-comments .fcefjcfa-comment { padding: 1.2rem 0; border-bottom: 1px dashed var(--border); }
.fcefjcfa-comments .fcefjcfa-comment .fcefjcfa-who { font-weight: 600; color: var(--primary); }
.fcefjcfa-comments .fcefjcfa-comment .fcefjcfa-when { color: var(--fg-muted); font-size: .8rem; font-family: var(--font-mono); }

/* Footer — v2-style 4-column grid + muted bottom bar */
footer.fcefjcfa-site {
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 40%, transparent);
  color: var(--fg-muted);
  font-size: .88rem;
}
footer.fcefjcfa-site .fcefjcfa-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.5fr 1fr;
  gap: 2rem;
  padding: 3rem 1.5rem 2rem;
}
@media (max-width: 900px) {
  footer.site .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  footer.site .footer-grid { grid-template-columns: 1fr; }
}
footer.fcefjcfa-site .fcefjcfa-f-col { min-width: 0; }
footer.fcefjcfa-site .fcefjcfa-f-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.05rem; color: var(--fg); margin-bottom: .6rem;
  letter-spacing: -.01em;
}
footer.fcefjcfa-site .fcefjcfa-f-heading {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg); margin-bottom: .8rem;
}
footer.fcefjcfa-site .fcefjcfa-f-text {
  font-size: .82rem; line-height: 1.55; color: var(--fg-muted);
  max-width: 36ch;
}
footer.fcefjcfa-site .fcefjcfa-f-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .3rem;
}
footer.fcefjcfa-site .fcefjcfa-f-list li { line-height: 1.4; }
footer.fcefjcfa-site .fcefjcfa-f-list a {
  color: var(--fg-muted); font-size: .82rem;
  transition: color .15s var(--tx);
}
footer.fcefjcfa-site .fcefjcfa-f-list a:hover { color: var(--primary); text-decoration: none; }
footer.fcefjcfa-site .fcefjcfa-footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .8rem; align-items: center;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  font-size: .75rem;
  font-family: var(--font-mono);
  color: var(--fg-dim);
}
footer.fcefjcfa-site .fcefjcfa-f-muted { opacity: .7; }
footer.fcefjcfa-site a { color: var(--fg-muted); }
footer.fcefjcfa-site a:hover { color: var(--primary); }

/* Keep legacy footer.fcefjcfa-site .fcefjcfa-row selector working as a fallback */
footer.fcefjcfa-site .fcefjcfa-row {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  align-items: center; padding: 1rem 1.5rem;
}

/* Search forms */
form.fcefjcfa-search { display: flex; gap: .5rem; }
form.fcefjcfa-search input {
  flex: 1; padding: .7rem .9rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--panel); color: var(--fg);
  font-size: .95rem; font-family: inherit;
  transition: border-color .2s var(--tx), box-shadow .2s var(--tx);
}
form.fcefjcfa-search input:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Products grid (vendor sites) */
.fcefjcfa-products, .fcefjcfa-features, .fcefjcfa-contact { margin-top: 2rem; }
.fcefjcfa-products .fcefjcfa-card, .fcefjcfa-features .fcefjcfa-card, .fcefjcfa-contact .fcefjcfa-card { position: relative; overflow: hidden; }
.fcefjcfa-product .fcefjcfa-pill {
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  color: var(--primary); border-color: transparent;
  font-family: var(--font-mono); font-weight: 600;
}

/* Mobile */
@media (max-width: 720px) {
  .container { padding: 0 1.1rem; }
  header.site .row { flex-direction: column; align-items: flex-start; gap: .6rem; padding: .8rem 0; }
  header.site nav { gap: .1rem .8rem; }
  .hero { padding: 2.8rem 0 2rem; }
  .hero > .container { text-align: left; }
  .hero h1 { max-width: none; }
  article.page h2 { margin-top: 2rem; }
  .blog-list .post { padding: 1.1rem 1.2rem; }
}

/* Official Mirrors block — real, config-sourced onions */
.fcefjcfa-onion-block {
  margin: 0 auto 2rem; max-width: var(--prose-w);
}
.fcefjcfa-onion-block-inner {
  background: color-mix(in srgb, var(--panel) 60%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border));
  border-radius: var(--radius-lg); padding: 1.3rem 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 15%, transparent),
              0 8px 32px rgba(0,0,0,.25);
}
.fcefjcfa-onion-block-header h2 {
  margin: 0 0 .3rem; border: 0; padding: 0;
  font-size: 1.1rem; color: var(--primary); letter-spacing: -.005em;
}
.fcefjcfa-onion-block-header p {
  margin: 0 0 1rem; font-size: .85rem; color: var(--fg-muted);
}
.fcefjcfa-onion-row {
  display: flex; flex-wrap: wrap; gap: .5rem .8rem;
  align-items: center; padding: .55rem 0;
  border-top: 1px solid var(--border);
}
.fcefjcfa-onion-row:first-of-type { border-top: 0; padding-top: 0; }
.fcefjcfa-onion-meta { display: flex; gap: .35rem; align-items: center; flex-wrap: wrap; }
.fcefjcfa-onion-url {
  /* SEO-friendly + copy-without-JS:
     - full URL always visible (word-break: break-all, no ellipsis)
     - `user-select: all` → single click selects the entire URL
     - rendered as a real <a href> so Tor Browser can click through;
       rel="nofollow noopener" keeps Google from penalising us for
       linking to a domain it can't crawl */
  flex: 1 1 auto; min-width: 0;
  font-family: var(--font-mono); font-size: .82rem;
  color: var(--fg) !important; text-decoration: none;
  padding: .35rem .6rem; border-radius: 4px;
  background: color-mix(in srgb, #000 50%, transparent);
  word-break: break-all; overflow-wrap: anywhere;
  user-select: all; -webkit-user-select: all;
  border: 1px solid transparent;
  transition: border-color .12s, background .12s;
}
.fcefjcfa-onion-url:hover, .fcefjcfa-onion-url:focus {
  border-color: var(--primary);
  background: color-mix(in srgb, #000 40%, transparent);
}
.fcefjcfa-onion-copy {
  background: transparent; color: var(--fg-muted);
  border: 1px solid var(--border); border-radius: 6px;
  padding: .25rem .55rem; font-size: .72rem; cursor: pointer;
  font-family: var(--font-mono); letter-spacing: .05em; text-transform: uppercase;
  transition: all .15s var(--tx);
}
.fcefjcfa-onion-copy:hover { color: var(--primary); border-color: var(--primary); }
.fcefjcfa-pill.fcefjcfa-onion-label {
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary); border-color: transparent; font-weight: 600;
}
.fcefjcfa-pill.fcefjcfa-onion-primary {
  background: var(--primary); color: #000;
  border-color: transparent; font-weight: 700;
  font-family: var(--font-mono); letter-spacing: .08em;
  font-size: .64rem; text-transform: uppercase;
}
.fcefjcfa-pill.fcefjcfa-onion-status-active { color: #4ade80; border-color: color-mix(in srgb, #4ade80 40%, transparent); }
.fcefjcfa-pill.fcefjcfa-onion-status-down   { color: #f87171; border-color: color-mix(in srgb, #f87171 40%, transparent); }
.fcefjcfa-pill.fcefjcfa-onion-status-mirror { color: var(--fg-muted); }
.fcefjcfa-fabricated-onion {
  color: var(--fg-muted); text-decoration: line-through; opacity: .55;
  cursor: help;
}

/* "Explore" homepage long-tail link list — densifies in-site anchors
   so Google can fan out across our long-tail pages from a single
   hop. Plain ul/li styling, no scary card chrome. */
.fcefjcfa-explore-block {
  max-width: var(--max-w); margin: 2.5rem auto 0; padding: 0 1rem;
}
.fcefjcfa-explore-block h2 {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 700; letter-spacing: -.01em; margin: 0 0 1rem;
  color: var(--fg);
}
.fcefjcfa-explore-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .55rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.fcefjcfa-explore-list li {
  padding: .65rem .85rem;
  background: color-mix(in srgb, var(--panel) 35%, transparent);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .92rem; line-height: 1.4;
  transition: border-color .15s var(--tx), background .15s var(--tx);
}
.fcefjcfa-explore-list li:hover {
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
  background: color-mix(in srgb, var(--panel) 60%, transparent);
}
.fcefjcfa-explore-list li a { color: var(--fg); text-decoration: none; }
.fcefjcfa-explore-list li b { color: var(--primary); font-weight: 600; }
.fcefjcfa-explore-list li .fcefjcfa-muted { color: var(--fg-muted); font-size: .82rem; }

/* Compact footer-only variant: visible on every page below the fold.
   Stacks vertically, same URL treatment (break-all, user-select:all). */
.fcefjcfa-onion-block-footer {
  max-width: var(--max-w); margin: 3rem auto 1rem; padding: 1rem 1.25rem;
  background: color-mix(in srgb, var(--panel) 50%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 6px 6px var(--radius) var(--radius);
}
.fcefjcfa-onion-block-footer .fcefjcfa-onion-block-label {
  font-size: .72rem; color: var(--primary); letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; margin-bottom: .5rem;
}
.fcefjcfa-onion-block-footer .fcefjcfa-onion-row { padding: .4rem 0; }
.fcefjcfa-onion-block-footer .fcefjcfa-onion-row:first-of-type { padding-top: 0; }
.fcefjcfa-fabricated-onion code { color: inherit; background: transparent; border: 0; }
.fcefjcfa-muted { color: var(--fg-muted); }

/* ===== Onion-pattern background dots (v2-matching) ===== */
body.fcefjcfa-type-market {
  background-image:
    radial-gradient(color-mix(in srgb, var(--fg) 7%, transparent) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ===== Onion-hero landing — v2-matching polished market portal =====
   * Big centered headline with fade-in
   * Pulsing "Requires Tor Browser" chip
   * Primary-mirror CARD with:
       - gradient shine bar at top
       - primary-color glow border
       - input-style URL field with left-addon "Onion v3" + right Copy button
       - two big CTA buttons below (primary + outline)
       - verification footer caption
   * Stat-block strip below (launch date / uptime / commission / trust score)
   * Mirror grid lower down */
@keyframes fade-in-up {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: none; }
}
@keyframes glow-pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .55; }
}
@keyframes gradient-x {
  0%,100% { background-position: 0 50%; }
  50%     { background-position: 100% 50%; }
}
@keyframes ping {
  75%,100% { opacity: 0; transform: scale(2); }
}
.fcefjcfa-fade-in-up            { animation: fade-in-up .6s ease-out both; }
.fcefjcfa-fade-in-up.fcefjcfa-delay-120  { animation-delay: 120ms; }
.fcefjcfa-fade-in-up.fcefjcfa-delay-200  { animation-delay: 200ms; }
.fcefjcfa-fade-in-up.fcefjcfa-delay-280  { animation-delay: 280ms; }

/* ===== HERO LAYOUT TEMPLATES =====
   Picked per-domain by design_variants.fcefjcfa-HERO_TEMPLATES. Each template
   produces structurally different DOM (split, terminal, magazine, …) so
   sibling sites in the fleet don't all share the same macro composition. */

/* --- hero-tpl-centered (default) — same look as before --- */

/* --- hero-tpl-split: 2-column above-the-fold --- */
.fcefjcfa-hero-tpl-split > .fcefjcfa-container { text-align: left; }
.fcefjcfa-hero-tpl-split .fcefjcfa-hero-split-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.2rem); align-items: center;
}
.fcefjcfa-hero-tpl-split .fcefjcfa-hero-split-left .fcefjcfa-status-pill { margin-left: 0; }
.fcefjcfa-hero-tpl-split .fcefjcfa-hero-split-left h1 {
  text-align: left; max-width: 16em; margin: .25rem 0 1.1rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.fcefjcfa-hero-tpl-split .fcefjcfa-hero-split-left .fcefjcfa-lede {
  text-align: left; max-width: 36em; margin: 0 0 1.1rem;
}
.fcefjcfa-hero-tpl-split .fcefjcfa-hero-split-left .fcefjcfa-hero-meta,
.fcefjcfa-hero-tpl-split .fcefjcfa-hero-split-left .fcefjcfa-hero-tor-hint {
  margin-left: 0; margin-right: auto;
}
.fcefjcfa-hero-tpl-split .fcefjcfa-hero-split-right { display: flex; justify-content: stretch; }
.fcefjcfa-hero-tpl-split .fcefjcfa-hero-split-right .fcefjcfa-onion-hero,
.fcefjcfa-hero-tpl-split .fcefjcfa-hero-split-right .fcefjcfa-onion-hero-inner {
  width: 100%; margin-top: 0;
}
@media (max-width: 880px) {
  .hero-tpl-split .hero-split-grid { grid-template-columns: 1fr; }
  .hero-tpl-split .hero-split-left h1 { text-align: center; max-width: 18em; margin-left: auto; margin-right: auto; }
  .hero-tpl-split .hero-split-left .lede { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-tpl-split .hero-split-left .status-pill { display: inline-flex; }
}

/* --- hero-tpl-terminal: command-line aesthetic --- */
.fcefjcfa-hero-tpl-terminal { background: var(--bg); padding-top: 2rem; }
.fcefjcfa-hero-tpl-terminal::before, .fcefjcfa-hero-tpl-terminal::after { display: none; }
.fcefjcfa-hero-tpl-terminal .fcefjcfa-terminal-frame {
  max-width: 56rem; margin: 0 auto;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--border));
  border-radius: 8px; overflow: hidden;
  background: color-mix(in srgb, var(--bg) 70%, #000);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 12%, transparent),
              0 24px 60px rgba(0,0,0,.4);
}
.fcefjcfa-hero-tpl-terminal .fcefjcfa-terminal-titlebar {
  display: flex; align-items: center; gap: .5rem;
  padding: .55rem .85rem;
  background: color-mix(in srgb, var(--panel) 60%, #000);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: .78rem;
}
.fcefjcfa-hero-tpl-terminal .fcefjcfa-td-dot {
  width: .65rem; height: .65rem; border-radius: 50%;
  display: inline-block;
}
.fcefjcfa-hero-tpl-terminal .fcefjcfa-td-red    { background: #ff5f56; }
.fcefjcfa-hero-tpl-terminal .fcefjcfa-td-amber  { background: #ffbd2e; }
.fcefjcfa-hero-tpl-terminal .fcefjcfa-td-green  { background: #27c93f; }
.fcefjcfa-hero-tpl-terminal .fcefjcfa-td-title  {
  margin-left: .8rem; color: var(--fg-muted);
  letter-spacing: .04em; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}
.fcefjcfa-hero-tpl-terminal .fcefjcfa-terminal-body { padding: 1.6rem 1.6rem 1.4rem; }
.fcefjcfa-hero-tpl-terminal .fcefjcfa-t-line {
  font-family: var(--font-mono); font-size: .85rem;
  margin: 0 0 1.1rem; color: var(--fg);
}
.fcefjcfa-hero-tpl-terminal .fcefjcfa-t-status {
  color: #4ade80; letter-spacing: .03em;
}
.fcefjcfa-hero-tpl-terminal .fcefjcfa-t-h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--fg); background: none;
  -webkit-background-clip: initial; background-clip: initial;
  text-align: left; max-width: none;
  margin: 0 0 1.2rem; letter-spacing: -.005em;
}
.fcefjcfa-hero-tpl-terminal .fcefjcfa-t-lede {
  font-family: var(--font-mono); font-size: .92rem;
  line-height: 1.55; color: var(--fg-muted);
  white-space: pre-wrap; word-wrap: break-word;
  margin: 0 0 1.4rem; max-width: none; text-align: left;
  background: none; padding: 0; border: 0;
}
.fcefjcfa-hero-tpl-terminal .fcefjcfa-hero-tor-hint {
  font-family: var(--font-mono); margin: 0 0 1.4rem;
  display: inline-flex; max-width: max-content;
}
.fcefjcfa-hero-tpl-terminal .fcefjcfa-onion-hero,
.fcefjcfa-hero-tpl-terminal .fcefjcfa-onion-hero-inner {
  margin: 0; max-width: none;
}

/* --- hero-tpl-magazine: asymmetric editorial layout --- */
.fcefjcfa-hero-tpl-magazine .fcefjcfa-hero-mag-grid {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3.5vw, 2.8rem);
  align-items: center; margin-bottom: 2.4rem;
}
.fcefjcfa-hero-tpl-magazine .fcefjcfa-hero-mag-text { text-align: left; }
.fcefjcfa-hero-tpl-magazine .fcefjcfa-hero-mag-text .fcefjcfa-status-pill { margin-left: 0; }
.fcefjcfa-hero-tpl-magazine .fcefjcfa-hero-mag-text h1 {
  text-align: left; max-width: 14em; margin: .25rem 0 1rem;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -.025em;
}
.fcefjcfa-hero-tpl-magazine .fcefjcfa-hero-mag-text .fcefjcfa-lede {
  text-align: left; max-width: 42em; margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.fcefjcfa-hero-tpl-magazine .fcefjcfa-hero-mag-text .fcefjcfa-hero-meta {
  margin-left: 0; margin-right: auto;
}
.fcefjcfa-hero-tpl-magazine .fcefjcfa-hero-mag-screens {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem;
}
.fcefjcfa-hero-tpl-magazine .fcefjcfa-hero-mag-screens img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--border);
}
.fcefjcfa-hero-tpl-magazine .fcefjcfa-onion-hero,
.fcefjcfa-hero-tpl-magazine .fcefjcfa-onion-hero-inner {
  margin: 0 auto; max-width: 56rem;
}
@media (max-width: 880px) {
  .hero-tpl-magazine .hero-mag-grid { grid-template-columns: 1fr; }
  .hero-tpl-magazine .hero-mag-text h1 { text-align: center; max-width: 18em; margin-left: auto; margin-right: auto; }
  .hero-tpl-magazine .hero-mag-text .lede { text-align: center; margin-left: auto; margin-right: auto; }
}

/* ---- Language switcher (sticky top-right) ---- */
.fcefjcfa-lang-switcher {
  position: fixed; top: 1rem; right: 1rem;
  z-index: 50;
  font-size: .85rem;
}
.fcefjcfa-lang-switcher details {
  background: color-mix(in srgb, var(--panel) 90%, var(--bg));
  border: 1px solid var(--border); border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fcefjcfa-lang-switcher summary {
  list-style: none; cursor: pointer;
  padding: .45rem .85rem;
  color: var(--fg); font-weight: 600;
  display: inline-flex; align-items: center; gap: .4rem;
  user-select: none;
}
.fcefjcfa-lang-switcher summary::-webkit-details-marker { display: none; }
.fcefjcfa-lang-switcher summary::after {
  content: "▾"; font-size: .7rem; opacity: .6;
}
.fcefjcfa-lang-switcher .fcefjcfa-ls-menu {
  display: flex; flex-direction: column;
  padding: .35rem; gap: .15rem;
  min-width: 9.5rem;
}
.fcefjcfa-lang-switcher .fcefjcfa-ls-link {
  padding: .4rem .65rem; border-radius: 5px;
  color: var(--fg); text-decoration: none;
  font-weight: 500;
}
.fcefjcfa-lang-switcher .fcefjcfa-ls-link:hover {
  background: color-mix(in srgb, var(--primary) 14%, transparent);
}
.fcefjcfa-lang-switcher .fcefjcfa-ls-link.fcefjcfa-active {
  color: var(--primary); font-weight: 700;
}
@media (max-width: 600px) {
  .lang-switcher { top: .55rem; right: .55rem; }
  .lang-switcher summary { padding: .35rem .6rem; }
}

/* ---- Contact-us ticket form + lookup ---- */
.fcefjcfa-ticket-form, .fcefjcfa-ticket-lookup {
  max-width: 42rem; margin: 2.5rem auto 1rem;
  padding: 1.6rem 1.4rem;
  background: var(--panel);
  border: 1px solid var(--border); border-radius: 12px;
}
.fcefjcfa-ticket-form h2, .fcefjcfa-ticket-lookup h1, .fcefjcfa-ticket-lookup h2 {
  margin: 0 0 .55rem; font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}
.fcefjcfa-ticket-form p.fcefjcfa-muted, .fcefjcfa-ticket-lookup p.fcefjcfa-muted {
  color: var(--fg-muted); font-size: .9rem;
  margin: 0 0 1.2rem; line-height: 1.5;
}
.fcefjcfa-tf-row { margin-bottom: 1rem; }
.fcefjcfa-tf-row label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--fg-muted); margin-bottom: .4rem;
}
.fcefjcfa-tf-row input, .fcefjcfa-tf-row textarea {
  width: 100%; padding: .65rem .85rem;
  background: color-mix(in srgb, var(--bg) 70%, var(--panel));
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--fg); font-family: inherit;
  font-size: .94rem; line-height: 1.5;
}
.fcefjcfa-tf-row input:focus, .fcefjcfa-tf-row textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 22%, transparent);
}
.fcefjcfa-tf-row textarea { resize: vertical; min-height: 8rem; }
.fcefjcfa-tf-actions {
  display: flex; gap: .65rem; align-items: center; flex-wrap: wrap;
}
.fcefjcfa-tf-actions .fcefjcfa-btn-primary, .fcefjcfa-tf-actions .fcefjcfa-btn-outline {
  padding: .6rem 1.1rem; border-radius: 8px;
  font-weight: 600; font-size: .92rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
}
.fcefjcfa-tf-actions .fcefjcfa-btn-primary {
  background: var(--primary); color: var(--bg); border-color: var(--primary);
}
.fcefjcfa-tf-actions .fcefjcfa-btn-primary:hover {
  filter: brightness(1.08);
}
.fcefjcfa-tf-actions .fcefjcfa-btn-outline {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.fcefjcfa-tf-actions .fcefjcfa-btn-outline:hover {
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}
.fcefjcfa-tf-status {
  margin-top: 1rem; padding: .6rem .9rem; border-radius: 6px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
  color: var(--fg);
  font-size: .9rem;
}
.fcefjcfa-tf-err {
  background: color-mix(in srgb, #f87171 12%, transparent);
  border-color: color-mix(in srgb, #f87171 38%, transparent);
  color: #fca5a5;
}
.fcefjcfa-tl-card {
  margin: 1.4rem 0; padding: 1rem 1.2rem;
  background: color-mix(in srgb, var(--bg) 60%, var(--panel));
  border-left: 3px solid var(--primary); border-radius: 6px;
}
.fcefjcfa-tl-msg, .fcefjcfa-tl-body {
  white-space: pre-wrap; word-wrap: break-word;
  font-size: .95rem; line-height: 1.55;
}
.fcefjcfa-tl-reply {
  margin: 1rem 0; padding: .85rem 1rem;
  background: color-mix(in srgb, var(--panel) 90%, transparent);
  border: 1px solid var(--border); border-radius: 6px;
}
.fcefjcfa-tl-reply-head {
  margin-top: 1.6rem; font-size: 1rem; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: .08em;
}

/* ---- Crypto price strip (live BTC/XMR/LTC) ---- */
.fcefjcfa-crypto-strip {
  display: inline-flex; flex-wrap: wrap; gap: .55rem;
  align-items: center; margin: 1rem 0 0;
  font-family: var(--font-mono); font-size: .82rem;
}
.fcefjcfa-crypto-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .75rem;
  background: color-mix(in srgb, var(--panel) 70%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}
.fcefjcfa-crypto-pill .fcefjcfa-cp-sym {
  font-weight: 700; letter-spacing: .04em;
  color: var(--primary);
}
.fcefjcfa-crypto-pill .fcefjcfa-cp-usd { color: var(--fg); font-weight: 500; }
.fcefjcfa-crypto-pill .fcefjcfa-cp-chg { font-size: .76rem; }
.fcefjcfa-crypto-pill .fcefjcfa-cp-up    { color: #4ade80; }
.fcefjcfa-crypto-pill .fcefjcfa-cp-down  { color: #f87171; }
.fcefjcfa-crypto-strip .fcefjcfa-cp-note {
  color: var(--fg-dim); font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
}

/* ---- Status pill (above H1 in hero) ---- */
.fcefjcfa-status-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .85rem; margin: 0 auto 1rem;
  border-radius: 999px; font-size: .76rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: color-mix(in srgb, #4ade80 14%, transparent);
  color: color-mix(in srgb, #4ade80 90%, white);
  border: 1px solid color-mix(in srgb, #4ade80 30%, transparent);
}
.fcefjcfa-status-pill .fcefjcfa-status-dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px #4ade80;
  animation: glow-pulse 2.4s ease-in-out infinite;
}

/* ---- Stats strip (4 tiles below the hero) ---- */
.fcefjcfa-stats-strip {
  margin: 2.5rem 0 1rem;
}
.fcefjcfa-stats-strip > .fcefjcfa-container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.fcefjcfa-stat-tile {
  text-align: center; padding: 1.4rem 1rem;
  border: 1px solid var(--border); border-radius: 12px;
  background: color-mix(in srgb, var(--panel) 60%, transparent);
  transition: border-color .2s var(--tx), transform .2s var(--tx);
}
.fcefjcfa-stat-tile:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
  transform: translateY(-2px);
}
.fcefjcfa-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 750; letter-spacing: -.02em;
  color: var(--primary);
  line-height: 1; margin-bottom: .35rem;
}
.fcefjcfa-stat-label {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-muted);
}
@media (max-width: 720px) {
  .stats-strip > .container { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Feature cards (3-col grid below stats) ---- */
.fcefjcfa-feature-cards {
  margin: 3rem 0 1rem;
}
.fcefjcfa-feature-cards > .fcefjcfa-container {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.fcefjcfa-feature-card {
  padding: 1.6rem 1.4rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative; overflow: hidden;
}
.fcefjcfa-feature-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: .5;
}
.fcefjcfa-feature-icon {
  width: 2.6rem; height: 2.6rem; margin-bottom: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary);
}
.fcefjcfa-feature-icon svg { width: 1.4rem; height: 1.4rem; }
.fcefjcfa-feature-card h3 {
  margin: 0 0 .5rem; font-size: 1.08rem; font-weight: 700;
  color: var(--fg); letter-spacing: -.01em;
}
.fcefjcfa-feature-card p {
  margin: 0; color: var(--fg-muted);
  font-size: .92rem; line-height: 1.55;
}
@media (max-width: 820px) {
  .feature-cards > .container { grid-template-columns: 1fr; }
}

/* ---- Interface preview (2x2 screenshot grid) ---- */
.fcefjcfa-interface-preview {
  margin: 3rem 0 1rem;
}
.fcefjcfa-interface-preview > .fcefjcfa-container > h2 {
  text-align: center; margin: 0 0 .4rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -.02em; font-weight: 700;
}
.fcefjcfa-ifp-sub {
  text-align: center; max-width: 56ch; margin: 0 auto 1.6rem;
  color: var(--fg-muted); font-size: .96rem; line-height: 1.55;
}
.fcefjcfa-ifp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.fcefjcfa-ifp-tile {
  margin: 0; border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; background: var(--panel);
  transition: transform .25s var(--tx), border-color .25s var(--tx);
}
.fcefjcfa-ifp-tile:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
}
.fcefjcfa-ifp-tile img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16/9; object-fit: cover;
}
.fcefjcfa-ifp-tile figcaption {
  padding: .65rem .9rem;
  font-size: .82rem; font-weight: 600; color: var(--fg);
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--panel) 80%, var(--bg));
}
@media (max-width: 720px) {
  .ifp-grid { grid-template-columns: 1fr; }
}

.fcefjcfa-hero-onion {
  padding: 3rem 1rem 1rem;
  background: radial-gradient(ellipse at top,
    color-mix(in srgb, var(--primary) 8%, transparent) 0%,
    transparent 60%);
}
.fcefjcfa-hero-onion .fcefjcfa-container { max-width: var(--max-w); padding: 0 1rem; }
.fcefjcfa-hero-onion h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: center;
  margin: 0 auto 1rem;
  /* Override the default narrow .hero h1 cap (20ch) — that makes the
     H1 a narrow centered column visually inconsistent with the wider
     lede underneath. Cap at 18em instead. */
  max-width: 18em;
  color: var(--fg);
  animation: fade-in-up .6s ease-out both;
}
.fcefjcfa-hero-onion .fcefjcfa-lede {
  text-align: center; max-width: 52rem; margin: 1rem auto 0;
  color: var(--fg-muted); font-size: 1.1rem; line-height: 1.6;
  animation: fade-in-up .6s ease-out both; animation-delay: 120ms;
}
.fcefjcfa-hero-onion .fcefjcfa-hero-meta {
  display: inline-flex; gap: .5rem; align-items: center;
  text-align: center; margin: .9rem auto 0;
  /* Was 80% transparency on already-muted gray — illegible. Now full
     muted with a subtle pill background so it reads as a status caption. */
  color: var(--fg);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
  padding: .35rem .85rem; border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .76rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600;
  animation: fade-in-up .6s ease-out both; animation-delay: 200ms;
}
.fcefjcfa-hero-onion .fcefjcfa-hero-meta::before {
  content: ""; width: .5rem; height: .5rem; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: glow-pulse 2.4s ease-in-out infinite;
}
.fcefjcfa-hero-onion .fcefjcfa-hero-tor-hint {
  display: inline-flex; align-items: center; gap: .55rem;
  margin: 1rem auto 0;
  /* Was --fg-muted (#9ca3af) — marginal on dark bgs. Now --fg with
     a subtle background for legibility. */
  color: var(--fg);
  background: color-mix(in srgb, var(--panel) 50%, transparent);
  border: 1px solid var(--border);
  padding: .5rem .9rem; border-radius: 8px;
  font-size: .82rem; font-weight: 500;
  animation: fade-in-up .6s ease-out both; animation-delay: 240ms;
  justify-content: center;
}
.fcefjcfa-hero-onion .fcefjcfa-hero-tor-hint .fcefjcfa-dot {
  width: .4rem; height: .4rem; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: glow-pulse 2.4s ease-in-out infinite;
}
.fcefjcfa-hero-onion .fcefjcfa-hero-tor-hint a {
  color: var(--primary); font-family: var(--font-mono);
}
.fcefjcfa-hero-onion .fcefjcfa-hero-tor-hint a:hover { text-decoration: underline; }

.fcefjcfa-onion-hero { display: block; }
.fcefjcfa-onion-hero-inner {
  max-width: 48rem; margin: 2.5rem auto 0; padding: 0 1rem;
  animation: fade-in-up .6s ease-out both; animation-delay: 280ms;
}

.fcefjcfa-onion-primary-card {
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border));
  border-radius: .5rem;
  padding: 1.5rem;
  position: relative; overflow: hidden;
  box-shadow: 0 0 24px color-mix(in srgb, var(--primary) 30%, transparent);
}
/* Gradient shine bar at top */
.fcefjcfa-onion-primary-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 2px; pointer-events: none;
  background: linear-gradient(90deg,
    var(--primary), var(--accent) 50%, var(--primary));
  background-size: 200% auto;
  animation: gradient-x 6s ease infinite;
}
.fcefjcfa-opc-topline {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.fcefjcfa-opc-topline .fcefjcfa-opc-icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.fcefjcfa-opc-label { flex: 1; }
.fcefjcfa-onion-pulse {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  color: #3fb950; /* bright mint-green — v2 uses the same hue */
}
.fcefjcfa-onion-pulse.fcefjcfa-offline { color: #f85149; }
.fcefjcfa-opulse-dot {
  position: relative; display: inline-block;
  width: .4rem; height: .4rem; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
}
.fcefjcfa-opulse-dot::before {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  background: currentColor; opacity: .55;
  animation: ping 1.2s cubic-bezier(0, 0, .2, 1) infinite;
}

/* The URL field — styled like a real <input> with addon + button */
.fcefjcfa-onion-url-row {
  display: flex; flex-wrap: wrap; border-radius: .375rem;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
}
@media (min-width: 640px) {
  .onion-url-row { flex-wrap: nowrap; }
}
.fcefjcfa-onion-url-addon {
  display: inline-flex; align-items: center; padding: 0 1rem;
  border: 1px solid var(--border-strong);
  border-right: 0;
  border-radius: .375rem 0 0 .375rem;
  background: var(--bg);
  color: var(--fg-muted);
  font-family: var(--font-mono); font-size: .82rem;
  user-select: none;
  white-space: nowrap;
}
.fcefjcfa-onion-url-xl {
  flex: 1 1 auto; min-width: 0; display: block;
  padding: 1rem;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--primary); font-family: var(--font-mono);
  font-size: clamp(.78rem, 1.9vw, .95rem);
  font-weight: 500;
  text-align: center; text-decoration: none;
  word-break: break-all; overflow-wrap: anywhere;
  user-select: all; -webkit-user-select: all;
  cursor: text;
  transition: background .15s var(--tx), border-color .15s var(--tx);
}
.fcefjcfa-onion-url-xl:hover { background: color-mix(in srgb, #fff 3%, var(--bg)); }
.fcefjcfa-onion-url-xl:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}
.fcefjcfa-onion-copy-big {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-strong);
  border-left: 0;
  border-radius: 0 .375rem .375rem 0;
  background: var(--panel);
  color: var(--fg);
  font-size: .875rem; font-weight: 500;
  cursor: pointer;
  transition: background .15s var(--tx), color .15s var(--tx);
  min-width: 5rem;
}
.fcefjcfa-onion-copy-big:hover {
  background: var(--primary);
  color: var(--bg);
}
@media (max-width: 639px) {
  .onion-url-addon {
    border-radius: .375rem .375rem 0 0;
    border-right: 1px solid var(--border-strong);
    border-bottom: 0;
    justify-content: center; padding: .5rem 1rem;
  }
  .onion-url-xl { border-radius: 0; }
  .onion-copy-big {
    width: 100%; border-radius: 0 0 .375rem .375rem;
    border-left: 1px solid var(--border-strong); border-top: 0;
  }
}
.fcefjcfa-opc-hint {
  text-align: center; font-size: .72rem; color: var(--fg-muted);
  margin-top: .5rem;
}

/* Two-button CTA row below the card */
.fcefjcfa-hero-cta-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 2rem;
}
.fcefjcfa-hero-cta-row .fcefjcfa-btn-primary,
.fcefjcfa-hero-cta-row .fcefjcfa-btn-outline {
  display: inline-flex; align-items: center;
  padding: .75rem 1.5rem;
  font-size: 1rem; font-weight: 500;
  border-radius: .375rem; text-decoration: none;
  transition: all .3s var(--tx);
  border: 1px solid transparent;
}
.fcefjcfa-hero-cta-row .fcefjcfa-btn-primary {
  color: #fff; background: var(--primary);
  box-shadow: 0 0 24px color-mix(in srgb, var(--primary) 33%, transparent);
}
.fcefjcfa-hero-cta-row .fcefjcfa-btn-primary:hover {
  background: color-mix(in srgb, var(--primary) 90%, #fff);
  transform: translateY(-1px);
  box-shadow: 0 0 48px color-mix(in srgb, var(--primary) 40%, transparent);
}
.fcefjcfa-hero-cta-row .fcefjcfa-btn-outline {
  color: var(--fg-muted); background: var(--panel);
  border-color: var(--border-strong);
}
.fcefjcfa-hero-cta-row .fcefjcfa-btn-outline:hover {
  color: var(--fg);
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
  transform: translateY(-1px);
}

.fcefjcfa-opc-verified {
  display: block;
  text-align: center;
  font-size: .72rem; color: color-mix(in srgb, var(--fg-muted) 80%, transparent);
  margin-top: 1.5rem;
}

/* Platform metrics strip */
.fcefjcfa-platform-metrics {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0 2rem;
}
.fcefjcfa-platform-metrics h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  text-align: center; text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 2rem;
  color: var(--fg);
}
.fcefjcfa-platform-metrics-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1rem;
  display: flex; flex-wrap: wrap; justify-content: center;
}
.fcefjcfa-platform-metrics-grid > * {
  padding: 1rem 2rem;
  text-align: center;
  min-width: 160px;
  border-right: 1px solid var(--border-strong);
}
.fcefjcfa-platform-metrics-grid > *:last-child { border-right: 0; }
.fcefjcfa-platform-metric-value {
  font-family: var(--font-heading);
  font-size: 1.875rem; font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.fcefjcfa-platform-metric-label {
  font-family: var(--font-mono);
  font-size: .72rem; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: .35rem;
}

/* Mirror grid — below the primary card */
.fcefjcfa-onion-mirror-grid-wrap {
  max-width: var(--max-w); margin: 3rem auto 2rem; padding: 0 1rem;
}
.fcefjcfa-onion-mirror-grid-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  margin: 0 0 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
  color: var(--fg);
}
.fcefjcfa-onion-mirror-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.fcefjcfa-onion-mirror {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: .5rem;
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .2s var(--tx), box-shadow .2s var(--tx);
}
.fcefjcfa-onion-mirror:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  box-shadow: 0 0 15px color-mix(in srgb, var(--primary) 20%, transparent);
}
.fcefjcfa-onion-mirror .fcefjcfa-om-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: .8rem;
}
.fcefjcfa-onion-mirror .fcefjcfa-om-label {
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fg-muted);
}
.fcefjcfa-onion-mirror .fcefjcfa-om-status {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-mono);
  font-size: .66rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
}
.fcefjcfa-onion-mirror .fcefjcfa-om-status.fcefjcfa-ok { color: #3fb950; }
.fcefjcfa-onion-mirror .fcefjcfa-om-status.fcefjcfa-err { color: #f85149; }
.fcefjcfa-onion-mirror .fcefjcfa-om-dot {
  width: .4rem; height: .4rem; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}
.fcefjcfa-onion-mirror .fcefjcfa-onion-url {
  font-family: var(--font-mono); font-size: .78rem;
  padding: .6rem .75rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: .375rem;
  word-break: break-all; user-select: all;
  color: var(--primary); text-decoration: none;
  transition: border-color .15s;
}
.fcefjcfa-onion-mirror .fcefjcfa-onion-url:hover { border-color: var(--primary); }
.fcefjcfa-onion-mirror .fcefjcfa-onion-copy {
  align-self: flex-start;
  padding: .35rem .75rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  border: 1px solid var(--border-strong);
  background: var(--bg); color: var(--fg-muted);
  border-radius: .25rem; cursor: pointer;
  transition: all .15s;
}
.fcefjcfa-onion-mirror .fcefjcfa-onion-copy:hover {
  color: var(--primary); border-color: var(--primary);
}

.fcefjcfa-onion-note {
  max-width: 36rem; margin: 2rem auto 1rem;
  text-align: center;
  font-size: .78rem; line-height: 1.6;
  color: var(--fg-muted);
  padding: 0 1rem;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
