:root {
  --bg0: #01030c;
  --bg: #050c1f;
  --panel: rgba(13, 26, 56, .72);
  --panel2: rgba(24, 44, 86, .85);
  --line: #23386b;
  --text: #eaf0fb;
  --dim: #92a3c6;
  --gold: #e9b95f;
  --gold2: #b8791f;
  --sky: #6fb4ff;
  --good: #4fd39a;
  /* Same two gradients the Show Builder title uses: brushed-chrome for
     anything that was plain white/off-white text, and gold for anything
     that was the flat gold. */
  --chrome-grad: linear-gradient(180deg,
    #7e8fab 0%, #dfe9fb 16%, #ffffff 34%, #b9c8e2 47%,
    #6f80a0 55%, #9fb1cf 70%, #edf3ff 86%, #71829f 100%);
  --gold-grad: linear-gradient(180deg,
    #ffeab4 0%, #f2c977 20%, #e9b95f 42%,
    #a9762a 56%, #d9a248 72%, #ffe6ac 92%, #b9832f 100%);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1.2px 1.2px at 25px 35px, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(1.4px 1.4px at 220px 220px, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(1px 1px at 90px 200px, rgba(255,255,255,.4), transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 10%, rgba(111,180,255,.08), transparent),
    radial-gradient(ellipse 50% 35% at 20% 80%, rgba(233,185,95,.06), transparent),
    linear-gradient(180deg, #01030c 0%, #050c1f 45%, #081228 100%);
  background-size: 260px 260px, 410px 410px, 670px 670px, 340px 340px, 100% 100%, 100% 100%, 100% 100%;
}
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }

/* ---------- Brand shine text (gold / chrome) ----------
   Copied from the Show Builder title treatment: the letters are painted
   with a gradient using background-clip: text, and a second copy of the
   same text (via data-text) sweeps a light band across them on a loop.
   Used only for brand and headline text (the header wordmark, the hero
   headline, and page h1s) — not for small labels or repeated table/badge
   text, so the page does not shimmer everywhere at once. A browser without
   background-clip: text support falls back to the flat colors below. */
.shine { position: relative; display: inline-block; }
.shine-chrome, .shine-gold { color: var(--text); background-repeat: no-repeat; }
.shine-gold { color: var(--gold); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .shine-chrome, .shine-gold {
    color: transparent;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .shine-chrome {
    background-image: var(--chrome-grad);
    filter: drop-shadow(0 1px 0 rgba(0,0,0,.85)) drop-shadow(0 0 10px rgba(120,160,230,.28));
  }
  .shine-gold {
    background-image: var(--gold-grad);
    filter: drop-shadow(0 1px 0 rgba(0,0,0,.85)) drop-shadow(0 0 12px rgba(233,185,95,.35));
  }
  .shine::after {
    content: attr(data-text); position: absolute; left: 0; top: 0;
    pointer-events: none;
    background-image: linear-gradient(105deg,
      rgba(255,255,255,0) 38%, rgba(255,255,255,.85) 48%,
      rgba(255,255,255,.95) 51%, rgba(255,255,255,0) 62%);
    background-size: 260% 100%; background-repeat: no-repeat;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: bible-sheen 5.5s linear infinite;
  }
  .shine-gold.shine::after { animation-delay: .55s; }
}
@keyframes bible-sheen {
  0%   { background-position: 160% 0; }
  55%  { background-position: -60% 0; }
  100% { background-position: -60% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .shine::after { animation: none; opacity: 0; }
}

header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(1, 3, 12, .82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; gap: 12px; padding: 10px 20px; }
header.site img.logo { width: 38px; height: 38px; border-radius: 9px; }
header.site .wordmark { font-weight: 800; letter-spacing: .06em; font-size: 15px; }
header.site .wordmark .fw { /* color handled by .shine-chrome */ }
header.site .wordmark .bb { letter-spacing: .3em; font-size: 12px; display: block; line-height: 1.1; }
header.site nav { margin-left: auto; display: flex; gap: 18px; align-items: center; }
header.site nav a { color: var(--dim); text-decoration: none; font-size: 14px; }
header.site nav a:hover { color: var(--text); }
a.cta, button.cta {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color: #1a1102; font-weight: 700; text-decoration: none;
  padding: 10px 22px; border-radius: 999px; border: 0;
  font-size: 15px;
}
a.cta.secondary { background: none; border: 1px solid var(--line); color: var(--text); font-weight: 600; }
a.cta:hover { filter: brightness(1.08); }
/* App access closed: the buttons stay in place but are inert. */
span.cta.soon {
  display: inline-block;
  background: var(--panel2);
  border: 1px solid var(--line);
  color: var(--dim);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: .02em;
  cursor: default;
  user-select: none;
}
header.site nav span.cta.soon { padding: 7px 16px; font-size: 13px; }
.soonnote { color: var(--dim); font-size: 14px; max-width: 560px; margin: 16px auto 0; }
.soonnote a { color: var(--sky); }
footer.site .soonline { display: block; margin-top: 6px; color: var(--dim); }


.hero { text-align: center; padding: 56px 0 30px; }
.hero img.banner { width: min(680px, 100%); border-radius: 16px; border: 1px solid var(--line); }
.hero h1 { font-size: clamp(28px, 5vw, 44px); margin: 26px 0 10px; line-height: 1.2; }
.hero h1 em { font-style: normal; }
.hero h1 em:not(.shine-gold) { color: var(--gold); }
.hero p.sub { color: var(--dim); font-size: clamp(16px, 2.4vw, 19px); max-width: 620px; margin: 0 auto 26px; }
.hero .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.stats { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; padding: 26px 0 8px; }
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 14px 26px; text-align: center; min-width: 150px; }
.stat b { display: block; font-size: 26px; color: var(--gold); }
.stat span { color: var(--dim); font-size: 13px; }

section.features { padding: 50px 0 10px; }
h2.sec { text-align: center; font-size: clamp(22px, 3.6vw, 32px); margin-bottom: 8px; }
p.seclead { text-align: center; color: var(--dim); max-width: 640px; margin: 0 auto 36px; }
.fgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.fcard {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px 22px 0; overflow: hidden; display: flex; flex-direction: column;
}
.fcard h3 { font-size: 18px; margin-bottom: 6px; color: var(--gold); }
.fcard p { color: var(--dim); font-size: 14.5px; margin-bottom: 16px; }
.fcard .shot { margin-top: auto; display: flex; justify-content: center; }
.fcard .shot img {
  width: min(330px, 94%); display: block;
  border: 6px solid #0a142e; border-bottom: 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -8px 30px rgba(1, 3, 12, .6);
}
/* The desktop-width screenshot is a laptop frame, not a phone frame, so it
   gets its own width and a full border rather than the phone's bottom bleed. */
.fcard .shot.wide { margin-top: auto; margin-bottom: auto; padding: 10px 0 22px; }
.fcard .shot.wide img {
  width: 100%; border: 6px solid #0a142e; border-radius: 14px;
  box-shadow: 0 8px 30px rgba(1, 3, 12, .6);
}
/* Lock the feature grid to three across on desktop so the rows stay balanced,
   two across on tablets and one on a phone. */
@media (min-width: 900px) { .fgrid { grid-template-columns: repeat(3, 1fr); } }
/* The feature grid runs wider than the rest of the page so each screenshot is
   large enough to read. */
@media (min-width: 1320px) { .features.wrap { max-width: 1280px; } }
@media (max-width: 899px) and (min-width: 620px) { .fgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 619px) { .fgrid { grid-template-columns: 1fr; } }
.learn { padding: 56px 0; }
.learn .box { background: var(--panel2); border: 1px solid var(--line); border-radius: 18px; padding: 34px; text-align: center; }
.learn .box h2 { margin-bottom: 10px; }
.learn .box p { color: var(--dim); max-width: 680px; margin: 0 auto; }
.cta-band { text-align: center; padding: 30px 0 66px; }
.cta-band h2 { margin-bottom: 18px; }

footer.site { border-top: 1px solid var(--line); padding: 30px 0 44px; color: var(--dim); font-size: 14px; }
footer.site .cols { display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
footer.site a { color: var(--dim); text-decoration: none; display: block; margin-top: 6px; }
footer.site a:hover { color: var(--text); }
footer.site .brandline { margin-top: 22px; font-size: 12.5px; }

main.page { padding: 46px 0 70px; max-width: 760px; margin: 0 auto; }
main.page h1 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 8px; }
main.page h2 { font-size: 20px; color: var(--gold); margin: 30px 0 8px; }
main.page p, main.page li { color: var(--dim); margin-bottom: 12px; font-size: 15.5px; }
main.page ul { padding-left: 22px; }
main.page .card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 20px 24px; margin: 18px 0; }
main.page a { color: var(--sky); }

/* Session P6 (2026-09-12): the beta sign-up form (beta-signup.html) and its
   confirmation page (beta-thanks.html). --ok/--warn/--no/--loc come from the
   second :root block further down this file. */
.formcard { background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 26px; margin: 18px auto; max-width: 460px; }
.formcard label.fieldlabel { display: block; color: var(--dim); font-size: 13px;
  text-transform: uppercase; letter-spacing: .5px; margin: 18px 0 6px; }
.formcard label.fieldlabel:first-child { margin-top: 0; }
.formcard input[type="text"], .formcard input[type="email"] {
  width: 100%; background: var(--bg0); border: 1px solid var(--line); border-radius: 8px;
  color: var(--text); font-size: 15px; padding: 11px 12px; font-family: inherit;
}
.formcard input[type="text"]:focus, .formcard input[type="email"]:focus {
  outline: 2px solid var(--sky); outline-offset: 1px;
}
.formcard .checkrow { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0 4px; }
.formcard .checkrow input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.formcard .checkrow label { margin: 0; color: var(--text); font-size: 14px; }
.formcard button.cta { margin-top: 22px; width: 100%; cursor: pointer; font-size: 16px; }
.formcard button.cta:disabled { opacity: .55; cursor: default; filter: none; }
.formmsg { margin-top: 14px; font-size: 14px; display: none; }
.formmsg.show { display: block; }
.formmsg.err { color: var(--no); }
.formmsg.ok { color: var(--ok); }
.thankscard { text-align: center; }
.assets { display: flex; gap: 18px; flex-wrap: wrap; margin: 14px 0; }
.assets figure { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px; text-align: center; }
.assets img { max-width: 220px; border-radius: 8px; display: block; margin: 0 auto 8px; }
.assets figcaption a { font-size: 13px; }

/* ---------- Knowledge library ---------- */
:root { --ok: #4fd39a; --warn: #e9b95f; --no: #e2685f; --loc: #6fb4ff; }
main.kpage { max-width: 1020px; padding-left: 20px; padding-right: 20px; }
.crumb { font-size: 13px; color: var(--dim); margin-bottom: 10px; }
.crumb a { color: var(--sky); text-decoration: none; }
.lede { color: var(--text); font-size: 17px; margin: 6px 0 18px; }
.lede2 { color: var(--dim); font-size: 14px; margin: 0 0 14px; }
.sec2 { font-size: 22px; color: var(--gold); margin: 42px 0 6px; }

.notice { display: grid; gap: 4px; background: var(--panel2); border: 1px solid var(--line);
  border-left: 4px solid var(--gold); border-radius: 12px; padding: 14px 18px; margin: 18px 0 26px; }
.notice strong { color: var(--text); font-size: 15px; }
.notice span { color: var(--dim); font-size: 14px; }
.notice.end { margin: 40px 0 0; }

.legend { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0 0 14px; }
.legend .lg { display: flex; align-items: center; gap: 8px; color: var(--dim); font-size: 13.5px; }
.sw { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.s-legal.sw, .chip.s-legal { background: rgba(79,211,154,.18); border: 1px solid var(--ok); color: var(--ok); }
.s-limited.sw, .chip.s-limited { background: rgba(233,185,95,.18); border: 1px solid var(--warn); color: var(--warn); }
.s-banned.sw, .chip.s-banned { background: rgba(226,104,95,.18); border: 1px solid var(--no); color: var(--no); }
.s-local_option.sw, .chip.s-local_option { background: rgba(111,180,255,.18); border: 1px solid var(--loc); color: var(--loc); }

.mapwrap { display: flex; gap: 22px; align-items: flex-start; flex-wrap: wrap; margin: 0 0 8px; }
.usmap { flex: 1 1 520px; max-width: 700px; width: 100%; height: auto; display: block; }
.usmap .st { cursor: pointer; stroke: rgba(5,12,31,.55); stroke-width: 1.1px; transition: filter .1s ease; }
.usmap .st:hover { filter: brightness(1.3); }
.usmap .st:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
.usmap .st.on { stroke: var(--gold); stroke-width: 2.5px; }
.usmap .st.s-legal { fill: rgba(79,211,154,.78); }
.usmap .st.s-limited { fill: rgba(233,185,95,.78); }
.usmap .st.s-banned { fill: rgba(226,104,95,.78); }
.usmap .st.s-local_option { fill: rgba(111,180,255,.78); }
.usmap .stlabel { font: 700 11px/1 system-ui, sans-serif; fill: #fff; text-anchor: middle;
  dominant-baseline: central; paint-order: stroke; stroke: rgba(5,12,31,.7); stroke-width: 2.5px; stroke-linejoin: round; }

.insetpanel { flex: 0 0 200px; }
.insetpanel h3 { color: var(--dim); font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em;
  font-weight: 700; margin: 6px 0 8px; }
.insetgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.tm { aspect-ratio: 1 / 1; border-radius: 8px; font: 700 13px/1 system-ui, sans-serif;
  cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center;
  transition: transform .08s ease, box-shadow .08s ease; }
.tm.s-legal { background: rgba(79,211,154,.30); border: 1px solid rgba(79,211,154,.55); color: #b9f2da; }
.tm.s-limited { background: rgba(233,185,95,.30); border: 1px solid rgba(233,185,95,.55); color: #f5dcae; }
.tm.s-banned { background: rgba(226,104,95,.30); border: 1px solid rgba(226,104,95,.55); color: #f7c4c0; }
.tm.s-local_option { background: rgba(111,180,255,.30); border: 1px solid rgba(111,180,255,.55); color: #c6e1ff; }
.tm:hover { transform: translateY(-1px); }
.tm.on { box-shadow: 0 0 0 2px var(--gold); color: #fff; }

.picker { display: flex; align-items: center; gap: 10px; margin: 16px 0 22px; flex-wrap: wrap; }
.picker label { color: var(--dim); font-size: 14px; }
.picker select { background: var(--panel2); color: var(--text); border: 1px solid var(--line);
  border-radius: 10px; padding: 9px 12px; font-size: 15px; min-width: 220px; }

.statecard { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; }
.schead { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.schead h2 { font-size: 24px; color: var(--text); margin: 0; }
.chip { border-radius: 999px; padding: 4px 12px; font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.chip.sm { font-size: 11.5px; padding: 3px 9px; }
.snote { color: var(--text); font-size: 16px; margin: 12px 0 0; }
.checknote { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap;
  background: rgba(233,185,95,.10); border: 1px solid rgba(233,185,95,.35); border-radius: 10px;
  padding: 10px 14px; margin: 14px 0 0; color: var(--dim); font-size: 14px; }
.checknote span { color: var(--gold); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; margin: 18px 0 0; }
.fact { background: var(--panel2); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.fl { display: block; color: var(--gold); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.fv { color: var(--text); font-size: 14.5px; line-height: 1.5; }

.cites { margin: 18px 0 0; }
.cites summary { cursor: pointer; color: var(--sky); font-size: 14px; }
.cites ul { margin: 10px 0 0 20px; color: var(--dim); font-size: 13.5px; }
.cites li { margin-bottom: 3px; }
.lawlink { color: var(--sky); font-size: 14px; }
.microdis { color: var(--dim); font-size: 12.5px; margin: 16px 0 0; font-style: italic; }

.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.ktable { border-collapse: collapse; width: 100%; min-width: 620px; font-size: 14px; }
.ktable th, .ktable td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.ktable thead th { background: var(--panel2); color: var(--gold); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; position: sticky; top: 0; }
.ktable tbody tr { cursor: pointer; }
.ktable tbody tr:hover { background: rgba(111,180,255,.06); }
.ktable tbody th { color: var(--text); font-weight: 600; white-space: nowrap; }
.ktable td { color: var(--dim); }

.kgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(390px, 1fr)); gap: 20px; margin-top: 22px; }
.kcard { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; }
.kcard h3 { color: var(--text); font-size: 19px; margin-bottom: 8px; }
.kcard p { color: var(--dim); font-size: 14.5px; flex: 1; }
.kcard .kmeta { margin-top: 14px; font-size: 13px; }
.kcard .kmeta a { color: var(--sky); text-decoration: none; font-weight: 700; }
.kcard .ksoon { color: var(--dim); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; font-size: 12px; }
.kicon { width: 52px; height: 52px; margin-bottom: 12px; }

/* Small screens: let the header nav wrap instead of pushing the page sideways */
@media (max-width: 620px) {
  header.site .wrap { flex-wrap: wrap; gap: 8px 10px; padding: 10px 16px; }
  header.site nav { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  header.site nav a { font-size: 13px; }
  header.site nav span.cta.soon { padding: 6px 13px; font-size: 12.5px; }
  main.kpage { padding-left: 14px; padding-right: 14px; }
  .statecard { padding: 18px 16px; }
  .mapwrap { flex-direction: column; }
  .usmap { flex: 0 0 auto; max-width: 100%; }
  .insetpanel { flex: 0 0 auto; width: 100%; }
  .insetgrid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .tm { font-size: 10px; border-radius: 6px; }
  .facts { grid-template-columns: 1fr; }
}
.reviewed { color: var(--dim); font-size: 13px; margin: -8px 0 16px; }

/* ---------- Types and effects (K2) ---------- */
.tnav { position: sticky; top: 60px; z-index: 5; background: rgba(1,3,12,.92);
  backdrop-filter: blur(6px); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; margin: 0 0 26px; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.tnav a { color: var(--dim); font-size: 13px; text-decoration: none; }
.tnav a:hover { color: var(--gold); }
.tsec { background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 24px; margin: 16px 0; scroll-margin-top: 130px; }
.tsec .grp { color: var(--gold); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; }
.tsec h2 { color: var(--text); font-size: 22px; margin: 2px 0 12px; }
.tsec p { color: var(--dim); font-size: 15px; }
.tsec ul { margin: 4px 0 6px 20px; padding: 0; }
.tsec li { color: var(--dim); font-size: 14.5px; margin-bottom: 6px; }
.tsec .h4 { color: var(--gold); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; margin: 16px 0 4px; }
.tsec .facts { grid-template-columns: 1fr; }
.tbody { display: grid; grid-template-columns: minmax(230px, 330px) 1fr; gap: 24px; align-items: start; }
svg.dia { width: 100%; height: auto; display: block; background: rgba(1,3,12,.5);
  border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; }
.nofig { color: var(--dim); font-size: 13.5px; font-style: italic;
  border-left: 2px solid var(--line); padding-left: 12px; }
@media (max-width: 720px) {
  .tbody { grid-template-columns: 1fr; }
  .tsec { padding: 18px 16px; }
  .tnav { position: static; }
}

/* Types page imagery */
img.photo { width: 100%; height: auto; display: block; border: 1px solid var(--line);
  border-radius: 12px; }
img.hero { width: 100%; height: auto; display: block; border: 1px solid var(--line);
  border-radius: 16px; margin: 6px 0 0; max-height: 340px; object-fit: cover; }
.credit { color: var(--dim); font-size: 11.5px; margin: 6px 0 14px; }

/* ---------- Effects guide (K2b) ---------- */
.egrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px; margin: 18px 0 10px; }
.ecard { background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px 18px; display: flex; flex-direction: column; scroll-margin-top: 130px; }
.ecard h3 { color: var(--gold); font-size: 18px; margin: 12px 0 6px; }
.ecard p { color: var(--dim); font-size: 14.5px; margin-bottom: 10px; }
img.clip { width: 100%; height: auto; display: block; border-radius: 10px;
  border: 1px solid var(--line); background: #01030c; }
.noclip { width: 100%; aspect-ratio: 206 / 170; border: 1px dashed var(--line);
  border-radius: 10px; background: rgba(1,3,12,.5); display: flex; align-items: center;
  justify-content: center; }
.noclip span { color: var(--dim); font-size: 12.5px; letter-spacing: .04em; }
.etell { border-left: 2px solid var(--gold); padding-left: 12px; }
.etell span { display: block; color: var(--gold); font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 3px; }
.efreq { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line);
  color: var(--dim); font-size: 13px; }
.efreq b { color: var(--text); font-size: 15px; }
/* The effects nav lists 29 items, so it does not stick. It would cover the cards. */
.tnav.wide { position: static; }
.ecard { scroll-margin-top: 80px; }
