/* Sentio Dynamics — one-page landing (static, no build tools) */

:root{
  --navy:#0B1220;
  --navy2:#101B2F;
  --paper:#FFFFFF;
  --paper2:#F6F7FB;
  --ink:#0C1220;
  --muted:#5F6B7A;
  --line:rgba(15, 23, 42, 0.10);

  --gold:#C9A24A;
  --gold2:#B58A2A;

  --serif:"Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  --sans:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";

  --radius:18px;
  --radius2:28px;
  --shadow:0 24px 80px rgba(0,0,0,0.18);
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
}

.container{width:min(var(--max), calc(100% - 44px)); margin:0 auto;}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:linear-gradient(180deg, rgba(11,18,32,0.92), rgba(11,18,32,0.75));
  border-bottom:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.topbar-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding:16px 0;
  gap:14px;
}

.topbar-spacer{height:1px}

.brand{
  justify-self:center;
  text-decoration:none;
  color:rgba(255,255,255,0.86);
  letter-spacing:3px;
  font-size:12px;
  font-weight:500;
}
.brand-name{white-space:nowrap}

.topbar-link{
  justify-self:end;
  text-decoration:none;
  color:rgba(255,255,255,0.66);
  letter-spacing:2px;
  font-size:11px;
  padding:10px 12px;
  border-radius:999px;
}
.topbar-link:hover{background:rgba(255,255,255,0.06); color:rgba(255,255,255,0.82)}

.mobile-toggle{
  display:none;
  justify-self:end;
  width:44px;height:40px;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  cursor:pointer;
}
.mobile-toggle span{
  display:block;
  width:18px; height:2px;
  background:rgba(255,255,255,0.74);
  margin:4px auto;
  border-radius:2px;
}

.mobile-nav{
  display:none;
  padding:10px 0 18px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.mobile-nav a{
  display:block;
  padding:12px 0;
  color:rgba(255,255,255,0.82);
  text-decoration:none;
  font-size:14px;
}
.mobile-nav a:hover{opacity:0.9}

.hero{
  background:
    radial-gradient(1000px 600px at 75% -10%, rgba(201,162,74,0.13), transparent 58%),
    radial-gradient(900px 560px at 20% 0%, rgba(107,150,255,0.12), transparent 55%),
    linear-gradient(180deg, var(--navy2), var(--navy));
  color:#fff;
  padding:70px 0 52px;
}

.hero-inner{
  text-align:center;
  max-width: 920px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.78);
  letter-spacing:1.2px;
  font-size:11px;
  margin-bottom: 22px;
}
.badge-dot{
  width:8px; height:8px; border-radius:99px;
  background:#34D399;
  box-shadow:0 0 0 3px rgba(52,211,153,0.16);
}

h1{
  font-family:var(--serif);
  font-weight:500;
  font-size:62px;
  line-height:0.92;
  letter-spacing:-0.6px;
  margin:0 0 18px;
}
.hero-sub{
  max-width: 70ch;
  margin:0 auto 26px;
  color:rgba(255,255,255,0.62);
  font-size:13.5px;
  line-height:1.7;
}

.hero-cta{margin: 6px 0 18px;}

.btn-gold{
  display:inline-flex;
  transition: border-color .2s ease, background .2s ease;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:4px;
  border:1px solid rgba(201,162,74,0.55);
  background:linear-gradient(180deg, rgba(201,162,74,0.12), rgba(201,162,74,0.06));
  color:rgba(201,162,74,0.95);
  letter-spacing:2px;
  font-size:11px;
  font-weight:600;
  text-decoration:none;
}
.btn-gold:hover{border-color:rgba(201,162,74,0.75); background:rgba(201,162,74,0.10)}
.btn-inline{margin-top:10px}
.btn-full{width:100%}

.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:10px;
  border:1px solid rgba(15,23,42,0.14);
  background:#fff;
  color:#0B1220;
  font-weight:600;
  text-decoration:none;
}
.btn-ghost:hover{background:rgba(15,23,42,0.02)}

.trust-pill{
  display:flex;
  align-items:center;
  gap:8px;
}
.trust-pill::before{
  content:"•";
  color:rgba(201,162,74,0.9);
}

.section{padding:78px 0}
.section.light{background:var(--paper)}
.section.dark{
  background:linear-gradient(180deg, var(--navy2), var(--navy));
  color:#fff;
}

.eyebrow{
  font-size:11px;
  letter-spacing:3px;
  color:var(--gold);
  margin-bottom: 10px;
  font-weight:600;
}

h2{
  font-family:var(--serif);
  font-weight:500;
  font-size:44px;
  line-height:0.98;
  margin:0 0 14px;
}
.muted{color:var(--muted)}
.section-lead{max-width:75ch; margin: 0 auto 26px;}

.fine{color:rgba(15,23,42,0.45); font-size:12px; margin-top:10px}
.section.dark .fine{color:rgba(255,255,255,0.52)}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:48px;
  align-items:center;
}
.split-left{max-width:520px}
.split-right{display:flex; justify-content:center}

.calc-card{
  width:min(440px, 100%);
  background:var(--paper2);
  border:1px solid rgba(15,23,42,0.10);
  border-top:3px solid rgba(201,162,74,0.55);
  border-radius:10px;
  padding:22px;
  box-shadow:0 18px 50px rgba(0,0,0,0.07);
}
.calc-row{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:14px}
.calc-label{font-size:10px; letter-spacing:2px; color:rgba(15,23,42,0.45); font-weight:600}
.calc-label.red{color:rgba(120, 20, 20, 0.70)}
.calc-input{display:flex; align-items:center; gap:8px}
.calc-input input{
  width:84px;
  font-size:24px;
  padding:6px 10px;
  text-align:center;
  border:1px solid rgba(15,23,42,0.10);
  border-radius:8px;
  background:#fff;
}
.step{
  width:34px;height:34px;
  border-radius:8px;
  border:1px solid rgba(15,23,42,0.10);
  background:#fff;
  cursor:pointer;
}
.step:hover{background:rgba(15,23,42,0.03)}

.calc-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin: 10px 0 18px;
}
.field span{
  display:block;
  font-size:12px;
  color:rgba(15,23,42,0.55);
  margin-bottom:6px;
}
.field input{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(15,23,42,0.10);
  background:#fff;
}

.calc-result{
  padding-top:14px;
  border-top:1px solid rgba(15,23,42,0.10);
}
.calc-value{
  font-family:var(--serif);
  font-size:34px;
  color:#6B1E1E;
  margin-top:4px;
}
.calc-note{
  color:rgba(15,23,42,0.50);
  font-size:12px;
  margin-top:6px;
  font-style:italic;
}

.center{text-align:center}

.cards-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top: 36px;
}
.card{
  background:#fff;
  border:1px solid rgba(15,23,42,0.10);
  border-radius:8px;
  padding:22px;
  text-align:left;
  box-shadow:0 16px 40px rgba(0,0,0,0.05);
  min-height: 210px;
}
.card-dark{
  background:#fff;
  color:var(--ink);
  border:1px dashed rgba(15,23,42,0.25);
}
.card-icon{color:rgba(201,162,74,0.95); font-size:18px; margin-bottom: 12px}
.card-title{
  font-family:var(--serif);
  font-size:22px;
  margin-bottom: 8px;
}
.card-text{
  font-family: var(--sans);
  font-size:14px;
  line-height:1.7;
  color:rgba(15,23,42,0.78);
  font-weight:500;
}
.card-dark .card-text{color:rgba(15,23,42,0.78)}

.steps{
  margin-top: 34px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items:start;
}
.stepcol{
  padding:22px 18px;
  border-radius:8px;
  border:1px solid rgba(15,23,42,0.10);
  background:#fff;
  text-align:center;
}
.stepnum{
  width:40px;height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(15,23,42,0.10);
  border-radius:6px;
  font-family:var(--serif);
}
.steptitle{
  margin-top: 18px;
  font-size:11px;
  letter-spacing:2px;
  font-weight:700;
  color:rgba(15,23,42,0.72);
}
.steptext{
  margin-top: 10px;
  color:rgba(15,23,42,0.60);
  font-size:13px;
  line-height:1.65;
}
.stepcol-accent .stepnum{
  background:rgba(201,162,74,0.92);
  border-color:rgba(201,162,74,0.92);
  color:#0B1220;
}
.quote{
  margin-top: 14px;
  display:inline-block;
  padding:12px 14px;
  border-left:3px solid rgba(201,162,74,0.92);
  background:rgba(15,23,42,0.03);
  font-style:italic;
  color:rgba(15,23,42,0.70);
}

.trust-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border-bottom:1px solid rgba(255,255,255,0.10);
  padding-bottom: 16px;
  margin-bottom: 26px;
}
.trust-tag{
  font-size:11px;
  letter-spacing:2px;
  color:rgba(201,162,74,0.92);
  display:flex;
  align-items:center;
  gap:8px;
}
.trust-tag::before{content:"◦"; color:rgba(201,162,74,0.92)}

.trust-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.trust-card{
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.03);
  border-radius:8px;
  padding:18px 18px 20px;
}
.trust-kicker{
  font-size:11px;
  letter-spacing:2px;
  color:rgba(201,162,74,0.92);
  margin-bottom: 10px;
}
.trust-title{
  font-family:var(--serif);
  font-size:20px;
  margin-bottom: 6px;
}
.trust-text{color:rgba(255,255,255,0.68); font-size:13px; line-height:1.6}

.invite{
  background:var(--paper2);
  border:1px solid rgba(15,23,42,0.10);
  border-radius:10px;
  box-shadow:0 18px 60px rgba(0,0,0,0.08);
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:24px;
  padding:26px;
}
.tag{
  display:inline-block;
  border:1px solid rgba(15,23,42,0.18);
  border-radius:3px;
  padding:6px 10px;
  font-size:11px;
  letter-spacing:2px;
  font-weight:700;
  margin-bottom: 12px;
  background:#fff;
}
.bullets{list-style:none; padding:0; margin:16px 0 0}
.bullets li{
  display:flex; align-items:flex-start; gap:10px;
  margin: 10px 0;
  color:rgba(15,23,42,0.68);
  font-size:13px;
}
.bullet-dot{
  width:10px;height:10px;
  border-radius:99px;
  margin-top:5px;
  background:rgba(201,162,74,0.92);
}

.eligibility{
  background:#fff;
  border:1px solid rgba(15,23,42,0.10);
  border-radius:10px;
  padding:18px;
}
.elig-head{font-size:12px; color:rgba(15,23,42,0.55); margin-bottom:10px}
.elig-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(15,23,42,0.10);
  background:#fff;
  padding:12px 12px;
  border-radius:10px;
  margin: 10px 0;
  cursor:pointer;
  font-weight:600;
  color:rgba(15,23,42,0.72);
}
.elig-item span{color:rgba(15,23,42,0.35)}
.elig-item:hover{background:rgba(15,23,42,0.02)}
.elig-recommended{
  border-color:rgba(201,162,74,0.55);
}
.elig-item.active{
  background:rgba(201,162,74,0.10);
  border-color:rgba(201,162,74,0.75);
}
.elig-result{
  margin-top: 12px;
  padding-top: 12px;
  border-top:1px solid rgba(15,23,42,0.10);
}
.elig-title{font-weight:700; margin-bottom:6px}
.elig-text{color:rgba(15,23,42,0.60); font-size:13px}

.bottom-cta{
  text-align:center;
  padding:60px 0 20px;
}
.bottom-cta h3{
  font-family:var(--serif);
  font-weight:500;
  font-size:22px;
  margin:0 0 12px;
}
.link{
  color:rgba(15,23,42,0.75);
  text-decoration:underline;
  text-underline-offset:6px;
}
.footerline{
  margin-top: 24px;
  letter-spacing:3px;
  font-size:11px;
  color:rgba(15,23,42,0.38);
}
.footerline.faint{color:rgba(15,23,42,0.26); margin-top:8px}
.sep{padding:0 10px}

.modal{
  position:fixed;
  inset:0;
  display:none;
}
.modal.show{display:block}
.modal-backdrop{
  position:absolute; inset:0;
  background:rgba(11,18,32,0.55);
}
.modal-card{
  position:relative;
  width:min(520px, calc(100% - 44px));
  margin: 12vh auto 0;
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.12);
  box-shadow: var(--shadow);
  padding:22px;
}
.modal-close{
  position:absolute;
  top:10px; right:10px;
  width:38px;height:38px;
  border-radius:10px;
  border:1px solid rgba(15,23,42,0.10);
  background:#fff;
  cursor:pointer;
  font-size:20px;
}
.modal-tag{
  font-size:11px;
  letter-spacing:2px;
  color:var(--gold2);
  font-weight:700;
  margin-bottom: 10px;
}
.modal-actions{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top: 14px;
}

@media (max-width: 980px){
  .cards-4{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns: 1fr}
  .split-right{justify-content:flex-start}
  h1{font-size:52px}
}

@media (max-width: 760px){
  .topbar-inner{grid-template-columns: 1fr auto 1fr}
  .topbar-link{display:none}
  .mobile-toggle{display:block}
  .mobile-nav{display:none}
  .mobile-nav.show{display:block}
  h1{font-size:44px; line-height:0.95}
  h2{font-size:38px}
  .cards-4{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .trust-cards{grid-template-columns: 1fr}
  .invite{grid-template-columns: 1fr}
}


.hero-sub-2{display:block; margin-top:12px; font-size:0.95rem; opacity:.9}

.iron-clad-box { border-left: 5px solid #C9A24A; background: rgba(201,162,74,0.05); padding: 40px; font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-style: italic; margin: 20px 0; color: #0B1220; }

/* Decision Codex Styling */
.iron-clad-box {
  border: 2px solid var(--gold);
  background: rgba(201, 162, 74, 0.03);
  padding: 40px;
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 60px 0;
  color: var(--navy);
  position: relative;
  box-shadow: 0 10px 40px rgba(201, 162, 74, 0.1);
}

.codex-header {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  font-family: var(--sans);
}

.codex-footer {
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold2);
  font-family: var(--sans);
  font-style: normal;
}

/* Trust Moat Grid */
.trust-grid {
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust-icon { font-size: 2rem; margin-bottom: 10px; }
.trust-item strong { font-size: 0.8rem; letter-spacing: 1px; color: var(--navy); }
.trust-item span { font-size: 0.75rem; color: var(--muted); }


/* Agentic Draft Showcase Styling */
.card-draft {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.draft-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-pill-blue {
  background: rgba(107, 150, 255, 0.1);
  color: #2563eb;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.draft-id {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--muted);
}

.draft-content {
  background: var(--paper2);
  padding: 20px;
  border-radius: 6px;
}

.draft-subject {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.draft-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

.draft-rationale {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}


/* Anti-ICP Matrix Styling */
.card-status {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  transition: transform 0.2s ease;
}

.card-status:hover { transform: translateY(-5px); }

.border-red { border-top: 4px solid #e11d48; }
.border-orange { border-top: 4px solid #f59e0b; }
.border-green { border-top: 4px solid #10b981; }

.status-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.dot-red { background: #e11d48; box-shadow: 0 0 10px rgba(225, 29, 72, 0.3); }
.dot-orange { background: #f59e0b; box-shadow: 0 0 10px rgba(245, 158, 11, 0.3); }
.dot-green { background: #10b981; box-shadow: 0 0 10px rgba(16, 185, 129, 0.3); }

.status-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  font-size: 0.9rem; color: var(--muted);
}
.status-list li {
  margin-bottom: 12px; padding-left: 20px; position: relative;
}
.status-list li::before {
  content: "→"; position: absolute; left: 0; color: var(--gold);
}

/* Eligibility Tool Integration */
.eligibility-tool-box {
  margin-top: 60px;
  padding: 40px;
  background: var(--paper2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.elig-flex {
  display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap;
}

.elig-item {
  flex: 1; min-width: 150px;
  padding: 15px; border-radius: 8px;
  border: 1px solid var(--line); background: #fff;
  cursor: pointer; font-weight: 600;
}
.elig-item.active {
  border-color: var(--gold); background: rgba(201, 162, 74, 0.05);
}


/* Two-Lane Architecture Styling */
.card-lane {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.card-lane.locked {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(201, 162, 74, 0.3);
}

.lane-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.lane-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
}

.status-active {
  font-size: 0.65rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.status-locked {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 162, 74, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.lane-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.lane-list {
  list-style: none; padding: 0; margin: 0;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.6);
}

.lane-list li {
  margin-bottom: 8px; padding-left: 18px; position: relative;
}

.lane-list li::before {
  content: "•"; position: absolute; left: 0; color: var(--gold);
}


/* Engine Room Styling */
.engine-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}

.engine-card {
  flex: 1;
  background: var(--paper2);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  text-align: left;
}

.engine-card.gold-border {
  border: 2px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 15px 45px rgba(201, 162, 74, 0.1);
}

.engine-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--navy);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.engine-badge.gold-bg {
  background: var(--gold);
  color: var(--navy);
}

.engine-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 25px;
}

.engine-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.engine-features li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.engine-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.engine-transition {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.transition-arrow {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
}

.transition-text {
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}

@media (max-width: 850px) {
  .engine-flow { flex-direction: column; }
  .engine-transition { transform: rotate(90deg); margin: 20px 0; }
}


/* Financial Discipline Styling */
.card-legal {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: left;
}

.card-legal h4 {
  color: var(--gold);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.card-legal p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.card-legal strong {
  color: #fff;
}


/* Founding 15 Finale Styling */
.founding-status-card {
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(201, 162, 74, 0.1);
}

.status-counter {
  font-family: var(--serif);
  margin-bottom: 10px;
}

.big-num {
  font-size: 4rem;
  font-weight: 500;
  color: var(--navy);
}

.status-counter .sep {
  font-size: 2rem;
  color: var(--gold);
  margin: 0 10px;
}

.total-num {
  font-size: 2.5rem;
  color: var(--muted);
}

.status-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold2);
  margin-bottom: 25px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--paper2);
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 162, 74, 0.5);
}

.hero-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 1.5px;
}
.trust-pill-subtle { font-weight: 500; }
.pill-sep { color: rgba(255,255,255,0.15); }

