:root {
  --bone: #f6f1e8;
  --bone-2: #efe7d8;
  --ink: #1c1915;
  --ink-soft: #3a342c;
  --muted: #6b6459;
  --line: rgba(28, 25, 21, 0.12);
  --pine: #2f6f5e;
  --pine-dark: #1d4d41;
  --clay: #c45c26;
  --card: rgba(255, 251, 244, 0.78);
  --shadow: 0 20px 50px rgba(28, 25, 21, 0.08);
  --radius: 22px;
  --max: 1120px;
  --sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(47, 111, 94, 0.10), transparent 50%),
    radial-gradient(900px 400px at 100% 0%, rgba(196, 92, 38, 0.08), transparent 45%),
    var(--bone);
  color: var(--ink);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(246, 241, 232, 0.78);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--ink); color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 18px;
}
.brand-name { font-weight: 700; letter-spacing: -0.03em; }
.brand-name span { color: var(--pine); font-weight: 600; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { text-decoration: none; font-size: 14px; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 8px; }
.menu-btn {
  display: none; border: 1px solid var(--line); background: transparent;
  border-radius: 10px; width: 42px; height: 42px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; border: 0; cursor: pointer;
  border-radius: 999px; padding: 12px 18px; font-weight: 650;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: #000; }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-pine { background: var(--pine); color: #f4fff9; }
.btn-pine:hover { background: var(--pine-dark); }

.hero { padding: 72px 0 36px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pine-dark); font-weight: 700;
}
h1, h2, h3 { font-family: var(--serif); letter-spacing: -0.03em; margin: 0 0 12px; }
h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.02; font-weight: 560; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 560; }
.lede { font-size: 18px; color: var(--muted); max-width: 42ch; }
.claim-box {
  margin-top: 28px; background: #fffaf3; border: 1px solid var(--line);
  border-radius: 18px; padding: 10px; display: flex; gap: 8px; align-items: center;
  box-shadow: var(--shadow);
}
.claim-prefix { padding-left: 12px; color: var(--muted); font-size: 14px; white-space: nowrap; }
.claim-box input {
  flex: 1; border: 0; background: transparent; outline: none; min-width: 0;
  padding: 10px 4px; font-size: 16px;
}
.hint { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.phone {
  background: #111; border-radius: 36px; padding: 12px;
  box-shadow: var(--shadow); aspect-ratio: 9/17; max-width: 320px; margin-inline: auto;
  color: var(--bone); display: flex; flex-direction: column;
}
.phone-screen {
  background: var(--bone); color: var(--ink); border-radius: 28px;
  flex: 1; padding: 28px 18px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.pv-avatar, .phone-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--ink); color: var(--bone);
  display: grid; place-items: center; font-family: var(--serif); font-size: 28px;
  overflow: hidden;
}
.phone-avatar img, .pv-avatar img { width: 100%; height: 100%; object-fit: cover; }
.phone-handle { color: var(--muted); font-size: 13px; }
.phone-link {
  width: 100%; margin-top: 6px; background: var(--ink); color: var(--bone);
  border-radius: 14px; padding: 12px; text-align: center; font-size: 14px; font-weight: 600;
}
.phone-link.alt { background: transparent; color: var(--ink); border: 1px solid var(--line); }

.section { padding: 72px 0; }
.section.alt { background: rgba(255,255,255,.35); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.grid-3, .grid-4, .grid-2 {
  display: grid; gap: 18px; margin-top: 32px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.card h3 { font-size: 22px; }
.card p { color: var(--muted); margin: 0; }
.steps { counter-reset: step; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pine); color: #fff; display: grid; place-items: center;
  font-weight: 700; margin-bottom: 12px;
}
.price {
  font-family: var(--serif); font-size: 40px; margin: 8px 0;
}
.price small { font-size: 16px; color: var(--muted); font-family: var(--sans); }
.price-card.featured { border-color: var(--pine); box-shadow: 0 0 0 3px rgba(47,111,94,.15); }
.faq details, [data-faq-item] {
  border-bottom: 1px solid var(--line); padding: 14px 0;
}
[data-faq-item] button {
  width: 100%; text-align: left; background: none; border: 0;
  font-size: 16px; font-weight: 650; cursor: pointer; padding: 6px 0;
  display: flex; justify-content: space-between; gap: 12px;
}
[data-faq-item] .ans { display: none; color: var(--muted); }
[data-faq-item].open .ans { display: block; }

.final-cta {
  background: var(--ink); color: var(--bone); border-radius: 32px;
  padding: 56px 28px; text-align: center;
}
.final-cta p { color: rgba(246,241,232,.72); }
.site-footer {
  padding: 36px 0 48px; color: var(--muted); font-size: 14px;
  border-top: 1px solid var(--line); margin-top: 24px;
}
.site-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: var(--ink-soft); text-decoration: none; margin-right: 14px; }

.use-pill {
  display: inline-block; padding: 6px 10px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-size: 12px; margin: 4px 4px 0 0;
}

@media (max-width: 860px) {
  .hero-grid, .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .menu-btn { display: grid; place-items: center; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 68px;
    background: var(--bone); border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px; flex-direction: column; align-items: flex-start;
  }
  .site-header[data-open="true"] .nav { display: flex; }
  .hero { padding-top: 36px; }
  .claim-box { flex-wrap: wrap; }
  .claim-box .btn { width: 100%; }
}

.brand-mark-img {
  width: 34px; height: 34px; border-radius: 11px;
  object-fit: cover; background: #000; display: block;
}


.brand-name { white-space: nowrap; }
.brand-name span { display: inline; color: var(--pine); }
/* Desktop: sembunyi Login/Create Bio mobile — elak double button */
.nav-login-mobile,
a.nav-login-mobile,
a.btn.nav-login-mobile { display: none !important; }
.nav-create-mobile,
a.nav-create-mobile,
a.btn.nav-create-mobile { display: none !important; }

@media (max-width: 860px) {
  .site-header .wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; min-height: 60px;
  }
  .brand { min-width: 0; }
  .brand-name { font-size: 14px; letter-spacing: -0.02em; }
  .nav-cta { display: none !important; }
  .nav-login-mobile,
  a.nav-login-mobile,
  a.btn.nav-login-mobile {
    display: inline-flex !important;
    padding: 8px 14px;
    font-size: 13px;
    margin-left: auto;
  }
  .menu-btn { order: 3; }
  .nav-create-mobile,
  a.nav-create-mobile,
  a.btn.nav-create-mobile {
    display: inline-flex !important;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    background: var(--ink) !important;
    color: #ffffff !important;
    border-color: transparent !important;
  }
  .nav-create-mobile:hover,
  a.nav-create-mobile:hover {
    color: #ffffff !important;
  }
}
