:root {
  --bg: #ffffff;
  --alt: #f6f8fc;
  --text: #17233b;
  --muted: #5b6b86;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --card: #ffffff;
  --border: #e3e9f4;
  --radius: 14px;
  --max: 1600px;
  --gutter: clamp(20px, 4vw, 64px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef3ff, #fff 70%);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Konten tengah */
.wrap {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 64px 0;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }

.eyebrow { color: var(--brand); font-weight: 700; margin: 0; letter-spacing: 0.04em; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin: 0.2em 0; line-height: 1.08; }
.desc { color: var(--muted); max-width: 52ch; margin: 0 auto; }
.desc strong { color: var(--text); }

/* Footer — sama dengan portofolio utama */
.footer { border-top: 1px solid var(--border); padding: 18px 0; color: var(--muted); background: #fff; }
.footer-inner { display: flex; justify-content: center; align-items: center; }
.footer p { margin: 0; font-size: 0.9rem; }

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .wrap { padding: 48px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
