    

    :root {
      --bg: #0e0e10;
      --bg-dark: #121215;
      --bg-section: rgba(14, 14, 16, 0.96);
      --card-bg: #161619;
      --card-warm: rgb(246, 235, 228);
      --title-color: #E0506E;
      --heading: #ffffff;
      --body-text: #F0EDE8;
      --body-secondary: #A8A49E;
      --link-color: #E0506E;
      --link-hover: #E86080;
      --border: #2A2A32;
      --border-light: #1F1F28;
      --table-header-bg: #18181F;
      --table-stripe: #1A1A22;
      --shadow: 0 2px 12px rgba(0,0,0,.4);
      --shadow-lg: 0 4px 24px rgba(0,0,0,.5);
      --glow: 0 0 6px rgba(224, 80, 110, 0.5);
      --radius: 4px;
      --radius-pill: 50px;
      --max: 780px;
      --calm: #5B8A9A;
      --calm-hover: #72A3B3;
      --calm-bg: rgba(91, 138, 154, .10);
      --calm-border: rgba(91, 138, 154, .28);

      --font: 'Montserrat', -apple-system, system-ui, sans-serif;
      --font-heavy: 'Montserrat', sans-serif;
      --font-heading: 'Source Serif 4', 'Georgia', serif;

      --match-color: #5f91ff;
      --match-bg: rgba(95, 145, 255, .12);
      --match-border: rgba(95, 145, 255, .30);
      --differs-color: #b070d0;
      --differs-bg: rgba(176, 112, 208, .12);
      --differs-border: rgba(176, 112, 208, .30);
      --caution-color: #d4a840;
      --caution-bg: rgba(212, 168, 64, .12);
      --caution-border: rgba(212, 168, 64, .30);
      --good-color: #4caf60;
      --good-bg: rgba(76, 175, 96, .12);
      --good-border: rgba(76, 175, 96, .30);
      --bad-color: #E0506E;
      --bad-bg: rgba(168, 48, 78, .12);
      --bad-border: rgba(168, 48, 78, .30);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { height: 100%; }

    body {
      margin: 0;
      font-family: var(--font);
      font-weight: 400;
      background: var(--bg);
      color: var(--body-text);
      line-height: 1.7;
      font-size: 19px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a { color: var(--link-color); text-decoration: none; transition: color .24s ease; }
    a:hover { color: var(--link-hover); text-decoration: none; }

    /* Page wrapper */
    .page-wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 16px;
    }

    /* ========== HEADER / NAV ========== */
    .site-header {
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 6px rgba(0,0,0,.3);
    }
    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .site-title {
      margin: 0;
      flex-shrink: 0;
    }
    .site-title a {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .site-logo {
      height: 44px;
      width: auto;
      flex-shrink: 0;
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
      white-space: nowrap;
    }
    .logo-text-main {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 600;
      color: #ffffff !important;
      letter-spacing: .02em;
    }
    .logo-text-sub {
      font-family: var(--font);
      font-size: 14px;
      font-weight: 300;
      color: #5B8A9A !important;
      letter-spacing: .03em;
      font-style: italic;
      margin-top: 2px;
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }
    @media (max-width: 860px) {
      .site-logo { height: 36px; }
      .logo-text-main { font-size: 18px; }
      .logo-text-sub { font-size: 12px; }
    }
    @media (max-width: 480px) {
      .logo-text-sub { display: none; }
      .logo-text-main { font-size: 16px; }
      .site-logo { height: 32px; }
    }

    .nav-links {
      display: flex;
      gap: 0;
      flex-wrap: nowrap;
      align-items: center;
    }
    .nav-links a {
      font-family: var(--font-heavy);
      font-size: 13px;
      font-weight: 700;
      color: #ffffff;
      padding: 6px 7px;
      border-radius: var(--radius);
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: all .24s ease;
      white-space: nowrap;
    }
    .nav-links a:hover {
      color: var(--title-color);
      text-decoration: none;
    }

    .menu-btn {
      display: none;
      font-family: var(--font-heavy);
      font-size: 13px;
      font-weight: 700;
      border: 1px solid #ffffff;
      background: transparent;
      color: #ffffff;
      padding: 8px 20px;
      border-radius: var(--radius-pill);
      cursor: pointer;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: all .2s ease;
    }
    .menu-btn:hover {
      background: var(--title-color);
      border-color: var(--title-color);
    }

    @media (min-width: 1101px) {
      .nav-links a { font-size: 14px; padding: 7px 10px; }
    }

    @media (max-width: 1100px) {
      .menu-btn { display: inline-flex; }
      .nav-links { display: none; width: 100%; }
      .nav-links.open { display: flex; flex-direction: column; align-items: stretch; padding-top: 8px; }
      .nav-links a { width: 100%; padding: 10px 12px; font-size: 15px; }
      .header-inner { flex-wrap: wrap; }
    }

    /* ========== HERO ========== */
    .hero-section {
      background: var(--bg-section);
      border-bottom: 1px solid var(--border);
      padding: 48px 0;
    }
    .hero-grid {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }
    .hero-text h1 {
      font-family: var(--font-heading);
      font-size: 30px;
      font-weight: 500;
      color: var(--heading);
      margin: 0 0 6px;
      line-height: 1.25;
      letter-spacing: -.025em;
    }
    .hero-text h1 span {
      display: block;
      font-family: var(--font);
      font-size: 18px;
      font-weight: 300;
      color: var(--body-secondary);
      margin-top: 8px;
      letter-spacing: .01em;
    }
    .hero-text .intro {font-weight: 400;
    }

    .hero-portrait figure {
      margin: 0;
      text-align: center;
    }
    .hero-portrait img {
      width: 100%;
      max-width: 280px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }
    .hero-portrait figcaption {
      margin-top: 10px;
      font-size: 15px;
      color: var(--body-secondary);
      font-family: var(--font);
      font-weight: 300;
      letter-spacing: .05em;
    }

    @media (max-width: 700px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-portrait { order: -1; text-align: center; }
    }

    /* ========== MAIN CONTENT ========== */
    .main-content {
      max-width: var(--max);
      margin: 0 auto;
      padding: 32px 24px 60px;
    }

    .original-content {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px 36px;
      margin-bottom: 32px;
    }
    .original-content h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--heading);
      font-size: 28px;
      margin: 0 0 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
      letter-spacing: -.025em;
    }
    .original-content p,
    .original-content li {
      color: var(--body-text);
      font-size: 19px;
      line-height: 1.7;
      font-weight: 400;
    }
    .original-content ul {
      padding-left: 24px;
      margin: 12px 0;
    }
    .original-content li {
      margin-bottom: 10px;
    }
    .original-content li ul {
      margin-top: 8px;
    }
    .original-content li ul li {
      margin-bottom: 6px;
    }
    .original-content strong {
      color: #ffffff;
      font-family: var(--font-heavy);
      font-weight: 700;
    }
    .emphasis-box {
      border-left: 3px solid var(--title-color);
      background: rgba(194, 39, 75, .08);
      padding: 18px 22px;
      margin: 1.3em 0;
      border-radius: 0 var(--radius) var(--radius) 0;
      font-style: italic;
      font-size: 18px;
      line-height: 1.7;
      color: var(--body-text);
    }
    .support-box {
      background: var(--good-bg);
      border: 1px solid var(--good-border);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin: 24px 0;
    }
    .support-box h3 {
      font-family: var(--font-heading);
      font-weight: 500;
      color: var(--good-color);
      font-size: 17px;
      margin: 0 0 8px;
    }
    .support-box a {
      font-size: 16px;
      font-family: var(--font-heavy);
      font-weight: 700;
    }

    @media (max-width: 600px) {
      .original-content { padding: 20px 18px; }
    }

    /* ========== SECTION DIVIDER ========== */
    .section-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 40px 0 20px;
    }
    .section-divider span {
      font-family: var(--font-heavy);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--title-color);
      white-space: nowrap;
    }
    .section-divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--border), transparent);
    }

    /* ========== CARDS ========== */
    .card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px 36px;
      margin-bottom: 24px;
    }
    .card h2 {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--heading);
      font-size: 28px;
      margin: 0 0 14px;
      margin-top: 1.4em;
      line-height: 1.35;
      letter-spacing: -.025em;
    }
    .card h2:first-child { margin-top: 0; }
    .card h3 {
      font-family: var(--font-heading);
      font-weight: 600;
      color: var(--heading);
      font-size: 22px;
      margin: 1.4em 0 0.5em;
      line-height: 1.35;
    }
    .card h3:first-child { margin-top: 0; }
    .card .meta {
      font-family: var(--font);
      font-size: 16px;
      font-weight: 300;
      color: var(--body-secondary);
      margin: 0 0 14px;
      letter-spacing: .01em;
    }
    .card .text {
      font-size: 19px;
      font-weight: 400;
      color: var(--body-text);
      line-height: 1.7;
      max-width: 65ch;
    }
    .card .text + .text { margin-top: 1.3em; }

    .card.accent { border-top: 3px solid var(--match-color); }
    .card.calm { border-top: 3px solid var(--calm); }
    .card.calm h2 { color: var(--calm); }
    .card.calm a { color: var(--calm); }
    .card.calm a:hover { color: var(--calm-hover); }
    .card.warn-accent { border-top: 3px solid var(--bad-color); }

    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    @media (max-width: 700px) {
      .grid { grid-template-columns: 1fr; }
    }

    /* ========== BIO LIST ========== */
    .bio-list {
      list-style: none;
      padding: 0;
      margin: 14px 0 0;
    }
    .bio-list li {
      position: relative;
      padding: 10px 0 10px 22px;
      font-size: 18px;
      font-weight: 400;
      color: var(--body-text);
      border-bottom: 1px solid var(--border-light);
    }
    .bio-list li:last-child { border-bottom: none; }
    .bio-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 17px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--title-color);
    }

    /* ========== TABLES ========== */
    .table-wrap {
      overflow-x: auto;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      margin-top: 12px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 700px;
    }
    th, td {
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-light);
      vertical-align: top;
      font-size: 16px;
      text-align: left;
    }
    th {
      font-family: var(--font-heavy);
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: var(--body-secondary);
      background: var(--table-header-bg);
    }
    tr:last-child td { border-bottom: none; }
    tr:nth-child(even) td { background: var(--table-stripe); }
    td { color: var(--body-text); font-weight: 400; }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 3px 10px;
      border-radius: 999px;
      font-family: var(--font-heavy);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .5px;
      white-space: nowrap;
      text-transform: uppercase;
    }
    .badge.matched { color: var(--match-color); border: 1px solid var(--match-border); background: var(--match-bg); }
    .badge.differs { color: var(--differs-color); border: 1px solid var(--differs-border); background: var(--differs-bg); }
    .badge.neutral { color: var(--body-secondary); border: 1px solid var(--border); background: var(--table-stripe); }
    .badge.caution { color: var(--caution-color); border: 1px solid var(--caution-border); background: var(--caution-bg); }

    /* ========== FLOW DIAGRAM ========== */
    .flow-diagram {
      display: flex;
      gap: 0;
      margin: 14px 0;
      overflow-x: auto;
    }
    .flow-step {
      flex: 1;
      min-width: 120px;
      padding: 14px 16px;
      background: rgba(194, 39, 75, .08);
      border: 1px solid rgba(194, 39, 75, .20);
      text-align: center;
      font-family: var(--font-heavy);
      font-size: 13px;
      font-weight: 700;
      color: var(--heading);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .flow-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
    .flow-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
    .flow-step:not(:last-child)::after {
      content: "";
      position: absolute;
      right: -8px;
      top: 50%;
      transform: translateY(-50%);
      width: 0; height: 0;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      border-left: 8px solid var(--bad-color);
      opacity: .4;
      z-index: 2;
    }
    @media (max-width: 600px) {
      .flow-diagram { flex-direction: column; }
      .flow-step { min-width: auto; border-radius: 0 !important; }
      .flow-step:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
      .flow-step:last-child { border-radius: 0 0 var(--radius) var(--radius) !important; }
      .flow-step:not(:last-child)::after {
        right: 50%; top: auto; bottom: -8px;
        transform: translateX(50%) rotate(90deg);
      }
    }

    /* ========== FORMER MEMBERS ========== */
    .member-col {
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }
    .member-col.positive { background: var(--good-bg); border-color: var(--good-border); }
    .member-col.difficult { background: var(--bad-bg); border-color: var(--bad-border); }
    .member-col h3 { font-family: var(--font-heading); font-weight: 500; font-size: 16px; margin: 0 0 12px; }
    .member-item {font-weight: 400;
      color: var(--body-text);
    }
    .member-item:last-child { border-bottom: none; }
    .member-item strong { font-family: var(--font-heavy); font-weight: 700; color: var(--heading); }

    /* ========== CONTACT FORM ========== */
    .contact-form {
      margin-top: 16px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
    @media (max-width: 600px) {
      .form-row { grid-template-columns: 1fr; }
    }
    .form-group {
      display: flex;
      flex-direction: column;
    }
    .form-group label {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 400;
      color: var(--heading);
      margin-bottom: 6px;
    }
    .form-group label .required {
      color: var(--title-color);
    }
    .form-group input,
    .form-group textarea {font-weight: 400;
      color: var(--body-text);
      background: transparent;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 10px 14px;
      transition: border-color .24s ease;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--title-color);
    }
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    .submit-btn {
      font-family: var(--font-heavy);
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      background: transparent;
      border: 1px solid #ffffff;
      border-radius: var(--radius-pill);
      padding: 12px 32px;
      cursor: pointer;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: all .2s ease;
      box-shadow: var(--glow);
    }
    .submit-btn:hover {
      background: var(--title-color);
      border-color: var(--title-color);
      box-shadow: 0 0 8px 2px rgba(224, 80, 110, 0.6);
    }
    .submit-btn:disabled {
      opacity: .4;
      cursor: not-allowed;
    }
    .form-success {
      display: none;
      background: var(--good-bg);
      border: 1px solid var(--good-border);
      border-radius: var(--radius);
      padding: 14px 18px;
      color: var(--good-color);
      font-family: var(--font);
      font-weight: 300;
      font-size: 16px;
      margin-top: 14px;
    }
    .form-error {
      display: none;
      background: var(--bad-bg);
      border: 1px solid var(--bad-border);
      border-radius: var(--radius);
      padding: 14px 18px;
      color: var(--bad-color);
      font-family: var(--font);
      font-weight: 300;
      font-size: 16px;
      margin-top: 14px;
    }

    /* ========== BACK TO TOP ========== */
    .back-to-top {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(0,0,0,.8);
      border: 1px solid var(--border);
      color: #ffffff;
      font-size: 20px;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
      transition: transform .15s;
      z-index: 40;
    }
    .back-to-top:hover { transform: translateY(-2px); }
    .back-to-top.visible { display: flex; }

    /* ========== FOOTER ========== */
    footer {
      background: var(--bg-dark);
      border-top: 1px solid var(--border);
      margin-top: 0;
      padding: 24px 24px;
    }
    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      font-size: 15px;
      color: var(--body-secondary);
      font-family: var(--font);
      font-weight: 300;
      line-height: 1.6;
      letter-spacing: .02em;
    }

    section { scroll-margin-top: 80px; }

    .section-image {
      width: 100%;
      border-radius: var(--radius);
      margin-bottom: 20px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      object-fit: cover;
      max-height: 300px;
    }

    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      background: var(--title-color);
      color: #fff;
      padding: 8px 16px;
      border-radius: var(--radius);
      font-family: var(--font-heavy);
      font-size: 14px;
      z-index: 10000;
      text-decoration: none;
      transition: top .2s;
    }
    .skip-link:focus {
      top: 8px;
    }

    .honeypot {
      position: absolute !important;
      left: -9999px !important;
      top: -9999px !important;
      opacity: 0 !important;
      height: 0 !important;
      width: 0 !important;
      overflow: hidden !important;
      pointer-events: none !important;
      visibility: hidden !important;
    }

    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }

    /* ========== SPLASH / ENTRY PAGE ========== */
    .splash-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity .8s ease, visibility .8s ease;
      overflow: hidden;
    }
    .splash-overlay.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .splash-bg-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(194,39,75,.15) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: splash-pulse 4s ease-in-out infinite;
    }
    @keyframes splash-pulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
      50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
    }
    .splash-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
    }
    .splash-image {
      max-width: 680px;
      width: 90%;
      height: auto;
      aspect-ratio: auto;
      border-radius: var(--radius);
      margin-bottom: 36px;
      opacity: 0;
      filter: blur(8px);
      transform: scale(0.85);
      animation: splash-fadeBlurIn 1.4s cubic-bezier(.47,0,.745,.715) .1s forwards;
      box-shadow: 0 4px 40px rgba(194,39,75,.2);
      object-fit: contain;
    }
    .splash-title {
      font-family: var(--font-heading);
      font-size: 38px;
      font-weight: 300;
      color: #ffffff;
      letter-spacing: -.02em;
      margin: 0;
      opacity: 0;
      filter: blur(8px);
      transform: scale(0.8);
      animation: splash-fadeBlurIn 1.4s cubic-bezier(.47,0,.745,.715) .3s forwards;
    }
    .splash-subtitle {
      font-family: var(--font);
      font-size: 18px;
      font-weight: 300;
      color: var(--body-secondary);
      margin: 16px 0 0;
      letter-spacing: .05em;
      opacity: 0;
      filter: blur(6px);
      animation: splash-fadeBlurIn 1.2s cubic-bezier(.47,0,.745,.715) .9s forwards;
    }
    .splash-tagline {
      font-family: var(--font);
      font-size: 17px;
      font-weight: 300;
      color: var(--body-secondary);
      margin: 12px 0 0;
      font-style: italic;
      opacity: 0;
      filter: blur(6px);
      animation: splash-fadeBlurIn 1.2s cubic-bezier(.47,0,.745,.715) 1.4s forwards;
    }
    .splash-divider {
      width: 60px;
      height: 2px;
      background: var(--title-color);
      margin: 28px auto;
      opacity: 0;
      transform: scaleX(0);
      animation: splash-lineGrow 1s cubic-bezier(.645,.045,.355,1) 1.8s forwards;
    }
    .splash-enter-btn {
      font-family: var(--font-heavy);
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      background: transparent;
      border: 1px solid #ffffff;
      border-radius: var(--radius-pill);
      padding: 14px 40px;
      cursor: pointer;
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: all .24s ease;
      box-shadow: var(--glow);
      opacity: 0;
      transform: translateY(16px);
      animation: splash-slideUp .8s cubic-bezier(.645,.045,.355,1) 2.2s forwards;
    }
    .splash-enter-btn:hover {
      background: var(--title-color);
      border-color: var(--title-color);
      box-shadow: 0 0 10px 2px rgba(194,39,75,.5);
      transform: translateY(-2px);
    }
    .splash-footer-text {
      position: absolute;
      bottom: 32px;
      left: 0;
      right: 0;
      text-align: center;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 300;
      color: #5A5A5A;
      letter-spacing: .1em;
      text-transform: uppercase;
      opacity: 0;
      animation: splash-fadeIn .6s ease 2.8s forwards;
    }
    @keyframes splash-fadeBlurIn {
      0% { opacity: 0; filter: blur(8px); transform: scale(0.85); }
      100% { opacity: 1; filter: blur(0); transform: scale(1); }
    }
    @keyframes splash-lineGrow {
      0% { opacity: 0; transform: scaleX(0); }
      100% { opacity: 1; transform: scaleX(1); }
    }
    @keyframes splash-slideUp {
      0% { opacity: 0; transform: translateY(16px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes splash-fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }
    @media (max-width: 900px) {
      .splash-title { font-size: 32px; }
    }
    @media (max-width: 600px) {
      .splash-title { font-size: 30px; }
      .splash-subtitle { font-size: 16px; }
      .splash-image { max-width: 90%; }
    }

    body.splash-active { overflow: hidden; }

    /* ========== ARTICLE PAGES ========== */
    .article-page {
      max-width: var(--max);
      margin: 0 auto;
      padding: 40px 24px 60px;
    }
    .article-page h1 {
      font-family: var(--font-heading);
      font-size: 32px;
      font-weight: 500;
      color: var(--heading);
      line-height: 1.25;
      letter-spacing: -.025em;
      margin: 0 0 8px;
    }
    .article-page .article-meta {
      font-family: var(--font);
      font-size: 15px;
      font-weight: 300;
      color: var(--body-secondary);
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .article-page h2 {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 500;
      color: var(--heading);
      margin: 32px 0 12px;
      letter-spacing: -.025em;
    }
    .article-page h3 {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 500;
      color: var(--heading);
      margin: 24px 0 10px;
    }
    .article-page p {font-weight: 400;
      color: var(--body-text);
      line-height: 1.7;
      max-width: 78ch;
      margin: 0 0 14px;
    }
    .article-page ul, .article-page ol {
      padding-left: 24px;
      margin: 12px 0 18px;
    }
    .article-page li {font-weight: 400;
      color: var(--body-text);
      line-height: 1.7;
      margin-bottom: 8px;
    }
    .article-page blockquote {
      border-left: 3px solid var(--title-color);
      background: rgba(194, 39, 75, .08);
      padding: 16px 20px;
      margin: 18px 0;
      border-radius: 0 var(--radius) var(--radius) 0;
      font-style: italic;
      color: var(--body-text);
    }
    .article-page .article-faq {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 28px;
      margin: 32px 0;
    }
    .article-page .article-faq h2 {
      margin-top: 0;
    }
    .article-page details {
      border-bottom: 1px solid var(--border-light);
      padding: 14px 0;
    }
    .article-page details:last-child {
      border-bottom: none;
    }
    .article-page summary {
      cursor: pointer;
      font-family: var(--font-heading);
      font-weight: 500;
      color: var(--heading);
      font-size: 18px;
    }
    .article-page details p {
      margin-top: 10px;
    }
    .article-page .related-articles {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 28px;
      margin: 32px 0;
    }
    .article-page .related-articles h2 {
      margin-top: 0;
      font-size: 18px;
    }
    .article-page .related-articles ul {
      list-style: none;
      padding: 0;
    }
    .article-page .related-articles li {
      padding: 8px 0;
      border-bottom: 1px solid var(--border-light);
    }
    .article-page .related-articles li:last-child {
      border-bottom: none;
    }
    .breadcrumb {
      font-family: var(--font);
      font-size: 15px;
      font-weight: 300;
      color: var(--body-secondary);
      margin-bottom: 16px;
    }
    .breadcrumb a {
      color: var(--body-secondary);
    }
    .breadcrumb a:hover {
      color: var(--link-hover);
    }
    .breadcrumb span {
      margin: 0 6px;
      color: var(--border);
    }

    /* Hub page cards */
    .hub-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin-bottom: 14px;
      transition: border-color .24s ease;
    }
    .hub-card:hover {
      border-color: var(--title-color);
    }
    .hub-card h3 {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 500;
      color: var(--heading);
      margin: 0 0 6px;
    }
    .hub-card p {font-weight: 400;
      color: var(--body-secondary);
      margin: 0;
      line-height: 1.5;
    }
    .hub-card a {
      text-decoration: none;
      color: inherit;
    }
    .hub-card a:hover {
      color: inherit;
    }

    @media (max-width: 768px) {
      body { font-size: 17px; line-height: 1.65; }
      .card { padding: 24px 20px; }
      .card h2 { font-size: 24px; }
      .card h3 { font-size: 20px; }
      .card .text { font-size: 17px; line-height: 1.65; }
      .hero-text .intro { font-size: 17px; line-height: 1.65; }
      .emphasis-box { font-size: 16px; padding: 14px 16px; }
      .bio-list li { font-size: 16px; }
      th, td { font-size: 15px; padding: 10px 12px; }
      .original-content { padding: 24px 20px; }
      .original-content p, .original-content li { font-size: 17px; line-height: 1.65; }
      .original-content h2 { font-size: 24px; }
    }
    @media (max-width: 700px) {
      .start-here-grid { grid-template-columns: 1fr !important; }
    }
    @media (max-width: 600px) {
      .article-page h1 { font-size: 24px; }
      .article-page { padding: 24px 16px 40px; }
    }
