  :root{
    --bg: #FAF6ED;
    --bg-raised: #F3EBD8;
    --bg-card: #FFFFFF;
    --line: #E4D9BC;
    --ink: #23281F;
    --ink-muted: #5B6350;
    --ink-faint: #8B9179;
    --moss: #2F8F5B;
    --moss-bright: #1FAE6B;
    --gold: #E0902B;
    --radius: 2px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--ink);
    font-family:'Source Sans 3', sans-serif;
    font-weight:400;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  ::selection{background:var(--moss); color:#0E120D;}
  a{color:inherit; text-decoration:none;}
  .wrap{max-width:1120px; margin:0 auto; padding:0 32px;}
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--moss-bright);
  }
  h1,h2,h3{font-family:'Fraunces', serif; font-weight:400; letter-spacing:-0.01em;}

  /* NAV */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(250,246,237,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:20px 32px; max-width:1120px; margin:0 auto;
  }
  .logo{
    font-family:'Fraunces', serif; font-size:19px; letter-spacing:-0.01em;
    display:flex; align-items:center; gap:10px;
  }
  .logo img{ width:30px; height:30px; display:block; }
  .logo span{color:var(--moss-bright); font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.1em;}
  .navlinks{display:flex; gap:36px; align-items:center;}
  .navlinks a{
    font-size:14px; color:var(--ink-muted); transition:color .2s;
  }
  .navlinks a:hover{color:var(--ink);}
  .navlinks .cta{
    color:var(--bg); background:var(--moss-bright);
    padding:9px 18px; border-radius:var(--radius); font-weight:500; font-size:13px;
  }
  .navlinks .cta:hover{background:var(--gold);}
  .navtoggle{display:none;}

  /* HERO */
  .hero{
    padding:120px 0 90px;
    position:relative;
    border-bottom:1px solid var(--line);
    overflow:hidden;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.15fr 0.85fr; gap:64px; align-items:center;
  }
  .hero h1{
    font-size:clamp(38px, 5.4vw, 66px);
    line-height:1.04;
    color:var(--ink);
    margin:22px 0 26px;
  }
  .hero h1 em{font-style:italic; color:var(--moss-bright);}
  .hero p.lede{
    font-size:18px; color:var(--ink-muted); max-width:46ch; margin-bottom:36px;
  }
  .hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
  .btn{
    display:inline-block; padding:13px 24px; border-radius:var(--radius);
    font-size:14px; font-weight:500; font-family:'Source Sans 3', sans-serif;
    transition:all .2s; border:1px solid transparent; cursor:pointer;
  }
  .btn-primary{background:var(--moss-bright); color:#0E120D;}
  .btn-primary:hover{background:var(--gold);}
  .btn-ghost{border-color:var(--line); color:var(--ink);}
  .btn-ghost:hover{border-color:var(--moss-bright); color:var(--moss-bright);}

  /* Sparkline signature */
  .curve-panel{
    background:var(--bg-raised); border:1px solid var(--line); border-radius:var(--radius);
    padding:28px 26px 22px;
  }
  .curve-panel .label{
    font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--ink-faint);
    letter-spacing:0.08em; text-transform:uppercase; margin-bottom:14px;
    display:flex; justify-content:space-between;
  }
  .curve-panel svg{width:100%; height:auto; display:block;}
  #curve-path{
    stroke-dasharray:900; stroke-dashoffset:900;
    animation:draw 2.4s ease forwards .3s;
  }
  @keyframes draw{to{stroke-dashoffset:0;}}
  .curve-foot{
    display:flex; justify-content:space-between; margin-top:10px;
    font-family:'IBM Plex Mono', monospace; font-size:10.5px; color:var(--ink-faint);
  }

  /* SECTION shared */
  section{padding:88px 0;}
  section.divider{border-bottom:1px solid var(--line);}
  .sec-head{max-width:100%; margin-bottom:52px; text-align:center;}
  .sec-head h2{font-size:clamp(28px,3vw,52px); margin-top:14px; color:var(--ink); text-wrap:balance;}
  .sec-head p{color:var(--ink-muted); font-size:16px; margin:14px auto 0; max-width:56ch;}

  /* MISSION */
  .mission-text{
    font-family:'Fraunces', serif; font-size:clamp(19px,1.8vw,23px);
    line-height:1.6; color:var(--ink); max-width:800px; font-weight:300;
    text-align:center; margin:0 auto;
  }
  .mission-text em{color:var(--moss-bright); font-style:italic;}

  /* PILLARS */
  .pillars{
    display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
    background:var(--line); border:1px solid var(--line);
  }
  .pillars.pillars-3{ grid-template-columns:repeat(3,1fr); }
  .pillar{
    background:var(--bg); padding:32px 28px; transition:background .25s;
  }
  .pillar:hover{background:var(--bg-card);}
  .pillar .num{font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--moss-bright); letter-spacing:0.08em;}
  .pillar h3{font-size:19px; margin:14px 0 10px; color:var(--ink); font-weight:500;}
  .pillar p{font-size:14.5px; color:var(--ink-muted);}

  /* ESSAYS */
  .essays{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
  .essay-card{
    background:var(--bg-card); border:1px solid var(--line); border-radius:var(--radius);
    padding:26px 24px; display:flex; flex-direction:column; gap:14px;
    transition:border-color .2s;
  }
  .essay-card:hover{border-color:var(--moss);}
  .essay-tag{font-family:'IBM Plex Mono', monospace; font-size:10.5px; color:var(--gold); letter-spacing:0.08em; text-transform:uppercase;}
  .essay-card h3{font-size:19px; color:var(--ink); font-weight:500; line-height:1.3;}
  .essay-card p{font-size:14px; color:var(--ink-muted); flex-grow:1;}
  .essay-meta{font-size:12.5px; color:var(--ink-faint); border-top:1px solid var(--line); padding-top:12px;}

  /* PRINCIPLES */
  .principles-wrap{display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:start;}
  .principle-list{list-style:none;}
  .principle-list li{
    display:flex; gap:18px; padding:20px 0; border-top:1px solid var(--line);
  }
  .principle-list li:last-child{border-bottom:1px solid var(--line);}
  .principle-list .mark{color:var(--moss-bright); font-family:'Fraunces', serif; font-style:italic; font-size:20px; flex-shrink:0;}
  .principle-list h4{font-size:16px; color:var(--ink); font-weight:500; margin-bottom:4px;}
  .principle-list p{font-size:14px; color:var(--ink-muted);}

  /* GET INVOLVED */
  .involve{
    background:var(--bg-raised); border:1px solid var(--line); border-radius:var(--radius);
    padding:56px; text-align:left;
    display:grid; grid-template-columns:1.2fr 0.8fr; gap:48px; align-items:center;
  }
  .involve h2{font-size:clamp(26px,3vw,36px); margin-bottom:16px;}
  .involve p{color:var(--ink-muted); max-width:52ch;}
  .involve-actions{display:flex; flex-direction:column; gap:12px;}
  .involve-actions .btn{text-align:center;}

  /* SHARE ROW */
  .share-row{display:flex; align-items:center; gap:10px; margin-top:22px; flex-wrap:wrap;}
  .share-label{font-size:13px; color:var(--ink-muted); font-weight:500;}
  .share-btn{
    background:var(--bg); border:1px solid var(--line); color:var(--ink);
    padding:9px 16px; border-radius:var(--radius); font-family:'Source Sans 3', sans-serif; font-size:13px;
    cursor:pointer; transition:border-color .2s, color .2s;
  }
  .share-btn:hover{border-color:var(--moss-bright); color:var(--moss-bright);}
  .share-btn.copied{border-color:var(--moss-bright); color:var(--moss-bright);}

  /* FOOTER */
  footer{padding:56px 0 40px; border-top:1px solid var(--line);}
  .foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; margin-bottom:44px;}
  .foot-col h5{
    font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--ink-faint);
    letter-spacing:0.08em; text-transform:uppercase; margin-bottom:16px;
  }
  .foot-col a, .foot-col p{display:block; font-size:14px; color:var(--ink-muted); margin-bottom:10px;}
  .foot-col a:hover{color:var(--moss-bright);}
  .foot-bottom{
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
    border-top:1px solid var(--line); padding-top:24px;
    font-size:12.5px; color:var(--ink-faint);
  }
  .foot-social{display:flex; gap:18px;}

@media(max-width:1000px) and (min-width:861px){
  .pillars{ grid-template-columns:repeat(2,1fr); }
}
  @media(max-width:860px){
    .navlinks{display:none;}
    .hero-grid, .principles-wrap, .involve, .foot-grid{grid-template-columns:1fr;}
    .pillars{grid-template-columns:1fr;}
    .essays{grid-template-columns:1fr;}
    .involve{padding:36px;}
    .foot-grid{ text-align:center; gap:32px; }
    .foot-tagline{ margin-left:auto; margin-right:auto; }
    .foot-col h5{ margin-top:8px; }
    .foot-bottom{ flex-direction:column; text-align:center; }
    .blog-list .post-row{ grid-template-columns:1fr; }
    .post-date{ padding-top:0; }
  }
  @media(prefers-reduced-motion: reduce){
    #curve-path{animation:none; stroke-dashoffset:0;}
    html{scroll-behavior:auto;}
  }

/* ---- Blog listing & article styles ---- */
.breadcrumb{font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--ink-faint); margin-bottom:24px;}
.breadcrumb a{color:var(--moss-bright);}
.breadcrumb a:hover{text-decoration:underline;}

.blog-hero{padding:64px 0 48px; border-bottom:1px solid var(--line);}
.blog-hero h1{font-size:clamp(32px,4.4vw,50px); margin-top:14px; color:var(--ink);}
.blog-hero p{color:var(--ink-muted); font-size:16px; margin-top:14px; max-width:56ch;}

.blog-list{padding:56px 0;}
.post-row{
  display:grid; grid-template-columns:140px 1fr; gap:28px;
  padding:32px 0; border-top:1px solid var(--line);
}
.post-row:last-child{border-bottom:1px solid var(--line);}
.post-date{font-family:'IBM Plex Mono', monospace; font-size:12.5px; color:var(--ink-faint); padding-top:4px;}
.post-row h2{font-size:23px; color:var(--ink); font-weight:500; margin-bottom:8px;}
.post-row h2 a:hover{color:var(--moss-bright);}
.post-row p{color:var(--ink-muted); font-size:15px; max-width:64ch;}
.post-row .essay-tag{margin-bottom:10px; display:inline-block;}

/* Article page */
.article{padding:60px 0 80px;}
.article-head{max-width:760px; margin:0 auto 48px;}
.article-head h1{font-size:clamp(30px,4.6vw,46px); margin:16px 0 20px; color:var(--ink); line-height:1.12;}
.article-meta{
  display:flex; gap:16px; align-items:center; color:var(--ink-faint);
  font-family:'IBM Plex Mono', monospace; font-size:12.5px; margin-top:20px;
  border-top:1px solid var(--line); padding-top:20px;
}
.article-body{max-width:720px; margin:0 auto; font-size:17.5px; color:var(--ink);}
.article-body p{margin-bottom:22px; line-height:1.75;}
.article-body h2{font-size:26px; margin:44px 0 18px; color:var(--ink);}
.article-body blockquote{
  border-left:2px solid var(--moss-bright); padding-left:22px; margin:32px 0;
  font-family:'Fraunces', serif; font-style:italic; color:var(--moss-bright); font-size:19px;
}
.article-foot{
  max-width:720px; margin:56px auto 0; padding-top:28px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px;
}

/* ---- Dynamic enhancements ---- */
.pillar{ position:relative; overflow:hidden; }
.pillar::before{
  content:''; position:absolute; left:0; top:0; height:2px; width:0;
  background:var(--moss-bright); transition:width .35s ease;
}
.pillar:hover::before{ width:100%; }
.pillar:hover{ transform:translateY(-3px); transition:transform .25s ease, background .25s ease; }

.essay-card{ transition:transform .25s ease, border-color .2s ease, box-shadow .25s ease; }
.essay-card:hover{ transform:translateY(-4px); box-shadow:0 12px 28px -14px rgba(35,40,31,0.22); }

.btn{ position:relative; overflow:hidden; }
.btn-primary::after{
  content:''; position:absolute; inset:0; background:rgba(255,255,255,0.25);
  transform:translateX(-100%); transition:transform .4s ease;
}
.btn-primary:hover::after{ transform:translateX(0); }

/* Stats strip */
.stats{ padding:0 0 88px; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.stat{ background:var(--bg-card); padding:32px 24px; text-align:center; }
.stat .num{ font-family:'Fraunces', serif; font-size:clamp(28px,3.6vw,42px); color:var(--moss-bright); font-weight:400; }
.stat .lbl{ font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--ink-faint); margin-top:8px; }

/* Quote carousel */
.quote-strip{ position:relative; min-height:150px; }
.quote-slide{
  position:absolute; inset:0; opacity:0; transform:translateY(10px);
  transition:opacity .6s ease, transform .6s ease; pointer-events:none;
}
.quote-slide.active{ opacity:1; transform:translateY(0); pointer-events:auto; }
.quote-slide blockquote{ font-family:'Fraunces', serif; font-style:italic; font-size:clamp(20px,2.6vw,28px); color:var(--ink); line-height:1.5; max-width:820px; }
.quote-slide cite{ display:block; margin-top:16px; font-style:normal; font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--moss-bright); letter-spacing:0.04em; }
.quote-dots{ display:flex; gap:8px; margin-top:28px; }
.quote-dot{ width:7px; height:7px; border-radius:50%; background:var(--ink-faint); cursor:pointer; border:none; padding:0; transition:background .2s; opacity:0.5; }
.quote-dot.active{ background:var(--moss-bright); opacity:1; }

/* Floating accent shapes in hero */
.hero{ position:relative; }
.hero-accent{
  position:absolute; border-radius:50%; filter:blur(0px); pointer-events:none; opacity:0.12;
}
.hero-accent.a1{ width:260px; height:260px; background:var(--moss-bright); top:-80px; right:60px; animation:float1 9s ease-in-out infinite; }
.hero-accent.a2{ width:160px; height:160px; background:var(--gold); bottom:-40px; left:-40px; animation:float2 11s ease-in-out infinite; }
@keyframes float1{ 0%,100%{transform:translate(0,0);} 50%{transform:translate(-18px,22px);} }
@keyframes float2{ 0%,100%{transform:translate(0,0);} 50%{transform:translate(16px,-18px);} }

@media(max-width:860px){
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(prefers-reduced-motion: reduce){
  .hero-accent{ animation:none; }
}

/* ---- Suffering clock ---- */
.clock-panel{
  background:#0B0D0A; border-radius:6px; padding:32px 24px 26px; margin-bottom:20px;
  border:1px solid rgba(31,174,107,0.35);
  box-shadow:0 0 0 1px rgba(31,174,107,0.08), 0 20px 60px -20px rgba(31,174,107,0.25), 0 0 40px -10px rgba(224,144,43,0.12);
  position:relative;
}
.clock-panel::before{
  content:''; position:absolute; inset:-1px; border-radius:6px; padding:1px;
  background:linear-gradient(120deg, rgba(31,174,107,0.5), rgba(224,144,43,0.3), rgba(31,174,107,0.5));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  animation:border-flow 6s linear infinite; pointer-events:none;
}
@keyframes border-flow{ 0%{ opacity:0.5; } 50%{ opacity:1; } 100%{ opacity:0.5; } }
.clock-panel-head{
  display:inline-flex; align-items:center; gap:9px; font-family:'IBM Plex Mono', monospace;
  font-size:11px; letter-spacing:0.1em; color:#E0433A; margin-bottom:22px;
  border:1px solid rgba(224,67,58,0.4); border-radius:20px; padding:6px 14px;
  background:rgba(224,67,58,0.08);
}
.live-dot{ width:8px; height:8px; border-radius:50%; background:#E0433A; animation:live-pulse 1.4s ease-in-out infinite; }
@keyframes live-pulse{ 0%,100%{ opacity:1; box-shadow:0 0 0 0 rgba(224,67,58,0.5); } 50%{ opacity:0.5; box-shadow:0 0 0 5px rgba(224,67,58,0); } }
.clock-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:1px; background:#1A1E15; border-radius:4px; overflow:hidden; }
.clock-card{ background:#12150F; padding:26px 16px; text-align:center; }
.clock-num{
  font-family:'IBM Plex Mono', monospace; font-size:clamp(24px,3.2vw,34px); font-weight:600;
  color:#E0902B; font-variant-numeric:tabular-nums; text-shadow:0 0 20px rgba(224,144,43,0.55), 0 0 44px rgba(224,144,43,0.25);
  transition:transform .12s ease;
}
.clock-num.tick{ transform:scale(1.1); }
.clock-lbl{ font-size:12.5px; color:#A8B096; margin-top:11px; line-height:1.4; }
.clock-source{ font-size:12px; color:var(--ink-faint); line-height:1.6; max-width:820px; }

@media(max-width:860px){
  .clock-grid{ grid-template-columns:repeat(2,1fr); }
}

/* ---- Void hero panel ---- */
.void-panel{ background:#141810; border-color:#2A3020; position:relative; z-index:2; backdrop-filter:blur(2px); }
.void-panel .label span{ color:#8B9179; }
.void-panel .curve-foot span{ color:#8B9179; }
.void-star{ animation:twinkle 3.4s ease-in-out infinite; }
.void-star.d2{ animation-delay:1.1s; animation-duration:4s; }
.void-star.d3{ animation-delay:2.1s; animation-duration:2.8s; }
@keyframes twinkle{ 0%,100%{ opacity:0.25; } 50%{ opacity:1; } }
@media(prefers-reduced-motion: reduce){
  .void-star{ animation:none; opacity:0.7; }
}

/* ---- Mobile nav ---- */
.nav-toggle{
  display:none; background:none; border:none; cursor:pointer;
  flex-direction:column; justify-content:center; gap:5px; padding:8px; z-index:60;
}
.nav-toggle span{ width:22px; height:2px; background:var(--ink); display:block; border-radius:2px; transition:transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media(max-width:860px){
  nav{ position:relative; }
  .nav-toggle{ display:flex; }
  .navlinks{
    display:none; position:absolute; top:100%; left:0; right:0;
    background:var(--bg); border-bottom:1px solid var(--line);
    flex-direction:column; align-items:flex-start; gap:0; padding:8px 24px 20px;
    box-shadow:0 12px 24px -12px rgba(35,40,31,0.18);
  }
  .navlinks.open{ display:flex; }
  .navlinks a{ width:100%; padding:14px 0; border-bottom:1px solid var(--line); font-size:15px; }
  .navlinks a.cta{ border-bottom:none; text-align:center; margin-top:14px; padding:12px 0; }
}

/* ---- Full hero space backdrop ---- */
.hero{ background:#0B0D0A; position:relative; overflow:hidden; }
.hero-simple{ max-width:720px; margin:0 auto; text-align:center; position:relative; z-index:2; }
.hero-simple p.lede{ text-align:left; max-width:560px; margin-left:auto; margin-right:auto; }
.hero-simple h1{ text-wrap:balance; }
.hero-simple::before{
  content:''; position:absolute; top:-40px; left:50%; transform:translateX(-50%);
  width:900px; max-width:160vw; height:calc(100% + 80px); z-index:-1;
  background:radial-gradient(ellipse 60% 70% at center, rgba(11,13,10,0.85) 0%, rgba(11,13,10,0.5) 55%, transparent 80%);
  pointer-events:none;
}
.hero-simple .hero-ctas{ justify-content:center; }
.hero-starfield{ position:absolute; inset:0; width:100%; height:100%; z-index:0; }
.hero .wrap{ position:relative; z-index:2; }
.hero .eyebrow{ color:#7FD9A8; }
.hero h1{ color:#F3EBD8; }
.hero h1 em{ color:#3FD98A; }
.hero p.lede{ color:#AEB6A0; }
.hero .btn-ghost{ border-color:#33392A; color:#F3EBD8; }
.hero .btn-ghost:hover{ border-color:#1FAE6B; color:#1FAE6B; }
.hero-accent{ z-index:1; }

/* ---- Touch target sizing ---- */
.nav-toggle{ min-width:44px; min-height:44px; }
.quote-dots{ gap:16px; }
.quote-dot{ width:10px; height:10px; padding:6px; background-clip:content-box; }

.form-note{ font-size:11.5px; color:var(--ink-faint); margin-top:8px; max-width:420px; }

/* ---- Icon-only share buttons (top of article) ---- */
.share-icons{ display:flex; gap:8px; margin-top:18px; }
.share-icon-btn{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--ink-muted); background:var(--bg-card); cursor:pointer;
  transition:border-color .2s, color .2s; padding:0;
}
.share-icon-btn:hover, .share-icon-btn.copied{ border-color:var(--moss-bright); color:var(--moss-bright); }
.share-icon-btn svg{ width:16px; height:16px; }

/* ---- Section head accent rule (fills blank whitespace intentionally) ---- */


/* ---- Large screen scaling: fills space intentionally instead of leaving a gap ---- */
@media(min-width:1440px){
  .wrap{ max-width:1320px; }
  nav{ max-width:1320px; }
  .sec-head h2{ font-size:56px; }
  .sec-head p{ font-size:17px; }
}
@media(min-width:1800px){
  .wrap{ max-width:1480px; }
  nav{ max-width:1480px; }
  .sec-head h2{ font-size:62px; }
}
