/* ==========================================================================
   PRIMAL CODE · Ghost theme
   Brand tokens taken from the light filament reference: periwinkle paper,
   electric blue, cyan, violet, warm gold spark. HUD brackets and grid lines.
   ========================================================================== */

:root {
  --pc-bg: #E7EEF7;
  --pc-paper: #F7FAFF;
  --pc-ink: #0A1730;
  --pc-ink-mid: #2A3654;
  --pc-ink-soft: #55637E;
  --pc-blue: #0062FF;
  --pc-blue-deep: #0043B0;
  --pc-cyan: #6FB0FF;
  --pc-violet: #0043B0;
  --pc-gold: #FF9F45;
  --pc-glass: #FFFFFF;
  --pc-tint: #EFF5FF;
  --pc-line: #C9D8EE;
  --pc-line-strong: #9DB8E0;
  --pc-shadow: 0 10px 30px rgba(10, 60, 150, 0.12);
  --pc-shadow-lg: 0 18px 48px rgba(10, 60, 150, 0.16);
  --pc-glow: 0 0 20px rgba(0, 98, 255, 0.35);
  --pc-radius: 4px;
  --pc-wrap: 1200px;
  --pc-text: 850px;
  --pc-display: var(--gh-font-heading, 'Barlow Condensed', 'Arial Narrow', sans-serif);
  --pc-brand: 'Archivo', 'Trebuchet MS', sans-serif;
  --pc-body: var(--gh-font-body, 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif);
  --pc-mono: 'Roboto Mono', 'Courier New', monospace;
}

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

html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
@supports not (overflow: clip) {
  html { overflow-x: hidden; }
}

body.pc-body {
  margin: 0;
  background: var(--pc-bg);
  color: var(--pc-ink-mid);
  font-family: var(--pc-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--pc-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 2px solid var(--pc-blue); outline-offset: 3px; }

.pc-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.pc-skip {
  position: absolute; left: -9999px; top: 0; z-index: 60;
  background: var(--pc-ink); color: #fff; padding: 12px 18px;
  font-family: var(--pc-mono); font-size: 13px;
}
.pc-skip:focus { left: 12px; top: 12px; }

.pc-hidden { display: none !important; }

/* reveal on scroll, only armed when the script adds .pc-anim */
.pc-anim .pc-card, .pc-anim .pc-cta, .pc-anim .pc-frame {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pc-anim .pc-card.pc-in, .pc-anim .pc-cta.pc-in, .pc-anim .pc-frame.pc-in {
  opacity: 1; transform: none;
}
.pc-anim .pc-card.pc-in {
  transition: opacity 0.5s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pc-anim .pc-card.pc-in:hover { transform: translateY(-4px); }
.pc-anim .pc-frame.pc-in { transform: rotate(0.6deg); }

/* ── layout ─────────────────────────────────────────────────────────────── */

.pc-main {
  background:
    radial-gradient(ellipse 120% 34% at 50% 0%, #E4EFFF 0%, rgba(228, 239, 255, 0) 62%),
    var(--pc-paper);
}

.pc-wrap {
  width: 100%; max-width: var(--pc-wrap);
  margin: 0 auto; padding: 0 30px;
  position: relative; z-index: 1;
}

.pc-text { max-width: var(--pc-text); }

.pc-sec { padding: 64px 0; position: relative; }
.pc-sec-flush { padding-top: 6px; }
.pc-sec-tint {
  background: var(--pc-tint);
  border-top: 1px solid var(--pc-line);
  border-bottom: 1px solid var(--pc-line);
}
.pc-sec-head { padding: 54px 0 26px; overflow: hidden; }
.pc-sec-head .pc-headwrap { margin-bottom: 0; }
.pc-sec-head + .pc-sec { padding-top: 30px; }
.pc-sec-cta { padding: 72px 0 80px; }

.pc-center { text-align: center; }

.pc-gridbg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 98, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 98, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0));
}
.pc-gridbg-short { height: 320px; inset: 0 0 auto 0; }

/* ── type ───────────────────────────────────────────────────────────────── */

.pc-h1, .pc-h2, .pc-h3 { margin: 0 0 14px; font-family: var(--pc-display); font-weight: 700; color: var(--pc-ink); }

.pc-h1 > span, .pc-h2 > span, .pc-h3 > span { display: block; font-family: inherit; color: inherit; }

.pc-h1 {
  font-size: clamp(44px, 7.4vw, 84px);
  line-height: 0.96; letter-spacing: 0.5px; text-transform: uppercase;
}
.pc-h1-sm { font-size: clamp(36px, 5.6vw, 58px); }
.pc-h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #6FB0FF 0%, var(--pc-blue) 55%, var(--pc-blue-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--pc-blue);
}
@keyframes pc-blink { 50% { opacity: 0.25; } }
.pc-h2 { font-size: clamp(30px, 4.2vw, 48px); line-height: 1.02; letter-spacing: 0.4px; text-transform: uppercase; }
.pc-h3 { font-size: 24px; line-height: 1.08; letter-spacing: 0.4px; text-transform: uppercase; }

.pc-lead { font-size: 19px; line-height: 1.5; color: var(--pc-ink-soft); margin: 0 0 26px; max-width: 520px; }
.pc-sub { font-size: 17px; line-height: 1.5; color: var(--pc-ink-soft); margin: 0; }
.pc-microcopy { font-family: var(--pc-mono); font-size: 12px; letter-spacing: 1px; color: var(--pc-ink-soft); margin: 14px 0 0; }

.pc-pill {
  display: inline-block; margin-bottom: 14px;
  font-family: var(--pc-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--pc-blue-deep);
  border: 1px solid rgba(0, 98, 255, 0.3); border-radius: 999px;
  padding: 7px 15px; background: rgba(0, 98, 255, 0.055);
}
.pc-tick {
  display: block; margin-bottom: 12px;
  font-family: var(--pc-mono); font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
}
.pc-lbl {
  display: block; margin-bottom: 12px;
  font-family: var(--pc-mono); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--pc-blue);
}

.pc-headwrap { margin-bottom: 34px; }
.pc-headwrap p { margin: 0; }
.pc-headwrap-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.pc-headwrap-c { text-align: center; }
.pc-headwrap-c .pc-sub { max-width: 620px; margin: 0 auto; }
.pc-headwrap-center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.pc-headwrap-center .pc-sub { margin-top: 4px; }

.pc-rule { display: flex; align-items: center; gap: 12px; padding: 14px 0; }
.pc-rule::before, .pc-rule::after { content: ''; flex: 1; height: 1px; background: var(--pc-line-strong); }
.pc-rule-n { width: 8px; height: 8px; border: 2px solid var(--pc-blue); border-radius: 50%; flex: none; }

/* ── status bar + nav ───────────────────────────────────────────────────── */

.pc-status {
  background: var(--pc-ink);
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 9px 30px;
  border-bottom: 1px solid rgba(111, 176, 255, 0.14);
}
.pc-status-title { color: #DCE9FB; }
.pc-status-side { color: #7E9BC9; letter-spacing: 1.5px; }
@media (max-width: 720px) {
  .pc-status { justify-content: center; }
  .pc-status-side { display: none; }
}

.pc-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 23, 48, 0.94);
  border-bottom: 1px solid rgba(111, 176, 255, 0.22);
  backdrop-filter: blur(8px);
}
.pc-nav::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(111, 176, 255, 0.8) 50%, transparent 95%);
  pointer-events: none;
}
.pc-nav-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 68px;
}

.pc-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.pc-logo:hover { text-decoration: none; }
.pc-neural { width: 58px; height: 33px; flex: none; }
.pc-neural .pc-link { stroke: var(--pc-cyan); stroke-width: 1.4; opacity: 0.5; }
.pc-neural .pc-node { fill: #7FD8FF; }
.pc-neural .pc-hot { fill: var(--pc-cyan); }
.pc-neural .pc-pulse { transform-origin: center; animation: pc-node 2.4s ease-in-out infinite; }
@keyframes pc-node { 0%, 100% { r: 3; opacity: 1; } 50% { r: 5.2; opacity: 0.7; } }
.pc-neural-dark .pc-link { stroke: var(--pc-blue); opacity: 0.4; }
.pc-neural-dark .pc-node { fill: var(--pc-blue); }
.pc-neural-dark .pc-hot { fill: var(--pc-cyan); }

.pc-word { display: flex; flex-direction: column; line-height: 1; }
.pc-word-a {
  font-family: var(--pc-brand); font-weight: 900; font-size: 18px;
  letter-spacing: 3px; text-transform: uppercase; color: #fff;
}
.pc-word-b {
  font-family: var(--pc-brand); font-weight: 700; font-size: 10px;
  letter-spacing: 8.5px; text-indent: 1px; text-transform: uppercase; color: var(--pc-cyan); margin-top: 3px;
}

.pc-menu { display: flex; align-items: center; gap: 24px; }
.pc-navlist { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.pc-navitem a {
  font-family: var(--pc-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #C4D6F2; text-decoration: none;
}
.pc-navitem a:hover { color: var(--pc-cyan); text-decoration: none; }
.pc-navitem.pc-on a { color: var(--pc-cyan); }

.pc-burger {
  display: none; width: 42px; height: 36px; padding: 8px;
  background: none; border: 1px solid rgba(157, 184, 224, 0.45); border-radius: var(--pc-radius); cursor: pointer;
}
.pc-burger span { display: block; height: 2px; background: #DCE9FB; margin: 3px 0; transition: transform 0.18s, opacity 0.18s; }
.pc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.pc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ── buttons ────────────────────────────────────────────────────────────── */

.pc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--pc-brand); font-weight: 700; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  padding: 15px 28px; border-radius: var(--pc-radius); border: 0; cursor: pointer;
  transition: transform 0.08s, box-shadow 0.08s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.pc-btn:hover { text-decoration: none; }
.pc-btn-solid {
  background: linear-gradient(135deg, var(--pc-blue) 0%, var(--pc-blue-deep) 100%); color: #fff;
  box-shadow: 0 8px 22px rgba(0, 98, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.pc-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 98, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.pc-btn-ghost {
  background: var(--pc-glass); color: var(--pc-ink);
  border: 1px solid var(--pc-line-strong); box-shadow: var(--pc-shadow);
}
.pc-btn-ghost:hover { border-color: var(--pc-blue); color: var(--pc-blue); }
.pc-btn-sm { padding: 11px 18px; font-size: 12px; }

/* nav CTA matches the hero button */
.pc-nav .pc-btn-sm {
  color: #fff;
  background: linear-gradient(135deg, var(--pc-blue) 0%, var(--pc-blue-deep) 100%);
  border: 0;
  box-shadow: 0 6px 18px rgba(0, 98, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.pc-nav .pc-btn-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 24px rgba(0, 98, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

.pc-arrow {
  font-family: var(--pc-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--pc-blue); text-decoration: none;
}
.pc-arrow:hover { text-decoration: underline; }

/* ── forms (Ghost Portal) ───────────────────────────────────────────────── */

.pc-form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 500px; }
.pc-input {
  flex: 1 1 220px; min-width: 0;
  font-family: var(--pc-body); font-size: 16px; color: var(--pc-ink);
  background: var(--pc-glass); border: 1px solid var(--pc-line-strong);
  border-radius: var(--pc-radius); padding: 15px 16px;
}
.pc-input::placeholder { color: #94A3BE; }
.pc-input:focus { outline: 2px solid var(--pc-blue); outline-offset: 1px; border-color: var(--pc-blue); }

.pc-form-msg {
  flex: 1 1 100%; margin: 2px 0 0; display: none;
  font-family: var(--pc-mono); font-size: 12px; letter-spacing: 0.5px;
}
.pc-success { color: var(--pc-blue-deep); }
.pc-error { color: #C6203C; }
.success .pc-success, .pc-form.success .pc-success { display: block; }
.error .pc-error, .pc-form.error .pc-error { display: block; }

/* ── hero ───────────────────────────────────────────────────────────────── */

.pc-hero { position: relative; overflow: hidden; padding: 84px 0 92px; }
.pc-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(480px 360px at 82% 26%, rgba(111, 176, 255, 0.16), transparent 70%),
    radial-gradient(560px 420px at 6% 92%, rgba(122, 47, 255, 0.09), transparent 70%),
    radial-gradient(360px 280px at 58% 4%, rgba(255, 159, 69, 0.12), transparent 70%);
}
.pc-hero-in {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 54px; align-items: center;
}
.pc-hero-copy .pc-pill { margin-bottom: 20px; }
.pc-hero .pc-pill::before {
  content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pc-blue); box-shadow: 0 0 8px rgba(0, 98, 255, 0.8);
  margin-right: 9px; vertical-align: 1px;
  animation: pc-blink 1.6s steps(1) infinite;
}

.pc-frame {
  position: relative; border: 1px solid var(--pc-line-strong);
  border-radius: var(--pc-radius); overflow: hidden;
  box-shadow: var(--pc-shadow-lg), 0 0 0 6px rgba(255, 255, 255, 0.55), 0 0 60px rgba(0, 98, 255, 0.14);
  background: var(--pc-glass);
  transform: rotate(0.6deg);
}
.pc-frame::before, .pc-frame::after {
  content: ''; position: absolute; width: 22px; height: 22px; border: 2px solid var(--pc-cyan); z-index: 2;
}
.pc-frame::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.pc-frame::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.pc-frame-img { width: 100%; height: auto; display: block; }
.pc-frame-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 2px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(111, 176, 255, 0.85), transparent);
  box-shadow: 0 0 14px rgba(111, 176, 255, 0.55);
  animation: pc-sweep 5.5s ease-in-out infinite;
}
@keyframes pc-sweep {
  0%, 12% { top: 4%; opacity: 0; }
  18% { opacity: 1; }
  70% { top: 94%; opacity: 1; }
  78%, 100% { top: 94%; opacity: 0; }
}

.pc-trust {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  list-style: none; margin: 18px 0 0; padding: 0;
}
.pc-trust li {
  font-family: var(--pc-mono); font-size: 12px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--pc-ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.pc-trust li::before {
  content: ''; width: 5px; height: 5px; flex: none;
  background: var(--pc-cyan); box-shadow: 0 0 6px rgba(111, 176, 255, 0.7);
  transform: rotate(45deg);
}

/* ── dark hero ──────────────────────────────────────────────────────────── */

.pc-hero-dark {
  background: #081226;
  padding: 96px 0 110px;
  min-height: 640px;
  display: flex; align-items: flex-end;
}
.pc-hero-dark::before { display: none; }
.pc-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('../images/fibers.svg') center / cover no-repeat;
}
.pc-gridbg-dark {
  background-image:
    linear-gradient(rgba(111, 176, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 176, 255, 0.045) 1px, transparent 1px);
  -webkit-mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0) 55%);
  mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, 0) 55%);
}
.pc-hero-dark .pc-hero-in {
  display: block; width: 100%;
}
.pc-hero-dark .pc-hero-copy { max-width: 620px; }
.pc-hero-dark .pc-h1 { color: #fff; }
.pc-hero-dark .pc-lead { color: #B7C8E4; max-width: 540px; }
.pc-hero-dark .pc-pill {
  color: var(--pc-cyan); border-color: rgba(111, 176, 255, 0.4);
  background: rgba(111, 176, 255, 0.07);
}
.pc-hero-dark .pc-pill::before { background: var(--pc-cyan); box-shadow: 0 0 8px rgba(111, 176, 255, 0.9); }
.pc-hero-dark .pc-input {
  background: rgba(10, 23, 48, 0.65); color: #fff;
  border-color: rgba(157, 184, 224, 0.45);
  backdrop-filter: blur(4px);
}
.pc-hero-dark .pc-input::placeholder { color: #7E93B8; }
.pc-hero-dark .pc-input:focus { border-color: var(--pc-cyan); outline-color: var(--pc-cyan); }
.pc-hero-dark .pc-trust li { color: #9FB4D6; }
.pc-hero-dark .pc-success { color: #9FE8FF; }
.pc-hero-dark .pc-error { color: #FF9DB0; }

/* floating stat callouts over the visual */
.pc-callout {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  pointer-events: none;
}
.pc-callout-dot {
  width: 9px; height: 9px; flex: none;
  background: #fff; border: 1px solid var(--pc-cyan);
  box-shadow: 0 0 12px rgba(111, 176, 255, 0.85);
  position: relative;
}
.pc-callout-dot::after {
  content: ''; position: absolute; top: 50%; left: 100%;
  width: 46px; height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.1));
}
.pc-callout-body {
  display: flex; flex-direction: column; margin-left: 46px;
}
.pc-callout-n {
  font-family: var(--pc-display); font-weight: 700; font-size: 30px;
  line-height: 1; letter-spacing: 0.5px; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 14px rgba(4, 12, 30, 0.8);
}
.pc-callout-l {
  margin-top: 5px;
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1.6px;
  text-transform: uppercase; color: #9FE8FF;
  text-shadow: 0 2px 10px rgba(4, 12, 30, 0.8);
}
.pc-callout-flip .pc-callout-dot::after {
  left: auto; right: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.1));
}
.pc-callout-flip .pc-callout-body { margin-left: 0; margin-right: 46px; align-items: flex-end; text-align: right; }
.pc-callout-1 { top: 15%; right: 32%; }
.pc-callout-2 { top: 37%; right: 5%; }
.pc-callout-3 { top: 66%; right: 34%; }
.pc-callout-2 .pc-callout-dot { animation-delay: 1.1s; }
.pc-callout-3 .pc-callout-dot { animation-delay: 2.2s; }
.pc-callout .pc-callout-dot { animation: pc-callout-pulse 3.2s ease-in-out infinite; }
@keyframes pc-callout-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(111, 176, 255, 0.85); }
  50% { box-shadow: 0 0 22px rgba(111, 176, 255, 1); }
}
.pc-frame-tag {
  position: absolute; bottom: 12px; left: 16px; z-index: 2;
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pc-blue-deep);
}

.pc-charge { max-width: 340px; margin: 18px 0 0; }
.pc-charge-cap {
  display: flex; justify-content: space-between; margin-bottom: 6px;
  font-family: var(--pc-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pc-ink-soft);
}
.pc-charge-track {
  height: 8px; border-radius: 4px; background: var(--pc-tint);
  border: 1px solid var(--pc-line); overflow: hidden;
}
.pc-charge-fill {
  height: 100%; width: 92%; position: relative;
  background: linear-gradient(90deg, var(--pc-blue), var(--pc-cyan));
  box-shadow: var(--pc-glow);
}
.pc-charge-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: pc-scan 2.4s linear infinite;
}
@keyframes pc-scan { 0% { transform: translateX(-100%); } 100% { transform: translateX(320%); } }

/* ── the filter (editorial statement layout) ────────────────────────────── */

.pc-filter {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 160px;
  gap: 40px; align-items: stretch;
}
.pc-filter-side { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.pc-filter-side .pc-pill { align-self: flex-start; margin-bottom: 0; }
.pc-filter-note { margin: 0 0 16px; font-size: 14px; line-height: 1.5; color: var(--pc-ink-soft); }
.pc-btn-ink {
  background: var(--pc-ink); color: #fff;
  box-shadow: 0 6px 16px rgba(10, 23, 48, 0.25);
}
.pc-btn-ink:hover { transform: translateY(-1px); box-shadow: 0 9px 22px rgba(10, 23, 48, 0.3); color: #fff; }
.pc-filter-tag {
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--pc-ink-soft); text-align: right;
}
.pc-statement {
  margin: 4px 0 36px;
  font-family: var(--pc-body); font-weight: 600;
  font-size: clamp(21px, 2.5vw, 29px); line-height: 1.4;
  color: var(--pc-ink); max-width: 780px;
}
.pc-statement-mute { color: #97A6C2; font-weight: 500; }
.pc-filter-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pc-fstat {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 230px; padding: 20px 22px;
  background: var(--pc-tint); border: 1px solid var(--pc-line);
  border-radius: 6px;
}
.pc-fstat-l {
  font-family: var(--pc-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--pc-ink-soft);
  line-height: 1.6;
}
.pc-fstat-n {
  font-family: var(--pc-display); font-weight: 700;
  font-size: clamp(38px, 3.6vw, 52px); line-height: 1; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--pc-ink);
}

/* ── lanes: two dark cards ──────────────────────────────────────────────── */

.pc-lanes2 {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px; max-width: 980px; margin: 0 auto;
}
.pc-lanecard {
  position: relative; overflow: hidden;
  background:
    radial-gradient(420px 260px at 85% -10%, rgba(0, 98, 255, 0.28), transparent 70%),
    radial-gradient(360px 240px at 0% 110%, rgba(111, 176, 255, 0.12), transparent 70%),
    var(--pc-ink);
  border: 1px solid rgba(111, 176, 255, 0.28);
  border-radius: 6px; padding: 30px 30px 32px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pc-lanecard:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 176, 255, 0.55);
  box-shadow: 0 20px 50px rgba(6, 18, 44, 0.45);
}
.pc-lanecard-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.pc-lanecard-ico {
  width: 44px; height: 44px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #8FC0FF; background: rgba(111, 176, 255, 0.1);
  border: 1px solid rgba(111, 176, 255, 0.3);
}
.pc-lanecard-ico svg { width: 22px; height: 22px; }
.pc-lanecard-tag {
  font-family: var(--pc-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #8FC0FF;
}
.pc-lanecard-h {
  margin: 0 0 10px; font-family: var(--pc-display); font-weight: 700;
  font-size: 34px; line-height: 1; letter-spacing: 0.5px; text-transform: uppercase; color: #fff;
}
.pc-lanecard-p { margin: 0 0 20px; font-size: 16px; line-height: 1.55; color: #B7C8E4; }
.pc-chips-dark li {
  color: #A9BEE2; background: rgba(111, 176, 255, 0.08);
  border-color: rgba(111, 176, 255, 0.25);
}

/* ── weekbox (container with format cards) ──────────────────────────────── */

.pc-weekbox {
  background: var(--pc-tint); border: 1px solid var(--pc-line);
  border-radius: 10px; padding: 14px;
}
.pc-weekgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.pc-weekgrid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pc-wcard {
  background: var(--pc-glass); border: 1px solid var(--pc-line);
  border-radius: 8px; padding: 22px 22px 24px;
  display: flex; flex-direction: column; text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.pc-wcard:hover {
  transform: translateY(-3px); border-color: var(--pc-line-strong);
  box-shadow: var(--pc-shadow); text-decoration: none;
}
.pc-wcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pc-wcard-ico {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pc-blue); background: rgba(0, 98, 255, 0.08);
}
.pc-wcard-ico svg { width: 20px; height: 20px; }
.pc-wcard-day {
  font-family: var(--pc-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--pc-ink-soft);
}
.pc-wcard-h {
  margin: 0 0 8px; font-family: var(--pc-display); font-weight: 700;
  font-size: 22px; line-height: 1.05; letter-spacing: 0.4px;
  text-transform: uppercase; color: var(--pc-ink);
}
.pc-wcard-p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--pc-ink-soft); }
.pc-wcard-link { background: rgba(0, 98, 255, 0.06); border-color: rgba(0, 98, 255, 0.25); }
.pc-wcard-link .pc-wcard-h { color: var(--pc-blue); }
.pc-wcard-link:hover { border-color: var(--pc-blue); }
.pc-weekfoot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 10px 4px;
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--pc-ink-soft);
}

/* ── dark page hero (about, etc.) ───────────────────────────────────────── */

.pc-pagehero {
  position: relative; overflow: hidden;
  background: #081226; padding: 72px 0 66px;
}
.pc-pagehero-in { position: relative; z-index: 1; max-width: 820px; }
.pc-pagehero .pc-h1 { color: #fff; }
.pc-pagehero .pc-lead { color: #B7C8E4; margin-bottom: 0; max-width: 620px; }
.pc-pagehero .pc-pill {
  color: #8FC0FF; border-color: rgba(111, 176, 255, 0.4);
  background: rgba(111, 176, 255, 0.08);
}
.pc-about-story p { font-size: 17px; line-height: 1.65; color: var(--pc-ink-mid); margin: 0 0 16px; }
.pc-about-story { margin-bottom: 36px; max-width: 700px; }

/* ── cards ──────────────────────────────────────────────────────────────── */

.pc-card {
  position: relative; background: var(--pc-glass);
  border: 1px solid var(--pc-line); border-radius: var(--pc-radius);
  padding: 28px 28px 28px; box-shadow: var(--pc-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pc-card:hover {
  transform: translateY(-4px);
  border-color: var(--pc-line-strong);
  box-shadow: var(--pc-shadow-lg);
}
.pc-card::before, .pc-card::after {
  content: ''; position: absolute; width: 16px; height: 16px; border: 2px solid var(--pc-blue);
  transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease;
}
.pc-card:hover::before, .pc-card:hover::after { width: 24px; height: 24px; border-color: var(--pc-cyan); }
.pc-stat-violet:hover::before, .pc-stat-violet:hover::after { border-color: var(--pc-violet); }
.pc-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.pc-card::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.pc-card p { margin: 0 0 12px; font-size: 16px; line-height: 1.55; }
.pc-card p:last-child { margin-bottom: 0; }

/* split section */
.pc-split {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 46px; align-items: start;
}
.pc-split-text p { font-size: 17px; line-height: 1.6; margin: 0 0 16px; }
.pc-split-text p:last-child { margin-bottom: 0; }
.pc-split-side { display: grid; gap: 18px; }

.pc-stat { padding: 24px 26px; }
.pc-stat-n {
  display: block; font-family: var(--pc-display); font-weight: 700;
  font-size: clamp(34px, 3.8vw, 46px); line-height: 1; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--pc-blue); margin-bottom: 10px;
}
.pc-stat p { font-size: 15px; color: var(--pc-ink-soft); }
.pc-stat-sm .pc-stat-n { font-size: clamp(21px, 2.2vw, 27px); letter-spacing: 1px; }
.pc-stat-violet::before, .pc-stat-violet::after { border-color: var(--pc-violet); }
.pc-stat-violet .pc-stat-n { color: var(--pc-violet); }

/* lanes: two cards, blue for Mind, gold for Body */
.pc-lanes2 {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px; max-width: 980px; margin: 0 auto;
}
.pc-lane { padding: 34px 34px 32px; border-top: 3px solid var(--pc-blue); }
.pc-lane-deep { border-top-color: var(--pc-ink); }
.pc-lane-deep::before, .pc-lane-deep::after { border-color: var(--pc-ink); }
.pc-lane-deep:hover::before, .pc-lane-deep:hover::after { border-color: var(--pc-ink); }
.pc-lane .pc-lbl { margin-bottom: 8px; }
.pc-lane-deep .pc-lbl { color: var(--pc-ink); }
.pc-lane-title {
  margin: 0 0 10px; font-family: var(--pc-display); font-weight: 700;
  font-size: clamp(30px, 3.4vw, 40px); line-height: 1; letter-spacing: 0.4px;
  text-transform: uppercase; color: var(--pc-ink);
}
.pc-lane-p {
  font-family: var(--pc-body); font-weight: 400; font-size: 16px;
  line-height: 1.55; color: var(--pc-ink-soft); margin: 0 0 20px !important;
}
.pc-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.pc-chips li {
  font-family: var(--pc-mono); font-size: 12px; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--pc-ink-soft);
  background: var(--pc-tint); border: 1px solid var(--pc-line);
  border-radius: 999px; padding: 7px 13px;
}

/* editorial statement block (The Filter) */
.pc-editorial {
  display: grid; grid-template-columns: 190px minmax(0, 1fr) 170px;
  gap: 40px; align-items: start;
}
.pc-editorial-rail { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.pc-editorial-when {
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pc-ink-soft);
}
.pc-editorial-tag {
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--pc-ink-soft); text-align: right;
}
.pc-statement {
  margin: 0 0 34px; max-width: 720px;
  font-family: var(--pc-body); font-weight: 600;
  font-size: clamp(21px, 2.5vw, 29px); line-height: 1.35;
  letter-spacing: -0.2px; color: var(--pc-ink);
}
.pc-statement-muted { color: #97A5C0; }
.pc-tallcards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pc-tall {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 240px; padding: 22px 24px;
  background: var(--pc-tint); border: 1px solid var(--pc-line);
  border-radius: var(--pc-radius);
}
.pc-tall-lbl {
  font-family: var(--pc-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--pc-ink-soft);
  line-height: 1.7;
}
.pc-tall-n {
  font-family: var(--pc-display); font-weight: 700;
  font-size: clamp(40px, 4vw, 54px); line-height: 1; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--pc-ink);
}

/* panel of format cards (Three A Week) */
.pc-panel {
  background: var(--pc-tint); border: 1px solid var(--pc-line);
  border-radius: 6px; padding: 16px;
}
.pc-panel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.pc-fmt {
  background: var(--pc-glass); border: 1px solid var(--pc-line);
  border-radius: var(--pc-radius); padding: 24px 24px 22px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.pc-fmt:hover { border-color: var(--pc-line-strong); box-shadow: var(--pc-shadow); }
.pc-fmt-day {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; height: 30px; padding: 0 10px; margin-bottom: 16px;
  font-family: var(--pc-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--pc-blue-deep); background: rgba(0, 98, 255, 0.07);
  border: 1px solid rgba(0, 98, 255, 0.22); border-radius: 3px;
}
.pc-fmt .pc-h3 { font-size: 21px; margin-bottom: 8px; }
.pc-fmt p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--pc-ink-soft); }
.pc-panel-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 10px 4px;
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--pc-ink-soft);
}

/* week / principle grid */
.pc-week { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.pc-week-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pc-week-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pc-day { padding: 24px 22px; }
.pc-day-n {
  display: block; font-family: var(--pc-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--pc-cyan); margin-bottom: 12px;
}
.pc-day .pc-h3 { font-size: 19px; margin-bottom: 10px; }
.pc-day p { font-size: 15px; color: var(--pc-ink-soft); }

/* quote card */
.pc-quote { text-align: center; background: var(--pc-glass); padding: 34px 30px; }
.pc-quote::before, .pc-quote::after { border-color: var(--pc-violet); }
.pc-quote .pc-lbl { color: var(--pc-violet); }
.pc-quote-p {
  font-family: var(--pc-display); font-weight: 700;
  font-size: clamp(21px, 2.6vw, 28px); line-height: 1.2; letter-spacing: 0.3px;
  text-transform: uppercase; color: var(--pc-ink); margin-bottom: 12px !important;
}
.pc-quote-by { font-family: var(--pc-mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--pc-ink-soft); }

/* ── post cards ─────────────────────────────────────────────────────────── */

.pc-posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pc-post { display: flex; flex-direction: column; padding: 26px 26px; }
.pc-post-meta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px;
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--pc-ink-soft);
}
.pc-post-title {
  font-family: var(--pc-display); font-weight: 700; font-size: 26px;
  line-height: 1.06; letter-spacing: 0.3px; text-transform: uppercase;
  margin: 0 0 12px; color: var(--pc-ink);
}
.pc-post-title a { color: inherit; text-decoration: none; }
.pc-post-title a:hover { color: var(--pc-blue); text-decoration: none; }
.pc-post-ex { font-size: 15px; color: var(--pc-ink-soft); margin: 0 0 18px; flex: 1 1 auto; }
.pc-post-soon::before, .pc-post-soon::after { border-color: var(--pc-line-strong); }

/* ── archive rows ───────────────────────────────────────────────────────── */

.pc-archive { border-top: 1px solid var(--pc-line); }
.pc-row {
  display: grid; grid-template-columns: 92px minmax(0, 1fr) 44px;
  gap: 22px; align-items: start;
  padding: 26px 4px; border-bottom: 1px solid var(--pc-line);
  transition: background 0.15s;
}
.pc-row:hover { background: rgba(255, 255, 255, 0.75); }
.pc-row-date {
  font-family: var(--pc-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--pc-blue);
  display: flex; flex-direction: column; gap: 2px; padding-top: 4px;
}
.pc-row-date span { color: var(--pc-ink-soft); font-weight: 400; }
.pc-row-title {
  font-family: var(--pc-display); font-weight: 700; font-size: 28px;
  line-height: 1.05; letter-spacing: 0.3px; text-transform: uppercase;
  margin: 0 0 8px; color: var(--pc-ink);
}
.pc-row-title a { color: inherit; text-decoration: none; }
.pc-row-title a:hover { color: var(--pc-blue); text-decoration: none; }
.pc-row-ex { font-size: 16px; color: var(--pc-ink-soft); margin: 0 0 8px; }
.pc-row-meta { font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pc-ink-soft); }
.pc-row-go {
  align-self: center; justify-self: end;
  width: 44px; height: 44px; border-radius: var(--pc-radius);
  border: 1px solid var(--pc-line-strong); background: var(--pc-glass);
  display: flex; align-items: center; justify-content: center;
  color: var(--pc-blue); font-size: 18px; text-decoration: none;
}
.pc-row-go:hover { border-color: var(--pc-blue); background: rgba(0, 98, 255, 0.06); text-decoration: none; }

/* ── pagination ─────────────────────────────────────────────────────────── */

.pagination {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 40px; font-family: var(--pc-mono); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--pc-ink-soft);
}
.pagination a {
  color: var(--pc-blue); text-decoration: none;
  border: 1px solid var(--pc-line-strong); background: var(--pc-glass);
  border-radius: var(--pc-radius); padding: 11px 18px;
}
.pagination a:hover { border-color: var(--pc-blue); text-decoration: none; }

/* ── article ────────────────────────────────────────────────────────────── */

.pc-article {
  position: relative; max-width: 910px; margin: 0 auto;
  padding: 0 30px 20px;
}
.pc-article-head { padding-top: 48px; }
.pc-article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 16px;
  font-family: var(--pc-mono); font-size: 12px; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--pc-ink-soft);
}
.pc-article-meta a { color: var(--pc-blue); text-decoration: none; }
.pc-article-title {
  margin: 0 0 14px; font-family: var(--pc-display); font-weight: 700;
  font-size: clamp(30px, 5vw, 50px); line-height: 1.05; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pc-article-title > span { display: block; color: var(--pc-ink); }
.pc-article-ex { font-size: 19px; line-height: 1.5; color: var(--pc-ink-soft); margin: 0; max-width: var(--pc-text); }

.pc-article-image { margin: 0 0 30px; max-width: var(--pc-text); }
.pc-article-image img {
  width: 100%; max-height: 460px; object-fit: cover;
  border-radius: var(--pc-radius); border: 1px solid var(--pc-line);
}
.pc-article-image figcaption {
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1px;
  color: var(--pc-ink-soft); text-align: center; margin-top: 10px;
}

.pc-content { padding-top: 0; max-width: var(--pc-text); }
.pc-content > * { margin: 0 0 24px; }
.pc-content > *:last-child { margin-bottom: 0; }
.pc-content p, .pc-content ul, .pc-content ol {
  font-size: 18px; line-height: 1.7; color: var(--pc-ink-mid);
}
.pc-content ul, .pc-content ol { padding-left: 24px; }
.pc-content li { margin-bottom: 8px; }
.pc-content h2, .pc-content h3, .pc-content h4 {
  font-family: var(--pc-display); font-weight: 700; color: var(--pc-ink);
  letter-spacing: 0.4px; text-transform: uppercase; line-height: 1.14;
  margin: 42px 0 14px;
}
.pc-content h2 { font-size: clamp(24px, 3vw, 32px); }
.pc-content h3 { font-size: 22px; }
.pc-content h4 { font-size: 19px; }
.pc-content a { color: var(--pc-blue); text-decoration: underline; }
.pc-content strong { color: var(--pc-ink); }
.pc-content blockquote {
  border-left: 3px solid var(--pc-blue); background: var(--pc-tint);
  padding: 18px 24px; margin-left: 0; margin-right: 0;
  font-family: var(--pc-display); font-weight: 600; font-size: 21px;
  line-height: 1.35; color: var(--pc-ink);
}
.pc-content hr { border: 0; height: 1px; background: var(--pc-line-strong); margin: 40px 0; }
.pc-content img, .pc-content video { border-radius: var(--pc-radius); }
.pc-content figcaption {
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1px;
  color: var(--pc-ink-soft); text-align: center; margin-top: 10px;
}
.pc-content code {
  font-family: var(--pc-mono); font-size: 15px; background: var(--pc-tint);
  border: 1px solid var(--pc-line); border-radius: 3px; padding: 2px 6px;
}
.pc-content pre {
  background: var(--pc-ink); color: #D7E7FF; padding: 20px;
  border-radius: var(--pc-radius); overflow-x: auto; font-size: 14px;
}
.pc-content pre code { background: none; border: 0; color: inherit; padding: 0; }
/* data tables get borders; layout tables inside HTML cards (role="presentation") must not */
.pc-content table:not([role="presentation"]) { width: 100%; border-collapse: collapse; font-size: 16px; }
.pc-content table:not([role="presentation"]) th,
.pc-content table:not([role="presentation"]) td { border: 1px solid var(--pc-line); padding: 10px 12px; text-align: left; }
.pc-content table:not([role="presentation"]) th { background: var(--pc-tint); font-family: var(--pc-mono); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.pc-content table[role="presentation"],
.pc-content table[role="presentation"] th,
.pc-content table[role="presentation"] td { border: 0; background: none; }

.pc-content .kg-width-wide { max-width: 1040px; width: 100vw; max-width: min(1040px, 100%); }
.pc-content .kg-width-full { width: 100%; }
.pc-content .kg-callout-card { border-radius: var(--pc-radius); }
.pc-content .kg-card { margin-bottom: 24px; }

.pc-gate {
  max-width: var(--pc-text); margin: 34px 0 0; text-align: center;
  background: var(--pc-tint); border: 1px solid var(--pc-line);
  border-radius: var(--pc-radius); padding: 34px 30px;
}
.pc-gate .pc-lbl { color: var(--pc-violet); }
.pc-gate p { margin: 0 0 20px; color: var(--pc-ink-soft); }

.pc-signoff { text-align: center; padding: 46px 0 8px; }
.pc-signoff-closer { font-size: 18px; color: var(--pc-ink-soft); margin: 0 0 14px; }
.pc-signoff-name {
  display: block; font-family: var(--pc-brand); font-weight: 900; font-size: 28px;
  letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(180deg, var(--pc-cyan), var(--pc-blue-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--pc-blue);
}
.pc-signoff-title {
  display: block; margin-top: 6px; font-family: var(--pc-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--pc-ink);
}

/* ── cta band ───────────────────────────────────────────────────────────── */

.pc-cta {
  position: relative; overflow: hidden; text-align: center;
  border-radius: 10px; padding: 52px 34px 50px;
  background: #081226 url('../images/fibers.svg') center / cover no-repeat;
  border: 1px solid rgba(111, 176, 255, 0.25);
  box-shadow: 0 18px 48px rgba(6, 18, 44, 0.3);
}
.pc-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 68% 95% at 50% 50%, rgba(8, 18, 38, 0.74), rgba(8, 18, 38, 0.28) 70%, rgba(8, 18, 38, 0.05)),
    linear-gradient(rgba(111, 176, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 176, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
}
.pc-cta > * { position: relative; }
.pc-cta .pc-tick { color: #8FC0FF; }
.pc-cta-h { color: #fff; margin-bottom: 12px; }
.pc-cta-h > span { color: #fff; }
.pc-cta-p { font-size: 17px; line-height: 1.5; color: #B7C8E4; max-width: 470px; margin: 0 auto 24px; }
.pc-cta .pc-form { margin: 0 auto; justify-content: center; }
.pc-cta .pc-input {
  background: rgba(10, 23, 48, 0.7); color: #fff;
  border-color: rgba(157, 184, 224, 0.45);
  backdrop-filter: blur(4px);
}
.pc-cta .pc-input::placeholder { color: #7E93B8; }
.pc-cta .pc-input:focus { border-color: #6FB0FF; outline-color: #6FB0FF; }
.pc-cta .pc-success { color: #BFE0FF; }
.pc-cta .pc-error { color: #FFD7DE; }
.pc-cta-note {
  font-family: var(--pc-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: #7E9BC9; margin: 18px 0 0;
}

/* ── footer ─────────────────────────────────────────────────────────────── */

.pc-footer {
  background: var(--pc-ink);
  border-top: 1px solid rgba(111, 176, 255, 0.18);
  padding: 44px 0 40px;
}
.pc-footer-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap; padding-bottom: 24px;
}
.pc-footer-brand { display: flex; align-items: center; gap: 12px; }
.pc-footer-brand .pc-neural { width: 62px; height: 36px; }
.pc-footer-tag {
  margin: 0; font-family: var(--pc-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: #DCE9FB;
}
.pc-footer-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.pc-footer-nav a {
  font-family: var(--pc-mono); font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: #8DA3C9; text-decoration: none;
}
.pc-footer-nav a:hover { color: #fff; }
.pc-legal {
  margin: 0; padding-top: 20px; border-top: 1px solid rgba(111, 176, 255, 0.14);
  font-family: var(--pc-mono); font-size: 11px; line-height: 1.9;
  letter-spacing: 1px; color: #6E82A8;
}
.pc-legal a { color: #8FC0FF; }

/* ── Ghost HTML card issues (email-safe markup rendered on the web) ─────── */
/* These rules only ever run on the site: email clients never load theme CSS. */
.pc-content .thp-status { display: none; }
/* the site must never draw gridlines on the card's layout tables */
.pc-content .thp-body-pad table { border-collapse: separate; }
.pc-content .thp-body-pad td,
.pc-content .thp-body-pad th { border: 0; background-image: none; }
.pc-content .thp-body-pad td.thp-opt,
.pc-content .thp-body-pad td.thp-btn-cell { border: 1px solid var(--pc-line); }
.pc-content .thp-body-pad td.thp-gap { border: 0; background: none; }
.pc-content .thp-body-pad { padding-left: 0 !important; padding-right: 0 !important; }
.pc-content .thp-body-pad > p { font-size: 18px !important; line-height: 1.75 !important; }
@media (max-width: 620px) {
  .pc-content .thp-body-pad > p { font-size: 17px !important; }
}

/* ── responsive ─────────────────────────────────────────────────────────── */

.pc-show-sm { display: none; }

@media (max-width: 1040px) {
  .pc-week { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pc-editorial { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .pc-editorial-tag { text-align: left; order: -1; }
  .pc-panel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pc-week-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pc-posts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pc-filter { grid-template-columns: 170px minmax(0, 1fr); }
  .pc-filter-tag { display: none; }
  .pc-weekgrid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .pc-hero-in, .pc-split { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .pc-hero { padding: 44px 0 56px; }
  .pc-hero-copy .pc-lead { max-width: none; }
  .pc-headwrap-row { flex-direction: column; align-items: flex-start; }
  .pc-hide-sm { display: none; }
  .pc-show-sm { display: block; margin-top: 26px; }
  .pc-filter { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .pc-filter-side { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .pc-filter-side-btm { display: none; }
  .pc-filter-stats { grid-template-columns: minmax(0, 1fr); }
  .pc-fstat { min-height: 0; gap: 26px; }
  .pc-lanes2 { grid-template-columns: minmax(0, 1fr); }
  .pc-weekgrid, .pc-weekgrid-4 { grid-template-columns: minmax(0, 1fr); }
  .pc-weekfoot { flex-direction: column; align-items: flex-start; gap: 6px; }

  .pc-burger { display: block; }
  .pc-menu {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 60;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0A1730; background-color: #0A1730;
    border-bottom: 1px solid rgba(111, 176, 255, 0.28);
    box-shadow: 0 18px 40px rgba(4, 12, 30, 0.45);
    padding: 8px 30px 22px; display: none;
  }
  .pc-menu.pc-open { display: flex; }
  .pc-navlist { flex-direction: column; align-items: stretch; gap: 0; }
  .pc-navitem a { display: block; padding: 14px 0; font-size: 13px; border-bottom: 1px solid rgba(157, 184, 224, 0.18); }
  .pc-menu .pc-btn { margin-top: 16px; }
}

@media (max-width: 620px) {
  body.pc-body { font-size: 16px; }
  .pc-wrap { padding: 0 20px; }
  .pc-sec { padding: 52px 0; }
  .pc-week, .pc-week-4, .pc-posts, .pc-lanes2, .pc-tallcards, .pc-panel-grid { grid-template-columns: minmax(0, 1fr); }
  .pc-editorial { gap: 14px; }
  .pc-editorial-tag, .pc-editorial-when { display: none; }
  .pc-statement { margin-bottom: 24px; }
  .pc-sec-head { padding: 40px 0 0; }
  .pc-sec-head + .pc-sec { padding-top: 34px; }
  .pc-sec-cta { padding: 28px 0 56px; }
  .pc-tall { min-height: 170px; }
  .pc-panel-foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pc-article { padding: 0 20px 16px; }
  .pc-article-head { padding-top: 34px; }
  .pc-article-image { margin-bottom: 20px; }
  .pc-article-image img { max-height: 300px; }
  .pc-content p, .pc-content ul, .pc-content ol { font-size: 17px; }
  .pc-content h2 { margin-top: 34px; }
  .pc-row { grid-template-columns: minmax(0, 1fr) 40px; }
  .pc-row-date { flex-direction: row; gap: 6px; grid-column: 1 / -1; padding-top: 0; }
  .pc-form { max-width: none; }
  .pc-input, .pc-form .pc-btn { flex: 1 1 100%; }
  .pc-cta { padding: 36px 22px 34px; }
  .pc-lane-tab { flex: 1; padding: 13px 12px; }
  .pc-footer-in { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 860px) {
  .pc-frame { transform: none; }
  .pc-anim .pc-frame.pc-in { transform: none; }
  .pc-hero-dark { min-height: 0; padding: 64px 0 72px; }
  .pc-callout { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pc-status-dot, .pc-neural .pc-pulse, .pc-charge-fill::after,
  .pc-frame-scan, .pc-hero .pc-pill::before,
  .pc-callout .pc-callout-dot { animation: none !important; }
  .pc-frame-scan { display: none; }
  .pc-btn, .pc-lane-tab, .pc-row, .pc-card { transition: none !important; }
  .pc-card:hover, .pc-anim .pc-card.pc-in:hover { transform: none; }
}

/* ── about page ─────────────────────────────────────────────────────────── */

.pc-panel-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.pc-promise {
  position: relative; text-align: center;
  border-radius: var(--pc-radius); padding: 48px 34px;
  background: var(--pc-tint); border: 1px solid var(--pc-line);
}
.pc-promise::before, .pc-promise::after {
  content: ''; position: absolute; width: 20px; height: 20px; border: 2px solid var(--pc-blue);
}
.pc-promise::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.pc-promise::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.pc-promise .pc-lbl { color: var(--pc-blue); }
.pc-promise-p {
  margin: 0 auto 14px; max-width: 700px;
  font-family: var(--pc-display); font-weight: 700;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.12; letter-spacing: 0.4px;
  text-transform: uppercase; color: var(--pc-ink);
}
.pc-promise-by {
  margin: 0; font-family: var(--pc-mono); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--pc-ink-soft);
}

@media (max-width: 620px) {
  .pc-panel-grid-4 { grid-template-columns: minmax(0, 1fr); }
}

/* ── signup modal ───────────────────────────────────────────────────────── */

.pc-modal { position: fixed; inset: 0; z-index: 100; }
.pc-modal[hidden] { display: none; }
.pc-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(4, 10, 24, 0.72);
  backdrop-filter: blur(3px);
}
.pc-modal-panel {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 32px); overflow: auto;
  text-align: center; padding: 46px 38px 40px;
  border-radius: var(--pc-radius);
  background: #081226 url('../images/fibers.svg') right center / cover no-repeat;
  border: 1px solid rgba(111, 176, 255, 0.25);
  box-shadow: 0 30px 80px rgba(2, 8, 20, 0.6);
}
.pc-modal-panel::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: var(--pc-radius);
  background:
    linear-gradient(105deg, rgba(8, 18, 38, 0.86) 30%, rgba(8, 18, 38, 0.55) 100%),
    linear-gradient(rgba(111, 176, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 176, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
}
.pc-modal-panel > * { position: relative; }
.pc-modal-panel::after {
  content: ''; position: absolute; top: -1px; left: -1px;
  width: 22px; height: 22px; border: 2px solid var(--pc-cyan);
  border-right: 0; border-bottom: 0;
}
.pc-modal .pc-tick { color: var(--pc-cyan); }
.pc-modal-h { color: #fff; margin-bottom: 12px; font-size: clamp(26px, 3vw, 34px); }
.pc-modal-p { font-size: 16px; line-height: 1.5; color: #B7C8E4; max-width: 400px; margin: 0 auto 22px; }
.pc-modal-form { margin: 0 auto; justify-content: center; max-width: 440px; }
.pc-modal .pc-input {
  background: rgba(10, 23, 48, 0.65); color: #fff;
  border-color: rgba(157, 184, 224, 0.45);
}
.pc-modal .pc-input::placeholder { color: #7E93B8; }
.pc-modal .pc-input:focus { border-color: var(--pc-cyan); outline-color: var(--pc-cyan); }
.pc-modal .pc-success { color: #BFE0FF; }
.pc-modal .pc-error { color: #FF9DB0; }
.pc-modal-note {
  margin: 16px 0 0; font-family: var(--pc-mono); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; color: #7E93B8;
}
.pc-modal-x {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; padding: 0; cursor: pointer;
  background: rgba(10, 23, 48, 0.5); border: 1px solid rgba(157, 184, 224, 0.35);
  border-radius: var(--pc-radius);
}
.pc-modal-x span {
  position: absolute; top: 50%; left: 50%; width: 16px; height: 2px;
  background: #C4D6F2;
}
.pc-modal-x span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.pc-modal-x span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.pc-modal-x:hover { border-color: var(--pc-cyan); }
.pc-modal-x:hover span { background: #fff; }

.pc-modal-open { overflow: hidden; }

@media (prefers-reduced-motion: no-preference) {
  .pc-modal .pc-modal-panel { animation: pc-modal-in 0.22s ease; }
  .pc-modal .pc-modal-overlay { animation: pc-fade-in 0.22s ease; }
  @keyframes pc-modal-in {
    from { opacity: 0; transform: translate(-50%, -48%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
  }
  @keyframes pc-fade-in { from { opacity: 0; } to { opacity: 1; } }
}

@media (max-width: 620px) {
  .pc-modal-panel { padding: 40px 22px 32px; }
  .pc-modal-form .pc-input, .pc-modal-form .pc-btn { flex: 1 1 100%; }
}

/* ── Primal Code email issues rendered on the web ───────────────────────── */
/* The letters carry their own inline fonts and colors from the email design.
   On the site, map them onto the theme tokens. Email clients never see this. */
.pc-content [style*="Rajdhani"] { font-family: var(--pc-display) !important; }
.pc-content [style*="Space Grotesk"] { font-family: var(--pc-body) !important; }
.pc-content [style*="Space Mono"] { font-family: var(--pc-mono) !important; }
.pc-content [style*="#7A2FFF"], .pc-content [style*="#7a2fff"] { color: var(--pc-blue) !important; }
.pc-content [style*="#00CFFF"], .pc-content [style*="#00cfff"] { color: var(--pc-cyan) !important; }
/* The in-letter hero repeats the post title the theme already shows.
   Add class="thp-hero" to that table in the issue code to hide it on the web. */
.pc-content .thp-hero { display: none; }
/* The letter's outer paper rectangle dissolves into the page background.
   Inner cards keep their own white and tinted fills. */
.pc-content table[bgcolor="#F7FAFF"] { background: transparent !important; background-color: transparent !important; }
.pc-content td.thp-body-pad { background: transparent !important; }

/* ── about: the optional editor-text section must not create phantom gaps ── */
.pc-about-extra { padding: 34px 0 0; }
.pc-about-content > p:empty { display: none; margin: 0; }
/* Ghost keeps an empty paragraph after "deleting" the body; if nothing visible
   remains in the section, remove the section entirely. */
.pc-about-extra:not(:has(.pc-about-content > :not(:empty))) { display: none !important; }
.pc-about-lead { padding-top: 26px; }
@media (max-width: 620px) {
  .pc-about-lead { padding-top: 20px; }
}

/* ── horizontal overflow guards ─────────────────────────────────────────── */
/* iOS Safari can ignore overflow on html alone; clip the body as well. */
body.pc-body { overflow-x: clip; }
@supports not (overflow: clip) {
  body.pc-body { overflow-x: hidden; }
}
/* grid and flex children must always be allowed to shrink */
.pc-wrap, .pc-editorial, .pc-editorial-main, .pc-editorial-rail,
.pc-panel, .pc-panel-grid, .pc-fmt, .pc-tall, .pc-promise { min-width: 0; }
.pc-editorial-when, .pc-editorial-tag, .pc-panel-foot span { overflow-wrap: anywhere; }
.pc-promise { overflow: hidden; }
.pc-promise::before { top: 0; left: 0; }
.pc-promise::after { bottom: 0; right: 0; }
