:root {
  --bg:        #121110;
  --bg-soft:   #1a1817;
  --card:      #1d1b19;
  --card-2:    #211f1c;
  --line:      #2c2925;
  --gold:      #C9A227;
  --gold-soft: #e0c37e;
  --maroon:    #B0413C;
  --text:      #F4EFE4;
  --muted:     #8f8a80;
  --muted-2:   #6d685f;
  --green:     #7fae6b;
  --radius:    14px;
  --shadow:    0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: radial-gradient(1200px 700px at 80% -10%, #1c1a17 0%, var(--bg) 55%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Badan teks pakai Atkinson Hyperlegible, sama kayak homepage. Judul,
   tombol, sama label tetep Poppins. */
p, li, dd, blockquote { font-family: 'Atkinson Hyperlegible', sans-serif; }

b, strong { font-weight: 600; color: var(--gold-soft); }

.wrap { max-width: 560px; margin: 0 auto; padding: 56px 22px 80px; }
.wrap-wide { max-width: 720px; margin: 0 auto; padding: 40px 22px 80px; }

h1 {
  font-size: 1.9rem; font-weight: 900; line-height: 1.25;
  letter-spacing: -.01em; margin-bottom: 18px;
}
h1 em { font-style: normal; color: var(--gold); }

.sub { color: #d8d3c8; font-size: .95rem; margin-bottom: 30px; }

.panel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}

.list { list-style: none; margin: 18px 0; }
.list li {
  padding: 10px 0 10px 22px; border-bottom: 1px dashed var(--line);
  position: relative; font-size: .92rem; color: #d8d3c8;
}
.list li:last-child { border-bottom: none; }
.list li::before {
  content: "\25C6"; position: absolute; left: 0; top: 13px;
  color: var(--green); font-size: .65rem;
}

label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.field { margin-bottom: 18px; }
input[type=text], input[type=email], input[type=tel] {
  width: 100%; font-family: inherit; font-size: .95rem; color: var(--text);
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 13px 15px;
}
input:focus { outline: none; border-color: var(--gold); }
input::placeholder { color: var(--muted-2); }

.btn-primary {
  display: block; width: 100%; border: 0; cursor: pointer;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold));
  color: #121110;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.02rem;
  text-align: center; text-decoration: none;
  padding: 17px 28px; border-radius: 12px;
  box-shadow: 0 0 45px rgba(201, 162, 39, .22);
  transition: .18s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 60px rgba(201, 162, 39, .32); }

.btn-secondary {
  display: block; width: fit-content; margin: 16px auto 0;
  color: var(--muted); font-size: .85rem; font-weight: 500; text-decoration: none;
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-soft); transition: .18s;
}
.btn-secondary:hover { color: var(--text); border-color: #3a3630; }

.micro { font-size: .8rem; color: var(--muted); margin-top: 14px; line-height: 1.6; text-align: center; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.err {
  margin-top: 14px; font-size: .85rem; color: #e0908c;
  background: rgba(176, 65, 60, .1); border: 1px solid rgba(176, 65, 60, .5);
  border-radius: 10px; padding: 11px 14px; text-align: center;
}
button.btn-primary[disabled] { opacity: .6; cursor: default; transform: none; }

.brand { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.brand svg, .brand img { width: 34px; height: 34px; flex: 0 0 auto; }
.brand-name { font-weight: 700; font-size: .98rem; letter-spacing: .5px; }
.brand-name span { color: var(--gold); }
