 :root{
      --text: #f6ead7;
      --muted: rgba(246,234,215,.76);
      --bgGlass: rgba(10,8,7,.62);
      --stroke: rgba(255,170,95,.22);
      --stroke2: rgba(255,170,95,.12);
      --ember: #ff874a;
      --gold: #f3c27e;
      --shadow: 0 30px 90px rgba(0,0,0,.62);
      --radius: 18px;
      --radius2: 22px;
      --container: 1120px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      background: #060403;
      min-height:100vh;
      overflow-x:hidden;
    }

    /* Optional background image hook: replace with your path */
    body.has-bg{
      background-image: url("assets/images/broken_oaths_bg.png");
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }

    .bg-overlay{
      position: fixed;
      inset: 0;
      background:
        radial-gradient(1100px 700px at 50% 18%, rgba(0,0,0,.15), rgba(0,0,0,.82)),
        linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.86));
      z-index:-2;
    }

    .embers{
      position: fixed;
      inset: 0;
      pointer-events:none;
      z-index:-1;
      background-image:
        radial-gradient(circle at 20% 10%, rgba(255,140,70,.18) 0, rgba(255,140,70,0) 40%),
        radial-gradient(circle at 70% 25%, rgba(255,120,60,.12) 0, rgba(255,120,60,0) 42%),
        radial-gradient(circle at 45% 70%, rgba(255,180,120,.08) 0, rgba(255,180,120,0) 45%);
      opacity:.9;
    }

    .container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }

  
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.25));
  border-bottom: 1px solid rgba(255,170,95,.12);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
}


.brand__logo{
  height:80px;             
  width:240px;
  display:block;
 
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.55));
  transition: transform .25s ease, filter .25s ease;
}


.brand:hover .brand__logo{
  transform: translateY(-1px);
  filter: drop-shadow(0 14px 40px rgba(0,0,0,.75));
}

/* Mobile scaling */
@media (max-width: 520px){
  .brand__logo{
    height:40px;
     width:120px;
  }
}


   .nav{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    
   .nav a{
      color: rgba(246,234,215,.86);
      text-decoration:none;
      font-weight:800;
      font-size: 12px;
      letter-spacing:.08em;
      padding:8px 10px;
      border-radius: 12px;
      transition: .2s ease;
      text-transform: uppercase;
      border: 1px solid transparent;
      background: transparent;
    }
    
.nav a:hover{
  background: rgba(255,170,95,.10);
  border: 1px solid rgba(255,170,95,.16);
}

.navToggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,170,95,.22);
  background: rgba(20,14,12,.55);
  cursor:pointer;
}
.navToggle span{
  display:block;
  height:2px;
  width:18px;
  margin: 5px auto;
  background: rgba(246,234,215,.9);
  border-radius: 2px;
}

.navMobile{
  display:none;
  padding: 10px 20px 18px;
  border-top: 1px solid rgba(255,170,95,.12);
  background: rgba(0,0,0,.38);
}
.navMobile a{
  display:block;
  padding: 12px 0;
  color: rgba(246,234,215,.9);
  text-decoration:none;
  font-weight:600;
  letter-spacing:.03em;
}
.navMobile__divider{
  height:1px;
  background: rgba(255,170,95,.12);
  margin: 8px 0;
}
    /* Hero */
    .hero{ padding: 62px 0 44px; }
    .hero__inner{ text-align:center; }
    .hero__badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,170,95,.20);
      background: rgba(10,8,7,.40);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 60px rgba(0,0,0,.35);
      font-weight:900;
      font-size: 11px;
      letter-spacing:.14em;
      text-transform: uppercase;
    }
    .dot{
      width:8px; height:8px;
      border-radius: 50%;
      background: var(--ember);
      box-shadow: 0 0 18px rgba(255,135,74,.55);
    }
    .dot--blue{ background: #6fb8ff; box-shadow:0 0 18px rgba(111,184,255,.45); }
    .dot--ash{ background: #d7c3ad; box-shadow:0 0 18px rgba(215,195,173,.35); }
    .dot--ember{ background: var(--ember); }

    .hero__title{
      font-family: Cinzel, serif;
      font-weight:700;
      letter-spacing:.12em;
      margin: 22px 0 0;
      font-size: clamp(40px, 6vw, 66px);
      text-shadow: 0 20px 70px rgba(0,0,0,.6);
    }
    .hero__sub{
      font-family: Cinzel, serif;
      font-weight:600;
      letter-spacing:.34em;
      font-size: clamp(12px, 2vw, 18px);
      margin-top:10px;
      color: rgba(243,194,126,.92);
      text-transform: uppercase;
    }
    .hero__lead{
      margin: 18px auto 0;
      max-width: 920px;
      font-size: 16px;
      line-height: 1.75;
      color: var(--muted);
    }
    .hero__lead strong{ color: var(--gold); font-weight: 900; }

    .hero__cta{
      margin: 22px auto 0;
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:12px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height: 44px;
      padding: 0 16px;
      border-radius: 14px;
      text-decoration:none;
      font-weight:900;
      font-size: 12px;
      letter-spacing:.10em;
      text-transform: uppercase;
      color: #1a100a;
      background: linear-gradient(180deg, rgba(255,195,120,1), rgba(255,135,74,1));
      border: 1px solid rgba(255,170,95,.35);
      box-shadow: 0 18px 60px rgba(0,0,0,.45);
      transition: transform .15s ease, filter .15s ease;
    }
    .btn:hover{ filter: brightness(1.05); transform: translateY(-1px); }
    .btn--ghost{
      background: rgba(10,8,7,.55);
      color: rgba(246,234,215,.92);
      border: 1px solid rgba(255,170,95,.25);
    }
    .btn--soft{
      background: rgba(255,170,95,.14);
      color: rgba(246,234,215,.92);
      border: 1px solid rgba(255,170,95,.22);
    }

    .hero__meta{
      margin: 18px auto 0;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:center;
    }
    .pill{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,170,95,.18);
      background: rgba(10,8,7,.38);
      font-size: 13px;
      color: rgba(246,234,215,.88);
    }
    .pill strong{ color: rgba(243,194,126,.95); }

    /* Sections */
    .section{ padding: 56px 0; }
    .section--compact{ padding: 40px 0; }

    .section__head{
      text-align:left;
      margin-bottom: 18px;
    }
    .section__head h2{
      font-family: Cinzel, serif;
      letter-spacing:.08em;
      margin: 0 0 8px;
      font-size: 26px;
    }
    .section__head p{
      margin:0;
      color: var(--muted);
      line-height:1.7;
      max-width: 980px;
    }

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

    .panel{
      border-radius: var(--radius);
      background: var(--bgGlass);
      border: 1px solid var(--stroke2);
      box-shadow: var(--shadow);
      padding: 18px;
      backdrop-filter: blur(10px);
    }
    .panel h3{
      margin:0 0 8px;
      font-family: Cinzel, serif;
      letter-spacing:.06em;
    }
    .panel p{ margin:0; color: var(--muted); line-height:1.75; }
    .panel--accent{
      border: 1px solid rgba(255,170,95,.28);
      background: rgba(18,12,10,.72);
    }

    .bullets{
      margin: 10px 0 0;
      padding-left: 18px;
      color: var(--muted);
      line-height: 1.8;
    }
    .bullets li{ margin: 6px 0; }

    .callout{
      border-radius: var(--radius2);
      overflow:hidden;
      border: 1px solid rgba(255,170,95,.18);
      background: rgba(10,8,7,.55);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      padding: 18px;
      position: relative;
    }
    .callout::before{
      content:"";
      position:absolute;
      inset:0;
      background: radial-gradient(800px 260px at 20% 20%, rgba(255,135,74,.10), rgba(0,0,0,0));
      pointer-events:none;
    }
    .callout h3{
      margin:0 0 10px;
      font-family: Cinzel, serif;
      letter-spacing:.06em;
    }
    .quote{
      margin:0;
      color: rgba(246,234,215,.90);
      line-height:1.75;
      font-size: 15px;
    }
    .quote strong{ color: var(--gold); }
    .quote small{ display:block; margin-top:10px; color: rgba(246,234,215,.68); letter-spacing:.10em; text-transform: uppercase; font-weight:900; font-size: 11px; }

    /* Roadmap */
    .roadmap{
      display:grid;
      gap: 14px;
      margin-top: 16px;
    }
    .milestone{
      border-radius: var(--radius2);
      border: 1px solid rgba(255,170,95,.16);
      background: rgba(10,8,7,.55);
      box-shadow: 0 18px 60px rgba(0,0,0,.35);
      backdrop-filter: blur(10px);
      overflow:hidden;
      display:grid;
      grid-template-columns: 140px 1fr;
      min-height: 110px;
    }
    .ms__left{
      padding: 16px;
      background: linear-gradient(180deg, rgba(255,170,95,.16), rgba(0,0,0,0));
      border-right: 1px solid rgba(255,170,95,.10);
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap: 8px;
    }
    .ms__kicker{
      font-weight:900;
      font-size: 11px;
      letter-spacing:.18em;
      text-transform: uppercase;
      color: rgba(243,194,126,.92);
    }
    .ms__badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      width: fit-content;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,170,95,.18);
      background: rgba(0,0,0,.25);
      font-size: 12px;
      font-weight:900;
      letter-spacing:.10em;
      text-transform: uppercase;
    }
    .ms__badge i{
      width:8px; height:8px; border-radius:50%;
      background: var(--ember);
      box-shadow: 0 0 16px rgba(255,135,74,.5);
      display:inline-block;
    }
    .ms__right{
      padding: 16px 18px 18px;
    }
    .ms__title{
      margin: 0 0 8px;
      font-family: Cinzel, serif;
      letter-spacing:.06em;
      font-size: 18px;
    }
    .ms__text{ margin:0; color: var(--muted); line-height:1.75; }
    .ms__list{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); line-height:1.8; }
    .ms__list li{ margin: 6px 0; }

    /* Tables */
    table{
      width:100%;
      border-collapse: separate;
      border-spacing: 0;
      overflow:hidden;
      border-radius: 16px;
      border: 1px solid rgba(255,170,95,.14);
      background: rgba(10,8,7,.55);
      box-shadow: 0 18px 60px rgba(0,0,0,.35);
    }
    th, td{
      text-align:left;
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255,170,95,.10);
      vertical-align: top;
    }
    th{
      font-size: 11px;
      letter-spacing:.18em;
      text-transform: uppercase;
      color: rgba(243,194,126,.92);
      font-weight: 900;
      background: rgba(0,0,0,.20);
    }
    tr:last-child td{ border-bottom: none; }
    td{ color: rgba(246,234,215,.86); }
    td small{ color: rgba(246,234,215,.68); display:block; margin-top:6px; line-height:1.6; }

    /* Footer */
    .footer{
      margin-top: 40px;
      border-top: 1px solid rgba(255,170,95,.12);
      background: rgba(0,0,0,.45);
      backdrop-filter: blur(10px);
    }
    .footer__inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 14px;
      padding: 18px 0;
      flex-wrap:wrap;
    }
    .brandMini{
      font-family: Cinzel, serif;
      letter-spacing:.12em;
      font-weight:700;
      font-size: 13px;
    }
    .footer__fine{
      color: rgba(246,234,215,.68);
      font-size: 12px;
      max-width: 820px;
      line-height: 1.6;
    }

    code{
      background: rgba(0,0,0,.35);
      padding: 3px 6px;
      border-radius: 8px;
      border: 1px solid rgba(255,170,95,.10);
    }

    /* Mobile */
    @media (max-width: 980px){
      .grid--2{ grid-template-columns: 1fr; }
      .milestone{ grid-template-columns: 1fr; }
      .ms__left{ border-right:none; border-bottom: 1px solid rgba(255,170,95,.10); }
      body.has-bg{ background-attachment: scroll; }
      .nav{ display:none; }
    }
    
    
    @media (max-width: 820px){
  .nav{ display:none; }
  .navToggle{ display:inline-block; }
  .navMobile.isOpen{ display:block; }
  body{ background-attachment: scroll; }
}


    /* Print-friendly for PDF exports */
    @media print{
      .topbar, .hero__cta { display:none !important; }
      body{ background: #fff !important; color:#111 !important; }
      .bg-overlay, .embers{ display:none !important; }
      .panel, .callout, table, .milestone{ box-shadow:none !important; backdrop-filter:none !important; }
    }
    
    
    
    
    
.footer{
  margin-top: 40px;
  border-top: 1px solid rgba(255,170,95,.12);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 0;
  flex-wrap:wrap;
}
.brandMini{
  font-family: Cinzel, serif;
  letter-spacing:.12em;
  font-weight:700;
  font-size: 13px;
}
.footer__fine{
  color: rgba(246,234,215,.68);
  font-size: 12px;
}
.footer__fine--right{ text-align:right; }
.footer__links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.footer__links a{
  color: rgba(246,234,215,.82);
  text-decoration:none;
  font-weight:800;
  font-size: 12px;
  letter-spacing:.10em;
  text-transform: uppercase;
}
.footer__links a:hover{ color: rgba(243,194,126,.98); }
