:root{
  --bg0: #07080c;
  --bg1: rgba(18, 20, 28, 0.72);
  --bg2: rgba(12, 14, 20, 0.78);
  --line: rgba(255,255,255,0.10);
  --line2: rgba(255,255,255,0.14);
  --txt: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --soft: rgba(255,255,255,0.08);
  --accent: rgba(255, 215, 120, 0.95); /* neutral warm accent */
  --accent2: rgba(140, 195, 255, 0.95); /* neutral cool accent */
  --shadow: 0 20px 70px rgba(0,0,0,0.55);
  --radius: 18px;
  --radius2: 14px;
  --maxw: 1100px;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--txt);
  background: var(--bg0);
}

.bg{
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(255, 215, 120, 0.10), transparent 55%),
    radial-gradient(900px 600px at 80% 25%, rgba(140, 195, 255, 0.10), transparent 55%),
    radial-gradient(900px 900px at 50% 90%, rgba(255,255,255,0.06), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55)),
    url("./assets/background.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.18) contrast(1.05);
  transform: scale(1.02);
}

.wrap{
  position: relative;
  width: min(var(--maxw), calc(100% - 32px));
  margin: 24px auto 48px;
}

/* HUD */
.hud{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hud__right{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  color: var(--txt);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.chip--status{
  border-color: rgba(255, 215, 120, 0.25);
  background: rgba(255, 215, 120, 0.08);
}
.dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 215, 120, 0.55);
}

.chip--link:hover{
  border-color: var(--line2);
  background: rgba(255,255,255,0.06);
}

/* Cards */
.card{
  margin-top: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.section{
  padding: 18px 18px 20px;
}

.hero{
  padding: 20px;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.hero__brand{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}

.logo{
  width: 180px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,0.35));
}

.title{
  margin: 0;
  font-size: 34px;
  letter-spacing: 0.2px;
}
.subtitle{
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 15px;
}

.muted{ color: var(--muted); }

.stats{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 12px 0 14px;
}
.stat{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.stat__label{
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.stat__value{
  margin-top: 4px;
  font-size: 14px;
}

.ctaRow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 215, 120, 0.35);
  background: linear-gradient(180deg, rgba(255, 215, 120, 0.18), rgba(255, 215, 120, 0.08));
  color: var(--txt);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.btn:hover{
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}

.btn--ghost{
  border-color: rgba(140, 195, 255, 0.35);
  background: linear-gradient(180deg, rgba(140, 195, 255, 0.14), rgba(140, 195, 255, 0.06));
}

.micro{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 8px;
  color: rgba(255,255,255,0.84);
}

/* Right panel */
.hero__panel{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(600px 200px at 30% 0%, rgba(255, 215, 120, 0.10), transparent 55%),
    radial-gradient(500px 220px at 85% 30%, rgba(140, 195, 255, 0.10), transparent 55%),
    rgba(0,0,0,0.18);
  overflow: hidden;
}

.panelHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.panelTitle{
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 14px;
}
.panelBadge{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.20);
}
.panelBody{
  padding: 14px;
}

.kv{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 12px;
  font-size: 13px;
}
.kv__k{ color: var(--muted); }
.kv__v{ color: var(--txt); }

.divider{
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.callout{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 12px;
}
.callout__title{
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 13px;
}

/* Section header */
.sectionHeader{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.h2{
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.tag{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.20);
}

/* Video */
.videoFrame{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
}
.videoFrame iframe{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Screenshots grid */
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.shot{
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.26);
}
.shot img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.shot figcaption{
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* Two-column section */
.twoCol{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.panel{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.20);
}
.p{
  margin: 0 0 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}
.list{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
  font-size: 14px;
}
.list--tight li{ margin: 6px 0; }

/* Timeline */
.timeline{
  display: grid;
  gap: 12px;
}
.tItem{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}
.tDot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 4px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 0 18px rgba(255,255,255,0.08);
}
.tTitle{
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.tText{
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
}

/* Footer */
.footer{
  margin-top: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
}
.footer__right{ text-align: right; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .twoCol{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .shot img{ height: 220px; }
}

@media (max-width: 560px){
  .wrap{ width: calc(100% - 18px); margin-top: 16px; }
  .hud{ flex-direction: column; align-items: stretch; }
  .hud__right{ justify-content: flex-start; }
  .title{ font-size: 28px; }
  .grid{ grid-template-columns: 1fr; }
  .shot img{ height: 220px; }
}


