  :root {
    --origin-bg: #0a192f;
    --origin-bg-mid: #0d1f3c;
    --origin-bg-light: #162544;
    --origin-text: rgba(255,255,255,0.75);
    --origin-text-strong: #ffffff;
    --origin-text-subtle: rgba(255,255,255,0.55);
    --origin-text-faint: rgba(255,255,255,0.35);
    --origin-gold: #d4af55;
    --origin-divider: rgba(255,255,255,0.1);
    --origin-card-bg: rgba(255,255,255,0.04);
  }

  /* Hero */
  .hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a192f 0%, #0d1f3c 40%, #162544 100%);
    padding: 120px 2rem 4rem;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 70% 30%, rgba(212, 175, 85, 0.06) 0%, transparent 50%),
      linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 40%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .hero-tag {
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    font-size: var(--fs-2xs);
    letter-spacing: 0.25em;
    color: var(--origin-gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: enter 0.8s ease 0.2s forwards;
  }
  .hero h1 {
    font-family: var(--font-display); /* webgfx Lane B: sub-page hero -- display serif */
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--origin-text-strong);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    overflow-wrap: break-word;
    opacity: 0;
    animation: enter 0.8s ease 0.5s forwards;
  }
  .hero h1 .line2 {
    display: block;
    font-weight: 400;
    font-size: 0.55em;
    color: var(--origin-text-subtle);
    font-family: 'Heebo', sans-serif;
    margin-top: 0.4rem;
  }
  .hero-intro {
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    font-size: var(--fs-base);
    color: var(--origin-text-subtle);
    max-width: 520px;
    line-height: 1.7;
    opacity: 0;
    animation: enter 0.8s ease 0.8s forwards;
  }
  .scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: enter 0.8s ease 1.4s forwards;
  }
  .scroll-arrow span {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--origin-gold), transparent);
    margin: 0 auto;
    animation: pulse-down 2s ease-in-out infinite;
  }

  /* Body wrap */
  .body-wrap {
    max-width: var(--prose-max);
    margin: 0 auto;
    padding: 5rem 1.5rem 2rem;
    background: transparent;
  }

  /* Prose */
  .prose { margin-bottom: 3rem; }
  .prose p {
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    font-size: var(--fs-base);
    color: var(--origin-text);
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .prose p strong { color: var(--origin-text-strong); font-weight: 600; }
  .prose p em { font-style: normal; color: var(--origin-text-subtle); }

  /* Section heads */
  .section-head { margin-bottom: 1.5rem; padding-top: 1rem; }
  .section-head h2 {
    font-family: var(--font-display); /* webgfx Lane B: display serif */
    font-weight: 600;
    font-size: var(--fs-h3);
    color: var(--origin-text-strong);
    line-height: 1.35;
  }
  .section-head .overline {
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: var(--fs-2xs);
    letter-spacing: 0.2em;
    color: var(--origin-gold);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }

  /* Break line */
  .break {
    height: 1px;
    background: var(--origin-divider);
    margin: 3.5rem 0;
    position: relative;
  }
  .break::after {
    content: '';
    position: absolute;
    right: 0;
    top: -1px;
    width: 40px;
    height: 3px;
    background: var(--origin-gold);
  }
  [dir="ltr"] .break::after {
    right: auto;
    left: 0;
  }

  /* Pullquote */
  .pull {
    margin: 2.5rem 0 3rem;
    padding: 0 1.5rem;
    border-right: 2px solid var(--origin-gold);
  }
  [dir="ltr"] .pull {
    border-right: none;
    border-left: 2px solid var(--origin-gold);
  }
  .pull p {
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0;
  }

  /* Stakes box */
  .stakes {
    margin: 2.5rem 0;
    background: rgba(212, 175, 85, 0.08);
    padding: 1.5rem 1.8rem;
    border-right: 3px solid var(--origin-gold);
  }
  [dir="ltr"] .stakes {
    border-right: none;
    border-left: 3px solid var(--origin-gold);
  }
  .stakes p {
    font-family: 'Heebo', sans-serif;
    font-size: var(--fs-sm);
    color: var(--origin-text);
    line-height: 1.7;
    margin-bottom: 0.6rem;
  }
  .stakes p strong { color: var(--origin-text-strong); font-weight: 600; }
  .stakes p:last-child { margin-bottom: 0; }

  /* Proof box */
  .proof-box {
    margin: 2.5rem 0;
    background: rgba(5, 150, 105, 0.08);
    border-right: 3px solid rgba(5, 150, 105, 0.5);
    padding: 1.5rem 1.8rem;
  }
  [dir="ltr"] .proof-box {
    border-right: none;
    border-left: 3px solid rgba(5, 150, 105, 0.5);
  }
  .proof-box .label {
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    font-size: var(--fs-2xs);
    letter-spacing: 0.15em;
    color: rgba(5, 150, 105, 0.7);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .proof-box p {
    font-family: 'Heebo', sans-serif;
    font-size: var(--fs-sm);
    color: var(--origin-text);
    line-height: 1.7;
    margin-bottom: 0.6rem;
  }
  .proof-box p strong { color: var(--origin-text-strong); font-weight: 600; }
  .proof-box p:last-child { margin-bottom: 0; }

  /* Honest box */
  .honest-box {
    margin: 2.5rem 0;
    background: rgba(220, 38, 38, 0.06);
    border-right: 3px solid rgba(220, 38, 38, 0.4);
    padding: 1.5rem 1.8rem;
    border-radius: 4px;
  }
  [dir="ltr"] .honest-box {
    border-right: none;
    border-left: 3px solid rgba(220, 38, 38, 0.4);
  }
  .honest-box .label {
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    font-size: var(--fs-2xs);
    letter-spacing: 0.15em;
    color: rgba(248, 113, 113, 0.8);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .honest-box p {
    font-family: 'Heebo', sans-serif;
    font-size: var(--fs-sm);
    color: var(--origin-text);
    line-height: 1.8;
    margin-bottom: 0.6rem;
  }
  .honest-box p strong { color: var(--origin-text-strong); font-weight: 600; }
  .honest-box p:last-child { margin-bottom: 0; }

  /* SOC sections */
  .soc-sections { margin: 2rem 0; }
  .soc-item {
    display: flex;
    gap: 1rem;
    padding: 0.9rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--origin-card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    align-items: baseline;
    backdrop-filter: blur(8px);
  }
  .soc-item:last-child { margin-bottom: 0; }
  .soc-num {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--origin-gold);
    min-width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
  }
  .soc-item-content h3 {
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--origin-text-strong);
    margin-bottom: 0.2rem;
  }
  .soc-item-content p {
    font-family: 'Heebo', sans-serif;
    font-size: var(--fs-sm);
    color: var(--origin-text-subtle);
    line-height: 1.65;
    margin: 0;
  }

  /* Steps grid */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
  }
  .step {
    background: var(--origin-card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 1.5rem 1.2rem;
    position: relative;
    backdrop-filter: blur(8px);
  }
  .step::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 2px;
    background: var(--origin-gold);
    border-radius: 6px 6px 0 0;
  }
  .step .step-num {
    font-family: 'Heebo', sans-serif;
    font-weight: 700; /* webgfx Lane B: Heebo 900 retired, re-pointed to 700 */
    font-size: var(--fs-h3);
    color: var(--origin-gold); /* step numbers stay gold -- they are the sequence (gold contract) */
    margin-bottom: 0.5rem;
  }
  .step h3 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--origin-text-strong);
    margin-bottom: 0.5rem;
  }
  .step p {
    font-family: 'Heebo', sans-serif;
    font-size: var(--fs-sm);
    color: var(--origin-text-subtle);
    line-height: 1.7;
  }

  /* Article embed */
  .article-embed { margin: 2.5rem 0; position: relative; }
  .article-page {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem 1.8rem;
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
    border-radius: 4px;
  }
  .article-page::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 3px;
    background: var(--origin-gold);
    border-radius: 0 4px 4px 0;
  }
  [dir="ltr"] .article-page::before {
    right: auto;
    left: 0;
    border-radius: 4px 0 0 4px;
  }
  .article-page .meta {
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    font-size: var(--fs-2xs);
    letter-spacing: 0.15em;
    color: var(--origin-text-faint);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }
  .article-page h3 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: var(--fs-md);
    color: var(--origin-text-strong);
    line-height: 1.55;
    margin-bottom: 1rem;
    direction: ltr;
    text-align: left;
  }
  .article-page blockquote {
    font-family: 'Heebo', sans-serif;
    font-size: var(--fs-sm);
    color: var(--origin-text);
    line-height: 1.8;
    padding: 0;
    margin: 0;
    border: none;
  }
  .article-page blockquote + blockquote { margin-top: 0.8rem; }
  .article-corner {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--origin-bg-mid);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
    padding: 0.2rem 0.6rem;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: var(--fs-2xs);
    color: var(--origin-gold);
    letter-spacing: 0.1em;
  }

  /* Intake example */
  .intake-example {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
  }
  .intake-intro {
    color: rgba(255,255,255,0.7);
    font-size: var(--fs-base);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .intake-example .faq-list details {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 85, 0.25);
    border-radius: 12px;
  }
  .intake-example .faq-list details[open] {
    border-color: rgba(212, 175, 85, 0.4);
  }
  .intake-example .faq-list summary {
    color: #d4af55;
    font-size: var(--fs-sm);
    font-weight: 500;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    list-style: none;
  }
  .intake-example .faq-list summary::-webkit-details-marker { display: none; }
  .intake-text {
    padding: 0 1.5rem 1rem;
    border-right: 3px solid rgba(212, 175, 85, 0.3);
    margin: 0 1.5rem 1.5rem;
  }
  [dir="ltr"] .intake-text {
    border-right: none;
    border-left: 3px solid rgba(212, 175, 85, 0.3);
  }
  .intake-text p {
    color: rgba(255,255,255,0.7);
    font-size: var(--fs-sm);
    line-height: 1.85;
    margin-bottom: 0.8rem;
    font-style: italic;
  }
  /* Before/After panels */
  .ba-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0;
  }
  .ba-input { border-color: rgba(255,255,255,0.15); }
  .ba-output { border-color: rgba(212, 175, 85, 0.3); background: rgba(212, 175, 85, 0.04); }
  .ba-label {
    font-size: var(--fs-2xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
  }
  .ba-input .ba-label { color: rgba(255,255,255,0.55); }
  .ba-output .ba-label { color: #d4af55; }
  .ba-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: rgba(212, 175, 85, 0.5);
    padding: 0.5rem 0;
  }
  .ba-expand { border: none; margin-top: 0.5rem; }
  .ba-expand summary {
    color: #d4af55;
    font-size: var(--fs-sm);
    cursor: pointer;
    list-style: none;
    padding: 0.25rem 0;
  }
  .ba-expand summary::-webkit-details-marker { display: none; }
  .ba-expand summary::before { content: '+ '; }
  .ba-expand[open] summary::before { content: '− '; }
  .ba-expand .intake-text { margin: 0; padding: 0.5rem 0 0; border: none; }
  .soc-preview-text p {
    color: rgba(255,255,255,0.8);
    font-size: var(--fs-sm);
    line-height: 1.8;
    margin-bottom: 0.75rem;
  }
  .ba-expand .soc-preview-text { padding-top: 0.5rem; }
  .intake-analysis { padding: 1.5rem 0 0; }
  .intake-note {
    color: rgba(255,255,255,0.55);
    font-size: var(--fs-2xs);
    margin-bottom: 1rem;
    text-align: center;
  }
  .intake-label {
    color: rgba(255,255,255,0.8);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
  }
  .intake-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .domain-pill {
    background: rgba(212, 175, 85, 0.15);
    border: 1px solid rgba(212, 175, 85, 0.3);
    color: rgba(255,255,255,0.85);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: var(--fs-xs);
    font-weight: 500;
  }
  .intake-cta {
    display: block;
    text-align: center;
    color: #d4af55;
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  .intake-cta:hover { background: rgba(212, 175, 85, 0.08); }

  /* Showcase section (homepage before/after) */
  .showcase-section {
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 100%);
  }
  .showcase-section .section-container {
    max-width: var(--container-max);
    margin: 0 auto;
  }
  .showcase-head {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .showcase-overline {
    font-size: var(--fs-2xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d4af55;
    margin-bottom: 0.5rem;
  }
  .showcase-intro {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-sm);
    margin-top: 0.5rem;
  }
  .showcase-section .ba-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.5rem 2rem;
  }
  .showcase-section .intake-text {
    border-color: rgba(212, 175, 85, 0.4);
  }
  .showcase-section .intake-text p {
    font-size: var(--fs-base);
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
  }
  .showcase-result {
    padding: 2rem 0 0;
    text-align: center;
  }
  .showcase-result .intake-note {
    font-size: var(--fs-2xs);
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.25rem;
  }
  .showcase-result .intake-label {
    font-size: var(--fs-base);
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .showcase-result .intake-domains {
    margin-bottom: 2rem;
  }
  .showcase-result .domain-pill {
    font-size: var(--fs-sm);
    padding: 0.4rem 1rem;
  }
  .showcase-pdf-cta {
    display: inline-block;
    color: #1e2d3d;
    background: #d4af55;
    font-weight: 700;
    font-size: var(--fs-md);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(212, 175, 85, 0.3);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  }
  .showcase-pdf-cta:hover {
    background: #e0c06a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 85, 0.4);
  }

  /* Story link */
  .story-link {
    color: var(--origin-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212,175,85,0.3);
  }

  /* Closing section */
  .closing {
    padding: 4rem 2rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, #0d1f3c 0%, #162544 100%);
    position: relative;
  }
  .closing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,85,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .closing-inner {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
  }
  .closing h2 {
    font-family: var(--font-display); /* webgfx Lane B: display serif */
    font-weight: 700;
    font-size: var(--fs-h3);
    color: var(--origin-text-strong);
    margin-bottom: 1rem;
  }
  .closing p {
    font-family: 'Heebo', sans-serif;
    font-weight: 400; /* webgfx A3: Heebo 300 dropped from fonts.css, 0 remaining callers */
    font-size: var(--fs-base);
    color: var(--origin-text-subtle);
    line-height: 1.85;
    margin-bottom: 2rem;
  }
  .closing .cta {
    display: inline-block;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--origin-bg);
    background: var(--origin-gold);
    padding: 0.85rem 2.2rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
  }
  .closing .cta:hover {
    background: #cbaa54;
    transform: translateY(-1px);
  }
  .closing .secondary-link {
    display: block;
    margin-top: 1rem;
    font-family: 'Heebo', sans-serif;
    font-size: var(--fs-sm);
    color: var(--origin-text-faint);
    text-decoration: none;
    transition: color 0.2s;
  }
  .closing .secondary-link:hover { color: var(--origin-text-subtle); }

  /* Animations */
  @keyframes enter {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse-down {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); transform-origin: top; }
  }
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    animation: revealFallback 0s ease 2.5s forwards;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }
  @keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Overflow protection for callout boxes */
  .stakes, .proof-box, .honest-box, .pull {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Measure cap for long-prose paragraphs (Frontend RJ I-7 + R4 M-1 token harmonization) */
  .stakes p, .proof-box p, .honest-box p, .pull p {
    max-width: var(--prose-max);
  }

  /* Responsive - mid-range (DPR-scaled laptops) */
  @media (max-width: 1024px) {
    .body-wrap { padding: 4rem 1.5rem 2rem; }
    .whynot-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
  }

  /* Responsive - mobile */
  @media (max-width: 768px) {
    .hero { padding: 80px 1.5rem 3rem; min-height: 50vh; }
    .body-wrap { padding: 3.5rem 1.25rem 2rem; }
    .section-head h2 { font-size: var(--fs-h4); }
    .pull p { font-size: var(--fs-md); }
    .stakes, .proof-box, .honest-box { padding: 1.2rem 1.4rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .article-page { padding: 1.5rem; }
  }
  .source-note {
    font-size: var(--fs-2xs);
    color: var(--origin-text-faint);
    margin: 0.5rem 0 0;
    line-height: 1.5;
  }

/* moved from shared-v2-merged.css by UB-3214 (2026-09-02); original order preserved */
.article-headline-en {
    direction: ltr;
    text-align: left;
    font-style: italic;
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.7);
    border-inline-start: 3px solid rgba(255,255,255,0.2);
    padding-inline-start: 0.75rem;
    margin-bottom: 0.75rem;
}

.security-contact {
  text-align: center;
  padding: 2rem 0 0;
  font-size: var(--fs-body);
  color: var(--text-body, rgba(255,255,255,0.75));
}

.security-contact a {
  color: var(--gold, #d4af55);
  text-decoration: underline;
  text-underline-offset: 3px;
}
