:root{
  --accent1:#ff5f00;
  --accent2:#ffbd4a;
  --accent-dark:#d24a00;
  --muted:#9aa6bf;
  --shadow:0 10px 30px rgba(15,23,34,0.18);
  --radius:14px;
  --maxw:480px;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:#fff;
  color:#0b1220;
  -webkit-font-smoothing:antialiased;
}
.page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:40px 16px;
  background:linear-gradient(180deg,#fff 0%,#fff 100%);
}
main.page{max-width:var(--maxw);margin-inline:auto;width:100%}

/* ========== HERO ========== */
.hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
  padding:22px;
  background:linear-gradient(180deg,rgba(255,95,0,0.06),rgba(255,189,74,0.03));
  border-radius:18px;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,23,34,0.04);
}
.avatar{
  width:120px;height:120px;border-radius:999px;
  object-fit:cover;border:4px solid #fff;
  box-shadow:0 8px 22px rgba(15,23,34,0.12);
}
.brand-main{
  display:block;
  font-family:Montserrat,Inter,sans-serif;
  font-weight:800;
  font-size:22px;
  color:#0b1220;
}
.brand-tilt{
  display:block;
  margin-top:6px;
  font-family:Montserrat,Inter,sans-serif;
  font-weight:800;
  font-size:20px;
  transform:skewX(-10deg) rotate(-4deg);
  background:linear-gradient(90deg,var(--accent1),var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.brand-tilt .ngam{
  font-style:italic;
  display:inline-block;
  padding:2px 8px;
  border-radius:8px;
  background:linear-gradient(90deg,#ff7b00,#ffc04a);
  color:#fff;
  box-shadow:0 2px 6px rgba(255,123,0,0.4);
  transform:skewX(-10deg) rotate(-4deg);
}

/* tagline dua baris */
.tag{
  margin:10px 0 0;
  color:var(--muted);
  font-size:15px;
  font-weight:600;
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:1.3;
}
.tag .line1 strong{color:#0b1220}

/* ========== BUTTONS ========== */
.buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:22px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  padding:14px 18px;
  border-radius:12px;
  font-weight:700;
  font-size:16px;
  border:0;
  transition:all .15s ease;
  cursor:pointer;
}
.btn span{line-height:1}
.btn.primary{
  background:linear-gradient(90deg,#ff5f00 0%, #ffbd4a 100%);
  color:#fff;
  box-shadow:0 6px 14px rgba(255,125,30,0.3);
}
.btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(255,125,30,0.4);
}
.btn.social{
  background:linear-gradient(90deg,#111,#000);
  color:#fff;
}
.btn.ghost{
  background:#fff;
  color:#0b1220;
  border:1px solid rgba(11,18,32,0.1);
}
.btn:hover{opacity:.95}

/* footer */
.foot{
  margin-top:20px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}
.small{margin-top:6px;font-size:12px;color:var(--muted)}

/* desktop alignment */
@media(min-width:900px){
  .hero{flex-direction:row;align-items:center;justify-content:space-between;text-align:left}
  .avatar{width:150px;height:150px}
  .brand-main{font-size:26px}
  .brand-tilt{font-size:24px}
  .buttons{flex-direction:row;flex-wrap:wrap;justify-content:center}
  .btn{min-width:160px}
}
