
.pai-scope{
  /* Brand — PAI Legal gold (single-product accent, replaces master Signal-Blue) */
  --primary: #c9a24b;
  --primary-end: #e8c87a;
  --primary-hover: #d8ae4d;
  --primary-active: #b0863a;
  --primary-light: #e2bd63;
  --primary-subtle: rgba(201, 162, 75, 0.14);
  --primary-ring: rgba(201, 162, 75, 0.38);

  /* Gold ramp from the PAI Legal logo gradient (#D8AE4D → #C3A35A → #5D4E2B) */
  --gold-bright: #e8c87a;
  --gold: #d8ae4d;
  --gold-mid: #c3a35a;
  --gold-deep: #5d4e2b;
  --legal-accent: #d8ae4d;
  --legal-glow: rgba(216, 174, 77, 0.42);
  --legal-glow-soft: rgba(216, 174, 77, 0.22);

  /* Backgrounds */
  --bg-deep: #000000;
  --bg-base: #18181b;
  --bg-surface: #1f1f22;
  --bg-elevated: #27272a;
  --bg-hover: #2a2a2e;
  --bg-interactive: #3f3f47;

  /* Borders */
  --border: #27272a;
  --border-strong: #3f3f47;
  --border-input: #4a4a51;
  --border-accent: rgba(201, 162, 75, 0.32);

  /* Text */
  --text-heading: #fafafa;
  --text-primary: #e5e5e5;
  --text-secondary: #d4d4d8;
  --text-tertiary: #a3a3a3;
  --text-quaternary: #71717a;
  --text-muted: #52525c;
  --text-on-primary: #1c1606;

  /* Status accents (used sparingly) */
  --success-fg: #4ade80;
  --warn-fg: #f4b740;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 880px;

  /* High-end motion easings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

.pai-scope, .pai-scope *, .pai-scope *::before, .pai-scope *::after{ box-sizing: border-box; }
.pai-scope{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
.pai-scope, .pai-scope{ margin: 0; padding: 0; }
.pai-scope{
  background: var(--bg-deep);
  color: var(--text-secondary);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.008em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.pai-scope h1, .pai-scope h2, .pai-scope h3, .pai-scope h4, .pai-scope h5{
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-heading);
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-feature-settings: 'ss01' on, 'ss02' on, 'cv11' on;
}
.pai-scope p{ margin: 0; }
.pai-scope ul, .pai-scope ol{ margin: 0; padding: 0; list-style: none; }
.pai-scope a{ color: inherit; text-decoration: none; }
.pai-scope button{ font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; padding: 0; }
.pai-scope img, .pai-scope svg{ display: block; max-width: 100%; }
.pai-scope ::selection{ background: rgba(216, 174, 77, 0.32); color: #fff; }
@media (prefers-reduced-motion: reduce) { .pai-scope{ scroll-behavior: auto; } }

.pai-scope .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 8px 0 22px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.012em;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.4s var(--ease-spring),
    border-color 0.4s var(--ease-spring),
    color 0.3s var(--ease-spring),
    transform 0.3s var(--ease-spring),
    box-shadow 0.4s var(--ease-spring);
}
.pai-scope .btn:active{ transform: scale(0.98); }
.pai-scope .btn svg{ width: 14px; height: 14px; }
.pai-scope .btn .btn-arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  transition: transform 0.5s var(--ease-spring), background 0.3s var(--ease-spring);
}
.pai-scope .btn:hover .btn-arrow{ transform: translate(2px, -1px); }

.pai-scope .btn-primary{
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 58%, var(--gold-mid));
  color: var(--text-on-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(92, 78, 43, 0.30),
    0 14px 34px -16px var(--primary-ring);
}
.pai-scope .btn-primary:hover{ filter: brightness(1.04); box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 18px 40px -16px var(--primary-ring); }
.pai-scope .btn-primary .btn-arrow{ background: rgba(28, 22, 6, 0.16); }
.pai-scope .btn-primary:hover .btn-arrow{ background: rgba(28, 22, 6, 0.26); }

.pai-scope .btn-ghost{
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-heading);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pai-scope .btn-ghost:hover{ background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.18); }
.pai-scope .btn-ghost .btn-arrow{ background: rgba(255, 255, 255, 0.06); }
.pai-scope .btn-ghost:hover .btn-arrow{ background: rgba(255, 255, 255, 0.12); }

.pai-scope .btn-lg{ height: 54px; padding: 0 8px 0 26px; font-size: 15px; }
.pai-scope .btn-lg .btn-arrow{ width: 36px; height: 36px; }
.pai-scope .btn-lg svg{ width: 15px; height: 15px; }
.pai-scope .btn-sm{ height: 38px; padding: 0 6px 0 16px; font-size: 13px; }
.pai-scope .btn-sm .btn-arrow{ width: 26px; height: 26px; }
.pai-scope .btn.btn-flat{ padding: 0 22px; }
.pai-scope .btn-sm.btn-flat{ padding: 0 16px; }
.pai-scope .btn:focus-visible{ outline: none; box-shadow: 0 0 0 4px var(--primary-ring); }

.pai-scope .container{ width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.pai-scope .section{ position: relative; padding: clamp(96px, 12vw, 156px) 0; border-bottom: 1px solid var(--border); }
.pai-scope .section[id]{ scroll-margin-top: 96px; }
.pai-scope .section-head{ max-width: 720px; margin: 0 0 clamp(48px, 6vw, 76px); }
.pai-scope .section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

.pai-scope .eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary-light);
}
.pai-scope .eyebrow::before{ content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px 1px currentColor; }
.pai-scope .section-h2{
  font-size: clamp(34px, 4.4vw, 56px); font-weight: 600; letter-spacing: -0.032em;
  line-height: 1.04; color: var(--text-heading); margin: 18px 0 0; text-wrap: balance;
}
.pai-scope .section-sub{ margin: 22px 0 0; font-size: 17px; line-height: 1.6; color: var(--text-tertiary); max-width: 60ch; }
.pai-scope .section-head.center .section-sub{ margin-left: auto; margin-right: auto; }

.pai-scope .reveal{
  transform: translateY(34px); opacity: 0; filter: blur(8px);
  transition: transform 0.9s var(--ease-out-expo), opacity 0.9s var(--ease-out-expo), filter 0.9s var(--ease-out-expo);
  will-change: transform, opacity, filter;
}
.pai-scope .reveal.in{ transform: none; opacity: 1; filter: blur(0); }
.pai-scope .reveal[data-d="1"]{ transition-delay: 0.08s; }
.pai-scope .reveal[data-d="2"]{ transition-delay: 0.16s; }
.pai-scope .reveal[data-d="3"]{ transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .pai-scope .reveal{ transform: none; opacity: 1; filter: none; transition: none; } }

.pai-scope .nav{
  position: fixed; top: 22px; left: 50%; transform: translateX(-50%); z-index: 50;
  background: rgba(10, 10, 12, 0.62);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 999px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  width: min(1180px, calc(100% - 32px)); max-width: calc(100% - 32px);
  transition: box-shadow 0.4s var(--ease-spring), background 0.4s var(--ease-spring);
}
.pai-scope .nav.scrolled{ background: rgba(8, 8, 10, 0.78); box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.07); }
.pai-scope .nav-inner{ display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 60px; padding: 0 8px 0 18px; gap: 12px; }
.pai-scope .nav-left{ display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.pai-scope .nav-inner > .nav-links{ justify-self: center; }
.pai-scope .nav-inner > .nav-right{ justify-self: end; }
.pai-scope .brand-lockup{ height: 26px; width: auto; display: block; }
.pai-scope .nav-links{ display: flex; align-items: center; gap: 2px; }
.pai-scope .nav-link{ padding: 8px 14px; font-size: 13.5px; font-weight: 500; letter-spacing: -0.012em; color: var(--text-tertiary); border-radius: var(--radius-full); transition: color 0.3s var(--ease-spring), background 0.3s var(--ease-spring); }
.pai-scope .nav-link:hover{ color: var(--text-heading); background: rgba(255, 255, 255, 0.05); }
.pai-scope .nav-right{ display: flex; align-items: center; gap: 6px; }
.pai-scope .nav-signin{ padding: 8px 14px; font-size: 13.5px; font-weight: 500; color: var(--text-secondary); border-radius: var(--radius-full); transition: color 0.3s var(--ease-spring), background 0.3s var(--ease-spring); }
.pai-scope .nav-signin:hover{ color: var(--text-heading); background: rgba(255, 255, 255, 0.05); }

.pai-scope .switcher{ position: relative; }
.pai-scope .switcher-btn{
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border-radius: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary); cursor: pointer;
  transition: background 0.3s var(--ease-spring), border-color 0.3s var(--ease-spring), color 0.3s var(--ease-spring);
}
.pai-scope .switcher-btn svg{ width: 18px; height: 18px; }
.pai-scope .switcher-btn:hover{ background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16); color: var(--text-heading); }
.pai-scope .switcher-btn[aria-expanded="true"]{ background: var(--primary-subtle); border-color: var(--border-accent); color: var(--primary-light); }
.pai-scope .switcher-menu{
  position: absolute; top: calc(100% + 12px); left: -8px; width: 348px; padding: 8px;
  background: rgba(9, 9, 11, 0.9); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px;
  box-shadow: 0 32px 80px -28px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.98); transform-origin: top left;
  transition: opacity 0.32s var(--ease-spring), visibility 0.32s var(--ease-spring), transform 0.32s var(--ease-spring);
  z-index: 51;
}
.pai-scope .switcher.is-open .switcher-menu{ opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.pai-scope .psm-head{ padding: 10px 12px 12px; font-family: 'Geist Mono', monospace; font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-quaternary); }
.pai-scope .psm-item{ display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; color: var(--text-secondary); transition: background 0.25s var(--ease-spring), color 0.25s var(--ease-spring); }
.pai-scope .psm-item:hover{ background: rgba(255, 255, 255, 0.05); color: var(--text-heading); }
.pai-scope .psm-item-current{ background: var(--primary-subtle); border: 1px solid var(--border-accent); }
.pai-scope .psm-item-current:hover{ background: rgba(216, 174, 77, 0.18); }
.pai-scope .psm-mark{ width: 36px; height: 36px; border-radius: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06); display: grid; place-items: center; }
.pai-scope .psm-mark svg{ width: 22px; height: 22px; }
.pai-scope .psm-text{ display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pai-scope .psm-name{ font-size: 14px; font-weight: 600; color: var(--text-heading); letter-spacing: -0.01em; }
.pai-scope .psm-tag{ font-size: 12px; color: var(--text-tertiary); line-height: 1.35; }
.pai-scope .psm-chev{ color: var(--text-quaternary); display: inline-flex; transition: transform 0.3s var(--ease-spring), color 0.3s var(--ease-spring); }
.pai-scope .psm-chev svg{ width: 16px; height: 16px; }
.pai-scope .psm-item:hover .psm-chev{ color: var(--text-secondary); transform: translateX(2px); }

@media (max-width: 860px) {
  .pai-scope .nav{ top: 14px; }
  .pai-scope .nav-inner{ grid-template-columns: 1fr auto; padding: 0 8px 0 14px; height: 54px; }
  .pai-scope .nav-links, .pai-scope .nav-signin{ display: none; }
}
@media (max-width: 540px) { .pai-scope .switcher-menu{ width: calc(100vw - 32px); left: 0; } }

.pai-scope .hero{ position: relative; padding: 150px 0 96px; overflow: hidden; }
.pai-scope .hero::before{
  content: ""; position: absolute; inset: -12% -5% auto -5%; height: 760px;
  background:
    radial-gradient(40% 54% at 20% 14%, var(--legal-glow), transparent 60%),
    radial-gradient(38% 50% at 82% 12%, var(--legal-glow-soft), transparent 62%),
    radial-gradient(46% 50% at 52% 0%, rgba(125, 110, 60, 0.22), transparent 66%);
  opacity: 0.6; pointer-events: none; z-index: 1;
}
.pai-scope .hero::after{
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(70% 60% at 50% 28%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 28%, #000 25%, transparent 78%);
}
.pai-scope .hero-head{
  position: relative; z-index: 3; display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 1fr);
  align-items: center; gap: clamp(32px, 5vw, 76px); max-width: 1180px; margin: 0 auto;
}
.pai-scope .hero-text-col{ min-width: 0; }
.pai-scope .hero-mark-col{ display: flex; justify-content: center; align-items: center; min-width: 0; }
.pai-scope .hero-tagline{
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(24, 22, 16, 0.55); border: 1px solid rgba(216, 174, 77, 0.22);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--text-secondary); border-radius: var(--radius-full); padding: 7px 16px 7px 9px; font-size: 12.5px; font-weight: 500;
}
.pai-scope .hero-tagline .t-pill{
  display: inline-flex; align-items: center; height: 22px; padding: 0 10px;
  background: var(--primary-subtle); color: var(--primary-light); border-radius: var(--radius-full);
  font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.pai-scope .hero-title{
  margin-top: 20px; font-size: clamp(38px, 4.7vw, 64px); font-weight: 600; line-height: 1.02;
  letter-spacing: -0.034em; color: var(--text-heading); text-wrap: balance;
}
.pai-scope .hero-title .accent{
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 55%, var(--gold-mid));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pai-scope .hero-sub{ margin: 20px 0 0; font-size: 17.5px; line-height: 1.58; color: var(--text-tertiary); max-width: 52ch; }
.pai-scope .hero-sub strong{ color: var(--text-secondary); font-weight: 600; }
.pai-scope .hero-ctas{ margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.pai-scope .hero-trust{ margin-top: 22px; display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-quaternary); }
.pai-scope .hero-trust svg{ width: 15px; height: 15px; color: var(--primary-light); flex-shrink: 0; }

.pai-scope .hero-mark{
  position: relative; width: clamp(250px, 31vw, 410px); aspect-ratio: 1; display: grid; place-items: center;
  perspective: 1000px; animation: corefloat 6s ease-in-out infinite;
}
.pai-scope .hero-mark::before{
  content: ""; position: absolute; inset: 8%; border-radius: 50%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, var(--legal-glow-soft), transparent 70%);
  filter: blur(18px); opacity: 0.7;
}
.pai-scope .hero-video{
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block;
  transform-origin: center; transition: transform 0.18s ease-out; will-change: transform;
  filter: drop-shadow(0 18px 44px rgba(216, 174, 77, 0.24));
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 50%, rgba(0,0,0,0.5) 70%, transparent 85%);
          mask-image: radial-gradient(circle at 50% 50%, #000 50%, rgba(0,0,0,0.5) 70%, transparent 85%);
}
@keyframes corefloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .pai-scope .hero-mark{ animation: none; } .pai-scope .hero-video{ transform: none !important; } }

@media (max-width: 980px) {
  .pai-scope .hero{ padding: 128px 0 76px; }
  .pai-scope .hero-head{ grid-template-columns: 1fr; gap: 28px; }
  .pai-scope .hero-text-col{ text-align: center; }
  .pai-scope .hero-mark-col{ order: -1; }
  .pai-scope .hero-sub{ margin-left: auto; margin-right: auto; }
  .pai-scope .hero-ctas, .pai-scope .hero-trust{ justify-content: center; }
  .pai-scope .hero-tagline{ margin: 0 auto; }
}

.pai-scope .cap-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pai-scope .cap-card{
  position: relative; overflow: hidden; padding: clamp(26px, 2.5vw, 34px); border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.007));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.022), 0 0 0 5px rgba(255, 255, 255, 0.012), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 56px -32px rgba(8, 8, 8, 0.7);
  transition: transform 0.7s var(--ease-out-expo), border-color 0.4s var(--ease-spring), background 0.4s var(--ease-spring);
}
.pai-scope .cap-card::after{
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  background: radial-gradient(60% 60% at var(--tx, 100%) var(--ty, 0%), var(--legal-glow-soft), transparent 72%);
  opacity: 0.7; transition: opacity 0.4s var(--ease-spring);
}
.pai-scope .cap-card > *{ position: relative; z-index: 1; }
.pai-scope .cap-card:hover{ transform: translateY(-4px); border-color: var(--border-accent); background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)); }
.pai-scope .cap-card:hover::after{ opacity: 1.1; }
.pai-scope .cap-card:nth-child(2n){ --tx: 0%; }
.pai-scope .cap-card:nth-child(3n){ --ty: 100%; }
.pai-scope .cap-ic{
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(216, 174, 77, 0.12); color: var(--gold-bright); border: 1px solid rgba(216, 174, 77, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.pai-scope .cap-ic svg{ width: 24px; height: 24px; }
.pai-scope .cap-num{ position: absolute; top: clamp(26px, 2.5vw, 34px); right: clamp(26px, 2.5vw, 34px); font-family: 'Geist Mono', monospace; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: var(--text-muted); }
.pai-scope .cap-card h3{ font-size: 20px; font-weight: 600; letter-spacing: -0.022em; color: var(--text-heading); }
.pai-scope .cap-card p{ margin-top: 10px; font-size: 14.5px; line-height: 1.55; color: var(--text-tertiary); max-width: 38ch; }
@media (max-width: 900px) { .pai-scope .cap-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pai-scope .cap-grid{ grid-template-columns: 1fr; } }

.pai-scope .feat-rows{ display: flex; flex-direction: column; gap: clamp(40px, 6vw, 72px); }
.pai-scope .feat-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pai-scope .feat-row.reverse .feat-text{ order: 2; }
.pai-scope .feat-row.reverse .feat-visual{ order: 1; }
.pai-scope .feat-eyebrow{ display: inline-flex; align-items: center; gap: 12px; font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-light); }
.pai-scope .feat-eyebrow .fe-ic{ width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--bg-elevated); color: var(--gold-bright); }
.pai-scope .feat-eyebrow .fe-ic svg{ width: 18px; height: 18px; }
.pai-scope .feat-text h3{ margin-top: 20px; font-size: clamp(25px, 2.9vw, 34px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.07; color: var(--text-heading); }
.pai-scope .feat-text > p{ margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--text-tertiary); max-width: 48ch; }
.pai-scope .feat-points{ margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.pai-scope .feat-points li{ display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--text-secondary); }
.pai-scope .feat-points li svg{ width: 18px; height: 18px; color: var(--gold-bright); flex-shrink: 0; margin-top: 1px; }

.pai-scope .feat-visual{ position: relative; }
.pai-scope .fv-frame{
  position: relative; display: flex; flex-direction: column; aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 26px; overflow: hidden; background: var(--bg-surface);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.022), 0 0 0 6px rgba(255, 255, 255, 0.011), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 40px 80px -42px rgba(0, 0, 0, 0.85), 0 0 70px -40px var(--legal-glow);
}
.pai-scope .fv-bar{ display: flex; align-items: center; gap: 6px; height: 38px; padding: 0 14px; background: var(--bg-base); border-bottom: 1px solid var(--border); flex-shrink: 0; }
.pai-scope .fv-dot{ width: 9px; height: 9px; border-radius: 50%; }
.pai-scope .fv-dot.r{ background: #f87171; } .pai-scope .fv-dot.y{ background: #fbbf24; } .pai-scope .fv-dot.g{ background: #4ade80; }
.pai-scope .fv-title{ margin-left: 8px; font-family: 'Geist Mono', monospace; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-quaternary); }
.pai-scope .fv-tag{ margin-left: auto; font-size: 10px; font-weight: 700; color: var(--gold-bright); border: 1px solid rgba(216,174,77,0.4); border-radius: 6px; padding: 2px 8px; letter-spacing: 0.04em; }

.pai-scope .fv-research{ flex: 1; display: flex; flex-direction: column; gap: 11px; padding: 16px; overflow: hidden; }
.pai-scope .fv-bubble{ max-width: 84%; font-size: 12.5px; line-height: 1.45; padding: 10px 13px; border-radius: 14px; }
.pai-scope .fv-bubble.q{ align-self: flex-end; background: linear-gradient(135deg, var(--gold), var(--gold-mid)); color: #1c1606; font-weight: 500; border-bottom-right-radius: 4px; box-shadow: 0 6px 16px -8px var(--legal-glow); }
.pai-scope .fv-bubble.a{ align-self: flex-start; background: var(--bg-elevated); color: var(--text-secondary); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.pai-scope .fv-cites{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.pai-scope .fv-cite{ display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; background: rgba(216, 174, 77, 0.1); border: 1px solid rgba(216, 174, 77, 0.24); border-radius: 999px; font-family: 'Geist Mono', monospace; font-size: 9.5px; color: var(--gold-bright); letter-spacing: 0.02em; }
.pai-scope .fv-cite svg{ width: 10px; height: 10px; }
.pai-scope .fv-input{ display: flex; align-items: center; justify-content: space-between; margin-top: auto; height: 38px; padding: 0 6px 0 14px; background: var(--bg-base); border: 1px solid var(--border); border-radius: var(--radius-full); }
.pai-scope .fv-input span{ font-size: 11.5px; color: var(--text-quaternary); }
.pai-scope .fv-send{ width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: #1c1606; display: grid; place-items: center; }
.pai-scope .fv-send svg{ width: 13px; height: 13px; }

.pai-scope .fv-contract{ flex: 1; display: grid; grid-template-columns: 1.25fr 1fr; min-height: 0; }
.pai-scope .fv-doc{ padding: 16px; display: flex; flex-direction: column; gap: 8px; border-right: 1px solid var(--border); overflow: hidden; }
.pai-scope .fv-doc-h{ font-family: 'Geist Mono', monospace; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-quaternary); }
.pai-scope .fv-doc-title{ height: 12px; width: 64%; border-radius: 4px; background: rgba(255, 255, 255, 0.12); margin-bottom: 4px; }
.pai-scope .fv-line{ height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.05); }
.pai-scope .fv-line.w9{ width: 92%; } .pai-scope .fv-line.w8{ width: 82%; } .pai-scope .fv-line.w7{ width: 72%; } .pai-scope .fv-line.w6{ width: 60%; }
.pai-scope .fv-line.flag{ background: rgba(244, 183, 64, 0.18); box-shadow: 0 0 0 1px rgba(244, 183, 64, 0.4); position: relative; }
.pai-scope .fv-panel{ padding: 14px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-base); }
.pai-scope .fv-panel-h{ display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; color: var(--text-heading); }
.pai-scope .fv-panel-h .dotg{ width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px 1px var(--legal-glow); }
.pai-scope .fv-issue{ display: flex; gap: 9px; align-items: flex-start; padding: 9px 10px; border-radius: 10px; background: var(--bg-surface); border: 1px solid var(--border); }
.pai-scope .fv-issue .ii{ width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; }
.pai-scope .fv-issue.warn .ii{ background: rgba(244, 183, 64, 0.16); color: var(--warn-fg); }
.pai-scope .fv-issue.ok .ii{ background: rgba(74, 222, 128, 0.14); color: var(--success-fg); }
.pai-scope .fv-issue .ii svg{ width: 11px; height: 11px; }
.pai-scope .fv-issue-tx{ display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pai-scope .fv-issue-tx b{ font-size: 11px; font-weight: 600; color: var(--text-heading); }
.pai-scope .fv-issue-tx span{ font-size: 10px; color: var(--text-quaternary); line-height: 1.4; }

.pai-scope .fv-draft{ flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 18px; overflow: hidden; }
.pai-scope .fv-draft-top{ display: flex; align-items: center; gap: 10px; }
.pai-scope .fv-draft-ic{ width: 30px; height: 30px; border-radius: 8px; background: rgba(216,174,77,0.14); color: var(--gold-bright); display: grid; place-items: center; border: 1px solid rgba(216,174,77,0.28); }
.pai-scope .fv-draft-ic svg{ width: 16px; height: 16px; }
.pai-scope .fv-draft-meta{ display: flex; flex-direction: column; gap: 2px; }
.pai-scope .fv-draft-name{ font-size: 12.5px; font-weight: 600; color: var(--text-heading); }
.pai-scope .fv-draft-sub{ font-family: 'Geist Mono', monospace; font-size: 9.5px; color: var(--text-quaternary); letter-spacing: 0.04em; }
.pai-scope .fv-prog{ margin-left: auto; font-size: 10px; font-weight: 700; color: var(--gold-bright); }
.pai-scope .fv-clauses{ display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
.pai-scope .fv-clause{ display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; background: var(--bg-base); border: 1px solid var(--border); font-size: 11.5px; color: var(--text-secondary); }
.pai-scope .fv-clause .ck{ width: 16px; height: 16px; border-radius: 5px; background: rgba(74,222,128,0.14); color: var(--success-fg); display: grid; place-items: center; flex-shrink: 0; }
.pai-scope .fv-clause .ck svg{ width: 10px; height: 10px; }
.pai-scope .fv-clause.pending{ color: var(--text-quaternary); }
.pai-scope .fv-clause.pending .ck{ background: var(--bg-elevated); color: var(--text-muted); }
.pai-scope .fv-clause .num{ margin-left: auto; font-family: 'Geist Mono', monospace; font-size: 9.5px; color: var(--text-muted); }
.pai-scope .fv-clause .caret{ display: inline-block; width: 1.5px; height: 12px; background: var(--gold); margin-left: 6px; animation: blink 0.9s steps(1) infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pai-scope .fv-clause .caret{ animation: none; } }

@media (max-width: 900px) {
  .pai-scope .feat-row, .pai-scope .feat-row.reverse{ grid-template-columns: 1fr; gap: 28px; }
  .pai-scope .feat-row .feat-text{ order: 2; }
  .pai-scope .feat-row .feat-visual{ order: 1; }
}

.pai-scope .platform-grid{ display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(214px, auto); gap: 14px; }
.pai-scope .pcard{
  position: relative; overflow: hidden; padding: clamp(28px, 2.6vw, 36px); border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.022), 0 0 0 5px rgba(255, 255, 255, 0.012), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 56px -30px rgba(8, 8, 8, 0.7);
  transition: transform 0.7s var(--ease-out-expo), border-color 0.4s var(--ease-spring), background 0.4s var(--ease-spring);
}
.pai-scope .pcard::after{
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  background: radial-gradient(58% 58% at var(--tx, 100%) var(--ty, 0%), var(--tint, var(--legal-glow-soft)), transparent 72%);
  opacity: 0.85; transition: opacity 0.4s var(--ease-spring);
}
.pai-scope .pcard > *{ position: relative; z-index: 1; }
.pai-scope .pcard:hover{ transform: translateY(-3px); border-color: var(--border-accent); background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)); }
.pai-scope .pcard:hover::after{ opacity: 1.1; }
.pai-scope .platform-grid .pcard:nth-child(1){ --tx: 100%; --ty: 0%; --tint: rgba(232, 200, 122, 0.26); }
.pai-scope .platform-grid .pcard:nth-child(2){ --tx: 0%;   --ty: 0%; --tint: rgba(216, 174, 77, 0.22); }
.pai-scope .platform-grid .pcard:nth-child(3){ --tx: 100%; --ty: 100%; --tint: rgba(195, 163, 90, 0.22); }
.pai-scope .platform-grid .pcard:nth-child(4){ --tx: 0%;   --ty: 100%; --tint: rgba(232, 200, 122, 0.22); }
.pai-scope .platform-grid .pcard:nth-child(5){ --tx: 100%; --ty: 50%; --tint: rgba(216, 174, 77, 0.2); }
.pai-scope .platform-grid .pcard:nth-child(6){ --tx: 0%;   --ty: 50%; --tint: rgba(195, 163, 90, 0.24); }

.pai-scope .pcard.gold{
  background: linear-gradient(152deg, #b89348 0%, #9b7937 52%, #7d6029 100%);
  border-color: rgba(60, 44, 14, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 220, 0.28),
    inset 0 -1px 0 rgba(40, 30, 10, 0.5),
    0 0 0 1px rgba(130, 100, 44, 0.22),
    0 32px 60px -30px rgba(120, 92, 40, 0.4),
    0 30px 56px -32px rgba(6, 6, 6, 0.65);
}
.pai-scope .pcard.gold::after{ background: radial-gradient(78% 56% at 50% -8%, rgba(255, 248, 224, 0.2), transparent 62%); opacity: 0.55; }
.pai-scope .pcard.gold:hover{ transform: translateY(-3px); border-color: rgba(60, 44, 14, 0.75); background: linear-gradient(152deg, #c09a4d 0%, #a3803c 52%, #84662c 100%); }
.pai-scope .pcard.gold:hover::after{ opacity: 0.72; }
.pai-scope .pcard.gold .p-icon{ background: rgba(255, 250, 232, 0.16); border-color: rgba(255, 250, 232, 0.3); color: #14100a; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36); }
.pai-scope .pcard.gold h3{ color: #181206; }
.pai-scope .pcard.gold p{ color: rgba(20, 14, 2, 0.84); }

.pai-scope .p-icon{ width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; background: rgba(216, 174, 77, 0.12); color: var(--gold-bright); border: 1px solid rgba(216, 174, 77, 0.28); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07); }
.pai-scope .p-icon svg{ width: 22px; height: 22px; }
.pai-scope .pcard h3{ font-size: 19px; font-weight: 600; letter-spacing: -0.022em; color: var(--text-heading); }
.pai-scope .pcard p{ margin-top: 10px; font-size: 14.5px; line-height: 1.55; color: var(--text-tertiary); max-width: 46ch; }
@media (max-width: 900px) {
  .pai-scope .platform-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
}
@media (max-width: 600px) { .pai-scope .platform-grid{ grid-template-columns: 1fr; } }

.pai-scope .audience-marquee{
  position: relative; margin-top: clamp(40px, 5vw, 64px); overflow: hidden;
}
.pai-scope .audience-marquee::before, .pai-scope .audience-marquee::after{
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(48px, 9vw, 130px); z-index: 2; pointer-events: none;
}
.pai-scope .audience-marquee::before{ left: 0; background: linear-gradient(90deg, var(--bg-deep), rgba(0, 0, 0, 0)); }
.pai-scope .audience-marquee::after{ right: 0; background: linear-gradient(270deg, var(--bg-deep), rgba(0, 0, 0, 0)); }
.pai-scope .audience-track{ display: flex; width: max-content; position: relative; z-index: 1; animation: audMarquee 52s linear infinite; }
.pai-scope .audience-marquee:hover .audience-track{ animation-play-state: paused; }
@keyframes audMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.pai-scope .aud-card{
  position: relative; flex: 0 0 auto;
  width: clamp(268px, 23vw, 326px); height: clamp(386px, 40vw, 450px);
  margin-right: 18px; border-radius: 28px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 36px 64px -34px rgba(0, 0, 0, 0.85);
  transition: transform 0.7s var(--ease-out-expo), box-shadow 0.6s var(--ease-spring), border-color 0.6s var(--ease-spring);
}
.pai-scope .aud-card:hover{
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 0 0 1px rgba(216, 174, 77, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 46px 84px -34px rgba(0, 0, 0, 0.9), 0 0 64px -30px var(--legal-glow);
}
.pai-scope .aud-media{ position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--bg-surface); border-radius: 28px; clip-path: inset(0 round 28px); }
.pai-scope .aud-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); transition: transform 1.1s var(--ease-out-expo); }
.pai-scope .aud-card:hover .aud-media img{ transform: scale(1.13); }
.pai-scope .aud-scrim{
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 5, 2, 0.16) 0%, rgba(6, 5, 2, 0) 26%, rgba(8, 6, 3, 0.5) 56%, rgba(5, 4, 2, 0.93) 100%);
  transition: background 0.6s var(--ease-spring);
}
.pai-scope .aud-card:hover .aud-scrim{ background: linear-gradient(180deg, rgba(30, 20, 5, 0.2) 0%, rgba(30, 20, 5, 0.05) 26%, rgba(46, 32, 9, 0.52) 56%, rgba(7, 5, 2, 0.95) 100%); }
.pai-scope .aud-body{ position: relative; z-index: 2; padding: 24px; display: flex; flex-direction: column; gap: 9px; }
.pai-scope .aud-ic{
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 4px;
  background: rgba(216, 174, 77, 0.18); color: var(--gold-bright); border: 1px solid rgba(216, 174, 77, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 6px 18px -8px rgba(0, 0, 0, 0.6);
}
.pai-scope .aud-ic svg{ width: 22px; height: 22px; }
.pai-scope .aud-card h4{ font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.pai-scope .aud-card p{ font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.8); max-width: 31ch; }
@media (max-width: 720px) {
  .pai-scope .aud-card{ width: clamp(244px, 74vw, 300px); height: clamp(360px, 104vw, 420px); margin-right: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .pai-scope .audience-track{ animation: none; }
  .pai-scope .audience-marquee{ overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

.pai-scope .trust-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 48px; }
.pai-scope .trust-item h3{ display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--text-heading); padding-bottom: 14px; border-bottom: 1px solid var(--border-strong); margin-bottom: 16px; }
.pai-scope .trust-item h3 svg{ width: 18px; height: 18px; color: var(--gold-bright); flex-shrink: 0; }
.pai-scope .trust-item p{ font-size: 14px; line-height: 1.6; color: var(--text-tertiary); }
.pai-scope .trust-disclaimer{
  margin-top: 52px; padding: 20px 24px; border-radius: 16px; background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start;
  font-size: 12.5px; line-height: 1.6; color: var(--text-quaternary); max-width: 860px;
}
.pai-scope .trust-disclaimer svg{ width: 18px; height: 18px; color: var(--text-tertiary); flex-shrink: 0; margin-top: 1px; }
.pai-scope .trust-disclaimer b{ color: var(--text-secondary); font-weight: 600; }
@media (max-width: 880px) { .pai-scope .trust-grid{ grid-template-columns: 1fr; gap: 36px; } }

.pai-scope .cta{ position: relative; overflow: hidden; padding: clamp(116px, 14vw, 176px) 0; text-align: center; border-bottom: 1px solid var(--border); }
.pai-scope .cta::before{
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background:
    radial-gradient(44% 66% at 20% 100%, var(--legal-glow), transparent 64%),
    radial-gradient(42% 60% at 82% 0%, var(--legal-glow-soft), transparent 62%),
    radial-gradient(40% 54% at 52% 56%, rgba(125, 110, 60, 0.2), transparent 66%);
}
.pai-scope .cta-inner{
  position: relative; z-index: 1; max-width: 900px; margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) clamp(32px, 5vw, 72px); border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.025), 0 0 0 6px rgba(255, 255, 255, 0.012), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 40px 80px -32px rgba(8, 8, 8, 0.75);
}
.pai-scope .cta-mark{ display: block; width: 66px; height: 66px; margin: 0 auto 26px; filter: drop-shadow(0 10px 26px rgba(216,174,77,0.35)); }
.pai-scope .cta-mark svg{ width: 100%; height: 100%; display: block; }
.pai-scope .cta h2{ font-size: clamp(38px, 5vw, 62px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; color: var(--text-heading); }
.pai-scope .cta p{ margin: 22px auto 0; font-size: 17px; line-height: 1.6; color: var(--text-tertiary); max-width: 52ch; }
.pai-scope .cta-actions{ margin-top: 38px; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }

.pai-scope .footer{ background: var(--bg-deep); }
.pai-scope .footer-inner{ max-width: var(--maxw); margin: 0 auto; padding: 72px 32px 36px; display: grid; grid-template-columns: 1.5fr 1.6fr 1fr; gap: 48px; }
.pai-scope .footer-brand .footer-lockup{ height: 30px; width: auto; margin-bottom: 18px; }
.pai-scope .footer-tag{ font-size: 14px; line-height: 1.55; color: var(--text-tertiary); max-width: 300px; }
.pai-scope .footer-email{ font-size: 14px; color: var(--text-secondary); transition: color 0.2s ease; }
.pai-scope .footer-email:hover{ color: var(--gold-bright); }
.pai-scope .footer-marks{ display: flex; flex-wrap: wrap; gap: 8px; }
.pai-scope .fm{ display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); color: var(--text-secondary); font-size: 13px; font-weight: 500; transition: background 0.4s var(--ease-spring), border-color 0.4s var(--ease-spring), color 0.3s var(--ease-spring), transform 0.3s var(--ease-spring); }
.pai-scope .fm:hover{ background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); color: var(--text-heading); transform: translateY(-1px); }
.pai-scope .fm svg{ width: 22px; height: 22px; flex-shrink: 0; }
.pai-scope .fm-current{ background: var(--primary-subtle); border-color: var(--border-accent); color: var(--primary-light); }
.pai-scope .fm-current:hover{ background: rgba(216, 174, 77, 0.2); border-color: rgba(216, 174, 77, 0.45); color: var(--primary-light); }
.pai-scope .footer-col{ display: flex; flex-direction: column; gap: 11px; }
.pai-scope .footer-col h4{ font-family: 'Geist Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-quaternary); margin: 0 0 4px; }
.pai-scope .footer-col a{ font-size: 14px; color: var(--text-secondary); transition: color 0.2s ease; }
.pai-scope .footer-col a:hover{ color: var(--gold-bright); }
.pai-scope .footer-bottom{ border-top: 1px solid var(--border); }
.pai-scope .footer-bottom-inner{ max-width: var(--maxw); margin: 0 auto; padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; color: var(--text-quaternary); }
.pai-scope .footer-controls{ display: flex; align-items: center; gap: 8px; }
.pai-scope .footer-ctrl{ height: 34px; min-width: 34px; padding: 0 11px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border-radius: 10px; border: 1px solid var(--border-strong); background: var(--bg-base); color: var(--text-tertiary); font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease; }
.pai-scope .footer-ctrl:hover{ color: var(--text-heading); background: var(--bg-hover); border-color: var(--border-input); }
.pai-scope .footer-ctrl svg{ width: 16px; height: 16px; }
@media (max-width: 880px) {
  .pai-scope .footer-inner{ grid-template-columns: 1fr 1fr; gap: 36px 32px; }
  .pai-scope .footer-brand{ grid-column: 1 / -1; }
  .pai-scope .footer-bottom-inner{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .pai-scope .container, .pai-scope .nav-inner, .pai-scope .footer-inner, .pai-scope .footer-bottom-inner{ padding-left: 20px; padding-right: 20px; }
  .pai-scope .section{ padding: 84px 0; }
}
@media (max-width: 560px) { .pai-scope .footer-inner{ grid-template-columns: 1fr; } }
