/* Auria · Content Wireframe
 *
 * Single self-contained stylesheet. Black-and-white wireframe rendering
 * of all 28 pages. Pulls the homepage's typographic system (Hubot Sans /
 * Geist / JetBrains Mono) and blade rhythm, but in pure greyscale and
 * intentionally restrained so the writing reads cleanly. SEO heading
 * labels (H1, H2, H3...) ride next to every in-content heading.
 */

/* ============================================================
 * Variables (self-contained, no external token deps)
 * ============================================================ */
:root{
  /* Greyscale palette — wireframes are reading material, not dark
   * dashboards. True neutral light gray paper, dark charcoal ink. No
   * pure white, no pure black, no warm or cool undertone. */
  --wf-bg: #EEEEEE;            /* neutral light gray paper */
  --wf-bg-elev: #F4F4F4;       /* slightly lighter (raised cards / hover) */
  --wf-bg-deep: #E5E5E5;       /* slightly darker (splash background)    */
  --wf-text: #1A1A1A;          /* dark charcoal ink — not pure black     */
  --wf-text-body: rgba(26, 26, 26, 0.82);
  --wf-text-dim: rgba(26, 26, 26, 0.60);
  --wf-text-muted: rgba(26, 26, 26, 0.40);
  --wf-hairline: rgba(26, 26, 26, 0.16);
  --wf-hairline-strong: rgba(26, 26, 26, 0.34);

  --wf-font-display: "Hubot Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wf-font-body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wf-font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --wf-container: 1200px;
  --wf-gutter: 24px;

  --wf-s1: 4px;
  --wf-s2: 8px;
  --wf-s3: 12px;
  --wf-s4: 16px;
  --wf-s5: 24px;
  --wf-s6: 32px;
  --wf-s7: 40px;
  --wf-s8: 56px;
  --wf-s9: 72px;
  --wf-s10: 96px;
  --wf-s11: 128px;
}

/* Mobile compaction: shrink big spacing tokens so every `var(--wf-sN)` usage
 * scales down site-wide. Matches the convention in styles.css for --space-N. */
@media (max-width: 1023px) {
  :root{
    --wf-s11: 96px;   /* was 128 */
    --wf-s10: 72px;   /* was 96  */
    --wf-s9:  56px;   /* was 72  */
    --wf-s8:  44px;   /* was 56  */
  }
}
@media (max-width: 767px) {
  :root{
    --wf-s11: 64px;   /* was 128 */
    --wf-s10: 48px;   /* was 96  */
    --wf-s9:  40px;   /* was 72  */
    --wf-s8:  32px;   /* was 56  */
    --wf-s7:  28px;   /* was 40  */
  }
}

*{ box-sizing: border-box; }
.wf-scope html{ scroll-behavior: smooth; }

.wf-scope body.wireframe{
  margin: 0;
  font-family: var(--wf-font-body);
  background: var(--wf-bg);
  color: var(--wf-text-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.wf-scope a{
  color: inherit;
  text-decoration: none;
  transition: opacity 150ms ease;
}
.wf-scope a:hover{ opacity: 0.7; }

.wf-scope img, .wf-scope svg{ display: block; max-width: 100%; }

::selection{ background: var(--wf-text); color: var(--wf-bg); }

/* Persistent "View instructions" affordance — bottom-LEFT of every page
 * (so it doesn't fight with BugHerd's P in the bottom-RIGHT). Subtle by
 * default; reveals the label on hover. Wireframe-stage utility only —
 * disappears with the rest of the wireframe scaffolding at design phase. */
.wf-scope .wf-view-instructions{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--wf-text);
  color: var(--wf-bg);
  border: 1px solid var(--wf-text);
  border-radius: 999px;
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(26, 26, 26, 0.18);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
  opacity: 0.7;
}
.wf-scope .wf-view-instructions:hover, .wf-scope .wf-view-instructions:focus-visible{
  opacity: 1;
  transform: translateY(-2px);
  outline: none;
}
.wf-scope .wf-view-instructions svg{ color: currentColor; }
@media (max-width: 640px) {
  .wf-scope .wf-view-instructions span{ display: none; }
  .wf-scope .wf-view-instructions{ padding: 10px; }
}

/* ============================================================
 * Line-break auto-layer — handles ~80%+ of awkward wraps without
 * needing manual <br> tags in the briefs. Headlines stay tight via
 * text-wrap: balance; body copy stays even-rivered via text-wrap:
 * pretty and gets automatic hyphenation as a last resort. Buttons
 * never break mid-label.
 * Author override: a literal `\n` in any brief headline string becomes
 * <br> in the rendered wireframe — use sparingly, CSS handles most.
 * ============================================================ */
.wf-scope h1, .wf-scope h2, .wf-scope h3, .wf-scope h4{
  text-wrap: balance;
}
.wf-scope p, .wf-scope li, .wf-scope dd, .wf-scope blockquote{
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.wf-scope .wf-main h1{ max-width: 22ch; }
.wf-scope .wf-main h2{ max-width: 28ch; }
.wf-scope .wf-main h3{ max-width: 36ch; }
.wf-scope .wf-main p, .wf-scope .wf-main li, .wf-scope .wf-main dd, .wf-scope .wf-main blockquote{ max-width: 64ch; }
.wf-scope button, .wf-scope .wf-cta, .wf-scope .wf-nav__cta, .wf-scope .wf-card__cta{ white-space: nowrap; }

/* ============================================================
 * NAV — sticky horizontal bar with clean dropdowns
 * ============================================================ */
.wf-scope .wf-nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 238, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--wf-hairline);
  padding: 0;
}
.wf-scope .wf-nav__inner{
  display: flex;
  align-items: stretch;
  height: 64px;
  max-width: 100%;
}
.wf-scope .wf-nav__brand{
  display: inline-flex;
  align-items: center;
  padding: 0 var(--wf-s6);
  color: var(--wf-text);
  text-decoration: none;
  border-right: 1px solid var(--wf-hairline);
  flex-shrink: 0;
}
.wf-scope .wf-nav__brand:hover{ background: rgba(26, 26, 26, 0.04); opacity: 1; }
.wf-scope .wf-nav__brand-logo{
  height: 16px;
  width: auto;
  display: block;
  color: var(--wf-text);  /* SVG paths use currentColor */
  fill: currentColor;
}

.wf-scope .wf-nav__menu{
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  align-items: stretch;
}
@media (min-width: 960px) {
  .wf-scope .wf-nav__menu{ display: flex; }
}
.wf-scope .wf-nav__item{
  display: flex;
  align-items: stretch;
  border-right: 1px solid var(--wf-hairline);
  flex: 1 1 0;
  position: relative;
}
.wf-scope .wf-nav__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 64px;
  padding: 0 var(--wf-s4);
  background: transparent;
  border: none;
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease;
}
.wf-scope .wf-nav__link:hover{ color: var(--wf-text); background: rgba(26, 26, 26, 0.04); opacity: 1; }
/* Top-bar trigger active state: underline indicator anchored at the
 * bottom of the bar — like avinc's current-item indicator. */
.wf-scope .wf-nav__link--top.is-active{
  color: var(--wf-text);
  position: relative;
}
.wf-scope .wf-nav__link--top.is-active::after{
  content: "";
  position: absolute;
  left: var(--wf-s4);
  right: var(--wf-s4);
  bottom: 0;
  height: 2px;
  background: var(--wf-text);
}

/* ============================================================
 * MEGA-PANEL — full-width overlay anchored below the top nav bar.
 * One panel per top-level item (Missions, Products, Company, News,
 * Careers). Triggered by click; only one open at a time. Layout
 * mirrors avinc.com — small label + close X in the header, lead
 * column on the left, multi-column grid on the right.
 * ============================================================ */
.wf-scope .wf-mega{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--wf-bg-elev);
  border-bottom: 1px solid var(--wf-hairline-strong);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 240ms ease,
              transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
              visibility 240ms;
  z-index: 49;
}
.wf-scope .wf-mega.is-open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wf-scope .wf-mega__inner{
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--wf-s6) var(--wf-s7);
}
.wf-scope .wf-mega__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--wf-s6);
}
.wf-scope .wf-mega__label{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
}
.wf-scope .wf-mega__close{
  background: transparent;
  border: 1px solid var(--wf-hairline);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-text);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.wf-scope .wf-mega__close:hover{
  background: rgba(26, 26, 26, 0.08);
  border-color: var(--wf-hairline-strong);
  transform: rotate(90deg);
}
.wf-scope .wf-mega__close:focus-visible{
  outline: 2px solid var(--wf-text);
  outline-offset: 2px;
}
.wf-scope .wf-mega__body{
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 3fr;
  gap: var(--wf-s7);
}
@media (max-width: 960px) {
  .wf-scope .wf-mega__body{ grid-template-columns: 1fr; gap: var(--wf-s5); }
}
.wf-scope .wf-mega__lead{
  display: flex;
  flex-direction: column;
  gap: var(--wf-s4);
}
.wf-scope .wf-mega__desc{
  font-family: var(--wf-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--wf-text-body);
  margin: 0;
  max-width: 40ch;
}
.wf-scope .wf-mega__lead-cta{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--wf-hairline-strong);
  align-self: flex-start;
  transition: gap 200ms ease, border-color 160ms ease;
}
.wf-scope .wf-mega__lead-cta:hover{ gap: 14px; border-bottom-color: var(--wf-text); opacity: 1; }

.wf-scope .wf-mega__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--wf-s6) var(--wf-s5);
}
/* When the renderer knows the child count, lay out as exactly N equal
 * columns at desktop. Prevents the 4+1 wrap pattern that auto-fit
 * produces when the column-count guess differs from the actual count. */
.wf-scope .wf-mega__grid[data-cols="2"]{ grid-template-columns: repeat(2, 1fr); }
.wf-scope .wf-mega__grid[data-cols="3"]{ grid-template-columns: repeat(3, 1fr); }
.wf-scope .wf-mega__grid[data-cols="4"]{ grid-template-columns: repeat(4, 1fr); }
.wf-scope .wf-mega__grid[data-cols="5"]{ grid-template-columns: repeat(5, 1fr); }
.wf-scope .wf-mega__grid[data-cols="6"]{ grid-template-columns: repeat(6, 1fr); }
.wf-scope .wf-mega__grid--products{
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .wf-scope .wf-mega__grid--products, .wf-scope .wf-mega__grid[data-cols="5"], .wf-scope .wf-mega__grid[data-cols="6"]{ grid-template-columns: repeat(3, 1fr); }
  .wf-scope .wf-mega__grid[data-cols="4"]{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .wf-scope .wf-mega__grid[data-cols="2"], .wf-scope .wf-mega__grid[data-cols="3"], .wf-scope .wf-mega__grid[data-cols="4"], .wf-scope .wf-mega__grid[data-cols="5"], .wf-scope .wf-mega__grid[data-cols="6"], .wf-scope .wf-mega__grid--products{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .wf-scope .wf-mega__grid[data-cols], .wf-scope .wf-mega__grid--products{ grid-template-columns: 1fr; }
}
.wf-scope .wf-mega__col{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wf-scope .wf-mega__col-title{
  font-family: var(--wf-font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--wf-text);
  text-decoration: none;
  border-bottom: 1px solid var(--wf-hairline);
  padding-bottom: 8px;
  transition: opacity 160ms ease;
}
.wf-scope .wf-mega__col-title:hover{ opacity: 0.7; }
.wf-scope .wf-mega__col-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* Multi-column variant — applied when a family has 6+ products so the
 * column doesn't tower over its neighbors. Flips from flex-column to
 * CSS columns so items flow into two sub-columns within the same card. */
.wf-scope .wf-mega__col-list--multi{
  display: block;
  column-count: 2;
  column-gap: var(--wf-s4);
}
.wf-scope .wf-mega__col-list--multi li{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 6px;
}
@media (max-width: 1100px) {
  /* When the outer grid collapses to 2 cols, each family card is wider
   * but two sub-columns inside still read OK. Keep the variant. */
}
@media (max-width: 600px) {
  /* On single-column outer layout, collapse multi back to single column
   * so the list isn't a postage-stamp grid. */
  .wf-scope .wf-mega__col-list--multi{ column-count: 1; }
}
.wf-scope .wf-mega__col-list a{
  font-family: var(--wf-font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--wf-text-body);
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}
.wf-scope .wf-mega__col-list a:hover{ color: var(--wf-text); opacity: 1; }
.wf-scope .wf-mega__col-summary{
  font-family: var(--wf-font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--wf-text-body);
  margin: 0;
}
.wf-scope .wf-mega__col-more{
  font-family: var(--wf-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  transition: color 160ms ease, gap 200ms ease;
}
.wf-scope .wf-mega__col-more:hover{ color: var(--wf-text); gap: 10px; opacity: 1; }

.wf-scope .wf-nav__cta{
  display: none;
  align-items: center;
  gap: 10px;
  padding: 0 var(--wf-s6);
  background: var(--wf-text);
  color: var(--wf-bg) !important;
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 1px solid var(--wf-hairline);
  flex-shrink: 0;
  transition: background 150ms ease;
}
.wf-scope .wf-nav__cta:hover{ background: rgba(26, 26, 26, 0.85); opacity: 1; }
@media (min-width: 720px) { .wf-scope .wf-nav__cta{ display: inline-flex; } }

/* Mobile collapse */
@media (max-width: 959px) {
  .wf-scope .wf-nav__menu{
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--wf-bg-elev);
    border-bottom: 1px solid var(--wf-hairline);
    flex-direction: column;
    padding: var(--wf-s3) 0;
  }
  .wf-scope .wf-nav__menu.is-mobile-open{ display: flex; }
  .wf-scope .wf-nav__item{ border-right: none; border-bottom: 1px solid var(--wf-hairline); }
  .wf-scope .wf-nav__link{ justify-content: flex-start; padding: 0 var(--wf-s5); height: 48px; }
  /* Mega-panel fills viewport on mobile so the full content fits. */
  .wf-scope .wf-mega{ position: fixed; top: 64px; bottom: 0; overflow-y: auto; }
  .wf-scope .wf-mega__inner{ padding: var(--wf-s5) var(--wf-s4); }
}

/* ============================================================
 * MAIN container + sections
 * ============================================================ */
.wf-scope .wf-main{
  position: relative;
  z-index: 1;
}
.wf-scope section[data-section]{
  position: relative;
  padding: var(--wf-s10) var(--wf-gutter);
  max-width: var(--wf-container);
  margin: 0 auto;
  border-bottom: 1px solid var(--wf-hairline);
}
.wf-scope section[data-section]:last-of-type{ border-bottom: none; }

/* Hero sits closer to a full-viewport height like a real marketing site.
 * Content vertically centered inside the available space. Clamp keeps it
 * sensible on tall vs short displays. */
.wf-scope section[data-section="hero"]{
  min-height: clamp(560px, 82vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--wf-s11, 96px);
  padding-bottom: var(--wf-s11, 96px);
}
@media (max-width: 767px){
  .wf-scope section[data-section="hero"]{ min-height: clamp(420px, 72vh, 560px); }
}

/* ============================================================
 * Reveal animation
 * ============================================================ */
.wf-scope .wf-reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.wf-scope .wf-reveal.is-revealed{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .wf-scope .wf-reveal{ opacity: 1; transform: none; transition: none; }
}

/* ============================================================
 * Headings — display face, with SEO labels
 * ============================================================ */
.wf-scope .wf-main h1, .wf-scope .wf-main h2, .wf-scope .wf-main h3, .wf-scope .wf-main h4, .wf-scope .wf-main h5{
  font-family: var(--wf-font-display);
  color: var(--wf-text);
  margin: 0 0 var(--wf-s5);
  font-weight: 600;
  position: relative;
}
.wf-scope section[data-section="hero"] h1{
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 var(--wf-s5);
  max-width: 18ch;
}
.wf-scope section[data-section] h2{
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 var(--wf-s6);
  max-width: 28ch;
}
.wf-scope section[data-section] h2.wf-lead{
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 var(--wf-s7);
  max-width: 32ch;
}
/* Intro paragraph — used when a section's lead is paragraph-length
 * rather than a single short headline. Reads as normal-case prose so
 * long content doesn't get rendered in unreadable all-caps. */
.wf-scope section[data-section] p.wf-intro{
  font-family: var(--wf-font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--wf-text);
  font-weight: 400;
  margin: 0 0 var(--wf-s7);
  max-width: 64ch;
}
.wf-scope section[data-section] p.wf-intro::before{
  /* No SEO chip on intro paragraphs — they're prose, not a heading. */
  content: none;
}
.wf-scope section[data-section] h3{
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 600;
  margin: 0 0 var(--wf-s3);
}
.wf-scope section[data-section] p{
  font-size: 16px;
  line-height: 1.6;
  color: var(--wf-text-body);
  margin: 0 0 var(--wf-s4);
  max-width: 64ch;
}

/* Heading hierarchy chips removed from wireframe pages — see the Type
 * Hierarchy sandbox on the splash screen for the H1–H4 / body / eyebrow
 * reference. Keeping wireframe pages clean of any wireframe-stage label
 * is the standing rule. */

/* Eyebrow */
.wf-scope .wf-eyebrow{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  margin: 0 0 var(--wf-s5);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.wf-scope .wf-eyebrow::before{
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--wf-hairline-strong);
}
.wf-scope .wf-subhead{
  font-size: 18px;
  line-height: 1.55;
  color: var(--wf-text-body);
  margin: 0 0 var(--wf-s6);
  max-width: 58ch;
}

/* CTAs */
.wf-scope .wf-cta{
  display: inline-flex;
  align-items: center;
  gap: var(--wf-s2);
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 22px;
  border: 1px solid var(--wf-text);
  color: var(--wf-text);
  background: transparent;
  text-decoration: none;
  margin-right: var(--wf-s3);
  margin-top: var(--wf-s3);
  transition: background 200ms ease, color 200ms ease;
}
.wf-scope .wf-cta:hover{ background: var(--wf-text); color: var(--wf-bg); opacity: 1; }
.wf-scope .wf-cta + .wf-cta{
  border-color: var(--wf-hairline-strong);
  color: var(--wf-text-body);
}
.wf-scope .wf-cta-section{
  background: var(--wf-bg-deep);
  border-top: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  margin-left: calc(var(--wf-gutter) * -1);
  margin-right: calc(var(--wf-gutter) * -1);
  padding-left: var(--wf-gutter);
  padding-right: var(--wf-gutter);
}

/* ============================================================
 * Card-level type / CTA shared across all patterns
 * ============================================================ */
.wf-scope .wf-card__eyebrow{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  margin: 0 0 var(--wf-s3);
}
.wf-scope .wf-card__title{
  font-family: var(--wf-font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--wf-text);
  margin: 0 0 var(--wf-s4);
  max-width: 16ch;
}
.wf-scope .wf-card__body{
  font-size: 16px;
  line-height: 1.6;
  color: var(--wf-text-body);
  margin: 0 0 var(--wf-s5);
  max-width: 56ch;
}
.wf-scope .wf-card__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--wf-hairline-strong);
  transition: border-color 200ms ease, gap 200ms ease;
}
.wf-scope .wf-card__cta:hover{
  border-bottom-color: var(--wf-text);
  gap: 14px;
  opacity: 1;
}

/* Uniform placeholder box — appears on every card's visual side. */
.wf-scope .wf-placeholder{
  width: 100%;
  min-height: 220px;
  border: 1px solid var(--wf-hairline);
  background:
    linear-gradient(135deg, transparent calc(50% - 0.5px), var(--wf-hairline) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(45deg, transparent calc(50% - 0.5px), var(--wf-hairline) 50%, transparent calc(50% + 0.5px));
  opacity: 0.6;
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.wf-scope .wf-reveal.is-revealed .wf-placeholder{ opacity: 1; }

/* ============================================================
 * PATTERN: Sticky stacked cards (5+ items)
 * ============================================================ */
.wf-scope .wf-stack{
  margin: var(--wf-s7) 0 0;
  display: flex;
  flex-direction: column;
}
.wf-scope .wf-stack__card{
  position: sticky;
  top: 80px;
  background: var(--wf-bg);
  border-top: 1px solid var(--wf-hairline);
  padding: var(--wf-s7) 0 var(--wf-s7);
  z-index: calc(10 + var(--stack-i, 0));
  margin-bottom: var(--wf-s5);
}
.wf-scope .wf-stack__card:first-child{ border-top: none; }
.wf-scope .wf-stack__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s6);
  padding-top: var(--wf-s6);
}
@media (min-width: 960px) {
  .wf-scope .wf-stack__inner{
    grid-template-columns: 1fr 1fr;
    gap: var(--wf-s7);
  }
}
.wf-scope .wf-stack__content{
  align-self: center;
  max-width: 540px;
}
.wf-scope .wf-stack__visual{
  min-height: 220px;
  display: flex;
  align-items: stretch;
}

/* ============================================================
 * PATTERN: Tabs (4 items)
 * ============================================================ */
.wf-scope .wf-tabs{
  margin: var(--wf-s7) 0 0;
  border-top: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
}
.wf-scope .wf-tabs__bar{
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--wf-hairline);
}
@media (min-width: 720px) {
  .wf-scope .wf-tabs__bar{ grid-template-columns: repeat(4, 1fr); }
}
.wf-scope .wf-tabs__btn{
  background: transparent;
  border: none;
  border-right: 1px solid var(--wf-hairline);
  padding: var(--wf-s5) var(--wf-s4);
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  cursor: pointer;
  text-align: left;
  transition: color 200ms ease, background-color 200ms ease;
}
.wf-scope .wf-tabs__btn:last-child{ border-right: none; }
.wf-scope .wf-tabs__btn:hover{ color: var(--wf-text); background: rgba(26, 26, 26, 0.03); }
.wf-scope .wf-tabs__btn.is-active{
  color: var(--wf-text);
  background: rgba(26, 26, 26, 0.04);
  position: relative;
}
.wf-scope .wf-tabs__btn.is-active::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--wf-text);
}
.wf-scope .wf-tabs__panels{ padding: var(--wf-s7) 0; }
.wf-scope .wf-tabs__panel{ display: none; }
.wf-scope .wf-tabs__panel.is-active{ display: block; }
.wf-scope .wf-tabs__panel-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s6);
  align-items: center;
}
@media (min-width: 960px) {
  .wf-scope .wf-tabs__panel-inner{ grid-template-columns: 1fr 1fr; gap: var(--wf-s7); }
}
.wf-scope .wf-tabs__panel-content{ max-width: 540px; }
.wf-scope .wf-tabs__panel-visual{
  min-height: 180px;
  display: flex;
  align-items: stretch;
}
.wf-scope .wf-tabs__panel-visual .wf-placeholder{ min-height: 180px; }

/* ============================================================
 * PATTERN: N-up card grid (3 or fewer items)
 * ============================================================ */
.wf-scope .wf-cols{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s7);
  margin: var(--wf-s7) 0 0;
}
@media (min-width: 720px) {
  .wf-scope .wf-cols--2{ grid-template-columns: 1fr 1fr; }
  .wf-scope .wf-cols--3{ grid-template-columns: repeat(3, 1fr); }
}
.wf-scope .wf-card{
  display: flex;
  flex-direction: column;
  gap: var(--wf-s5);
}
.wf-scope .wf-card__visual{
  min-height: 200px;
  display: flex;
  align-items: stretch;
}
.wf-scope .wf-card .wf-card__title{
  font-size: clamp(20px, 1.8vw, 26px);
}

/* ============================================================
 * PATTERN: Vertical tabs (4 items, alternative)
 * Tab list on left, panel on right
 * ============================================================ */
.wf-scope .wf-vtabs{
  margin: var(--wf-s7) 0 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
}
@media (min-width: 720px) {
  .wf-scope .wf-vtabs{ grid-template-columns: 280px 1fr; }
}
.wf-scope .wf-vtabs__bar{
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--wf-hairline);
}
@media (max-width: 719px) {
  .wf-scope .wf-vtabs__bar{
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--wf-hairline);
  }
}
.wf-scope .wf-vtabs__btn{
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--wf-hairline);
  padding: var(--wf-s5);
  font-family: var(--wf-font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  cursor: pointer;
  text-align: left;
  transition: color 200ms ease, background-color 200ms ease;
  position: relative;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
}
.wf-scope .wf-vtabs__btn:last-child{ border-bottom: none; }
.wf-scope .wf-vtabs__btn:hover{ color: var(--wf-text); background: rgba(26, 26, 26, 0.03); }
.wf-scope .wf-vtabs__btn.is-active{
  color: var(--wf-text);
  background: rgba(26, 26, 26, 0.04);
}
.wf-scope .wf-vtabs__btn.is-active::after{
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: -1px;
  width: 2px;
  background: var(--wf-text);
}
@media (max-width: 719px) {
  .wf-scope .wf-vtabs__btn{ border-bottom: none; border-right: 1px solid var(--wf-hairline); }
  .wf-scope .wf-vtabs__btn.is-active::after{ top: auto; bottom: -1px; left: 0; right: 0; width: auto; height: 2px; }
}
.wf-scope .wf-vtabs__panels{
  padding: var(--wf-s7) var(--wf-s7);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.wf-scope .wf-vtabs__panel{ display: none; flex: 1 1 auto; flex-direction: column; }
.wf-scope .wf-vtabs__panel.is-active{ display: flex; }
.wf-scope .wf-vtabs__visual{
  margin-top: var(--wf-s5);
  flex: 1 1 auto;
  min-height: 160px;
  display: flex;
  align-items: stretch;
}
.wf-scope .wf-vtabs__visual .wf-placeholder{ min-height: 160px; }

/* ============================================================
 * PATTERN: 2x2 grid (4 items, alternative)
 * All cards visible simultaneously, no visual placeholders
 * ============================================================ */
.wf-scope .wf-grid22{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: var(--wf-s7) 0 0;
  border-top: 1px solid var(--wf-hairline);
  border-left: 1px solid var(--wf-hairline);
}
@media (min-width: 720px) {
  .wf-scope .wf-grid22{ grid-template-columns: 1fr 1fr; }
}
.wf-scope .wf-grid22__cell{
  padding: var(--wf-s7) var(--wf-s6);
  border-right: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.wf-scope .wf-grid22__cell .wf-card__title{
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: var(--wf-s4);
}
.wf-scope .wf-grid22__cell .wf-card__body{
  font-size: 15px;
  margin-bottom: var(--wf-s4);
}

/* ============================================================
 * PATTERN: Numbered vertical list (3 items, alternative)
 * Compact left-rail mono numbers + title + body
 * ============================================================ */
.wf-scope .wf-numlist{
  margin: var(--wf-s7) 0 0;
  border-top: 1px solid var(--wf-hairline);
}
.wf-scope .wf-numlist__row{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--wf-s5);
  padding: var(--wf-s7) 0;
  border-bottom: 1px solid var(--wf-hairline);
  align-items: start;
}
.wf-scope .wf-numlist__num{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-text-muted);
  padding-top: 6px;
}
.wf-scope .wf-numlist__body{ max-width: 64ch; }
.wf-scope .wf-numlist__title{
  font-family: var(--wf-font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--wf-text);
  margin: 0 0 var(--wf-s3);
}
.wf-scope .wf-numlist__text{
  font-size: 16px;
  line-height: 1.6;
  color: var(--wf-text-body);
  margin: 0;
}

/* ============================================================
 * PATTERN: Team grid (5+ items with short bios — Leadership, etc.)
 * 3-up on wide / 2-up on tablet / 1-up on mobile, with a portrait
 * placeholder above each card's name + title + bio.
 * ============================================================ */
.wf-scope .wf-team-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s7) var(--wf-s6);
  margin: var(--wf-s7) 0 0;
}
@media (min-width: 720px) {
  .wf-scope .wf-team-grid{ grid-template-columns: repeat(2, 1fr); }
}
.wf-scope .wf-team-card{
  display: flex;
  flex-direction: column;
  gap: var(--wf-s4);
}
.wf-scope .wf-team-card__visual{
  width: 100%;
  display: flex;
}
.wf-scope .wf-placeholder--portrait{
  aspect-ratio: 4 / 5;
  min-height: 0;
  width: 100%;
}
.wf-scope .wf-team-card__content{
  display: flex;
  flex-direction: column;
  gap: var(--wf-s3);
}
.wf-scope .wf-team-card__name{
  font-family: var(--wf-font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--wf-text);
  margin: 0;
}
.wf-scope .wf-team-card__title{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  line-height: 1.4;
  margin: 4px 0 0;
}
.wf-scope .wf-team-card__bio{
  font-size: 14px;
  line-height: 1.55;
  color: var(--wf-text-dim);
  margin: 0;
}

/* Team-card profile link — quiet editorial "View profile →" CTA
 * No box, no border-radius button. Just a small caps label with arrow
 * that opens an editorial profile modal on click. */
.wf-scope .wf-team-card__profile-link{
  position: relative;
  margin: 6px 0 0;
  padding: 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text);
  transition: gap 180ms ease, color 120ms ease;
}
.wf-scope .wf-team-card__profile-link::after{
  content: "";
  position: absolute;
  left: 0;
  right: 18px;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}
.wf-scope .wf-team-card__profile-link:hover{ gap: 12px; }
.wf-scope .wf-team-card__profile-link:hover::after, .wf-scope .wf-team-card__profile-link:focus-visible::after{ opacity: 0.5; }
.wf-scope .wf-team-card__profile-link:focus-visible{
  outline: 2px solid var(--wf-text);
  outline-offset: 4px;
}
.wf-scope .wf-team-card__profile-arrow{
  font-family: var(--wf-font-mono);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(1px);
}

/* ============================================================
 * EDITORIAL PROFILE FLYOUT
 * Click "View profile →" on a leader card → side drawer slides in
 * from the right. Full viewport height, fixed width. Portrait on
 * top, editorial bio content scrollable beneath. Full width on
 * mobile.
 * ============================================================ */
.wf-scope .wf-profile-modal{
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 360ms;
}
.wf-scope .wf-profile-modal.is-open{
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}
.wf-scope .wf-profile-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  opacity: 0;
  transition: opacity 280ms ease;
}
.wf-scope .wf-profile-modal.is-open .wf-profile-modal__backdrop{
  opacity: 1;
}
.wf-scope .wf-profile-modal__panel{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: var(--wf-bg);
  color: var(--wf-text);
  width: min(640px, 100vw);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--wf-hairline);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.wf-scope .wf-profile-modal.is-open .wf-profile-modal__panel{
  transform: translateX(0);
}
.wf-scope .wf-profile-modal__close{
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wf-bg);
  color: var(--wf-text);
  border: 1px solid var(--wf-hairline);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 160ms ease;
}
.wf-scope .wf-profile-modal__close:hover, .wf-scope .wf-profile-modal__close:focus-visible{
  background: var(--wf-text);
  color: var(--wf-bg);
  border-color: var(--wf-text);
  outline: none;
  transform: scale(1.06);
}
.wf-scope .wf-profile-modal__visual{
  flex: 0 0 auto;
  height: clamp(260px, 38vh, 360px);
  background: var(--wf-placeholder-bg, rgba(26, 26, 26, 0.06));
  display: flex;
  position: relative;
}
.wf-scope .wf-profile-modal__visual .wf-placeholder--portrait{
  aspect-ratio: auto;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}
.wf-scope .wf-profile-modal__content{
  flex: 1 1 auto;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 44px) clamp(40px, 5vw, 64px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.wf-scope .wf-profile-modal__eyebrow{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  margin: 0 0 var(--wf-s4);
}
.wf-scope .wf-profile-modal__name{
  font-family: var(--wf-font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--wf-text);
  margin: 0;
}
.wf-scope .wf-profile-modal__title{
  font-family: var(--wf-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  margin: var(--wf-s3) 0 0;
}
.wf-scope .wf-profile-modal__preview{
  font-family: var(--wf-font-display);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--wf-text);
  margin: var(--wf-s5) 0 0;
  padding-bottom: var(--wf-s5);
  border-bottom: 1px solid var(--wf-hairline);
}
.wf-scope .wf-profile-modal__bio{
  margin-top: var(--wf-s5);
}
.wf-scope .wf-profile-modal__bio p{
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--wf-text-dim);
  margin: 0;
}
/* Lock page scroll when a flyout is open */
.wf-scope body.wf-modal-open{ overflow: hidden; }

/* ============================================================
 * PATTERN: Alternating L/R blades (5+ items, alternative to stack)
 * ============================================================ */
.wf-scope .wf-blades{ margin: var(--wf-s7) 0 0; }
.wf-scope .wf-blade{
  border-top: 1px solid var(--wf-hairline);
  position: relative;
}
.wf-scope .wf-blade:first-child{ border-top: none; }
.wf-scope .wf-blade__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s7);
  align-items: center;
  padding: var(--wf-s9) 0;
}
@media (min-width: 960px) {
  .wf-scope .wf-blade__inner{ grid-template-columns: 1fr 1fr; gap: var(--wf-s9); }
  .wf-scope .wf-blade--right .wf-blade__content{ order: 2; }
  .wf-scope .wf-blade--right .wf-blade__visual{ order: 1; }
}
.wf-scope .wf-blade__content{ max-width: 540px; }
.wf-scope .wf-blade__visual{ min-height: 280px; display: flex; align-items: stretch; }

/* ============================================================
 * PATTERN: FAQ accordion
 * ============================================================ */
.wf-scope .wf-accordion{
  margin: var(--wf-s7) 0 0;
  border-top: 1px solid var(--wf-hairline);
}
.wf-scope .wf-accordion__item{
  border-bottom: 1px solid var(--wf-hairline);
}
.wf-scope .wf-accordion__item[open]{ background: rgba(26, 26, 26, 0.02); }
.wf-scope .wf-accordion__summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-s5);
  padding: var(--wf-s6) 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: padding 200ms ease;
}
.wf-scope .wf-accordion__summary::-webkit-details-marker{ display: none; }
.wf-scope .wf-accordion__q{
  font-family: var(--wf-font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wf-text);
  line-height: 1.3;
}
.wf-scope .wf-accordion__icon{
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.wf-scope .wf-accordion__icon-bar{
  position: absolute;
  background: var(--wf-text);
  transition: transform 200ms ease, opacity 200ms ease;
}
.wf-scope .wf-accordion__icon-bar--h{
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.wf-scope .wf-accordion__icon-bar--v{
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.wf-scope .wf-accordion__item[open] .wf-accordion__icon-bar--v{ transform: translateX(-50%) rotate(90deg); opacity: 0; }
.wf-scope .wf-accordion__panel{
  padding: 0 0 var(--wf-s6) calc(34px + var(--wf-s4));
  max-width: 70ch;
}
.wf-scope .wf-accordion__a{
  font-size: 16px;
  line-height: 1.6;
  color: var(--wf-text-body);
  margin: 0;
}

/* ============================================================
 * PATTERN: Trust logo marquee
 * ============================================================ */
.wf-scope .wf-marquee{
  margin: var(--wf-s5) 0 var(--wf-s6);
  border-top: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  overflow: hidden;
  position: relative;
}
.wf-scope .wf-marquee__label{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  margin: var(--wf-s6) 0 var(--wf-s3);
}
.wf-scope .wf-marquee__track{
  display: flex;
  width: max-content;
  animation: wf-marquee-scroll 40s linear infinite;
}
.wf-scope .wf-marquee--right .wf-marquee__track{
  animation-direction: reverse;
}
.wf-scope .wf-marquee__set{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wf-scope .wf-marquee__item{
  font-family: var(--wf-font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  padding: var(--wf-s5) var(--wf-s7);
  border-right: 1px solid var(--wf-hairline);
  white-space: nowrap;
  min-height: 64px;
  display: flex;
  align-items: center;
}
@keyframes wf-marquee-scroll {
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.wf-scope .wf-marquee:hover .wf-marquee__track{ animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .wf-scope .wf-marquee__track{ animation: none; }
}

/* ============================================================
 * PATTERN: Hero rotating tagline
 * ============================================================ */
.wf-scope .wf-hero__rotate{
  position: relative;
  height: 1.6em;
  margin-top: var(--wf-s4);
  font-family: var(--wf-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
}
.wf-scope .wf-hero__rotate-line{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.wf-scope .wf-hero__rotate-line.is-active{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .wf-scope .wf-hero__rotate-line{ transition: none; }
}

/* ============================================================
 * Stat strip / Bento layout
 *
 * Numeric stats (e.g. "8,000+ STARCOM users") get a standard cell with
 * a big count-up value + mono label. Prose facts (e.g. "Government,
 * commercial, and international customers") render in wider bento
 * cells that span 2 columns and use a smaller display headline so the
 * whole phrase fits cleanly.
 * ============================================================ */
/* Bento is a 12-col grid with per-count packing templates so items
 * always fill rows cleanly — no empty cells. Each count from 2-12 gets
 * a deterministic span pattern. Prose "fact" cells get a wide span to
 * accommodate the longer phrase, which `grid-auto-flow: dense` packs
 * tightly with neighboring numeric cells. */
.wf-scope .wf-bento{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 0;
  border-top: 1px solid var(--wf-hairline);
  border-left: 1px solid var(--wf-hairline);
  margin-top: var(--wf-s6);
}
.wf-scope .wf-bento__cell{
  grid-column: span 12;  /* mobile-first: full width */
  padding: var(--wf-s6) var(--wf-s5);
  border-right: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
}
@media (min-width: 720px) {
  /* Per-count packing — picks a span pattern that fills 12 cols evenly */
  .wf-scope .wf-bento[data-count="2"] > .wf-bento__cell{ grid-column: span 6; }
  .wf-scope .wf-bento[data-count="3"] > .wf-bento__cell{ grid-column: span 4; }
  .wf-scope .wf-bento[data-count="4"] > .wf-bento__cell{ grid-column: span 6; }
  /* 5 items: top row 3 × 4cols, bottom row 2 × 6cols */
  .wf-scope .wf-bento[data-count="5"] > .wf-bento__cell:nth-child(-n+3){ grid-column: span 4; }
  .wf-scope .wf-bento[data-count="5"] > .wf-bento__cell:nth-child(n+4){ grid-column: span 6; }
  .wf-scope .wf-bento[data-count="6"] > .wf-bento__cell{ grid-column: span 4; }
  /* 7 items: top row 3 × 4cols, bottom row 4 × 3cols */
  .wf-scope .wf-bento[data-count="7"] > .wf-bento__cell:nth-child(-n+3){ grid-column: span 4; }
  .wf-scope .wf-bento[data-count="7"] > .wf-bento__cell:nth-child(n+4){ grid-column: span 3; }
  .wf-scope .wf-bento[data-count="8"] > .wf-bento__cell{ grid-column: span 3; }
  .wf-scope .wf-bento[data-count="9"] > .wf-bento__cell{ grid-column: span 4; }
  /* 10 items: 2 rows of 4 wider + 1 row of 2 wide, or 2x5 */
  .wf-scope .wf-bento[data-count="10"] > .wf-bento__cell:nth-child(-n+4){ grid-column: span 3; }
  .wf-scope .wf-bento[data-count="10"] > .wf-bento__cell:nth-child(n+5){ grid-column: span 2; }
  .wf-scope .wf-bento[data-count="11"] > .wf-bento__cell{ grid-column: span 4; }
  .wf-scope .wf-bento[data-count="12"] > .wf-bento__cell{ grid-column: span 3; }
  /* Prose/fact cells always span at least 6 cols regardless of count */
  .wf-scope .wf-bento__cell--wide{ grid-column: span 6 !important; }
}
@media (min-width: 1024px) {
  /* On wider screens, prose cells can be a touch narrower to fit more cells */
  .wf-scope .wf-bento[data-count="6"] > .wf-bento__cell--wide, .wf-scope .wf-bento[data-count="8"] > .wf-bento__cell--wide, .wf-scope .wf-bento[data-count="9"] > .wf-bento__cell--wide, .wf-scope .wf-bento[data-count="12"] > .wf-bento__cell--wide{
    grid-column: span 6 !important;
  }
}
/* Numeric cells with a long label still keep a comfortable min-height */
.wf-scope .wf-bento__cell--wide{ min-height: 180px; }
.wf-scope .wf-bento__fact{
  font-family: var(--wf-font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--wf-text);
  font-weight: 600;
  margin: 0;
  max-width: 30ch;
}

/* ============================================================
 * content_split / stat_strip / integration_grid / quote / faq
 * ============================================================ */
.wf-scope section[data-section="content_split"]{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s7);
}
@media (min-width: 768px) {
  .wf-scope section[data-section="content_split"]{ grid-template-columns: 1fr 1fr; }
}
.wf-scope section[data-section="content_split"] ul{
  list-style: none; padding: 0; margin: 0;
}
.wf-scope section[data-section="content_split"] li{
  padding: var(--wf-s3) 0;
  border-top: 1px solid var(--wf-hairline);
  color: var(--wf-text-body);
}
.wf-scope section[data-section="content_split"] li strong{ color: var(--wf-text); font-weight: 600; }

/* Stat value/label styling — used by the count-up stat strip */
.wf-scope .wf-stat-value{
  display: block;
  font-family: var(--wf-font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--wf-text);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 12px;
}
.wf-scope .wf-stat-label{
  display: block;
  font-family: var(--wf-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  line-height: 1.4;
}

.wf-scope blockquote[data-section="quote"]{
  margin: 0 auto;
  padding: var(--wf-s11) var(--wf-gutter);
  border-top: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  max-width: var(--wf-container);
}
.wf-scope blockquote[data-section="quote"] p{
  font-family: var(--wf-font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--wf-text);
  font-weight: 500;
  margin: 0 0 var(--wf-s5);
  max-width: 32ch;
}
.wf-scope blockquote[data-section="quote"] cite{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  font-style: normal;
}

.wf-scope .wf-tbd{
  display: inline-block;
  font-family: var(--wf-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--wf-text);
  color: var(--wf-bg);
  padding: 2px 6px;
  font-weight: 600;
}

/* ============================================================
 * FOOTER
 * ============================================================ */
.wf-scope .footer{
  background: var(--wf-bg-deep);
  border-top: 1px solid var(--wf-hairline);
  padding: var(--wf-s10) 0 0;
  position: relative;
  overflow: hidden;
}
.wf-scope .footer__container{
  max-width: var(--wf-container);
  margin: 0 auto;
  padding: 0 var(--wf-gutter);
}
.wf-scope .footer__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s9);
  margin-bottom: var(--wf-s9);
}
@media (min-width: 768px) {
  .wf-scope .footer__grid{
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: var(--wf-s8);
    align-items: start;
  }
}
.wf-scope .footer__brand-block{
  display: flex;
  flex-direction: column;
  gap: var(--wf-s5);
  max-width: 36ch;
}
.wf-scope .footer__brand{
  display: inline-flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  margin: 0;
}
.wf-scope .footer__brand:hover{ opacity: 0.7; }
.wf-scope .footer__brand-logo{
  height: 22px;
  width: auto;
  display: block;
}
.wf-scope .footer__tagline{
  color: var(--wf-text-dim);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.wf-scope .footer__brand-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wf-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text);
  text-decoration: none;
  padding-top: var(--wf-s2);
  transition: gap 200ms ease;
}
.wf-scope .footer__brand-cta:hover{ gap: 14px; opacity: 1; }
.wf-scope .footer__cell{ display: block; }
.wf-scope .footer__heading{
  font-family: var(--wf-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
  margin: 0 0 var(--wf-s4);
}
.wf-scope .footer__list{ list-style: none; margin: 0; padding: 0; }
.wf-scope .footer__list li{ margin: 0 0 var(--wf-s3); }
.wf-scope .footer__list a{
  font-family: var(--wf-font-body);
  font-size: 14px;
  color: var(--wf-text);
  text-decoration: none;
  transition: opacity 150ms ease;
}
.wf-scope .footer__list a:hover{ opacity: 0.65; }
.wf-scope .footer__bottom{
  display: flex;
  flex-direction: column;
  gap: var(--wf-s3);
  padding-top: var(--wf-s7);
  border-top: 1px solid var(--wf-hairline);
  font-family: var(--wf-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
}
@media (min-width: 768px) {
  .wf-scope .footer__bottom{
    flex-direction: row;
    align-items: center;
    gap: var(--wf-s7);
  }
  .wf-scope .footer__copy{ flex: 0 0 auto; }
  .wf-scope .footer__legend{ flex: 1 1 auto; text-align: center; color: var(--wf-text-muted); }
  .wf-scope .footer__bottom-links{ margin-left: auto; }
}
.wf-scope .footer__bottom-links{
  display: flex;
  gap: var(--wf-s5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.wf-scope .footer__bottom-links a{ color: var(--wf-text-dim); text-decoration: none; }
.wf-scope .footer__bottom-links a:hover{ color: var(--wf-text); }
/* Footer signature (giant logo at bottom) removed at user request. */

/* ============================================================
 * OPENING SPLASH on index.html
 * ============================================================ */
.wf-scope .wf-opening{
  position: fixed;
  inset: 0;
  background: var(--wf-bg-deep);
  color: var(--wf-text);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--wf-s5) var(--wf-s4);
  overflow-y: auto;
  opacity: 1;
  transition: opacity 550ms ease, visibility 0s linear 0s;
}
.wf-scope .wf-opening.is-dismissed{
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 550ms ease, visibility 0s linear 550ms;
}
.wf-scope .wf-opening__inner{
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: var(--wf-s5);
  min-height: calc(100vh - 2 * var(--wf-s5));
}

/* ---- Wizard chrome (persistent header + footer across all 3 screens) ---- */
.wf-scope .wf-opening__chrome-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-s4);
  padding-bottom: var(--wf-s4);
  border-bottom: 1px solid var(--wf-hairline);
}
.wf-scope .wf-opening__meta{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
}

/* Wizard content area — fills the remaining vertical space so the bottom
 * chrome stays pinned at the foot of the splash even on tall viewports.
 * Made a flex column so the active screen can vertically center itself
 * via `margin: auto 0` (which also gracefully degrades to natural flow
 * with overflow scrolling when content is taller than the wizard). */
.wf-scope .wf-opening__wizard{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.wf-scope .wf-opening__screen{
  display: none;
  flex-direction: column;
  gap: var(--wf-s5);
}
.wf-scope .wf-opening__screen.is-active{
  display: flex;
  width: 100%;
  /* Center the screen vertically inside the wizard when there's extra
   * room; collapses to natural flow when content is taller, letting the
   * outer cover handle scrolling without clipping the top. */
  margin: auto 0;
  animation: wf-opening-screen-in 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes wf-opening-screen-in {
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0);  }
}

/* Bottom chrome — step dots on the left, back/next on the right. */
.wf-scope .wf-opening__chrome-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wf-s4);
  padding-top: var(--wf-s4);
  border-top: 1px solid var(--wf-hairline);
  flex-wrap: wrap;
}
.wf-scope .wf-opening__steps{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wf-scope .wf-opening__step{
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(26, 26, 26, 0.18);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 220ms ease, width 220ms ease;
}
.wf-scope .wf-opening__step.is-active{
  background: var(--wf-text);
  width: 44px;
}
.wf-scope .wf-opening__step:hover{
  background: rgba(26, 26, 26, 0.45);
}
.wf-scope .wf-opening__step:focus-visible{
  outline: 2px solid var(--wf-text);
  outline-offset: 3px;
}
.wf-scope .wf-opening__buttons{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.wf-scope .wf-opening__btn--secondary{
  display: inline-flex;
  align-items: center;
  gap: var(--wf-s2, 8px);
  background: transparent;
  color: var(--wf-text-body);
  border: 1px solid var(--wf-hairline);
  padding: 12px 18px;
  font-family: var(--wf-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}
.wf-scope .wf-opening__btn--secondary:hover:not(:disabled){
  background: rgba(26, 26, 26, 0.08);
  color: var(--wf-text);
  border-color: var(--wf-hairline-strong);
}
.wf-scope .wf-opening__btn--secondary:focus-visible{
  outline: 2px solid var(--wf-text);
  outline-offset: 3px;
}
.wf-scope .wf-opening__btn--secondary:disabled{
  opacity: 0.35;
  cursor: not-allowed;
}
.wf-scope .wf-opening__brand{ display: inline-flex; color: var(--wf-text); }
.wf-scope .wf-opening__brand img{ height: 16px; width: auto; display: block; }
/* Splash H1 — Punch H1 weight (300) and size. No eyebrow above it; the
 * title carries the meaning. */
.wf-scope .wf-opening__title{
  font-family: var(--wf-font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--wf-text);
  margin: 0;
  max-width: 22ch;
}
.wf-scope .wf-opening__lede{
  font-family: var(--wf-font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--wf-text-body);
  margin: 0;
  max-width: 64ch;
}
.wf-scope .wf-opening__how{
  border-top: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  padding: var(--wf-s5) 0;
  display: grid;
  gap: var(--wf-s3);
}
.wf-scope .wf-opening__how h2{
  /* Real H2 — display face, not a mono-caps eyebrow. Matches the
   * H2 style used across wireframe pages. */
  font-family: var(--wf-font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--wf-text);
  margin: 0;
}
.wf-scope .wf-opening__how p{
  font-family: var(--wf-font-body);
  font-size: 15px;
  color: var(--wf-text-body);
  margin: 0;
  line-height: 1.6;
  max-width: 64ch;
}

/* ============================================================
 * Splash-screen Feedback Tutorial
 * Self-animating walkthrough of the BugHerd feedback flow:
 * the floating P button → toolbar → comment-or-edit fork.
 * UI is rendered in CSS so it's crisp at any size and smooth
 * to animate. Honors prefers-reduced-motion.
 * ============================================================ */
.wf-scope .wf-tutorial{
  --bh-pink: #EF2D5A;
  border-top: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  padding: var(--wf-s6) 0 var(--wf-s7);
  display: grid;
  gap: var(--wf-s5);
}
.wf-scope .wf-tutorial__heading{
  /* Real H2 — display face, not a mono-caps eyebrow. */
  font-family: var(--wf-font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--wf-text);
  margin: 0;
}
.wf-scope .wf-tutorial__lede{
  font-family: var(--wf-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--wf-text-body);
  margin: 0;
  max-width: 64ch;
}

/* Hub mock — a 1:1 representation of the BugHerd floating tools sitting
 * in the corner of a viewport. The whole cluster cascades in, and the P
 * gets a continuous outward pulse so it reads as the entry point. */
.wf-scope .wf-tutorial__hub{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s5);
  align-items: center;
}
@media (min-width: 720px) {
  .wf-scope .wf-tutorial__hub{ grid-template-columns: 220px 1fr; }
}
.wf-scope .wf-tutorial__hub-mock{
  position: relative;
  width: 220px;
  height: 160px;
  background:
    radial-gradient(circle at 22% 30%, rgba(26, 26, 26, 0.04), transparent 60%),
    var(--wf-bg-elev);
  border: 1px solid var(--wf-hairline);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.wf-scope .wf-tutorial__hub-mock::before{
  /* hairline mock-content lines to suggest a page underneath the toolbar */
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 110px;
  height: 8px;
  background: rgba(26, 26, 26,0.18);
  box-shadow:
    0 16px 0 rgba(26, 26, 26,0.10),
    0 28px 0 rgba(26, 26, 26,0.10),
    0 40px 0 rgba(26, 26, 26,0.06);
  border-radius: 2px;
}
/* Pencil + chat icons arc up-and-left from the P (not stacked above) so
 * the cluster mirrors how BugHerd actually opens the floating toolbar. */
.wf-scope .wf-tutorial__hub-pencil, .wf-scope .wf-tutorial__hub-chat{
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #1A1B20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  animation: tutorial-fade-up 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* Layout mirrors the BugHerd cluster in the reference:
 *   - P sits at the bottom-right corner
 *   - Pencil sits to the LOWER-LEFT of the toolset (further left, lower up)
 *   - Chat sits to the UPPER-RIGHT of the toolset (higher up, closer to
 *     vertically above the P)
 * So the arc reads P → pencil (up + left) → chat (up + right of pencil). */
.wf-scope .wf-tutorial__hub-pencil{
  bottom: 62px;
  right: 64px;
  animation-delay: 500ms;
}
.wf-scope .wf-tutorial__hub-chat{
  bottom: 98px;
  right: 30px;
  animation-delay: 700ms;
}
.wf-scope .wf-tutorial__hub-p{
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bh-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(239,45,90,0.45);
  z-index: 2;
  animation: tutorial-fade-up 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
  overflow: hidden;
}
.wf-scope .wf-tutorial__hub-p-svg{
  width: 16px;
  height: auto;
  display: block;
}
.wf-scope .wf-tutorial__hub-ring{
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(239, 45, 90, 0.6);
  pointer-events: none;
  animation: tutorial-ring-pulse 2.4s ease-out infinite;
  animation-delay: 1.4s;
  z-index: 1;
}
.wf-scope .wf-tutorial__hub-cap{
  font-family: var(--wf-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--wf-text-body);
  margin: 0;
  max-width: 36ch;
}
.wf-scope .wf-tutorial__hub-cap strong{
  color: var(--wf-text);
  font-weight: 600;
}

/* Two paths — Comment / Edit */
.wf-scope .wf-tutorial__paths{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wf-s4);
}
@media (min-width: 720px) {
  .wf-scope .wf-tutorial__paths{ grid-template-columns: 1fr 1fr; }
}
.wf-scope .wf-tutorial__path{
  background: rgba(26, 26, 26, 0.03);
  border: 1px solid var(--wf-hairline);
  border-radius: 10px;
  padding: var(--wf-s5);
  display: grid;
  gap: var(--wf-s3);
  align-content: start;
  animation: tutorial-fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wf-scope .wf-tutorial__path--comment{ animation-delay: 800ms; }
.wf-scope .wf-tutorial__path--edit{ animation-delay: 1000ms; }
.wf-scope .wf-tutorial__path-head{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wf-scope .wf-tutorial__path-icon{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wf-text);
  color: var(--wf-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-scope .wf-tutorial__path h3{
  font-family: var(--wf-font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--wf-text);
  margin: 0;
}
.wf-scope .wf-tutorial__path > p{
  font-family: var(--wf-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--wf-text-body);
  margin: 0;
}
.wf-scope .wf-tutorial__path > p strong{
  color: var(--wf-text);
  font-weight: 600;
}

/* Comment-path visual — mock wireframe block with a pinned marker */
.wf-scope .wf-tutorial__comment-mock{
  position: relative;
  background: rgba(26, 26, 26, 0.04);
  border: 1px solid var(--wf-hairline);
  border-radius: 8px;
  padding: 16px 16px 18px;
  margin-top: var(--wf-s2, 8px);
  display: grid;
  gap: 8px;
}
.wf-scope .wf-tutorial__comment-mock-h{
  width: 60%;
  height: 12px;
  background: rgba(26, 26, 26, 0.22);
  border-radius: 2px;
}
.wf-scope .wf-tutorial__comment-mock-line{
  height: 8px;
  background: rgba(26, 26, 26, 0.10);
  border-radius: 2px;
  width: 92%;
}
.wf-scope .wf-tutorial__comment-mock-line--short{ width: 64%; }
.wf-scope .wf-tutorial__comment-marker{
  position: absolute;
  top: -12px;
  right: -10px;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  background: var(--bh-pink);
  color: #FFFFFF;
  border-radius: 50% 50% 50% 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wf-font-display);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(239, 45, 90, 0.4);
  animation: tutorial-marker-bounce 2.2s ease-in-out infinite;
  animation-delay: 1.6s;
}

/* Edit-path visual — the New Edit Version modal */
.wf-scope .wf-tutorial__modal{
  background: #FFFFFF;
  color: #16171B;
  border-radius: 12px;
  padding: 16px 18px 14px;
  display: grid;
  gap: 6px;
  margin-top: var(--wf-s2, 8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.2);
}
.wf-scope .wf-tutorial__modal-title{
  font-family: var(--wf-font-display);
  font-size: 15px;
  font-weight: 600;
  color: #16171B;
}
.wf-scope .wf-tutorial__modal-sub{
  font-family: var(--wf-font-body);
  font-size: 12px;
  color: #6A6F78;
  margin: 0 0 4px;
}
.wf-scope .wf-tutorial__modal-field{
  font-family: var(--wf-font-mono);
  font-size: 10px;
  color: #3A3D44;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.wf-scope .wf-tutorial__modal-input{
  background: #FFFFFF;
  border: 2px solid var(--bh-pink);
  border-radius: 6px;
  padding: 8px 10px;
  font-family: var(--wf-font-body);
  font-size: 13px;
  color: #16171B;
  display: inline-flex;
  align-items: center;
}
.wf-scope .wf-tutorial__modal-caret{
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #16171B;
  margin-left: 2px;
  animation: tutorial-caret-blink 1s steps(2, end) infinite;
}
.wf-scope .wf-tutorial__modal-actions{
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}
.wf-scope .wf-tutorial__modal-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wf-font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 6px;
}
.wf-scope .wf-tutorial__modal-btn--cancel{
  color: #6A6F78;
  background: transparent;
}
.wf-scope .wf-tutorial__modal-btn--create{
  background: var(--bh-pink);
  color: #FFFFFF;
}

/* Animations */
@keyframes tutorial-fade-up {
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes tutorial-shelf-in {
  from{ opacity: 0; transform: translateY(8px) scale(0.9); }
  to{ opacity: 1; transform: translateY(0)  scale(1);   }
}
@keyframes tutorial-ring-pulse {
  0%{ transform: scale(1);   opacity: 0.85; }
  80%{ transform: scale(2.4); opacity: 0;    }
  100%{ transform: scale(2.4); opacity: 0;    }
}
@keyframes tutorial-marker-bounce {
  0%, 100%{ transform: translateY(0);    }
  50%{ transform: translateY(-4px); }
}
@keyframes tutorial-caret-blink {
  0%{ opacity: 1; }
  50%{ opacity: 0; }
  100%{ opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .wf-scope .wf-tutorial__hub-p, .wf-scope .wf-tutorial__hub-pencil, .wf-scope .wf-tutorial__hub-chat, .wf-scope .wf-tutorial__path, .wf-scope .wf-tutorial__hub-ring, .wf-scope .wf-tutorial__comment-marker, .wf-scope .wf-tutorial__modal-caret{
    animation: none;
  }
}

/* ============================================================
 * Splash-screen Type Hierarchy sandbox
 * Reference card showing the H1–H4 / body / eyebrow styles used
 * across the wireframe. Lives ONLY on the splash so the actual
 * pages stay free of wireframe-stage chrome.
 * ============================================================ */
.wf-scope .wf-typesandbox{
  border-top: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  padding: var(--wf-s5) 0;
  display: grid;
  gap: var(--wf-s4);
}
.wf-scope .wf-typesandbox__heading{
  /* Real H2 — display face, not a mono-caps eyebrow. */
  font-family: var(--wf-font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--wf-text);
  margin: 0;
}
.wf-scope .wf-typesandbox__note{
  font-family: var(--wf-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--wf-text-body);
  margin: 0;
  max-width: 64ch;
}
.wf-scope .wf-typesandbox__grid{
  display: grid;
  gap: var(--wf-s3);
  margin-top: var(--wf-s2, 8px);
}
.wf-scope .wf-typesandbox__row{
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: baseline;
  gap: var(--wf-s4);
  padding: var(--wf-s2, 8px) 0;
  border-top: 1px dashed var(--wf-hairline);
}
.wf-scope .wf-typesandbox__row:first-child{ border-top: none; padding-top: 0; }
.wf-scope .wf-typesandbox__tag{
  font-family: var(--wf-font-mono);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text);
  padding-top: 4px;
  /* base size — modifier classes below override per row to keep each tag
   * proportional to the heading it labels. Darker color + proportional
   * sizing makes the hierarchy of the labels match the hierarchy of the
   * samples beside them. */
  font-size: 13px;
}
.wf-scope .wf-typesandbox__tag--h1{ font-size: 22px; letter-spacing: 0.08em; }
.wf-scope .wf-typesandbox__tag--h2{ font-size: 17px; letter-spacing: 0.10em; }
.wf-scope .wf-typesandbox__tag--h3{ font-size: 14px; }
.wf-scope .wf-typesandbox__tag--h4{ font-size: 12px; }
.wf-scope .wf-typesandbox__tag--h5{ font-size: 13px; }
.wf-scope .wf-typesandbox__tag--h6{ font-size: 12px; }
.wf-scope .wf-typesandbox__tag--body{ font-size: 12px; }
.wf-scope .wf-typesandbox__tag--eyebrow{ font-size: 11px; }
.wf-scope .wf-typesandbox__sample{
  color: var(--wf-text);
  margin: 0;
  font-family: var(--wf-font-display);
}
.wf-scope .wf-typesandbox__sample--h1{
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.wf-scope .wf-typesandbox__sample--h2{
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.wf-scope .wf-typesandbox__sample--h3{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.wf-scope .wf-typesandbox__sample--h4{
  font-family: var(--wf-font-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
}
.wf-scope .wf-typesandbox__sample--h5{
  font-family: var(--wf-font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--wf-text);
}
.wf-scope .wf-typesandbox__sample--h6{
  font-family: var(--wf-font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wf-text);
}
.wf-scope .wf-typesandbox__sample--body{
  font-family: var(--wf-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--wf-text-body);
}
.wf-scope .wf-typesandbox__sample--eyebrow{
  font-family: var(--wf-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
}

.wf-scope .wf-opening__stats{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  border-top: 1px solid var(--wf-hairline);
  border-left: 1px solid var(--wf-hairline);
}
.wf-scope .wf-opening__stats > div{
  padding: var(--wf-s4);
  border-right: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wf-scope .wf-opening__stats .wf-stat-value{
  font-family: var(--wf-font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--wf-text);
  letter-spacing: -0.015em;
}
.wf-scope .wf-opening__stats .wf-stat-label{
  font-family: var(--wf-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wf-text-dim);
}
.wf-scope .wf-opening__btn{
  display: inline-flex;
  align-items: center;
  gap: var(--wf-s2, 8px);
  background: var(--wf-text);
  color: var(--wf-bg);
  border: 1px solid var(--wf-text);
  padding: 12px 22px;
  font-family: var(--wf-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.wf-scope .wf-opening__btn:hover{
  background: rgba(26, 26, 26, 0.85);
  color: var(--wf-bg);
  border-color: rgba(26, 26, 26, 0.85);
}
.wf-scope .wf-opening__btn:focus-visible{
  outline: 2px solid var(--wf-text);
  outline-offset: 3px;
}
@media (max-width: 640px) {
  .wf-scope .wf-opening{ padding: var(--wf-s4) var(--wf-s4); }
}
@media (prefers-reduced-motion: reduce) {
  .wf-scope .wf-opening{ transition: opacity 10ms linear; }
  .wf-scope .wf-opening.is-dismissed{ transition: opacity 10ms linear, visibility 0s linear 10ms; }
}

/* ============================================================
 * Print
 * ============================================================ */
@media print {
  .wf-scope body.wireframe{ background: #FFFFFF; color: #000000; }
  .wf-scope .wf-nav, .wf-scope .footer{ background: #FFFFFF; color: #000000; border-color: #000000; }
  .wf-scope .wf-main h1, .wf-scope .wf-main h2, .wf-scope .wf-main h3, .wf-scope .wf-main h4{ color: #000000; }
  .wf-scope .wf-blade__visual{ display: none; }
  .wf-scope .wf-blade__inner{ grid-template-columns: 1fr; }
  .wf-scope .wf-blade__content{ padding: 24px 0; max-width: none; }
  .wf-scope .wf-reveal{ opacity: 1; transform: none; }
  .wf-scope body{ font-size: 11pt; }
}

/* Auria navy palette overrides for embedded wireframe content */
.wf-scope {
  --wf-bg: #111A2E;
  --wf-bg-elev: #1A2440;
  --wf-bg-deep: #0B1224;
  --wf-text: #FFFFFF;
  --wf-text-body: rgba(255, 255, 255, 0.82);
  --wf-text-dim: rgba(255, 255, 255, 0.60);
  --wf-text-muted: rgba(255, 255, 255, 0.40);
  --wf-hairline: rgba(255, 255, 255, 0.10);
  --wf-hairline-strong: rgba(255, 255, 255, 0.18);
  --wf-accent: #F5B31E;
  /* Transparent so the body's Background Texture.jpg + radial gradient
   * shows through (matches the design spec). */
  background: transparent;
  color: var(--wf-text-body);
}
.wf-scope .wf-card__eyebrow,
.wf-scope .wf-card__cta,
.wf-scope .wf-numlist__num,
.wf-scope .wf-stat-value,
.wf-scope .wf-bento__fact,
.wf-scope .wf-mega__label { color: var(--wf-accent) !important; }
.wf-scope .wf-opening,
.wf-scope .wf-tutorial,
.wf-scope .wf-profile-modal,
.wf-scope .wf-profile-modals,
.wf-scope .wf-mega-wrapper,
.wf-scope .wf-nav { display: none !important; }
.wf-scope .wf-placeholder {
  background-color: rgba(0, 0, 0, 0.30);
  background-image:
    linear-gradient(135deg, rgba(245, 179, 30, 0.10) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, 0.04) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(255, 255, 255, 0.04) 31px 32px);
  border: 1px solid var(--wf-hairline);
}
/* Cards: lifted boxes that read on the navy bg (more dramatic than the
 * wireframe's paper-flush version, matching the rest of the Auria site).
 * Each card gets a slightly lifted bg, hairline border, internal padding,
 * and a subtle hover. */
.wf-scope .wf-card,
.wf-scope .wf-blade,
.wf-scope .wf-team-card,
.wf-scope .wf-numlist__row,
.wf-scope .wf-pillar,
.wf-scope .wf-grid22__cell,
.wf-scope .wf-bento__cell,
.wf-scope .wf-accordion__item {
  background: var(--wf-bg-elev);
  border: 1px solid var(--wf-hairline);
  border-radius: 2px;
  padding: var(--wf-s6);
  transition: background-color 250ms ease, border-color 250ms ease;
}
.wf-scope .wf-card:hover,
.wf-scope .wf-blade:hover,
.wf-scope .wf-team-card:hover,
.wf-scope .wf-numlist__row:hover,
.wf-scope .wf-pillar:hover,
.wf-scope .wf-grid22__cell:hover,
.wf-scope .wf-bento__cell:hover,
.wf-scope .wf-accordion__item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Blades have visual + content side-by-side: tighter inner gap, more padding. */
.wf-scope .wf-blade { padding: var(--wf-s7); }
.wf-scope .wf-blade__inner { gap: var(--wf-s7); }

/* Numlist rows have a big number column + body — give the number breathing room */
.wf-scope .wf-numlist__row { padding: var(--wf-s6) var(--wf-s7); }
.wf-scope .wf-numlist__num { color: var(--wf-accent); }

/* Team cards already look like leadership-style portraits; keep padding tight */
.wf-scope .wf-team-card { padding: 0; }
.wf-scope .wf-team-card__visual { padding: 0; }
.wf-scope .wf-team-card__content { padding: var(--wf-s6); }

/* Bento cells: stat boxes — center their content */
.wf-scope .wf-bento__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--wf-s2);
}

/* Accordion: padding around full item, hairline divider between Q and A */
.wf-scope .wf-accordion__item { padding: var(--wf-s6) var(--wf-s7); }

/* Bordered rows that keep the sticky-stack scroll animation. The card must be
 * opaque to cover the card beneath as they pile up — but a flat fill read as a
 * visible box. Instead it mirrors the body's background exactly (brand-primary
 * navy + the fixed Background Texture + top radial glow). Both backgrounds use
 * attachment:fixed, so the card's texture aligns pixel-for-pixel with the
 * body's at any scroll/sticky position — opaque for the stack yet seamless,
 * leaving only the top + bottom hairlines visible. */
.wf-scope .wf-stack__card {
  background-color: var(--color-brand-primary);
  background-image:
    url('assets/images/Background%20Texture.jpg'),
    radial-gradient(ellipse at top, rgba(35, 54, 95, 0.30), transparent 60%);
  background-size: cover, 100% 60vh;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  border: none;
  border-top: 1px solid var(--wf-hairline);
  border-bottom: 1px solid var(--wf-hairline);
  padding: var(--wf-s7) 0;
}
.wf-scope .wf-stack__card:first-child { border-top: 1px solid var(--wf-hairline); }
.wf-scope a { color: var(--wf-accent); }
.wf-scope a:hover { color: var(--wf-text); }

/* Reveal animations: force visible without wireframe scroll JS. */
.wf-scope .wf-reveal { opacity: 1 !important; transform: none !important; }
/* Sticky stack top offset below the Auria nav. */
.wf-scope .wf-stack__card { top: 96px; }
