

: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-image: url("assets/images/broken_oaths_bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  min-height:100vh;
  overflow-x:hidden;
}

.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;
}

/* Layout */
.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: 84px 0 60px;
}
.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:700;
  font-size: 12px;
  letter-spacing:.12em;
  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(42px, 6vw, 70px);
  text-shadow: 0 20px 70px rgba(0,0,0,.6);
}
.hero__sub{
  font-family: Cinzel, serif;
  font-weight:600;
  letter-spacing:.38em;
  font-size: clamp(14px, 2vw, 20px);
  margin-top:8px;
  color: rgba(243,194,126,.92);
}
.hero__tag{
  margin: 16px auto 0;
  font-size: 16px;
  letter-spacing:.08em;
  text-transform: uppercase;
  opacity:.86;
}
.hero__lead{
  margin: 18px auto 0;
  max-width: 860px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.hero__lead strong{
  color: var(--gold);
  font-weight: 800;
}

.hero__cta{
  margin: 26px 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:800;
  font-size: 13px;
  letter-spacing:.08em;
  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);
}
.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);
}
.btn--wide{ min-width: 240px; }

.hero__meta{
  margin: 20px 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); }

.scrollHint{
  margin-top: 26px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  opacity:.75;
  font-size: 12px;
  letter-spacing:.16em;
  text-transform: uppercase;
}
.scrollHint i{
  width:22px; height:34px;
  border-radius: 999px;
  border: 1px solid rgba(255,170,95,.25);
  position:relative;
  display:inline-block;
}
.scrollHint i::after{
  content:"";
  width:4px; height:6px;
  background: rgba(255,170,95,.8);
  border-radius: 8px;
  position:absolute;
  left:50%; top:8px;
  transform: translateX(-50%);
  animation: wheel 1.25s infinite;
}
@keyframes wheel{
  0%{ opacity:0; transform:translate(-50%, -2px); }
  25%{ opacity:1; }
  100%{ opacity:0; transform:translate(-50%, 10px); }
}

/* Sections */
.section{ padding: 64px 0; }
.section--compact{ padding: 42px 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: 880px;
}

/* Panels / grids */
.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.7; }
.panel--accent{
  border: 1px solid rgba(255,170,95,.28);
  background: rgba(18,12,10,.72);
}
.panel__cta{ margin-top: 12px; }

.link{
  color: rgba(243,194,126,.98);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.06em;
}
.link:hover{ text-decoration: underline; }

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

/* Acts cards */
.acts{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 16px;
}
.card{
  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);
}
.card__media{
  height: 190px;
  background: rgba(0,0,0,.35);
}
.card__media img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
}
.card__body{
  padding: 16px;
}
.card__kicker{
  font-size: 12px;
  font-weight: 800;
  letter-spacing:.16em;
  text-transform: uppercase;
  opacity:.9;
  display:flex;
  align-items:center;
  gap:10px;
}
.card__title{
  margin: 10px 0 8px;
  font-family: Cinzel, serif;
  letter-spacing:.06em;
}
.card__text{
  margin:0;
  color: var(--muted);
  line-height:1.7;
}
.tags{ margin-top: 12px; display:flex; gap:8px; flex-wrap:wrap; }
.tag{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,170,95,.14);
  background: rgba(0,0,0,.25);
  font-size: 12px;
  color: rgba(246,234,215,.86);
}

/* Chapters */
.chaptersGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 16px;
}
.chapter{
  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);
}
.chapter__img{
  height: 210px;
  background: rgba(0,0,0,.35);
}
.chapter__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.chapter__body{
  padding: 14px 16px 16px;
}
.chapter__meta{
  font-size: 11px;
  font-weight: 900;
  letter-spacing:.18em;
  text-transform: uppercase;
  color: rgba(243,194,126,.92);
}
.chapter h3{
  margin: 10px 0 8px;
  font-family: Cinzel, serif;
  letter-spacing:.06em;
  font-size: 18px;
}
.chapter p{
  margin:0;
  color: var(--muted);
  line-height:1.7;
}


.chapter--wide{
  grid-column: span 3;
  position: relative;
  min-height: 600px;        
  overflow: hidden;
}


.chapter--wide .chapter__img{
  position: absolute;
  inset: 0;
  height: 100%;
  background: rgba(0,0,0,.35);
}

.chapter--wide .chapter__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;          
  object-position: center;
  display: block;
}


.chapter--wide .chapter__body{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.78),
    rgba(0,0,0,.35),
    rgba(0,0,0,0)
  );
}


.chapter--wide::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 420px at 50% 25%, rgba(255,135,74,.10), rgba(0,0,0,.35));
  pointer-events:none;
}


.whitepaperCard{
  display:flex;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,170,95,.20);
  background: rgba(10,8,7,.60);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.whitepaperCard__left{ flex: 1.4; }
.whitepaperCard__right{
  flex: .6;
  display:grid;
  gap: 10px;
}
.whitepaperCard h3{
  margin:0 0 10px;
  font-family: Cinzel, serif;
  letter-spacing:.06em;
}
.whitepaperCard p{ margin:0 0 12px; color: var(--muted); line-height:1.7; }
.whitepaperCard__cta{ display:flex; gap: 10px; flex-wrap:wrap; }
.stat{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,170,95,.14);
  background: rgba(0,0,0,.25);
}
.stat__k{
  font-size: 11px;
  font-weight: 900;
  letter-spacing:.18em;
  text-transform: uppercase;
  color: rgba(246,234,215,.72);
}
.stat__v{
  margin-top: 6px;
  font-family: Cinzel, serif;
  font-size: 22px;
  letter-spacing:.06em;
  color: rgba(243,194,126,.96);
}


.faq details{
  border-radius: 16px;
  border: 1px solid rgba(255,170,95,.14);
  background: rgba(10,8,7,.55);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  padding: 12px 14px;
  margin: 10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  letter-spacing:.03em;
}
.faq p{
  color: var(--muted);
  line-height:1.7;
  margin: 10px 0 0;
}


.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); }

.center{ text-align:center; margin-top: 18px; }




.roadmap{
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 10px 0;
}

.roadmap__line{
  position:absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(255,170,95,.0),
    rgba(255,170,95,.22),
    rgba(255,170,95,.10),
    rgba(255,170,95,.0)
  );
  filter: drop-shadow(0 0 18px rgba(255,135,74,.20));
}

.roadmapItem{
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.roadmapItem__node{
  position: relative;
  height: 100%;
  display:flex;
  justify-content:center;
}

.roadmapItem__dot{
  width: 12px;
  height: 12px;
  margin-top: 18px;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255,135,74,.55);
}

.roadmapItem__card{
  position: relative;
  padding: 18px;
}

.roadmapItem__top{
  display:flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.roadmapItem__phase{
  font-size: 11px;
  font-weight: 900;
  letter-spacing:.18em;
  text-transform: uppercase;
  color: rgba(243,194,126,.92);
}

.roadmapItem__title{
  font-family: Cinzel, serif;
  letter-spacing:.06em;
  font-size: 18px;
  font-weight: 700;
  flex: 1;
  min-width: 220px;
}

.roadmapItem__badge{
  font-size: 11px;
  font-weight: 900;
  letter-spacing:.16em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,170,95,.22);
  background: rgba(0,0,0,.25);
  color: rgba(246,234,215,.90);
}

.roadmapItem__badge--soft{
  background: rgba(255,170,95,.12);
  border: 1px solid rgba(255,170,95,.22);
}

.roadmapItem__badge--burn{
  background: rgba(255,80,60,.14);
  border: 1px solid rgba(255,110,90,.25);
}

.roadmapItem__badge--accent{
  background: rgba(18,12,10,.72);
  border: 1px solid rgba(255,170,95,.30);
}

.roadmapItem__badge--gold{
  background: rgba(243,194,126,.14);
  border: 1px solid rgba(243,194,126,.26);
  color: rgba(243,194,126,.98);
}

.roadmapItem__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.roadmapItem__bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.roadmapItem__bullets li{
  margin: 4px 0;
}

.roadmapItem__card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--radius);
  pointer-events:none;
  background: radial-gradient(700px 240px at 15% 10%, rgba(255,135,74,.10), rgba(0,0,0,0));
  opacity: .9;
}

.roadmapProgress{
  margin-top: 16px;
  margin-bottom: 18px;
}
.roadmapProgress__top{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.roadmapProgress__k{
  font-size: 11px;
  font-weight: 900;
  letter-spacing:.18em;
  text-transform: uppercase;
  color: rgba(246,234,215,.70);
}
.roadmapProgress__v{
  font-family: Cinzel, serif;
  font-size: 20px;
  letter-spacing:.06em;
  color: rgba(243,194,126,.96);
  margin-top: 6px;
}
.roadmapProgress__mini{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.roadmapProgress__bar{
  margin-top: 14px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,170,95,.14);
  overflow:hidden;
}
.roadmapProgress__bar span{
  display:block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(255,195,120,1), rgba(255,135,74,1));
  box-shadow: 0 0 22px rgba(255,135,74,.35);
}
.roadmapProgress__fine{
  margin-top: 10px;
  color: rgba(246,234,215,.72);
  font-size: 13px;
}


@media (min-width: 980px){
  .roadmap{
    gap: 22px;
  }
  .roadmap__line{
    left: 50%;
    transform: translateX(-50%);
  }
  .roadmapItem{
    grid-template-columns: 1fr 60px 1fr;
    gap: 18px;
  }
  .roadmapItem__node{
    grid-column: 2;
  }
  .roadmapItem__card{
    max-width: 520px;
  }


  .roadmapItem:nth-child(odd) .roadmapItem__card{
    grid-column: 1;
    justify-self: end;
  }
  .roadmapItem:nth-child(even) .roadmapItem__card{
    grid-column: 3;
    justify-self: start;
  }


  .roadmapItem__node::after{
    content:"";
    position:absolute;
    top: 23px;
    width: 180px;
    height: 1px;
    background: rgba(255,170,95,.18);
  }
  .roadmapItem:nth-child(odd) .roadmapItem__node::after{
    right: 34px;
  }
  .roadmapItem:nth-child(even) .roadmapItem__node::after{
    left: 34px;
  }
}

.hint{ margin: 10px 0 0; color: rgba(246,234,215,.70); font-size: 13px; }
code{
  background: rgba(0,0,0,.35);
  padding: 3px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255,170,95,.10);
}

/* Responsive */
@media (max-width: 980px){
  .acts{ grid-template-columns: 1fr; }
  .chaptersGrid{ grid-template-columns: 1fr; }
  .chapter--wide{ grid-column: auto; }

 
  .chapter--wide .chapter__img{ height: 420px; }

  .grid--2{ grid-template-columns: 1fr; }
  .whitepaperCard{ flex-direction: column; }
  .whitepaperCard__right{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 820px){
  .nav{ display:none; }
  .navToggle{ display:inline-block; }
  .navMobile.isOpen{ display:block; }
  body{ background-attachment: scroll; }
}
@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }
  .hero{ padding: 64px 0 44px; }
  .hero__cta .btn{ width: 100%; }
  .whitepaperCard__right{ grid-template-columns: 1fr; }


  .chapter--wide .chapter__img{ height: 360px; }
}

.telegram-float{
  position: fixed;
  bottom: 22px;
  right: 22px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: rgba(246,234,215,.92);
  background: rgba(10,8,7,.60);
  border: 1px solid rgba(255,170,95,.16);
  box-shadow: 0 24px 80px rgba(0,0,0,.62);
  backdrop-filter: blur(12px);

  z-index: 1000;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.telegram-float::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 999px;
  pointer-events:none;
  opacity:.0;
  transition: opacity .22s ease;

  background:
    radial-gradient(140px 60px at 18% 50%, rgba(255,135,74,.30), rgba(255,135,74,0) 70%),
    radial-gradient(140px 60px at 82% 50%, rgba(111,184,255,.28), rgba(111,184,255,0) 70%);
}

.telegram-float:hover{
  transform: translateY(-2px);
  border-color: rgba(255,170,95,.24);
  box-shadow: 0 32px 95px rgba(0,0,0,.70);
}

.telegram-float:hover::before{
  opacity:.95;
}

.telegram-icon{ font-size: 14px; opacity:.9; }
.telegram-text{ white-space: nowrap; opacity:.95; }

@media (max-width: 520px){
  .telegram-text{ display:none; }
  .telegram-float{ padding: 14px; }
}

