:root{
  --bg:#05060f;
  --bg-soft:#0b1020;
  --card:rgba(255,255,255,.075);
  --card-strong:rgba(255,255,255,.115);
  --line:rgba(255,255,255,.14);
  --text:#f7f7fb;
  --muted:#a6adc8;
  --muted-2:#737a99;
  --cyan:#66e7ff;
  --violet:#a78bfa;
  --pink:#fb7185;
  --green:#86efac;
  --yellow:#fde68a;
  --shadow:0 24px 80px rgba(0,0,0,.45);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

section[id] {
  scroll-margin-top: 50px;
}

body{
  min-height:100vh;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    #05060f;
  color:var(--text);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.9), transparent 85%);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:linear-gradient(rgba(255,255,255,.025), rgba(255,255,255,0) 40%);
  mix-blend-mode:screen;
}

a{color:inherit;text-decoration:none}

.wrap{width:min(1120px, calc(100% - 40px)); margin-inline:auto}

nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(12px);
  background:rgba(5,6,15,.78);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-inner{
  height:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:-.03em;
}

.brand-mark{
  width:84px;
  height:84px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  color:var(--cyan);
  box-shadow:none;
}

.nav-links{
  display:flex;
  gap:22px;
  align-items:center;
  color:var(--muted);
  font-size:12px;
}

.nav-links a{
  transition:.2s;
}

.nav-links a:hover{
  color:var(--cyan);
}

.pill-link{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  color:var(--text);
}

.hero{
  min-height:calc(100vh - 72px);
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:36px;
  padding:74px 0 54px;
}

.eyebrow{
  width:max-content;
  display:flex;
  align-items:center;
  gap:9px;
  padding:8px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:var(--muted);
  font-size:13px;
  margin-bottom:22px;
}
.pulse{
  width:9px;height:9px;border-radius:50%;background:var(--green);
  box-shadow:0 0 0 0 rgba(134,239,172,.8);
  animation:pulse 1.8s infinite;
}
@keyframes pulse{70%{box-shadow:0 0 0 10px rgba(134,239,172,0)}}

h1{
  font-size:clamp(52px, 8vw, 96px);
  line-height:.92;
  letter-spacing:-.075em;
  margin-bottom:24px;
}
.grad{
  background:linear-gradient(90deg, #fff, var(--cyan), var(--violet));
  -webkit-background-clip:text;
  color:transparent;
}
.hero-copy{
  max-width:660px;
  font-size:18px;
  color:var(--muted);
  line-height:1.8;
}
.hero-copy b{color:var(--text);font-weight:700}

.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:13px 18px;
  border-radius:16px;
  border:1px solid var(--line);
  font-size:14px;
  font-weight:700;
  transition:.22s;
}
.btn-primary{
  color:#06101b;
  border:0;
  background:linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow:0 18px 50px rgba(102,231,255,.18);
}
.btn:hover{transform:translateY(-2px)}
.btn-ghost{background:rgba(255,255,255,.06);color:var(--text)}

.lab-card{
  position:relative;
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.lab-card::before{
  content:"";
  position:absolute;inset:-1px;
  background:linear-gradient(135deg, rgba(102,231,255,.35), transparent 35%, rgba(167,139,250,.35));
  opacity:.5;
  pointer-events:none;
}

.card-top{
  position:relative;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
.dots{display:flex;gap:8px}
.dot{width:10px;height:10px;border-radius:50%;background:var(--muted-2)}
.dot:nth-child(1){background:var(--pink)}
.dot:nth-child(2){background:var(--yellow)}
.dot:nth-child(3){background:var(--green)}

.orb{
  position:relative;
  height:360px;
  display:grid;
  place-items:center;
  isolation:isolate;
}

.orb-core{
  width:220px;
  height:220px;
  border-radius:50%;
  display:grid;
  place-items:center;
  position:relative;
  z-index:3;
  cursor:grab;
  user-select:none;
  touch-action:none;

  background:
    radial-gradient(circle at 35% 25%, #fff, var(--cyan) 18%, rgba(167,139,250,.8) 48%, rgba(102,231,255,.1) 70%, transparent 72%);
  box-shadow:0 0 80px rgba(102,231,255,.28), inset 0 0 70px rgba(255,255,255,.18);

  font-size:14px;
  letter-spacing:.42em;
  color:rgba(255,255,255,.78);
  text-shadow:0 0 22px rgba(102,231,255,.65);

  animation:float 5.5s ease-in-out infinite;
}

.orb-core:active{
  cursor:grabbing;
}

@keyframes float{50%{transform:translateY(-14px) scale(1.03)}}

.ring{
  position:absolute;
  width:300px;height:300px;border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  animation:spin 18s linear infinite;
}
.ring.two{width:250px;height:250px;transform:rotate(62deg);animation-duration:12s;border-color:rgba(102,231,255,.25)}
@keyframes spin{to{rotate:360deg}}

.metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
}
.metric{position:relative;background:rgba(5,6,15,.74);padding:18px}
.metric span{display:block;color:var(--muted-2);font-size:11px;text-transform:uppercase;letter-spacing:.12em;margin-bottom:6px}
.metric strong{font-size:18px}

section{padding:35px 0}
.section-head{display:flex;justify-content:space-between;gap:24px;align-items:end;margin-bottom:22px}
.label{color:var(--cyan);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.16em;margin-bottom:8px}
h2{font-size:clamp(28px,4vw,44px);letter-spacing:-.045em;line-height:1.08}
.section-desc{max-width:520px;color:var(--muted);line-height:1.7}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid.two{grid-template-columns:repeat(2,1fr)}
.card{border:1px solid var(--line);border-radius:18px;padding:18px;background:var(--card);backdrop-filter:blur(20px);transition:.22s}
.card:hover{transform:translateY(-4px);background:var(--card-strong);border-color:rgba(102,231,255,.32)}
.icon{width:42px;height:42px;border-radius:15px;display:grid;place-items:center;background:rgba(102,231,255,.1);margin-bottom:18px}
.card h3{font-size:18px;margin-bottom:10px}
.card p{color:var(--muted);font-size:14px;line-height:1.7}

.terminal{border:1px solid var(--line);border-radius:26px;background:rgba(2,3,10,.82);box-shadow:var(--shadow);overflow:hidden}
.terminal-body{padding:22px;font-family:"SFMono-Regular", Consolas, monospace;font-size:13px;line-height:1.9;color:#c7d2fe}
.cmd{color:var(--green)}
.comment{color:var(--muted-2)}
.warn{color:var(--yellow)}
.ok{color:var(--cyan)}

.download-card{border:1px solid var(--line);border-radius:28px;padding:28px;background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));box-shadow:var(--shadow)}
.download-card .badge{display:inline-flex;padding:7px 11px;border:1px solid var(--line);border-radius:999px;color:var(--muted);background:rgba(255,255,255,.06);font-size:12px;margin-bottom:14px}
.download-card h3{font-size:28px;letter-spacing:-.04em;margin-bottom:10px}
.download-card p{color:var(--muted);line-height:1.7;margin-bottom:18px}
.list{display:grid;gap:10px;color:var(--muted);font-size:14px;margin:18px 0 24px}
.list div{display:flex;gap:10px;align-items:flex-start}

.story{border:1px solid var(--line);border-radius:30px;padding:34px;background:rgba(255,255,255,.075)}
.story p{color:var(--muted);line-height:1.85;margin-top:14px}
.story blockquote{margin:22px 0;padding:18px 20px;border-left:3px solid var(--cyan);background:rgba(102,231,255,.07);border-radius:16px;color:var(--text);font-size:20px;letter-spacing:-.02em}

.roadmap-list{display:grid;gap:12px}
.roadmap-item{border:1px solid var(--line);border-radius:18px;padding:15px 17px;background:rgba(255,255,255,.06);color:var(--muted);display:flex;justify-content:space-between;gap:16px}
.roadmap-item strong{color:var(--text)}
.status-done{color:var(--green)}
.status-soon{color:var(--yellow)}

.founder{display:grid;grid-template-columns:.75fr 1.25fr;gap:18px;align-items:stretch}
.profile{border:1px solid var(--line);border-radius:28px;padding:24px;background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06))}
.avatar{width:82px;height:82px;border-radius:28px;background:linear-gradient(135deg, var(--cyan), var(--violet), var(--pink));display:grid;place-items:center;color:#05060f;font-weight:1000;font-size:28px;margin-bottom:18px}
.profile p{color:var(--muted);line-height:1.7;margin-top:10px}
.quote{border:1px solid var(--line);border-radius:28px;padding:30px;background:rgba(255,255,255,.075);display:flex;flex-direction:column;justify-content:space-between;min-height:260px}
.quote h3{font-size:clamp(28px, 4vw, 48px);line-height:1.05;letter-spacing:-.055em}
.quote small{color:var(--muted);margin-top:24px}

footer{padding:42px 0 56px;color:var(--muted-2);font-size:13px;text-align:center}

@media(max-width:900px){.hero{grid-template-columns:1fr;min-height:auto;padding-top:50px}.grid,.grid.two{grid-template-columns:1fr}.founder{grid-template-columns:1fr}.section-head{display:block}.section-desc{margin-top:12px}}
@media(max-width:620px){.nav-links a:not(.pill-link){display:none}.metrics{grid-template-columns:1fr}.orb{height:300px}.wrap{width:min(100% - 28px, 1120px)}}

/* ===== User Area / Auth Pages ===== */
.auth-shell{
  display:grid;
  align-items:center;
  padding:54px 0;
}
.auth-panel{display:grid;grid-template-columns:1.05fr .95fr;gap:34px;align-items:center}
.auth-copy h1{font-size:clamp(46px, 7vw, 82px)}
.auth-card,.settings-card,.profile-card,.upload-box{
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  box-shadow:var(--shadow);
  backdrop-filter:blur(22px);
}
.auth-card{padding:30px;display:grid;gap:14px}
.auth-card h2{font-size:34px}
.auth-card p,.profile-card p,.upload-box p,.resource-item p{color:var(--muted);line-height:1.7}
.badge{width:max-content;display:inline-flex;padding:7px 11px;border:1px solid var(--line);border-radius:999px;color:var(--muted);background:rgba(255,255,255,.06);font-size:12px}
label{display:block;color:var(--muted);font-size:13px;font-weight:700;margin-bottom:8px}
input,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(5,6,15,.62);
  color:var(--text);
  padding:14px 15px;
  outline:none;
  font:inherit;
}
input:focus,textarea:focus{border-color:rgba(102,231,255,.55);box-shadow:0 0 0 4px rgba(102,231,255,.08)}
textarea{resize:vertical;min-height:120px}
.full{width:100%}
.form-row{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.form-row.between{justify-content:space-between}
.check{display:flex;align-items:center;gap:8px;margin:0;font-weight:600}
.check input{width:auto}
.mini-list{display:grid;gap:10px;margin-top:24px;color:var(--muted);font-size:14px}

.dashboard-hero{
  margin-top:46px;
  border:1px solid var(--line);
  border-radius:30px;
  padding:32px;
  background:linear-gradient(135deg, rgba(102,231,255,.13), rgba(167,139,250,.10), rgba(255,255,255,.055));
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}
.upload-box{padding:34px;text-align:center;display:grid;justify-items:center;gap:14px}
.upload-box input{max-width:420px}
.resource-item{
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  background:rgba(255,255,255,.06);
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
}
.resource-item strong{display:block;margin-bottom:5px}

.profile-shell{padding:46px 0 0}
.profile-layout{display:grid;grid-template-columns:330px 1fr;gap:22px;align-items:start}
.profile-card{padding:26px;position:sticky;top:96px}
.avatar.big{width:104px;height:104px;border-radius:34px;font-size:34px}
.settings-card{padding:30px}
.section-head.compact{align-items:center;margin-bottom:26px}
.profile-form{display:grid;gap:16px}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.form-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:6px}

@media(max-width:900px){
  .auth-panel,.profile-layout{grid-template-columns:1fr}
  .profile-card{position:static}
  .dashboard-hero{display:grid}
}
@media(max-width:620px){
  .form-grid{grid-template-columns:1fr}
  .resource-item{display:grid}
}

.founder-single {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0 40px;
}

.founder-single .single-card {
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.founder-single .avatar {
  margin: 0 auto 22px;
}

.founder-single blockquote {
  margin: 24px 0 8px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
}

.founder-single small {
  display: block;
  color: var(--muted);
}

.advanced-card{
    position: relative;
    border: 1px solid rgba(138,92,246,.4);
    background: linear-gradient(
        180deg,
        rgba(138,92,246,.08),
        rgba(255,255,255,.03)
    );
    box-shadow: 0 0 20px rgba(138,92,246,.15);
}

.badge{
    position:absolute;
    top:14px;
    right:14px;
    padding:4px 10px;
    border-radius:999px;
    font-size:10px;
    font-weight:700;
    letter-spacing:.08em;
    background:rgba(138,92,246,.15);
    border:1px solid rgba(138,92,246,.35);
    color:#c5b3ff;
}

.pro-card{
    position: relative;
    border: 1px solid rgba(138,92,246,.4);
    background: linear-gradient(
        180deg,
        rgba(138,92,246,.08),
        rgba(255,255,255,.03)
    );
    box-shadow: 0 0 20px rgba(138,92,246,.15);
}

.pro-card .badge{
    background: rgba(138,92,246,.15);
    border: 1px solid rgba(138,92,246,.35);
    color: #c5b3ff;
}

.pro-card .btn-ghost{
    border-color: rgba(138,92,246,.35);
}

.pro-card .btn-ghost:hover{
    background: rgba(138,92,246,.12);
}

.showcase-thumb{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:14px;
}

.showcase-top{
  margin-bottom:8px;
}

.showcase-actions{
  margin-top:14px;
}

.showcase-only{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  font-size:12px;
  border-radius:8px;

  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);

  color:var(--muted);
}

.empty-card{
  grid-column:1 / -1;
}

.showcase-head .section-desc{
  margin-top:10px;
  max-width:560px;
}

.hero-copy,
.story p{
    text-align: left;
}

.card p,
.section-desc,
.download-card p{
    text-align: left;
}

/* =========================================
   LAYOUT DUA KOLOM DINAMIS (VERCEL STYLE)
   ========================================= */
/* Sidebar Chat Terkunci di Sisi Kiri / Samping Layar */

.sidebar-left-area.open {
  left: 0; /* Geser masuk ke dalam layar */
}

/* Ketika Chat Aktif: Dorong Konten Utama ke Kanan Sebesar Lebar Sidebar */
.content-right-area.sidebar-open {
  margin-left: 340px;
}

/* RESPONSIVE UNTUK LAYAR HANDPHONE */
@media (max-width: 768px) {
  .sidebar-left-area {
    width: 100%;
    left: -100%;
    top: 60px;
  }
  .content-right-area.sidebar-open {
    margin-left: 0; /* Di HP tidak perlu menggeser, biarkan menutup penuh */
  }
}

/* panel burger */
.navbar-mobile-menu {
  background:rgba(5, 6, 15, 0.5);
}

/* =========================================
   UI CHAT PLAYGROUND CISYA
   ========================================= */
.sidebar-chat-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chat-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
}

.btn-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
}
.btn-close:hover { opacity: 1; }

.chat-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.msg{
  display:flex;
  gap:10px;
  width:100%;
  align-items:flex-start;

  margin:0;
  padding:0;
  min-height:auto;
}

.msg-ai { align-self: flex-start; }
.msg-user { align-self: flex-end; flex-direction: row-reverse; }

.bubble {
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  line-height: 1.5;
}

.msg-user .bubble {
  background: rgba(102, 231, 255, 0.15); /* Aksen Cyan */
  border-color: rgba(102, 231, 255, 0.3);
}

.chat-footer {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

#chatForm {
  display: flex;
  gap: 10px;
  font-size: 12px;
}

#chatInputRaw {
  flex-grow: 1;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-family: monospace;
}
#chatInputRaw:focus { outline: 1px solid var(--cyan); }

#sendChatBtn {
  background: var(--cyan);
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
  font-size: 16px;
}

.nav-ask-btn{
  border:1px solid var(--line);
  border-radius:999px;
  padding:7px 12px;
  background:linear-gradient(135deg, rgba(102,231,255,.18), rgba(167,139,250,.18));
  color:var(--text);
  font:inherit;
  font-size:10px;
  cursor:pointer;
}

.ask-overlay{
  position:fixed;
  top:72px;
  right:-420px;
  bottom:0;
  width:420px;
  z-index:999;
  background:transparent;
  backdrop-filter:none;
  transition:right .35s ease;
}

.ask-overlay.show{
  right:0;
}

.ask-modal{
  width:100%;
  height:100%;
  border-left:1px solid var(--line);
  background:rgba(11,16,32,.96);
  box-shadow:-24px 0 70px rgba(0,0,0,.35);
  border-radius:0;
}

@keyframes slideChatIn{
  from{
    transform:translateX(100%);
    opacity:.4;
  }
  to{
    transform:translateX(0);
    opacity:1;
  }
}

.ask-header{
  position:relative;
  padding:16px 18px 12px;
  border-bottom:1px solid var(--line);
  height: 115px;
}

.ask-logo-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
}

.ask-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.ask-logo{
  width:100px;
  height:auto;
  display:block;
  margin:0 auto;
}

.ask-meta{
  margin-top:10px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.ask-header .ask-status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  font-size:9px;
  letter-spacing:.1em;
  color:rgba(186,247,203,.75);
  white-space:nowrap;
}

.ask-version{
  font-size:9px;
  letter-spacing:.08em;

  color:var(--muted);
}

.status-dot{
  width:6px;
  height:6px;

  border-radius:50%;

  background:#86efac;

  animation:hybridPulse 2s infinite;
}

@keyframes hybridPulse{

  0%{
    opacity:.3;
    transform:scale(.8);
  }

  50%{
    opacity:1;
    transform:scale(1.3);
    box-shadow:0 0 12px #86efac;
  }

  100%{
    opacity:.3;
    transform:scale(.8);
  }

}

.ask-header span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:11px;
}

.ask-close{
  position:absolute;
  right:16px;
  top:18px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  background:rgba(255,255,255,.07);
  color:var(--text);
  font-size:12px;
  cursor:pointer;
}

.ask-body{
  flex:1;
  padding:18px;
  overflow-y:auto;
}

.chat-row{
  display:flex;
  margin-bottom:12px;
}

.chat-row.user{
  justify-content:flex-end;
}

.chat-bubble{
  max-width:78%;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  color:var(--text);
  line-height:1.5;
  font-size:14px;
}

.chat-row.user .chat-bubble{
  background:linear-gradient(135deg, var(--cyan), var(--violet));
  color:#06101b;
  font-weight:600;
}

.ask-input-area{
  display:flex;
  gap:10px;
  padding:14px;
  border-top:1px solid var(--line);
}

.ask-input-area input{
  flex:1;
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 14px;
  background:rgba(255,255,255,.07);
  color:var(--text);
  outline:none;
}

.ask-input-area button{
  border:0;
  border-radius:16px;
  padding:0 16px;
  background:linear-gradient(135deg, var(--cyan), var(--violet));
  color:#06101b;
  font-weight:800;
  cursor:pointer;
}

/* Tambahkan ini di bagian bawah CSS kamu agar input dan tombol ter-styling dengan benar */
#aiInput {
  flex-grow: 1;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-family: monospace;
}
#aiInput:focus { outline: 1px solid var(--cyan); }

#btnSendAI {
  width: 42px;
  height: 42px;

  background: rgba(102,231,255,.12);

  border: 1px solid rgba(102,231,255,.25);

  border-radius: 12px;

  color: var(--cyan);
  font-size: 16px;
}

/* ==================================================
   COMBINED CHAT SYSTEM: OVERLAY WITH COZY OLD STYLE
   ================================================== */
.ask-panel {
  position: fixed;

  top: 60px;
  right: 20px;

  width: 320px;
  height: 92.5vh;

  border-radius: 24px;
  border: 1px solid var(--line);

  display: flex;
  flex-direction: column;

  transform: translateX(450px);
  transition: .3s ease;

  z-index: 99999;
}

.ask-panel.open {
  transform: translateX(0);
}

/* HP: jadi bottom sheet */
@media (max-width: 620px) {

  .ask-panel {
    top: auto;
    bottom: 12px;
    left: 12px;
    right: 12px;

    width: auto;
    height: 70vh;

    transform: translateY(120%);
  }

  .ask-panel.open {
    transform: translateY(0);
  }
}

.ask-panel.open {
  transform: translateY(0);
}

.ask-body {
  padding: 14px;
}

.chat-footer-area {
  padding: 10px !important;
}

/* Kontainer Scroll Chat */
.ask-body{
  flex:1;
  padding:18px 8px 18px 20px;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  gap:0px;
}

/* ==================================================
   KUSTOMISASI VISUAL BUBBLE (MENIRU STYLE LAMA)
   ================================================== */
.msg { 
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: flex-start;
}

/* Jika User, lempar ke kanan */
.msg.msg-user {
  justify-content: flex-end;
}

/* Desain Avatar Bulat AI */
.avatar-mini {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  color: #05060f; font-weight: bold;
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px; flex-shrink: 0;
  box-shadow: 0 0 10px rgba(102, 231, 255, 0.3);
}

/* Desain Komponen Bubble */ 
.msg .bubble {
  max-width: 80%;
  padding: 12px 14px;
  border-radius: 0 16px 16px 16px;/* Sisi kiri atas lancip khas bot */
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line); font-family: ui-sans-serif, system-ui, sans-serif;
} 

/* Modifikasi Khusus Bubble milik User */ 
.msg.msg-user .bubble{ background:rgba(134,239,172,.10);
  border:1px solid rgba(134,239,172,.25);
  color:#baf7cb;
  border-radius:16px 16px 0 16px;
  max-width:70%;
  margin-left:auto;
} 

.msg.msg-user{ margin-top:10px;
  margin-bottom:10px; } .terminal-hero{ border-radius:22px;
  background:rgba(2,3,10,.88);
  box-shadow:none; } .hero-terminal{ min-height:340px;
  display:grid; align-content:center; gap:6px;
}

/* ==================================================
   KUSTOMISASI VISUAL LOGIN PAGE
   ================================================== */
.auth-simple {
  min-height: calc(100vh - 70px);
  width: min(100% - 32px, 360px);
  margin: 0 auto;
  padding-top: 70px;
}

.auth-logo{
  display:flex;
  justify-content:center;
  margin-bottom:22px;
}

.auth-logo .brand-logo{
  width:84px;
  height:84px;
  object-fit:contain;
}

.auth-simple h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.auth-box {
  display: grid;
  gap: 14px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label-row a,
.auth-switch a {
  color: var(--cyan);
  font-size: 13px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.12);
}

.auth-box button,
.oauth-btn {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.auth-switch {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.oauth-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.oauth-btn img{
  width:18px;
  height:18px;
}

.auth-box button,
.oauth-btn,
.btn-primary,
.btn-ghost {
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
}

.auth-box{
    display:flex;
    flex-direction:column;
    gap:0;
}

.auth-box label{
    margin-bottom:4px;
}

.auth-box input{
  margin-bottom:16px;
  border-radius: 4px;
  background: transparent;
}

.label-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:4px;
}