:root {
    /* DARK MODE (default — business/tech sections) */
    --bg-0:    #0A0A0B;
    --bg-1:    #111116;
    --bg-2:    #181820;
    --bg-3:    #22222C;
    --bg-tint: #0F0F14;

    --ink:     #F5F5F7;
    --ink-2:   #C4C4CB;
    --ink-3:   #8C8C95;
    --ink-4:   #5C5C64;
    --ink-5:   #3A3A40;

    /* BRAND — YELLOW */
    --yellow:        #FFDE27;
    --yellow-deep:   #E5C720;
    --yellow-glow:   rgba(255, 222, 39, 0.45);

    /* ACCENTS */
    --peach:   #F0A45D;
    --saffron: #E0C04D;
    --sage:    #7BD888;
    --cyan:    #5DD3F0;
    --purple:  #B388FB;
    --red:     #E55D5D;

    --line:    rgba(255,255,255,0.06);
    --line-2:  rgba(255,255,255,0.12);
    --line-3:  rgba(255,255,255,0.20);

    --serif:   'Newsreader', 'Charter', 'Georgia', serif;
    --mono:    'Sometype Mono', 'JetBrains Mono', monospace;

    --max:     1380px;
    --gutter:  clamp(1rem, 3vw, 2.5rem);
  }

  /* WARM MODE — applied via .warm class on individual sections */
  .warm {
    --bg-0:    #FAF7E8;
    --bg-1:    #F5F0DE;
    --bg-2:    #EFE7CB;
    --bg-3:    #E5DBB8;
    --bg-tint: #FCFAEF;

    --ink:     #1A1A1A;
    --ink-2:   #404040;
    --ink-3:   #6E6E6E;
    --ink-4:   #9E9E9A;
    --ink-5:   #BEBEB8;

    --yellow:      #B89510;
    --yellow-deep: #8E7308;
    --yellow-glow: rgba(184, 149, 16, 0.20);

    --line:    rgba(26,26,26,0.08);
    --line-2:  rgba(26,26,26,0.16);
    --line-3:  rgba(26,26,26,0.28);

    background: var(--bg-1);
    color: var(--ink);
    position: relative;
  }
  /* Subtle paper grain on warm sections */
  .warm::before {
    content: ''; position: absolute; inset: 0;
    pointer-events: none; z-index: 1; opacity: 0.20;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
  }
  .warm > * { position: relative; z-index: 2; }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg-0);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 14.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--yellow); color: var(--bg-0); }

  /* AMBIENT — yellow-tinted aurora */
  body::before {
    content: ''; position: fixed; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none; z-index: 0;
    mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.8), transparent 70%);
  }
  body::after {
    content: ''; position: fixed;
    top: -30vh; left: 50%; transform: translateX(-50%);
    width: 120vw; height: 80vh;
    background: radial-gradient(ellipse at center,
      rgba(255, 222, 39, 0.18) 0%,
      rgba(240, 164, 93, 0.10) 30%,
      rgba(229, 192, 77, 0.04) 55%,
      transparent 70%);
    pointer-events: none; z-index: 0;
    filter: blur(60px);
    animation: aurora 22s ease-in-out infinite alternate;
  }
  @keyframes aurora {
    from { transform: translateX(-50%) translateY(0) scale(1); }
    to   { transform: translateX(-45%) translateY(20px) scale(1.05); }
  }

  /* ANIMATIONS */
  .stagger > * { opacity: 0; transform: translateY(12px); animation: rise 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .stagger > *:nth-child(1) { animation-delay: 100ms; }
  .stagger > *:nth-child(2) { animation-delay: 220ms; }
  .stagger > *:nth-child(3) { animation-delay: 340ms; }
  .stagger > *:nth-child(4) { animation-delay: 460ms; }
  .stagger > *:nth-child(5) { animation-delay: 580ms; }
  @keyframes rise { to { opacity: 1; transform: translateY(0); } }
  .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1), transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  @keyframes pulse-yellow {
    0%, 60%   { opacity: 1;   box-shadow: 0 0 12px var(--yellow-glow); }
    65%, 100% { opacity: 0.5; box-shadow: 0 0 0 transparent; }
  }
  @keyframes pulse-warm {
    0%, 60%   { opacity: 1;   box-shadow: 0 0 8px var(--peach); }
    65%, 100% { opacity: 0.4; box-shadow: 0 0 0 transparent; }
  }
  @keyframes cursor { 50% { opacity: 0; } }
  @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

  /* TOP STATUS BAR (dark) */
  .topstatus {
    background: rgba(10,10,11,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter);
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-family: var(--mono); font-size: 0.7rem; color: var(--ink-3);
    position: relative; z-index: 10;
  }
  .topstatus__path-prompt { color: var(--sage); }
  .topstatus__path-tilde { color: var(--cyan); }
  .topstatus__path-slash { color: var(--ink-4); }
  .topstatus__path-file { color: var(--ink); }
  .topstatus__path-ext { color: var(--yellow); }
  .topstatus__right { display: flex; gap: 0.6rem; align-items: center; }
  .topstatus__pill {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(255,222,39,0.10);
    border: 1px solid rgba(255,222,39,0.30);
    padding: 0.18rem 0.65rem; border-radius: 100px;
    font-size: 0.65rem; color: var(--yellow);
    letter-spacing: 0.04em;
  }
  .topstatus__dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; animation: pulse-yellow 2s infinite; }
  @media (max-width: 800px) { .topstatus__hide { display: none; } }

  /* TAB BAR (dark) */
  .tabbar {
    background: rgba(17,17,22,0.85);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-2);
    display: flex; overflow-x: auto;
    position: sticky; top: 0; z-index: 40;
  }
  .tab {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3);
    border-right: 1px solid var(--line); background: var(--bg-1);
    white-space: nowrap; transition: color 200ms, background 200ms;
    border-bottom: 2px solid transparent;
  }
  .tab:hover { color: var(--ink); background: var(--bg-2); }
  .tab--active { background: var(--bg-0); color: var(--ink); border-bottom-color: var(--yellow); }
  .tab__icon { width: 12px; height: 12px; border-radius: 2px; display: inline-block; }
  .tab__icon--md  { background: var(--peach); }
  .tab__icon--ts  { background: var(--cyan); }
  .tab__icon--mdx { background: var(--yellow); }
  .tab__icon--cfg { background: var(--sage); }
  .tab__close { color: var(--ink-4); font-size: 1rem; line-height: 1; margin-left: 0.4rem; opacity: 0; transition: opacity 200ms; }
  .tab:hover .tab__close { opacity: 1; }
  .tabbar__spacer { flex: 1; border-right: 1px solid var(--line); background: var(--bg-0); }
  .tabbar__cta {
    padding: 0.85rem 1.25rem;
    font-family: var(--mono); font-size: 0.75rem;
    color: var(--ink); background: var(--bg-1);
    transition: background 200ms, color 200ms;
    display: inline-flex; align-items: center; gap: 0.5rem; border-left: 1px solid var(--line);
  }
  .tabbar__cta:hover { color: var(--yellow); background: var(--bg-2); }
  .tabbar__cta-kbd { font-size: 0.65rem; background: var(--bg-2); border: 1px solid var(--line-2); padding: 0.1rem 0.4rem; border-radius: 3px; color: var(--ink-3); }

  /* SHARED BUTTONS */
  .btn {
    display: inline-flex; align-items: center; gap: 0.65rem;
    font-family: var(--mono); font-size: 0.85rem;
    padding: 0.95rem 1.4rem; border-radius: 8px;
    transition: transform 200ms, background 200ms, border-color 200ms, box-shadow 200ms, color 200ms;
  }
  .btn--primary {
    background: var(--yellow); color: var(--bg-0);
    border: 1px solid var(--yellow);
    box-shadow: 0 0 30px var(--yellow-glow), inset 0 1px 0 rgba(255,255,255,0.30);
    font-weight: 500;
  }
  .btn--primary:hover {
    background: var(--yellow-deep); border-color: var(--yellow-deep);
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--yellow-glow);
  }
  .btn--secondary {
    background: rgba(255,255,255,0.04); color: var(--ink);
    border: 1px solid var(--line-2); backdrop-filter: blur(10px);
  }
  .btn--secondary:hover { border-color: var(--ink-3); transform: translateY(-2px); background: rgba(255,255,255,0.08); }
  .warm .btn--secondary { background: transparent; color: var(--ink); border-color: var(--line-2); backdrop-filter: none; }
  .warm .btn--secondary:hover { border-color: var(--ink); background: rgba(0,0,0,0.04); }
  .btn-arrow { font-size: 1rem; line-height: 1; }
  .btn-kbd {
    margin-left: 0.4rem; font-size: 0.65rem;
    background: rgba(0,0,0,0.15); border: 1px solid rgba(0,0,0,0.25);
    padding: 0.1rem 0.4rem; border-radius: 3px;
  }
  .btn--primary .btn-kbd { background: rgba(0,0,0,0.20); border-color: rgba(0,0,0,0.35); color: var(--bg-0); }
  .btn--secondary .btn-kbd { background: var(--bg-2); border-color: var(--line-2); color: var(--ink-3); }
  .warm .btn--secondary .btn-kbd { background: rgba(0,0,0,0.05); border-color: var(--line-2); color: var(--ink-3); }

  /* HERO (dark) */
  .hero {
    position: relative; z-index: 2;
    max-width: var(--max); margin: 0 auto;
    padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  }
  .hero__path {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3);
    margin: 0 0 3rem; flex-wrap: wrap;
  }
  .hero__path-prompt { color: var(--sage); }
  .hero__path-tilde { color: var(--cyan); }
  .hero__path-name { color: var(--ink); }
  .hero__path-ext { color: var(--yellow); }
  .hero__path-tag {
    margin-left: auto;
    background: rgba(123,216,136,0.12); border: 1px solid rgba(123,216,136,0.32);
    padding: 0.25rem 0.7rem; border-radius: 100px;
    font-size: 0.7rem; color: var(--sage);
    display: inline-flex; align-items: center; gap: 0.4rem;
  }
  .hero__path-tag-dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; animation: pulse-warm 2s infinite; box-shadow: 0 0 8px var(--sage); }

  .hero__grid {
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
  }
  @media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

  .hero__eyebrow {
    font-family: var(--mono); font-size: 0.78rem;
    color: var(--ink-3); margin: 0 0 1.5rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .hero__eyebrow::before { content: '//'; color: var(--yellow); }
  .hero__eyebrow-mark { color: var(--cyan); }

  .hero__title {
    font-family: var(--serif); font-weight: 360;
    font-variation-settings: "opsz" 96;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.0; letter-spacing: -0.025em;
    margin: 0 0 1.75rem; color: var(--ink);
  }
  .hero__title-word { display: inline-block; margin-right: 0.15em; }
  .hero__title-word--italic {
    font-style: italic; font-weight: 420;
    background: linear-gradient(120deg, var(--yellow), var(--peach), var(--yellow-deep));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 8s linear infinite;
  }
  .hero__title-dot { color: var(--yellow); }

  .hero__sub {
    font-family: var(--serif); font-weight: 380; font-variation-settings: "opsz" 24;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.55;
    color: var(--ink-2); margin: 0 0 2rem; max-width: 50ch;
  }
  .hero__sub em { color: var(--yellow); font-style: italic; }

  .hero__roles {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .hero__role {
    font-family: var(--mono); font-size: 0.75rem;
    padding: 0.4rem 0.85rem; border-radius: 100px;
    background: var(--bg-1); border: 1px solid var(--line-2);
    color: var(--ink-2);
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: border-color 220ms, color 220ms;
  }
  .hero__role:hover { color: var(--ink); border-color: var(--line-3); }
  .hero__role-dot { width: 6px; height: 6px; border-radius: 50%; }
  .hero__role-dot--yellow { background: var(--yellow); box-shadow: 0 0 6px var(--yellow-glow); }
  .hero__role-dot--peach  { background: var(--peach); }
  .hero__role-dot--sage   { background: var(--sage); }

  .hero__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

  /* PORTRAIT — family group shot */
  .portrait {
    position: relative; aspect-ratio: 5/7;
    border-radius: 12px; overflow: hidden;
    background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
    border: 1px solid var(--line-2);
    box-shadow: 0 24px 70px rgba(0,0,0,0.50),
                0 0 60px rgba(255,222,39,0.08),
                inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .portrait::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow), var(--peach), transparent);
    opacity: 0.7; z-index: 3;
  }
  .portrait__img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 25%; display: block;
    filter: saturate(1.02) contrast(1.02);
  }
  .portrait__meta {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.25rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78) 60%, rgba(0,0,0,0.92));
    z-index: 2;
    display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  }
  .portrait__meta-tag {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.22);
    padding: 0.35rem 0.75rem; border-radius: 100px;
    backdrop-filter: blur(10px);
    font-family: var(--mono); font-size: 0.7rem;
    color: var(--ink); letter-spacing: 0.04em;
  }
  .portrait__meta-tag--alt {
    background: rgba(255,222,39,0.12);
    border-color: rgba(255,222,39,0.30);
    color: var(--yellow);
  }
  .portrait__meta-dot { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; animation: pulse-warm 2s infinite; box-shadow: 0 0 8px var(--sage); }
  .portrait__corner {
    position: absolute; top: 1rem; right: 1rem;
    font-family: var(--mono); font-size: 0.65rem;
    background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.18);
    padding: 0.3rem 0.65rem; border-radius: 100px;
    color: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
    z-index: 2; letter-spacing: 0.04em;
    display: inline-flex; align-items: center; gap: 0.4rem;
  }
  .portrait__corner-dot {
    width: 6px; height: 6px; background: var(--yellow);
    border-radius: 50%; animation: pulse-yellow 2s infinite;
  }

  /* ============================
     MISSION (WARM)
     ============================ */
  .mission {
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
  }
  .mission__inner { max-width: var(--max); margin: 0 auto; }
  .mission__head {
    display: grid; grid-template-columns: auto 1fr;
    gap: clamp(2rem, 5vw, 4rem); align-items: end;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem; border-bottom: 1px dashed var(--line-2);
  }
  @media (max-width: 700px) { .mission__head { grid-template-columns: 1fr; gap: 1rem; } }
  .mission__label { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3); }
  .mission__label::before { content: '//'; color: var(--yellow); margin-right: 0.4rem; }
  .mission__title {
    font-family: var(--serif); font-weight: 360; font-variation-settings: "opsz" 96;
    font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -0.025em;
    margin: 0; color: var(--ink);
  }
  .mission__title-mark { color: var(--yellow); font-style: italic; font-weight: 420; }

  .mission__body {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem); align-items: start;
  }
  @media (max-width: 900px) { .mission__body { grid-template-columns: 1fr; } }
  .mission__intro {
    font-family: var(--serif); font-weight: 400; font-variation-settings: "opsz" 36;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    line-height: 1.4; color: var(--ink);
    margin: 0; letter-spacing: -0.01em;
  }
  .mission__intro em { color: var(--yellow-deep); font-style: italic; }
  .mission__intro strong { color: var(--ink); font-weight: 500; }
  .mission__prose {
    font-family: var(--serif); font-weight: 380; font-variation-settings: "opsz" 18;
    font-size: 1.1rem; line-height: 1.7; color: var(--ink-2);
  }
  .mission__prose p { margin: 0 0 1.25rem; }
  .mission__prose p:last-child { margin-bottom: 0; }
  .mission__prose em { color: var(--yellow-deep); font-style: italic; }
  .mission__prose strong { color: var(--ink); font-weight: 500; }

  /* ============================
     VENTURES (DARK)
     ============================ */
  .ventures {
    padding: clamp(4rem, 8vw, 6rem) var(--gutter);
    position: relative; z-index: 2;
    background: var(--bg-0);
  }
  .ventures__inner { max-width: var(--max); margin: 0 auto; }
  .ventures__head {
    display: grid; grid-template-columns: auto 1fr auto;
    gap: clamp(1rem, 4vw, 3rem); align-items: end;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem; border-bottom: 1px dashed var(--line-2);
  }
  @media (max-width: 700px) { .ventures__head { grid-template-columns: 1fr; gap: 1rem; } }
  .ventures__label { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3); }
  .ventures__label::before { content: '//'; color: var(--yellow); margin-right: 0.4rem; }
  .ventures__title {
    font-family: var(--serif); font-weight: 360; font-variation-settings: "opsz" 72;
    font-size: clamp(2rem, 4vw, 3rem); line-height: 1; letter-spacing: -0.025em;
    margin: 0; color: var(--ink);
  }
  .ventures__title-mark { color: var(--yellow); font-style: italic; font-weight: 420; text-shadow: 0 0 24px var(--yellow-glow); }
  .ventures__meta { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3); white-space: nowrap; }

  .ventures__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  }
  @media (max-width: 900px) { .ventures__grid { grid-template-columns: 1fr; } }

  .venture {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 12px; overflow: hidden;
    transition: border-color 320ms, transform 320ms, box-shadow 320ms;
    display: flex; flex-direction: column;
  }
  .venture:hover {
    border-color: var(--yellow); transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.40), 0 0 30px var(--yellow-glow);
  }
  .venture__head {
    padding: 0.85rem 1.25rem;
    background: var(--bg-tint); border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3);
  }
  .venture__head-left { display: inline-flex; align-items: center; gap: 0.5rem; }
  .venture__head-dot { width: 8px; height: 8px; border-radius: 50%; }
  .venture__head-dot--yellow { background: var(--yellow); box-shadow: 0 0 8px var(--yellow-glow); }
  .venture__head-dot--sage   { background: var(--sage); box-shadow: 0 0 8px var(--sage); }
  .venture__head-dot--cyan   { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
  .venture__body { padding: 1.75rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
  .venture__role {
    font-family: var(--mono); font-size: 0.7rem;
    color: var(--yellow); margin: 0 0 0.85rem;
    letter-spacing: 0.06em;
  }
  .venture__name {
    font-family: var(--serif); font-weight: 400; font-variation-settings: "opsz" 60;
    font-size: 1.95rem; line-height: 1;
    margin: 0 0 0.85rem; color: var(--ink); letter-spacing: -0.015em;
  }
  .venture__name em { color: var(--yellow); font-style: italic; }
  .venture__desc {
    font-family: var(--serif); font-weight: 380; font-variation-settings: "opsz" 18;
    font-size: 1rem; line-height: 1.55; color: var(--ink-2);
    margin: 0 0 1.25rem; flex: 1;
  }
  .venture__cta {
    font-family: var(--mono); font-size: 0.78rem;
    color: var(--yellow); padding-top: 1rem;
    border-top: 1px dashed var(--line);
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: color 200ms, transform 200ms;
  }
  .venture__cta:hover { color: var(--peach); transform: translateX(2px); }
  .venture__cta::after { content: '→'; }

  /* ============================
     CAUSE (WARM)
     ============================ */
  .cause {
    padding: clamp(4rem, 8vw, 6rem) var(--gutter);
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
  }
  .cause__inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem); align-items: start;
  }
  @media (max-width: 900px) { .cause__inner { grid-template-columns: 1fr; } }
  .cause__label { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3); margin: 0 0 1.25rem; }
  .cause__label::before { content: '//'; color: var(--yellow); margin-right: 0.4rem; }
  .cause__title {
    font-family: var(--serif); font-weight: 360; font-variation-settings: "opsz" 96;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.05;
    margin: 0 0 1.5rem; letter-spacing: -0.025em; color: var(--ink);
  }
  .cause__title em { color: var(--yellow-deep); font-style: italic; font-weight: 420; }
  .cause__title--sm { font-size: clamp(1.7rem, 3vw, 2.4rem); }
  .cause__sub {
    font-family: var(--serif); font-weight: 380; font-variation-settings: "opsz" 18;
    font-size: 1.1rem; line-height: 1.6;
    color: var(--ink-2); margin: 0 0 1.5rem; max-width: 48ch;
  }
  .cause__sub em { color: var(--yellow-deep); font-style: italic; }
  .cause__verse {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-left: 4px solid var(--yellow);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    font-family: var(--serif); font-weight: 400; font-variation-settings: "opsz" 24;
    font-size: 1.05rem; line-height: 1.5;
    color: var(--ink-2); font-style: italic;
    max-width: 48ch;
  }
  .cause__verse-cite {
    display: block; margin-top: 0.75rem;
    font-family: var(--mono); font-size: 0.7rem;
    color: var(--yellow-deep); letter-spacing: 0.06em; font-style: normal;
  }
  .cause__verse-cite::before { content: '— '; color: var(--ink-4); }

  /* ============================
     THOUGHTS (WARM)
     ============================ */
  .thoughts {
    padding: clamp(4rem, 8vw, 6rem) var(--gutter);
    border-top: 1px solid var(--line-2);
  }
  .thoughts__inner { max-width: var(--max); margin: 0 auto; }
  .thoughts__head {
    display: grid; grid-template-columns: auto 1fr auto;
    gap: clamp(1rem, 4vw, 3rem); align-items: end;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem; border-bottom: 1px dashed var(--line-2);
  }
  @media (max-width: 700px) { .thoughts__head { grid-template-columns: 1fr; gap: 1rem; } }
  .thoughts__label { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3); }
  .thoughts__label::before { content: '//'; color: var(--yellow); margin-right: 0.4rem; }
  .thoughts__title {
    font-family: var(--serif); font-weight: 360; font-variation-settings: "opsz" 72;
    font-size: clamp(2rem, 4vw, 3rem); line-height: 1; letter-spacing: -0.025em;
    margin: 0; color: var(--ink);
  }
  .thoughts__title-mark { color: var(--yellow-deep); font-style: italic; font-weight: 420; }
  .thoughts__more {
    font-family: var(--mono); font-size: 0.78rem;
    color: var(--yellow-deep); transition: color 200ms; white-space: nowrap;
  }
  .thoughts__more:hover { color: var(--ink); }
  .thoughts__more::after { content: ' →'; }

  .thoughts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  @media (max-width: 900px) { .thoughts__grid { grid-template-columns: 1fr; } }
  .thought {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 10px; overflow: hidden;
    transition: border-color 280ms, transform 280ms, box-shadow 280ms;
    display: flex; flex-direction: column;
  }
  .thought:hover {
    border-color: var(--yellow); transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26,26,26,0.10);
  }
  .thought__head {
    padding: 0.75rem 1.1rem;
    background: var(--bg-tint); border-bottom: 1px solid var(--line);
    font-family: var(--mono); font-size: 0.68rem;
    color: var(--ink-3); letter-spacing: 0.04em;
    display: flex; justify-content: space-between;
  }
  .thought__head-date { color: var(--yellow-deep); }
  .thought__body { padding: 1.5rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
  .thought__topic {
    font-family: var(--mono); font-size: 0.68rem; color: var(--yellow-deep);
    letter-spacing: 0.06em; margin: 0 0 0.85rem;
  }
  .thought__title {
    font-family: var(--serif); font-weight: 480; font-variation-settings: "opsz" 28;
    font-size: 1.2rem; line-height: 1.25;
    color: var(--ink); margin: 0 0 0.85rem;
    letter-spacing: -0.01em; flex: 1;
  }
  .thought__excerpt {
    font-family: var(--mono); font-size: 0.78rem; line-height: 1.55;
    color: var(--ink-3); margin: 0 0 1rem;
  }
  .thought__read {
    font-family: var(--mono); font-size: 0.72rem;
    color: var(--yellow-deep); padding-top: 0.85rem;
    border-top: 1px dashed var(--line);
  }
  .thought__read::after { content: ' →'; }

  /* ============================
     CONNECT (DARK)
     ============================ */
  .connect {
    max-width: var(--max); margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
    position: relative; z-index: 2;
  }
  .connect__title {
    font-family: var(--serif); font-weight: 350; font-variation-settings: "opsz" 144;
    font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1; letter-spacing: -0.025em;
    margin: 0 0 2.5rem; color: var(--ink); max-width: 14ch;
  }
  .connect__title em { color: var(--yellow); font-style: italic; font-weight: 420; text-shadow: 0 0 30px var(--yellow-glow); }
  .connect__card {
    background: var(--bg-1); border: 1px solid var(--line-2);
    border-radius: 12px; padding: clamp(1.75rem, 3vw, 2.5rem);
    max-width: 760px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.40), 0 0 60px var(--yellow-glow);
    position: relative;
  }
  .connect__card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    opacity: 0.6;
  }
  .connect__corner {
    position: absolute; top: -0.65rem; left: 1.5rem;
    background: var(--bg-0); color: var(--yellow);
    padding: 0 0.6rem; font-family: var(--mono); font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
  .connect__corner::before { content: '/* '; color: var(--ink-4); }
  .connect__corner::after  { content: ' */'; color: var(--ink-4); }
  .connect__path {
    font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3);
    margin: 0 0 1rem;
  }
  .connect__path-prompt { color: var(--sage); }
  .connect__sub {
    font-family: var(--serif); font-weight: 380; font-variation-settings: "opsz" 24;
    font-size: 1.15rem; line-height: 1.55; color: var(--ink);
    margin: 0 0 1.75rem; max-width: 48ch;
  }
  .connect__sub em { color: var(--yellow); font-style: italic; }
  .connect__channels {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
    margin: 0 0 1.5rem;
  }
  @media (max-width: 600px) { .connect__channels { grid-template-columns: 1fr; } }
  .connect__channel {
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 8px; padding: 1rem 1.1rem;
    transition: border-color 220ms, background 220ms;
    display: grid; grid-template-columns: 1fr auto; gap: 0.4rem; align-items: baseline;
  }
  .connect__channel:hover { border-color: var(--yellow); background: var(--bg-3); }
  .connect__channel-label { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-3); letter-spacing: 0.04em; grid-column: 1 / -1; }
  .connect__channel-label::before { content: '//'; color: var(--yellow); margin-right: 0.3rem; }
  .connect__channel-value { font-family: var(--mono); font-size: 0.92rem; color: var(--ink); }
  .connect__channel-arrow { color: var(--ink-3); font-family: var(--mono); font-size: 0.85rem; }
  .connect__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

  /* FOOTER (DARK) */
  .footer { background: var(--bg-1); border-top: 1px solid var(--line-2); padding: 0; position: relative; z-index: 2; }
  .footer__main {
    max-width: var(--max); margin: 0 auto;
    padding: clamp(3rem, 5vw, 4.5rem) var(--gutter);
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 800px) { .footer__main { grid-template-columns: 1fr 1fr; } }
  .footer__brand {
    font-family: var(--serif); font-weight: 400; font-variation-settings: "opsz" 60;
    font-size: 2.1rem; line-height: 1; margin: 0 0 1rem;
    color: var(--ink); display: flex; align-items: baseline; gap: 0.4rem;
    letter-spacing: -0.015em;
  }
  .footer__brand-dot { width: 9px; height: 9px; background: var(--yellow); border-radius: 50%; transform: translateY(-3px); box-shadow: 0 0 12px var(--yellow-glow); }
  .footer__tag { font-family: var(--mono); font-size: 0.85rem; line-height: 1.55; color: var(--ink-3); max-width: 36ch; margin: 0; }
  .footer__col h4 { font-family: var(--mono); font-size: 0.7rem; color: var(--yellow); margin: 0 0 1.25rem; letter-spacing: 0.06em; }
  .footer__col h4::before { content: '// '; color: var(--ink-4); }
  .footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; font-family: var(--mono); font-size: 0.85rem; }
  .footer__col a { color: var(--ink-2); transition: color 200ms; }
  .footer__col a:hover { color: var(--yellow); }
  .footer__terminal {
    max-width: var(--max); margin: 0 auto; padding: 1rem var(--gutter);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    font-family: var(--mono); font-size: 0.7rem; color: var(--ink-3);
  }
  .footer__terminal-l { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
  .footer__terminal-l span:first-child { color: var(--sage); }
  .footer__terminal-r { color: var(--ink-4); }

  /* ───────────────────────────────────────────────
     THOUGHT DETAIL PAGE (long-form reading column)
     ─────────────────────────────────────────────── */
  .thought-page {
    position: relative;
    z-index: 2;
    background: var(--bg-0);
    padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  }
  .thought-page__inner {
    max-width: 740px;
    margin: 0 auto;
  }
  .thought-page__path {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--ink-3);
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin: 0 0 2.25rem;
  }
  .thought-page__path-prompt { color: var(--sage); }
  .thought-page__path-file { color: var(--yellow); }
  .thought-page__meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    margin: 0 0 1.5rem;
  }
  .thought-page__category { color: var(--ink-3); }
  .thought-page__date { color: var(--yellow-deep); }
  .thought-page__title {
    font-family: var(--serif);
    font-weight: 460;
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 2.75rem;
  }
  .thought-page__body {
    font-family: var(--serif);
    font-size: 1.18rem;
    line-height: 1.75;
    color: var(--ink-2);
  }
  .thought-page__body p { margin: 0 0 1.5rem; }
  .thought-page__body em {
    color: var(--yellow);
    font-style: italic;
  }
  .thought-page__body h3 {
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--yellow);
    margin: 3rem 0 1.25rem;
  }
  .thought-page__body h3::before {
    content: '// ';
    color: var(--ink-4);
  }
  .thought-page__pending {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--ink-3);
    border-left: 2px solid var(--yellow);
    padding-left: 0.9rem;
    margin-top: 2rem;
  }
  .thought-page__back {
    display: inline-block;
    margin-top: 3.5rem;
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--ink-3);
    transition: color 200ms;
  }
  .thought-page__back:hover { color: var(--yellow); }
