:root{
  /* Primary Colors */
  --blue:#0033cc;
  --orange:#ffaa0f;
  --red:#ff3333;
  --deep-blue:#0f2887;
  --coral-red:#fc3f28;

  /* UI Colors */
  --bg:#ffffff;
  --text:#000000;
  --text-2:#333333;
  --border:#000000;
  --shadow: rgba(0,0,0,0.15);

  /* Meter Status Colors */
  --status-lets:#00CC66;
  --status-alright:#b3f95b;
  --status-early:#00edf4;
  --status-oof:#ffaa0f;
  --status-yikes:#ff3333;

  /* Layout */
  --container-max: 1440px;
  --gutter: 24px;
  --margin-desktop: 48px;

  /* Spacing */
  --xs:4px; --sm:8px; --md:16px; --lg:24px; --xl:32px; --2xl:48px; --3xl:64px; --4xl:96px;

  /* Focus */
  --focus: 3px solid var(--orange);
  --focus-offset: 2px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%; display:block}
a{color:var(--blue); text-decoration:none}
a:hover{color:var(--red)}
:focus-visible{ outline: var(--focus); outline-offset: var(--focus-offset); }

/* Skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  background:#fff;
  border:3px solid #000;
  padding:10px 14px;
  font-weight:700;
  z-index:2000;
}
.skip-link:focus{ left: 8px; }

/* Container */
.container{
  width:100%;
  max-width: var(--container-max);
  margin:0 auto;
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
}

/* Type Scale */
h1,h2,h3,h4{ margin:0; }
.h1{
  font-family: 'Archivo Black', 'IBM Plex Sans', sans-serif;
  font-size:64px;
  font-weight:900;
  line-height:1.0;
  text-transform:uppercase;
  letter-spacing: 0.5px;
}
.h2{
  font-family:'IBM Plex Sans', sans-serif;
  font-size:48px;
  font-weight:800;
  line-height:1.1;
  text-transform:uppercase;
}
.h3{
  font-size:28px;
  font-weight:700;
  line-height:1.2;
}
.label{
  font-size:14px;
  font-weight:700;
  line-height:1.4;
  text-transform:uppercase;
  letter-spacing:1px;
}
.body-lg{ font-size:20px; }
.body{ font-size:18px; }
.mono{
  font-family:'IBM Plex Mono', monospace;
  font-size:16px;
}

/* Nav */
.nav{
  position:sticky; top:0; z-index:1000;
  background: var(--blue);
  border-bottom: 4px solid #000;
  height:88px;
  display:flex;
  align-items:center;
}
.nav-inner{
  width:100%;
  max-width: var(--container-max);
  margin:0 auto;
  padding: 0 var(--margin-desktop);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--lg);
}
.brand{
  display:flex; align-items:center; gap:12px;
  width:240px;
  color:#fff;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.5px;
  font-size:20px;
}
.brand svg{ flex: 0 0 auto; }
.nav-links{
  display:flex; align-items:center; gap: 6px;
  list-style:none; margin:0; padding:0;
}
.nav-links a{
  color:#fff;
  padding:12px 20px;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  display:inline-block;
}
.nav-links a:hover{ background: rgba(255,255,255,0.15); color:#fff; }
.nav-links a[aria-current="page"]{
  background: var(--orange);
  color:#000;
}

/* Mobile nav */
.hamburger{
  display:none;
  background:transparent;
  border:0;
  padding:8px;
  width:48px; height:48px;
  cursor:pointer;
  color:#fff;
}
.hamburger svg{ width:32px; height:32px; }
.mobile-overlay{
  position:fixed;
  inset:0;
  background:#fff;
  transform: translateX(100%);
  transition: transform 250ms ease;
  z-index:1500;
  padding: 24px 16px;
  display:flex;
  flex-direction:column;
}
.mobile-overlay.open{ transform: translateX(0); }
.mobile-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid #e0e0e0;
}
.mobile-top .title{
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}
.mobile-close{
  background:transparent;
  border:3px solid #000;
  box-shadow: 3px 3px 0 rgba(0,0,0,1);
  padding:10px 12px;
  font-weight:800;
  cursor:pointer;
}
.mobile-menu{
  list-style:none; margin: 24px 0 0; padding:0;
  display:flex; flex-direction:column; gap: 10px;
}
.mobile-menu a{
  display:flex;
  align-items:center;
  height:48px;
  padding: 0 14px;
  border:3px solid #000;
  box-shadow: 3px 3px 0 rgba(0,0,0,1);
  color:#000;
  font-size:20px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}
.mobile-menu a:hover{ background:#f0f0f0; }

/* Hero */
.hero-v2{
  background: var(--blue);
  color: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-v2-inner{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--margin-desktop);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero-content h1{
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.hero-content > p{
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 440px;
  margin: 0;
}
.hero-meter{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.overall-label{
  font-family: 'Archivo Black', 'IBM Plex Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1;
  margin-bottom: 8px;
}
#largeMeter{
  width: 100%;
  max-width: 360px;
  height: auto;
}
.hero-meter .mono{
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-top: -20px;
}

/* Scoreboard */
.scoreboard{
  background: #000;
  border-top: 4px solid #000;
  overflow: hidden;
}
.scoreboard-inner{
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.score-cell{
  display: block;
  padding: 24px 20px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background 200ms ease;
}
.score-cell::before{
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--cell-color, transparent);
  transition: height 200ms ease;
}
.score-cell:hover{ background: rgba(255,255,255,0.06); }
.score-cell:hover::before{ height: 8px; }
.score-cell:last-child{ border-right: none; }
.score-cell--label{
  background: rgba(255,255,255,0.04);
  border-right: 2px solid rgba(255,255,255,0.15);
}
.score-cell--label::before{ background: var(--orange); }
.score-cell span:first-child{
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.score-cell span:last-child{
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
}
.score-cell--label span:last-child{ color: var(--orange); opacity: 0.8; }
.score-cell:hover span:last-child{ color: rgba(255,255,255,0.8); }

/* What Moved */
.what-moved{
  background: #fff;
  padding: 64px 0;
  border-bottom: 4px solid #000;
}
.what-moved > .container > .mono{
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 32px;
}
.what-moved-list{
  display: flex;
  flex-direction: column;
}
.moved-item{
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 22px 16px 22px 0;
  border-bottom: 1px solid #e8e8e8;
  text-decoration: none;
  color: inherit;
  transition: padding-left 200ms ease, background 200ms ease;
}
.moved-item:first-child{ border-top: 1px solid #e8e8e8; }
.moved-item:hover{ padding-left: 8px; background: rgba(0,0,0,0.015); color: inherit; }
.moved-item-accent{
  width: 4px;
  align-self: stretch;
  min-height: 24px;
  background: var(--accent, #ccc);
  border-radius: 2px;
  flex-shrink: 0;
}
.moved-item-content{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.moved-item-content strong{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.moved-item:hover .moved-item-content strong{ color: var(--blue); }
.moved-item-content span{
  font-size: 15px;
  line-height: 1.4;
  color: #666;
}
.moved-item-meta{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.moved-item-meta span{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  white-space: nowrap;
}
.moved-item-meta span:last-child{
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #bbb;
}
.moved-item-arrow{
  width: 18px;
  height: 18px;
  color: #ccc;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.moved-item:hover .moved-item-arrow{ opacity: 1; transform: translateX(0); }
.what-moved-link{
  display: inline-block;
  margin-top: 28px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--blue);
}

/* Why This Exists */
.why-section{
  background: var(--orange);
  padding: 80px 0;
}
.why-inner{
  max-width: 780px;
}
.why-inner > .mono{
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 24px;
}
.why-inner blockquote{
  margin: 0 0 32px;
  padding: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  color: #000;
}
.why-inner > p{
  font-size: 18px;
  line-height: 1.7;
  color: rgba(0,0,0,0.8);
  max-width: 640px;
  margin: 0;
}

/* Fork */
.fork-section{
  background: #fff;
  padding: 72px 0;
  border-top: 4px solid #000;
}
.fork-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.fork-card{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 36px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 rgba(0,0,0,1);
  text-decoration: none;
  color: #000;
  background: #f8f8f8;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.fork-card:hover{ transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,1); color: #000; }
.fork-card > .mono{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.6;
}
.fork-card > strong{
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}
.fork-card > p{
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}
.fork-card > span:last-child{
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  color: var(--blue);
}
.fork-card--subscribe{
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 4px 4px 0 rgba(0,51,204,0.4);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, color 150ms ease;
}
.fork-card--subscribe:hover{
  background: #fff;
  color: var(--blue);
  box-shadow: 6px 6px 0 rgba(0,51,204,0.4);
}
.fork-card--subscribe > span:last-child{ color: var(--orange); }
.fork-card--subscribe:hover > span:last-child{ color: var(--blue); }

.subscribe-page{
  background: var(--blue);
  padding: clamp(32px, 6vw, 80px) 0;
  min-height: calc(100svh - 88px - 150px);
  display: flex;
  align-items: center;
  color:#fff;
  margin-top: 16px;    
}
.subscribe-inner{
  max-width: 900px;
  margin:0 auto;
  text-align:center;
  padding: 0 16px;
}
.subscribe-sub{
  margin-top: 20px;
  color: rgba(255,255,255,0.9);
  font-size:20px;
}
.subscribe-form-wrap{
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom: 40px;
}

.subscribe-btn{
  display: inline-block;
  background: var(--orange);
  color: #000;
  border: 3px solid #000;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 150ms ease;
  box-shadow: 4px 4px 0 rgba(0,0,0,1);
}
.subscribe-btn:hover{
  background: #fff;
  color: var(--blue);
  transform: translate(-3px,-3px);
  box-shadow: 6px 6px 0 rgba(0,0,0,1);
}
.subscribe-btn:active{
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 rgba(0,0,0,1);
}
.promises{
  background:#fff;
  padding: 72px 0;
  border-top: 4px solid #000;
}
.promises-sub{
  margin-top:12px;
  font-size:20px;
  color: var(--text-2);
  max-width: 820px;
}

/* Promises Page */
.promises-container{
  width:100%;
  max-width: 1200px;
  margin:0 auto;
  padding: 0 var(--margin-desktop);
}
/* Page Header */
.promises-header{
  background:#fff;
  padding:64px 0 48px;
  text-align:center;
}
.promises-subtitle{
  font-size:18px;
  font-weight:400;
  color:#666;
  margin-top:16px;
}

/* Summary Bar */
.promises-summary{
  background:#fff;
}
.summary-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.summary-key{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  color:#aaa;
  text-align:right;
  margin:0;
  padding:6px 0 14px;
}
.summary-key-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  font-size:6px;
  font-weight:800;
  letter-spacing:1px;
  color:#000;
  vertical-align:middle;
  position:relative;
  z-index:1;
}
.summary-key-badge::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--orange);
  clip-path:polygon(50% 0%,61% 11%,75% 3%,80% 18%,97% 18%,90% 32%,100% 45%,88% 52%,93% 68%,78% 67%,73% 82%,61% 74%,50% 88%,39% 74%,27% 82%,22% 67%,7% 68%,12% 52%,0% 45%,10% 32%,3% 18%,20% 18%,25% 3%,39% 11%);
  z-index:-1;
}
.summary-stat{
  appearance:none;
  background:#fff;
  border:none;
  border-left:1px solid #e8e8e8;
  padding:28px 20px;
  text-align:left;
  cursor:pointer;
  transition:background 150ms ease;
  font-family:inherit;
}
.summary-stat:first-child{
  border-left:none;
}
.summary-stat:hover{
  background:#f7f7f7;
}
.summary-stat.active{
  background:#f5f5f5;
  box-shadow:inset 0 -3px 0 #000;
}
.summary-stat-number{
  font-family:'Archivo Black',sans-serif;
  font-size:52px;
  line-height:1;
  margin-bottom:8px;
}
.summary-stat-label{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:#999;
}

/* Category Filters */
.promises-filters{
  background:#f5f5f5;
  padding:28px 0;
  border-top:4px solid #000;
  border-bottom:4px solid #000;
}
.filter-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.filter-chip{
  appearance:none;
  background:#fff;
  border:2px solid #000;
  border-radius:0;
  padding:8px 14px;
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.5px;
  cursor:pointer;
  transition:all 150ms ease;
  font-family:'IBM Plex Sans',sans-serif;
}
.filter-chip:hover{
  background:#e6e6e6;
}
.filter-chip.active{
  background:#000;
  color:#fff;
}
.filter-chip:focus-visible{
  outline:var(--focus);
  outline-offset:var(--focus-offset);
}

/* Grid divider */
.promises-divider{
  height:4px;
  background:#000;
}

/* Promises Grid Section */
.promises-grid-section{
  background:#fff;
  padding:40px 0 64px;
}

/* Empty State */
.empty-state{
  text-align:center;
  padding:64px 16px;
}
.empty-state p{
  font-size:16px;
  color:#666;
  margin:0 0 24px 0;
}

/* Load More */
.load-more-wrap{
  margin-top: 48px;
  display:flex;
  justify-content:center;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:24px;
}

/* Promise Card */
.card{
  min-height: 200px;
  padding: 28px;
  border: 3px solid #000;
  border-radius:0;
  background:#fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,1);
  transition: all 150ms ease-out;
  display:flex;
  flex-direction:column;
  gap: 12px;
  cursor:pointer;
}
.card:hover{
  transform: translateY(-2px) translateX(-2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,1);
}
.card:focus-visible{
  outline: var(--focus);
  outline-offset: var(--focus-offset);
}
.badge{
  height:28px;
  padding: 6px 14px;
  border-radius:0;
  border:2px solid #000;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.5px;
  color:#fff;
  display:inline-flex;
  align-items:center;
  width:max-content;
  box-shadow: 2px 2px 0 rgba(0,0,0,1);
}
.badge--dark-text{
  color:#000;
}
.card-title{
  margin-top: 4px;
  font-size:28px;
  font-weight:700;
  line-height:1.2;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.card-cat{
  margin-top: auto;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}
.card-status{
  margin-top: 0;
  font-size:18px;
  font-weight:600;
}
.card-meta{
  margin-top:auto;
  font-size:16px;
  color:#333;
}

/* Promises summary bar (homepage) */
.promises-summary-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid #e0e0e0;
  flex-wrap:wrap;
}
.summary-counts{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}
.summary-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:600;
}
.summary-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  flex-shrink:0;
}

/* Promise List (homepage lightweight design) */
.promise-legend{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
  padding-bottom:16px;
}
.promise-legend-bar{
  width:32px;
  height:5px;
  border-radius:3px;
  background: linear-gradient(to right, #d4a017, #e67e22);
}
.promise-legend-label{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:#888;
}
.promise-list{
  display:flex;
  flex-direction:column;
  border-top:1px solid #e0e0e0;
}
.promise-row{
  display:grid;
  grid-template-columns:4px 1fr auto auto;
  align-items:center;
  gap:20px;
  padding:20px 12px 20px 0;
  border-bottom:1px solid #e0e0e0;
  text-decoration:none;
  color:inherit;
  transition: background 200ms ease;
  position:relative;
}
.promise-row:hover{
  background:rgba(0,0,0,0.012);
}
.promise-row:focus-visible{
  outline: var(--focus);
  outline-offset: var(--focus-offset);
}
.promise-row-accent{
  width:4px;
  align-self:stretch;
  min-height:20px;
  border-radius:2px;
  flex-shrink:0;
}
.promise-row-left{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.promise-title-line{
  display:flex;
  align-items:center;
  gap:10px;
}
.promise-title{
  font-size:18px;
  font-weight:700;
  line-height:1.3;
  transition: color 200ms ease;
}
.promise-row:hover .promise-title{
  color: var(--blue);
}
.promise-summary{
  max-height:0;
  overflow:hidden;
  opacity:0;
  font-size:15px;
  line-height:1.4;
  color:#888;
  transition: max-height 250ms ease, opacity 200ms ease, margin-top 200ms ease;
  margin-top:0;
}
.promise-row:hover .promise-summary{
  max-height:80px;
  opacity:1;
  margin-top:6px;
}
/* Arrow that reveals on hover */
.promise-row-arrow{
  width:18px;
  height:18px;
  flex-shrink:0;
  color:#bbb;
  opacity:0;
  transform:translateX(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.promise-row:hover .promise-row-arrow{
  opacity:1;
  transform:translateX(0);
}
.promise-row-right{
  display:flex;
  align-items:center;
  gap:16px;
  flex-shrink:0;
}
.promise-category{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:#999;
  width:140px;
  text-align:right;
  flex-shrink:0;
}
.promise-status-badge{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.5px;
  padding:5px 14px;
  border-radius:0;
  white-space:nowrap;
  color:#888;
  border:1.5px solid;
  min-width:150px;
  text-align:center;
  box-sizing:border-box;
}
/* Starburst update indicator */
.promise-starburst{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  font-family:'IBM Plex Sans', sans-serif;
  font-size:7px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#000;
  flex-shrink:0;
  position:relative;
  z-index:1;
}
.promise-starburst::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--orange);
  clip-path:polygon(50% 0%,61% 11%,75% 3%,80% 18%,97% 18%,90% 32%,100% 45%,88% 52%,93% 68%,78% 67%,73% 82%,61% 74%,50% 88%,39% 74%,27% 82%,22% 67%,7% 68%,12% 52%,0% 45%,10% 32%,3% 18%,20% 18%,25% 3%,39% 11%);
  z-index:-1;
  animation:starburst-pulse 2s ease-in-out infinite;
}
@keyframes starburst-pulse{
  0%,100%{ transform:scale(1) rotate(0deg); }
  50%{ transform:scale(1.06) rotate(3deg); }
}
@media (prefers-reduced-motion:reduce){
  .promise-starburst::before{ animation:none; }
}

.cta-row{
  margin-top: 32px;
  display:flex;
  justify-content:center;
}

/* Buttons */
.btn{
  appearance:none;
  border-radius:0;
  padding: 16px 32px;
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 rgba(0,0,0,1);
  cursor:pointer;
  transition: all 150ms ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
}
.btn-primary{
  background: var(--blue);
  color:#fff;
}
.btn-primary:hover{
  background:#0044ff;
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,1);
  color:#fff;
}
.btn-primary:active{
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 rgba(0,0,0,1);
}
.btn-secondary{
  background:#fff;
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 4px 4px 0 rgba(0,51,204,0.3);
}
.btn-secondary:hover{
  background:#e6f0ff;
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 rgba(0,51,204,0.3);
  color: var(--blue);
}

/* Footer */
footer{
  background:#0A0E2E;
  color:#fff;
  position: relative;
  overflow: hidden;
}

.footer-bg-text{
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: 'Archivo Black', 'IBM Plex Sans', sans-serif;
  font-size: 14.4rem;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
  z-index: 1;
}
.footer-inner{
  position: relative;
  z-index: 2;
  padding-top: 28px;
  padding-bottom: 8px;
}
.footer-tagline{
  font-family: 'Archivo Black', 'IBM Plex Sans', sans-serif;
  font-size: clamp(1rem, 2.4vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.5px;
}
.footer-tagline span{
  color: var(--orange);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-col-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-about{
  margin-top: 20px;
}
.footer-about p{
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav ul li{
  margin-bottom: 10px;
}
.footer-nav ul li a{
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 150ms ease;
}
.footer-nav ul li a:hover{
  color: var(--orange);
}
.footer-subscribe-form{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-subscribe-form input[type="email"]{
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 150ms ease;
}
.footer-subscribe-form input[type="email"]::placeholder{
  color: rgba(255,255,255,0.4);
}
.footer-subscribe-form input[type="email"]:focus{
  border-color: var(--orange);
}
.footer-subscribe-form button{
  padding: 10px 16px;
  background: var(--orange);
  color: #000;
  border: 2px solid #000;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 150ms ease;
}
.footer-subscribe-form button:hover{
  opacity: 0.85;
}
.footer-subscribe-form button:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}
.footer-subscribe-msg{
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.footer-subscribe-msg.success{ color: #4caf7d; display: block; }
.footer-subscribe-msg.error  { color: #ff6b6b; display: block; }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img{
  width: 28px;
  height: 28px;
}
.footer-brand-name{
  font-family: 'Archivo Black', 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}
.footer-meta{
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}
.footer-meta a{
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-meta a:hover{
  color: var(--orange);
}

/* Responsive */
@media (max-width: 1199px){
  .container, .nav-inner, .promises-container{ padding-left: 32px; padding-right: 32px; }
  .h1{ font-size:56px; }
  .h2{ font-size:42px; }
  .h3{ font-size:26px; }
  .hero-v2{ padding: 60px 0 80px; }
  .hero-v2-inner{ gap: 32px; padding: 0 32px; }
  #largeMeter{ max-width: 300px; }
  .score-cell{ padding: 20px 12px 24px; }
  .why-section{ padding: 56px 0; }
  .fork-card{ padding: 32px 28px; }
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap:20px; }
  .faq-section{ padding: 48px 0; }
  .footer-grid{ gap: 32px; }
}
@media (max-width: 767px){
  .container, .nav-inner, .promises-container{ padding-left: 16px; padding-right: 16px; }
  .h1{ font-size:44px; }
  .h2{ font-size:36px; }
  .nav-links{ display:none; }
  .hamburger{ display:block; }
  .brand{ width:auto; font-size:16px; }
  /* Hero */
  .hero-v2{ padding: 40px 0 56px; }
  .hero-v2-inner{ grid-template-columns: 1fr; gap: 40px; padding: 0 16px; text-align: center; }
  .hero-content{ align-items: center; }
  .hero-content > p{ max-width: 340px; }
  #largeMeter{ max-width: 280px; }
  /* Scoreboard */
  .scoreboard-inner{ grid-template-columns: repeat(3, 1fr); }
  .score-cell{ padding: 20px 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .score-cell span:first-child{ font-size: 32px; }
  .score-cell span:last-child{ font-size: 10px; }
  /* What Moved */
  .what-moved{ padding: 40px 0; }
  .moved-item{ grid-template-columns: auto 1fr auto; gap: 12px; padding: 18px 0; }
  .moved-item-meta{ display: none; }
  .moved-item-content strong{ font-size: 16px; }
  .moved-item-content span{ font-size: 14px; }
  .moved-item-arrow{ opacity: 1; transform: translateX(0); }
  /* Why / Fork */
  .why-section{ padding: 56px 0; }
  .fork-section{ padding: 48px 0; }
  .fork-grid{ grid-template-columns: 1fr; gap: 16px; }
  .fork-card{ padding: 28px 24px; }
  /* Promises page */
  .grid{ grid-template-columns: 1fr; gap:16px; }
  .card{ min-height: 200px; padding: 20px; }
  .promise-row{ grid-template-columns:4px 1fr auto; gap:12px; padding:16px 0; }
  .promise-row-right{ gap:12px; }
  .promise-title{ font-size:16px; }
  .promise-summary{ display:none; }
  .promise-category{ display:none; }
  .promise-status-badge{ min-width:auto; font-size:11px; padding:4px 10px; }
  .promise-starburst{ width:32px; height:32px; font-size:6px; }
  .promises-header{ padding:32px 0 24px; }
  .summary-stats{ grid-template-columns:repeat(2,1fr); }
  .summary-stat{ padding:20px 16px; }
  .summary-stat-number{ font-size:40px; }
  .promises-filters{ padding:20px 0; }
  .promises-grid-section{ padding: 32px 0; }
  .subscribe-btn{ padding: 16px 32px; font-size: 14px; }
  .faq-section{ padding: 32px 0; }
  .faq-question{ padding: 20px; font-size: 18px; }
  .faq-answer{ padding: 0 20px 20px; font-size: 16px; margin: 0 8px; padding-top: 16px; }
  .footer-inner{ padding-top: 32px; padding-bottom: 20px; }
  .footer-tagline{ margin-bottom: 24px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 24px; margin-bottom: 20px; padding-bottom: 20px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bg-text{ font-size: 10rem; }
}
@media (max-width: 380px){
  .scoreboard-inner{ grid-template-columns: repeat(2, 1fr); }
}

/* FAQ Page */
.faq-hero{
  background: var(--blue);
  padding: clamp(40px, 6vw, 80px) 0;
  color:#fff;
}
.faq-hero-inner{
  max-width: 900px;
  margin:0 auto;
  text-align:center;
  padding: 0 16px;
}
.faq-hero-sub{
  margin-top: 20px;
  color: rgba(255,255,255,0.9);
  font-size:20px;
}
.faq-section{
  padding: 64px 0;
  background: #fff;
}
.faq-list{
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item{
  border: 3px solid #000;
  box-shadow: 4px 4px 0 rgba(0,0,0,1);
  background: #fff;
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.faq-item:hover{
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,1);
}
.faq-question{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker{ display: none; }
.faq-question::marker{ display: none; content: ''; }
.faq-question::after{
  content: '+';
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 200ms ease;
}
.faq-item[open] .faq-question::after{
  content: '−';
}
.faq-item[open]{
  border-color: var(--blue);
}
.faq-question:focus-visible{
  outline: var(--focus);
  outline-offset: var(--focus-offset);
}
.faq-answer{
  padding: 0 28px 28px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
  border-top: 2px solid #e0e0e0;
  margin: 0 16px;
  padding-top: 20px;
}
.faq-answer p{
  margin: 0 0 1em;
}
.faq-answer p:last-child{
  margin-bottom: 0;
}
.faq-answer a{
  color: var(--blue);
  text-decoration: underline;
  font-weight: 600;
}
.faq-answer a:hover{
  color: var(--red);
}
.faq-status-list{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-status-dot{
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #000;
  margin-right: 8px;
  vertical-align: middle;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; scroll-behavior:auto !important; }
}

/* Text on making-progress green background should be black */
[style*="background"][style*="#b3f95b"],
[style*="background"][style*="rgb(179, 249, 91)"],
.badge[style*="#b3f95b"]{
  color: #000 !important;
}
