/* GOBOG Gold Theme - clean, responsive */
:root{
  --bg:#0a0703;
  --card:#15100a;
  --muted:#b8a98b;
  --text:#fff7e6;
  --line:#3b2a12;

  --accent:#f5c542;   /* gold */
  --accent2:#d4a017;  /* deeper gold */
  --glow: rgba(245,197,66,.18);

  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  ----sans: "Noto Sans Javanese", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

  .buy-progress{margin:10px 0 14px 0}
.buy-progress-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;gap:12px}
.buy-progress-bottom{margin-top:8px}

.progress{
  height:12px;border-radius:999px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}
.progress > div{
  height:100%;
  width:0%;
  background:rgba(255,215,0,.85);
  transition:width .35s ease;
}

}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--sans);
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(245,197,66,.14), transparent 60%),
    radial-gradient(760px 480px at 82% 16%, rgba(212,160,23,.12), transparent 58%),
    radial-gradient(520px 420px at 55% 90%, rgba(245,197,66,.08), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height:1.55;
}
a{ color: var(--accent); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ max-width: 1080px; margin: 0 auto; padding: 18px; }

.header{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; position:sticky; top:0;
  background: rgba(10,7,3,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59,42,18,.75);
  z-index:10;
}
.brand{ display:flex; align-items:center; gap:14px; }
.logo{
  width:72px;
  height:72px;
  border-radius:14px;
  background: transparent;
  border: 1px solid rgba(245,197,66,.22);
  padding: 2px;         /* sebelumnya 6px bikin makin kecil */
  object-fit: contain;
}

.brand-name{ font-weight:800; letter-spacing:.3px; }
.brand-sub{ color: var(--muted); font-size:13px; }
.nav{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }

.hero{ display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; padding-top: 26px; padding-bottom: 10px;}
.hero h1{ font-size: 40px; line-height:1.08; margin:0 0 12px; }
.lead{ font-size: 16px; color: rgba(255,247,230,.92); margin:0 0 16px;}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 18px; }

.section{ padding-top: 24px; padding-bottom: 24px;}
.section h2{ margin:0 0 10px; font-size: 24px; }
.section p{ margin: 0 0 12px; color: rgba(255,247,230,.92); }

.card{
  background: linear-gradient(180deg, rgba(21,16,10,.92), rgba(21,16,10,.74));
  border: 1px solid rgba(59,42,18,.95);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.facts{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top: 14px;}
.fact{ background: rgba(255,255,255,.03); border: 1px solid rgba(245,197,66,.18); border-radius: 14px; padding: 10px 12px;}
.fact .k{ color: var(--muted); font-size:12px; }
.fact .v{ font-weight:700; }

.kv{ display:grid; grid-template-columns: 150px 1fr; gap:10px 12px; }
.kv > div:nth-child(odd){ color: var(--muted); font-size: 13px; }
.kv > div:nth-child(even){ font-weight: 700; }

.pill-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top: 10px; }
.pill{ font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(245,197,66,.22); background: rgba(255,255,255,.03); color: rgba(255,247,230,.92); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding: 11px 14px;
  border-radius: 14px;
  border:1px solid rgba(245,197,66,.45);
  background: rgba(245,197,66,.12);
  color: var(--text);
  font-weight: 700;
  cursor:pointer;
  user-select:none;
  box-shadow: 0 0 0 0 var(--glow);
}
.btn:hover{
  border-color: rgba(245,197,66,.75);
  background: rgba(245,197,66,.16);
  text-decoration:none;
  box-shadow: 0 0 0 6px var(--glow);
}
.btn:disabled{ opacity:.45; cursor:not-allowed; }
.btn.small{ padding: 8px 10px; border-radius: 12px; font-size: 13px; }
.btn.ghost{
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
}
.btn.ghost:hover{ border-color: rgba(255,255,255,.30); background: rgba(255,255,255,.06); }

.input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(245,197,66,.20);
  color: var(--text);
  outline: none;
  font-family: var(--mono);
}
.input:focus{ border-color: rgba(245,197,66,.70); box-shadow: 0 0 0 4px rgba(245,197,66,.12); }
.label{ display:block; margin-bottom:8px; color: var(--muted); font-size:13px; }
.row{ display:flex; gap:12px; margin-top:12px; flex-wrap:wrap; }
.sep{ border:0; border-top: 1px solid rgba(59,42,18,.95); margin: 14px 0; }

.console{
  margin:0;
  max-height: 260px;
  overflow:auto;
  font-family: var(--mono);
  font-size: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(245,197,66,.16);
  background: rgba(0,0,0,.22);
}
.note{
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(212,160,23,.28);
  background: rgba(212,160,23,.10);
  color: rgba(255,247,230,.95);
}
.small{ font-size: 13px; }
.muted{ color: var(--muted); }
.mono{ font-family: var(--mono); }

.footer{
  border-top: 1px solid rgba(59,42,18,.75);
  color: rgba(255,247,230,.72);
  display:flex; justify-content:space-between; gap:12px;
  padding-top: 18px; padding-bottom: 24px;
  flex-wrap:wrap;
}

.list{ margin: 0; padding-left: 18px; }
.list li{ margin: 8px 0; color: rgba(255,247,230,.92); }

@media (max-width: 880px){
  .hero{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .kv{ grid-template-columns: 120px 1fr; }
  .hero h1{ font-size: 34px; }
}

/* Phase UI */
.phase-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.phase{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(245,197,66,.18);
  background: rgba(255,255,255,.03);
}
.phase .left{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.phase .name{ font-weight:800; }
.phase .meta{ color: var(--muted); font-size:12px; }
.phase .price{ font-family: var(--mono); font-weight:800; }

.phase.future{
  opacity:.35;
  filter:saturate(.6);
}
.phase.past{
  opacity:.65;
}
.phase.current{
  border-color: rgba(245,197,66,.70);
  box-shadow: 0 0 0 6px rgba(245,197,66,.10);
}
.addr-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.addr{
  padding:6px 10px;
  border-radius:12px;
  border:1px solid rgba(245,197,66,.18);
  background: rgba(255,255,255,.03);
  max-width: 360px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.gitem{
  display:block;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(245,197,66,.18);
  background: rgba(255,255,255,.02);
}
.gitem img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
  transition: transform .18s ease;
}
.gitem:hover img{ transform: scale(1.03); }

.faq{
  padding:10px 0;
  border-top:1px solid rgba(59,42,18,.75);
}
.faq:first-child{ border-top:0; }
.faq summary{
  cursor:pointer;
  font-weight:800;
  color: rgba(255,247,230,.95);
}
.faq p{
  margin:10px 0 0;
  color: rgba(255,247,230,.90);
}

@media (max-width: 900px){
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .gitem img{ height:160px; }
}
@media (max-width: 520px){
  .gallery{ grid-template-columns: 1fr; }
}

