/* ============================================================
   LogoKu — shared dark "3D glass" theme
   Extracted from the redesign mockups (Website redesign dengan 3D).
   ============================================================ */
:root {
  --bg: #0a0816;
  --text: #f4f2fb;
  --muted: #aaa4c8;
  --muted-2: #b3aed0;
  --violet: #a78bfa;
  --blue: #60a5fa;
  --grad: linear-gradient(135deg, #a78bfa, #60a5fa);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, .display { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
a { color: inherit; }

/* keyframes */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes floaty2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(14px); } }
@keyframes spin3d { 0%,100% { transform: rotateY(-15deg) rotateX(7deg); } 50% { transform: rotateY(15deg) rotateX(-3deg); } }
@keyframes orbdrift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.12); } }
@keyframes orbdrift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-36px,28px) scale(1.08); } }

/* decorative orbs */
.orbs { position: fixed; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; }
.orb-1 { top: -160px; left: -120px; width: 540px; height: 540px; background: radial-gradient(circle, rgba(124,58,237,0.55), transparent 65%); filter: blur(40px); animation: orbdrift 16s ease-in-out infinite; }
.orb-2 { top: 240px; right: -160px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(37,99,235,0.45), transparent 65%); filter: blur(50px); animation: orbdrift2 19s ease-in-out infinite; }
.orb-3 { bottom: -200px; left: 30%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(192,38,211,0.28), transparent 65%); filter: blur(60px); animation: orbdrift 22s ease-in-out infinite; }

.layer { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* header / nav */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); background: rgba(10,8,22,0.55); border-bottom: 1px solid rgba(255,255,255,0.08); }
.header-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand .mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--grad); font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #0a0816; font-size: 17px; box-shadow: 0 8px 22px rgba(124,58,237,0.5); }
.brand .name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; color: #fff; }
.brand .name span { color: var(--violet); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: #c9c4e0; text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color .2s; }
.nav a:hover { color: #fff; }

/* mobile menu toggle (hidden on desktop) */
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 11px; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }
.btn { text-decoration: none; font-weight: 700; border-radius: 12px; cursor: pointer; border: none; transition: all .2s; display: inline-block; }
.btn-ghost { color: #fff; font-weight: 600; padding: 9px 18px; border-radius: 11px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-primary { color: #0a0816; padding: 10px 20px; border-radius: 11px; background: var(--grad); box-shadow: 0 10px 26px rgba(124,58,237,0.45); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-lg { font-size: 15px; padding: 15px 28px; border-radius: 14px; }

/* glass card */
.glass { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(0,0,0,0.25); }
.section { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-weight: 700; font-size: 40px; color: #fff; margin: 0; }
.section-head p { font-size: 16px; color: var(--muted); margin: 14px 0 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); font-size: 13px; font-weight: 600; color: #d6d0f0; }
.text-grad { background: linear-gradient(120deg,#a78bfa,#60a5fa,#c084fc); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* hero */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 80px 0 60px; }
.hero h1 { font-weight: 700; font-size: 58px; line-height: 1.05; margin: 22px 0 0; color: #fff; }
.hero p { font-size: 17.5px; line-height: 1.6; color: var(--muted-2); margin: 22px 0 0; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; }
.hero-stats .num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 30px; color: #fff; }
.hero-stats .lbl { font-size: 13.5px; color: #a9a4c4; }
.showcase { display: grid; place-items: center; perspective: 1200px; }
.showcase-inner { position: relative; transform-style: preserve-3d; animation: spin3d 9s ease-in-out infinite; }

/* catalog */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn { cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; font-weight: 600; padding: 10px 18px; border-radius: 11px; transition: all .2s; color: #c9c4e0; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }
.filter-btn.active { color: #0a0816; background: var(--grad); border: 1px solid transparent; box-shadow: 0 10px 26px rgba(124,58,237,0.4); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.catalog-card { border-radius: 22px; overflow: hidden; transition: transform .2s, border-color .2s; }
.catalog-card:hover { transform: translateY(-5px); border-color: rgba(167,139,250,0.45); }
.catalog-thumb { height: 200px; display: grid; place-items: center; position: relative; }
.catalog-mark { width: 104px; height: 104px; border-radius: 24px; display: grid; place-items: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 42px; box-shadow: 0 18px 40px rgba(0,0,0,0.3), inset 0 2px 0 rgba(255,255,255,0.35); }
.catalog-card .body { padding: 22px; }
.item-badge { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #c4bdf0; padding: 5px 11px; border-radius: 8px; background: rgba(167,139,250,0.15); border: 1px solid rgba(167,139,250,0.25); }
.catalog-card h3 { font-weight: 600; font-size: 19px; color: #fff; margin: 14px 0 7px; }
.catalog-card .desc { font-size: 13.5px; line-height: 1.55; color: #a9a3c8; margin: 0 0 18px; }
.btn-use { display: inline-block; text-decoration: none; font-size: 14px; font-weight: 700; color: #cdb8ff; padding: 10px 18px; border-radius: 11px; border: 1px solid rgba(167,139,250,0.35); background: rgba(167,139,250,0.08); transition: all .2s; }
.btn-use:hover { background: rgba(167,139,250,0.18); color: #fff; }

/* benefit / step cards */
.benefit { padding: 30px; transition: transform .2s, border-color .2s; }
.benefit:hover { transform: translateY(-4px); border-color: rgba(167,139,250,0.4); }
.icon-box { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; background: linear-gradient(135deg, rgba(167,139,250,0.25), rgba(96,165,250,0.18)); border: 1px solid rgba(255,255,255,0.14); }
.benefit h3 { font-weight: 600; font-size: 19px; color: #fff; margin: 18px 0 8px; }
.benefit p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.step { position: relative; padding: 34px 28px; overflow: hidden; }
.step .num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 64px; line-height: 1; background: linear-gradient(135deg, rgba(167,139,250,0.9), rgba(96,165,250,0.4)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h4 { font-weight: 600; font-size: 20px; color: #fff; margin: 16px 0 8px; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.price-card { position: relative; padding: 28px 24px; border-radius: 22px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); }
.price-card.featured { border-color: rgba(167,139,250,0.5); box-shadow: 0 24px 60px rgba(124,58,237,0.35); }
.ribbon { position: absolute; top: 16px; right: 16px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; color: #0a0816; padding: 5px 11px; border-radius: 999px; background: linear-gradient(135deg,#fbbf24,#f59e0b); }
.ribbon.premium { background: var(--grad); color: #0a0816; }
.price-card h3 { font-weight: 600; font-size: 19px; color: #fff; margin: 0; }
.price-card .sub { font-size: 13px; color: #a9a3c8; margin: 5px 0 0; }
.price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 32px; color: #fff; margin: 18px 0 4px; }
.price small { font-size: 15px; color: #a9a3c8; font-weight: 500; }
.feat-list { list-style: none; padding: 0; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.feat-list li { display: flex; align-items: center; gap: 9px; font-size: 13px; }
.feat-list li .ic { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
.feat-list li.ok { color: #d4cff0; }
.feat-list li.ok .ic { background: rgba(94,224,176,0.16); color: #5ee0b0; }
.feat-list li.no { color: #6b6685; }
.feat-list li.no .ic { background: rgba(255,255,255,0.05); color: #6b6685; }
.btn-pick { display: block; text-align: center; text-decoration: none; font-weight: 700; font-size: 14px; padding: 13px; border-radius: 12px; color: #fff; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.05); transition: all .2s; }
.btn-pick.solid { color: #0a0816; background: var(--grad); border-color: transparent; }
.btn-pick:hover { filter: brightness(1.08); }

/* testimonials */
.stars { font-size: 16px; color: #fbbf24; letter-spacing: 2px; }
.t-quote { font-size: 15px; line-height: 1.65; color: #d4cff0; margin: 16px 0 22px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #0a0816; background: var(--grad); }

/* FAQ */
.faq { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: 18px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(14px); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: transparent; border: none; cursor: pointer; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 600; color: #fff; }
.faq-q .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(167,139,250,0.18); color: #cdb8ff; font-size: 18px; transition: transform .25s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { margin: 0; padding: 0 24px 22px; font-size: 14.5px; line-height: 1.65; color: var(--muted); }

/* CTA banner */
.cta-banner { position: relative; overflow: hidden; border-radius: 30px; padding: 60px 48px; text-align: center; background: linear-gradient(135deg, rgba(124,58,237,0.35), rgba(37,99,235,0.3)); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(20px); box-shadow: 0 30px 80px rgba(76,29,149,0.4); margin-top: 40px; }
.cta-banner h2 { font-weight: 700; font-size: 38px; color: #fff; margin: 0; }
.cta-banner p { font-size: 16.5px; color: #d8d3f0; margin: 14px 0 30px; }

/* footer */
.site-footer { margin-top: 70px; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.site-footer p { font-size: 13.5px; color: #8c87a8; margin: 0; }

/* floating WA */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 60; display: flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 14.5px; color: #fff; background: linear-gradient(135deg,#22c55e,#16a34a); box-shadow: 0 14px 40px rgba(22,163,74,0.5); transition: transform .2s; }
.wa-float:hover { transform: translateY(-3px); }

/* forms */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 600; color: #cdc8e6; }
.input, .textarea, .select { width: 100%; padding: 13px 15px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); color: #fff; font-family: inherit; font-size: 14.5px; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: rgba(167,139,250,0.6); }
.textarea { min-height: 96px; resize: vertical; }
.hint { font-size: 12.5px; color: #908aab; }
.error-text { color: #fb7185; font-size: 13px; margin-top: 6px; }
.ok-text { color: #5ee0b0; font-size: 13px; margin-top: 6px; }

/* ---- brief / order page ---- */
.brief-wrap { max-width: 760px; padding-top: 48px; padding-bottom: 80px; }
.brief-form { display: flex; flex-direction: column; gap: 24px; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* selected package panel */
.paket-panel { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-radius: 16px; background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(37,99,235,0.16)); border: 1px solid rgba(167,139,250,0.4); margin-bottom: 26px; }
.paket-icon { font-size: 22px; }
.paket-eyebrow { font-size: 12.5px; color: #c4bdf0; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.paket-name { font-size: 16px; font-weight: 700; color: #fff; margin-top: 2px; }

/* step cards + indicator */
.step-card { padding: 30px; }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.step-num { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--grad); color: #0a0816; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.step-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; color: #fff; margin: 0; }
.field .opt { color: #8c87a8; font-weight: 500; }

/* phone +62 affix */
.input-affix { display: flex; align-items: stretch; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); }
.input-affix:focus-within { border-color: rgba(167,139,250,0.6); }
.input-affix .affix { display: grid; place-items: center; padding: 0 16px; background: rgba(255,255,255,0.06); color: #cdb8ff; font-weight: 700; font-size: 15px; border-right: 1px solid rgba(255,255,255,0.1); }
.input.affix-input { border: none; border-radius: 0; background: transparent; }
.input.affix-input:focus { border: none; }

/* color picker rows */
.color-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.color-row { display: flex; align-items: center; gap: 10px; }
.color-swatch { width: 46px; height: 46px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); border-radius: 12px; cursor: pointer; padding: 4px; }
.color-hex { text-transform: lowercase; letter-spacing: 0.03em; }

/* submit + status */
.submit-btn { width: 100%; text-align: center; }
.submit-btn[disabled] { opacity: 0.6; cursor: progress; filter: none; }
.form-status { padding: 14px 18px; border-radius: 12px; font-size: 14px; font-weight: 600; line-height: 1.5; }
.form-status.is-error { background: rgba(251,113,133,0.12); border: 1px solid rgba(251,113,133,0.35); color: #fda4af; }
.form-status.is-ok { background: rgba(94,224,176,0.12); border: 1px solid rgba(94,224,176,0.35); color: #5ee0b0; }
.input.is-invalid, .textarea.is-invalid { border-color: rgba(251,113,133,0.7); }

@media (max-width: 540px) {
  .color-grid { grid-template-columns: 1fr; }
}

/* toast */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 80; padding: 14px 22px; border-radius: 12px; background: linear-gradient(135deg,#22c55e,#16a34a); color: #fff; font-weight: 600; font-size: 14px; box-shadow: 0 14px 40px rgba(22,163,74,0.4); opacity: 0; pointer-events: none; transition: all .3s; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .nav { gap: 14px; flex-wrap: wrap; }
  .hero h1 { font-size: 42px; }
  .container { padding-left: 20px; padding-right: 20px; }

  /* collapsible mobile nav */
  .menu-toggle { display: flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 8px; padding: 16px 20px; background: rgba(10,8,22,0.96); border-bottom: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(18px); }
  .nav.open { display: flex; }
  .header-wrap { position: relative; }
}
@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Auth page (login.html) — layout + tab toggle
   ============================================================ */
.auth-shell { display: flex; min-height: 100vh; width: 100%; }
.auth-intro {
  flex: 1;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.auth-art { display: grid; place-items: center; perspective: 1100px; padding: 30px 0; }
.auth-art-card {
  transform-style: preserve-3d; animation: spin3d 9s ease-in-out infinite;
  width: 220px; height: 220px; border-radius: 32px;
  background: linear-gradient(150deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(20px);
  box-shadow: 0 40px 90px rgba(76,29,149,0.55); display: grid; place-items: center;
}
.auth-art-mark {
  width: 110px; height: 110px; border-radius: 30px; background: var(--grad);
  display: grid; place-items: center; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 46px; color: #0a0816; box-shadow: 0 20px 50px rgba(124,58,237,0.6);
}
.auth-intro-copy h2 { font-weight: 700; font-size: 30px; line-height: 1.2; color: #fff; margin: 0; max-width: 360px; }
.auth-intro-copy p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 14px 0 0; max-width: 380px; }

.auth-panel { width: 520px; display: grid; place-items: center; padding: 40px; }
.auth-card { width: 100%; max-width: 380px; padding: 40px; border-radius: 26px; }

.auth-tabs {
  display: flex; gap: 6px; padding: 5px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px;
}
.auth-tab {
  flex: 1; padding: 11px; border-radius: 10px; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px;
  color: #c9c4e0; background: transparent; transition: all .2s;
}
.auth-tab.is-active { color: #0a0816; background: var(--grad); box-shadow: 0 8px 22px rgba(124,58,237,0.4); }
.auth-tab:focus-visible { outline: 2px solid rgba(167,139,250,0.8); outline-offset: 2px; }

.auth-heading { font-weight: 700; font-size: 26px; color: #fff; margin: 0; }
.auth-subheading { font-size: 14px; color: var(--muted); margin: 8px 0 26px; }

.auth-row { display: flex; align-items: center; justify-content: space-between; margin: -2px 0 4px; }
.auth-remember { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); cursor: pointer; }
.auth-remember input { accent-color: var(--violet); width: 15px; height: 15px; }
.auth-link {
  background: none; border: none; cursor: pointer; color: #cdb8ff; font-weight: 700;
  font-size: 13px; font-family: 'Plus Jakarta Sans', sans-serif; padding: 0; text-decoration: none;
}
.auth-link:hover { color: #fff; }
.auth-link:focus-visible { outline: 2px solid rgba(167,139,250,0.8); outline-offset: 2px; border-radius: 4px; }

.auth-submit { width: 100%; margin-top: 16px; text-align: center; }
.auth-submit:disabled { opacity: 0.6; cursor: not-allowed; filter: none; }

.auth-switch { text-align: center; font-size: 13px; color: #8c87a8; margin: 28px 0 0; }
.auth-status { margin-top: 18px; min-height: 20px; text-align: center; }
.auth-status:empty { margin-top: 0; }

@media (max-width: 860px) {
  .auth-shell { flex-direction: column; }
  .auth-intro { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 32px 24px; }
  .auth-art { padding: 12px 0; }
  .auth-art-card { width: 150px; height: 150px; }
  .auth-art-mark { width: 78px; height: 78px; font-size: 32px; }
  .auth-panel { width: 100%; padding: 28px 20px 48px; }
}

/* ============================================================
   Dashboard (admin) — dark glass layout. Additive, dash-scoped.
   ============================================================ */
.dash-layout { position: relative; min-height: 100vh; width: 100%; display: flex; }

/* sidebar */
.sidebar { position: relative; z-index: 2; width: 256px; flex-shrink: 0; padding: 26px 20px; background: rgba(10,8,22,0.6); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; min-height: 100vh; }
.sidebar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 0 8px 4px; }
.sidebar-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #6f6a90; padding: 24px 12px 10px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.nav-item { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; border: none; cursor: pointer; width: 100%; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600; transition: all .2s; color: #c9c4e0; background: transparent; }
.nav-item:hover { background: rgba(255,255,255,0.05); color: #fff; }
.nav-item.active { color: #fff; background: linear-gradient(135deg, rgba(167,139,250,0.25), rgba(96,165,250,0.15)); box-shadow: inset 0 0 0 1px rgba(167,139,250,0.3); }
.nav-item .nav-ic { font-size: 16px; }
.sidebar-profile { margin-top: auto; padding: 14px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 11px; }
.sidebar-profile .avatar { width: 38px; height: 38px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #0a0816; flex-shrink: 0; }
.sidebar-profile .meta { flex: 1; min-width: 0; }
.sidebar-profile .pname { font-size: 13.5px; font-weight: 700; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-profile .pemail { font-size: 11.5px; color: #8c87a8; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-logout { margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 12px; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; font-weight: 600; color: #ff9b9b; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); transition: background .2s; }
.sidebar-logout:hover { background: rgba(239,68,68,0.16); }
.sidebar-logout:disabled { opacity: .6; cursor: progress; }

/* main */
.dash-main { position: relative; z-index: 1; flex: 1; padding: 32px 40px; min-width: 0; }
.dash-topbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.dash-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 30px; letter-spacing: -0.02em; color: #fff; margin: 0; }
.dash-subtitle { font-size: 14.5px; color: var(--muted); margin: 7px 0 0; }
.dash-add-btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 13px; border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; color: #0a0816; background: var(--grad); box-shadow: 0 12px 30px rgba(124,58,237,0.4); transition: filter .2s; }
.dash-add-btn:hover { filter: brightness(1.08); }
.dash-add-btn:disabled { opacity: .6; cursor: progress; filter: none; }

.dash-view[hidden] { display: none; }

/* config / error notice */
.dash-notice { padding: 26px; border-radius: 18px; background: rgba(251,113,133,0.1); border: 1px solid rgba(251,113,133,0.3); color: #fecdd3; font-size: 14.5px; line-height: 1.6; max-width: 640px; }

/* stat cards */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 28px; }
.stat-card { padding: 22px; border-radius: 20px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); }
.stat-card-head { display: flex; align-items: center; justify-content: space-between; }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 600; }
.stat-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; font-size: 17px; }
.stat-icon--violet { background: rgba(167,139,250,0.16); }
.stat-icon--blue { background: rgba(96,165,250,0.16); }
.stat-icon--green { background: rgba(34,197,94,0.16); }
.stat-icon--red { background: rgba(239,68,68,0.16); }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 28px; color: #fff; margin-top: 14px; }
.stat-delta { font-size: 12.5px; color: var(--muted); margin-top: 4px; font-weight: 600; }

/* two-column ringkasan */
.dash-cols { display: grid; grid-template-columns: 1fr 1.3fr; gap: 18px; }
.dash-panel { padding: 26px; border-radius: 22px; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); }
.dash-panel-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; color: #fff; margin: 0 0 20px; }

/* status breakdown bars */
.breakdown-list { display: flex; flex-direction: column; gap: 16px; }
.breakdown-row .breakdown-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.breakdown-name { font-size: 13.5px; color: #d4cff0; font-weight: 600; }
.breakdown-count { font-size: 13px; color: var(--muted); }
.breakdown-bar { height: 9px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.breakdown-fill { height: 100%; border-radius: 999px; transition: width .3s; }
.breakdown-fill--slate { background: #94a3b8; }
.breakdown-fill--violet { background: #a78bfa; }
.breakdown-fill--blue { background: #60a5fa; }
.breakdown-fill--amber { background: #fbbf24; }
.breakdown-fill--green { background: #22c55e; }

/* recent orders list */
.recent-list { display: flex; flex-direction: column; gap: 8px; }
.recent-item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 14px; cursor: pointer; text-align: left; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); width: 100%; transition: background .2s; }
.recent-item:hover { background: rgba(255,255,255,0.07); }
.recent-avatar { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; background: var(--grad); font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #0a0816; font-size: 14px; }
.recent-info { flex: 1; min-width: 0; }
.recent-brand { font-size: 13.5px; font-weight: 700; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.recent-customer { font-size: 12px; color: #8c87a8; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* pills (status / payment) */
.pill { display: inline-block; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; border: 1px solid transparent; white-space: nowrap; }
.pill--sm { padding: 5px 11px; font-size: 11.5px; }
.pill--slate { color: #cbd5e1; background: rgba(148,163,184,0.14); border-color: rgba(148,163,184,0.3); }
.pill--violet { color: #c4b5fd; background: rgba(167,139,250,0.16); border-color: rgba(167,139,250,0.34); }
.pill--blue { color: #93c5fd; background: rgba(96,165,250,0.16); border-color: rgba(96,165,250,0.34); }
.pill--amber { color: #fcd34d; background: rgba(251,191,36,0.16); border-color: rgba(251,191,36,0.34); }
.pill--green { color: #6ee7a8; background: rgba(34,197,94,0.16); border-color: rgba(34,197,94,0.34); }
.pill--red { color: #fca5a5; background: rgba(239,68,68,0.14); border-color: rgba(239,68,68,0.3); }

/* data table */
.data-table-wrap { border-radius: 22px; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); overflow: hidden; }
.data-table-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.data-table-scroll { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; min-width: 880px; }
.data-table th { padding: 14px 16px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #8c87a8; text-align: left; }
.data-table th:first-child, .data-table td:first-child { padding-left: 24px; }
.data-table th:last-child, .data-table td:last-child { padding-right: 24px; }
.data-table tbody tr { border-top: 1px solid rgba(255,255,255,0.06); transition: background .2s; }
.data-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.data-table td { padding: 16px; vertical-align: middle; }
.table-client { display: flex; align-items: center; gap: 12px; }
.table-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0; background: var(--grad); font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #0a0816; font-size: 15px; }
.table-name { font-size: 14px; font-weight: 700; color: #fff; }
.table-wa { font-size: 12px; color: #8c87a8; }
.table-brand { font-size: 14px; font-weight: 600; color: #e6e2f6; }
.table-brief { font-size: 12px; color: #8c87a8; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.table-total { font-size: 14px; font-weight: 700; color: #fff; }
.table-dp { font-size: 11.5px; color: #8c87a8; }
.action-row { display: flex; gap: 7px; }
.action-btn { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; cursor: pointer; font-size: 14px; text-decoration: none; border: 1px solid transparent; transition: background .2s; }
.action-btn:disabled { opacity: .5; cursor: progress; }
.action-btn--edit { border-color: rgba(167,139,250,0.3); background: rgba(167,139,250,0.1); color: #cdb8ff; }
.action-btn--edit:hover { background: rgba(167,139,250,0.2); }
.action-btn--chat { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.1); color: #6ee7a8; }
.action-btn--chat:hover { background: rgba(34,197,94,0.2); }
.action-btn--delete { border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.1); color: #fca5a5; }
.action-btn--delete:hover { background: rgba(239,68,68,0.2); }
.empty-state { padding: 50px; text-align: center; color: #8c87a8; font-size: 14px; }

/* customers grid */
.customer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.customer-card { padding: 20px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); display: flex; align-items: center; gap: 14px; }
.customer-avatar { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; flex-shrink: 0; background: var(--grad); font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #0a0816; font-size: 20px; }
.customer-info { min-width: 0; flex: 1; }
.customer-name { font-size: 15px; font-weight: 700; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.customer-sub { font-size: 12px; color: var(--muted); }
.customer-chat { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0; text-decoration: none; border: 1px solid rgba(34,197,94,0.3); background: rgba(34,197,94,0.1); color: #6ee7a8; font-size: 16px; transition: background .2s; }
.customer-chat:hover { background: rgba(34,197,94,0.2); }

/* settings */
.settings-card { max-width: 560px; padding: 30px; border-radius: 22px; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); }

/* modal */
.modal { position: fixed; inset: 0; z-index: 90; background: rgba(5,4,12,0.7); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal-card { width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; padding: 30px; border-radius: 24px; background: rgba(24,18,49,0.97); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 40px 90px rgba(0,0,0,0.6); }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.modal-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 21px; color: #fff; margin: 0; }
.modal-close { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; cursor: pointer; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); color: var(--muted); font-size: 16px; transition: background .2s; }
.modal-close:hover { background: rgba(255,255,255,0.12); }
.modal-body { display: flex; flex-direction: column; gap: 16px; }
.modal-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.modal-actions { display: flex; gap: 10px; margin-top: 10px; }
.modal-actions .btn-save { flex: 1; padding: 14px; border-radius: 13px; border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14.5px; color: #0a0816; background: var(--grad); box-shadow: 0 12px 30px rgba(124,58,237,0.4); transition: filter .2s; }
.modal-actions .btn-save:hover { filter: brightness(1.08); }
.modal-actions .btn-save:disabled { opacity: .6; cursor: progress; filter: none; }
.modal-actions .btn-cancel { padding: 14px 22px; border-radius: 13px; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 14.5px; color: #fff; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); transition: background .2s; }
.modal-actions .btn-cancel:hover { background: rgba(255,255,255,0.12); }
.modal-error { color: #fb7185; font-size: 13px; margin: 0; min-height: 1px; }

/* dashboard responsive */
@media (max-width: 980px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .dash-cols { grid-template-columns: 1fr; }
  .customer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .sidebar { width: 72px; padding: 20px 10px; }
  .sidebar-brand .name, .sidebar-label, .nav-item span:not(.nav-ic), .sidebar-profile .meta { display: none; }
  .nav-item { justify-content: center; }
  .sidebar-profile { justify-content: center; }
  .dash-main { padding: 24px 18px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .customer-grid { grid-template-columns: 1fr; }
  .modal-grid-3 { grid-template-columns: 1fr; }
}
