:root {
  /* Logo-matched palette: teal #00C8C8, gold #F5B800, royal blue #005FD8, sky #00B4FF */
  --bg: #030A14;
  --bg2: #061020;
  --surf: rgba(0,180,220,0.05);
  --surf2: rgba(0,180,220,0.10);
  --bdr: rgba(0,200,220,0.12);
  --bdr2: rgba(0,200,220,0.28);

  --teal: #00D4D4;
  --teal-d: rgba(0,212,212,0.12);
  --teal-glow: rgba(0,212,212,0.35);
  --gold: #F5C200;
  --gold-d: rgba(245,194,0,0.12);
  --gold-glow: rgba(245,194,0,0.4);
  --blue: #1A8FFF;
  --blue-d: rgba(26,143,255,0.12);
  --sky: #00C8FF;

  --green: #00E0A0;
  --green-d: rgba(0,224,160,0.10);
  --red: #FF5A5A;
  --red-d: rgba(255,90,90,0.10);
  --orange: #FF9D3A;
  --orange-d: rgba(255,157,58,0.10);

  --txt: #F0FAFF;
  --txt2: rgba(210,240,255,0.60);
  --txt3: rgba(180,220,240,0.35);

  --r: 14px;
  --r2: 20px;
  --t: .2s cubic-bezier(.4,0,.2,1);

  --grad-main: linear-gradient(135deg, #005FD8 0%, #00C8C8 50%, #F5B800 100%);
  --grad-btn: linear-gradient(135deg, #005FD8 0%, #0090D8 100%);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--txt);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── ANIMATED BACKGROUND ── */
.bg-scene {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.bg-scene::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0,95,216,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(0,200,200,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(245,194,0,0.08) 0%, transparent 50%);
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: drift 18s ease-in-out infinite alternate;
}
.o1 { width:700px;height:700px;background:rgba(0,80,200,0.18);top:-250px;right:-200px;animation-delay:0s }
.o2 { width:550px;height:550px;background:rgba(0,200,200,0.13);bottom:-150px;left:-200px;animation-delay:-6s }
.o3 { width:400px;height:400px;background:rgba(245,180,0,0.09);top:45%;left:35%;animation-delay:-12s }
@keyframes drift { 0% { transform:translate(0,0) scale(1) } 100% { transform:translate(30px,20px) scale(1.08) } }

/* grid overlay */
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,220,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,220,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; padding: 0 clamp(24px, 5vw, 60px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(3,10,20,0.65);
  backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transition: padding var(--t);
}
.nav-line {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--blue), transparent);
  opacity: 0.5;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--txt);
}
.nav-imgs { display: flex; align-items: center; gap: 10px }
.nav-imgs img {
  height: 44px; width: 44px; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,212,212,0.25));
  transition: filter var(--t), transform var(--t);
}
.nav-imgs img:hover { filter: drop-shadow(0 4px 12px var(--teal-glow)); transform: scale(1.06) }
.nav-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.12) }
.nav-txt { display: flex; flex-direction: column; gap: 2px; }
.nav-txt .a { font-size: 14.5px; font-weight: 800; line-height: 1.2; letter-spacing: 0; color: #ffffff; }
.nav-txt .b { font-size: 11.5px; color: var(--teal); font-weight: 500; letter-spacing: .03em; }
.nav-pill {
  display: flex; align-items: center;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  border-radius: 999px; padding: 5px; gap: 4px;
}
.nav-pill a {
  padding: 7px 20px; border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--txt2); text-decoration: none;
  transition: all var(--t);
}
.nav-pill a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-pill a.ac { 
  color: var(--teal); 
  background: linear-gradient(135deg, rgba(0,212,212,0.12), rgba(0,180,220,0.03)); 
  border-color: rgba(0,212,212,0.25);
  box-shadow: 0 4px 15px rgba(0,212,212,0.12), inset 0 1px 0 rgba(255,255,255,0.08); 
}
.live {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  background: linear-gradient(135deg, rgba(0,224,160,0.08), rgba(0,224,160,0.02));
  border: 1px solid rgba(0,224,160,0.2);
  font-size: 12px; color: var(--green); font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 4px 15px rgba(0,224,160,0.05);
}
.live::before {
  content: ""; width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1) } 50% { opacity:.4; transform:scale(.85) } }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  padding: 130px 24px 80px;
  text-align: center; overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bdr2), transparent);
}

/* big logo cluster */
.hero-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 36px;
  animation: heroUp .6s ease both;
}
.hero-logo-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-logo-wrap::before {
  content: "";
  position: absolute; inset: -8px; border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  animation: logoGlow 3s ease-in-out infinite alternate;
  opacity: 0.7;
}
.hero-logo-wrap.gold-glow::before {
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
}
@keyframes logoGlow { 0% { opacity:.4;transform:scale(.9) } 100% { opacity:.9;transform:scale(1.1) } }
.hero-logos img {
  height: 110px; width: 110px; object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
  transition: transform .3s ease;
}
.hero-logos img:hover { transform: scale(1.06) translateY(-4px) }
.hero-logos .hlsep {
  width: 1px; height: 70px;
  background: linear-gradient(to bottom, transparent, var(--bdr2), transparent);
}

/* eyebrow badge */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal-d), rgba(26,143,255,0.08));
  border: 1px solid rgba(0,212,212,0.3);
  border-radius: 999px; padding: 6px 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 22px;
  animation: heroUp .6s .06s ease both;
  box-shadow: 0 0 20px rgba(0,212,212,0.15);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6.5vw, 72px);
  line-height: 1.06; letter-spacing: -.03em;
  margin-bottom: 20px;
  animation: heroUp .6s .12s ease both;
}
.hero h1 .c { color: var(--teal); font-style: italic }
.hero h1 .g { color: var(--gold) }

.hero p {
  font-size: 16px; color: var(--txt2);
  max-width: 520px; margin: 0 auto 48px;
  line-height: 1.8; font-weight: 400;
  animation: heroUp .6s .18s ease both;
}

/* stats bar */
.hstats {
  display: inline-flex;
  background: rgba(0,180,220,0.06);
  border: 1px solid var(--bdr2);
  border-radius: var(--r2); overflow: hidden;
  animation: heroUp .6s .24s ease both;
  box-shadow: 0 0 40px rgba(0,180,220,0.08), inset 0 1px 0 rgba(255,255,255,.04);
}
.hs { padding: 20px 34px; border-right: 1px solid var(--bdr) }
.hs:last-child { border-right: none }
.hs .n {
  font-family: "Playfair Display", serif;
  font-size: 32px; color: var(--gold);
  display: block; line-height: 1;
  text-shadow: 0 0 20px var(--gold-glow);
}
.hs .l { font-size: 11px; color: var(--txt3); margin-top: 5px; letter-spacing: .04em }

@keyframes heroUp { from { opacity:0;transform:translateY(22px) } to { opacity:1;transform:translateY(0) } }

/* ── MAIN LAYOUT ── */
.wrap {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 0 20px 100px;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 24px; align-items: start;
}

/* ── CARD ── */
.card {
  background: linear-gradient(145deg, rgba(0,180,220,0.07), rgba(0,80,160,0.04));
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  padding: 32px 36px; margin-bottom: 20px;
  transition: border-color var(--t), box-shadow var(--t);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.03);
}
.card:hover {
  border-color: rgba(0,212,212,0.3);
  box-shadow: 0 8px 50px rgba(0,0,0,.35), 0 0 30px rgba(0,212,212,0.06), inset 0 1px 0 rgba(255,255,255,.05);
}

.chd { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px }
.cic {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal-d), var(--blue-d));
  border: 1px solid rgba(0,212,212,0.2);
  color: var(--teal);
}
.cic svg { width: 22px; height: 22px; fill: currentColor }
.cht h2 { font-size: 18px; font-weight: 700; margin-bottom: 4px; letter-spacing: -.01em }
.cht p { font-size: 13px; color: var(--txt2); line-height: 1.55 }

/* anon notice */
.anon {
  display: flex; gap: 12px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(0,224,160,0.07), rgba(0,200,200,0.04));
  border: 1px solid rgba(0,224,160,0.2);
  border-radius: var(--r); padding: 14px 16px; margin-bottom: 28px;
}
.anon svg { width: 17px; height: 17px; fill: var(--green); flex-shrink: 0; margin-top: 1px }
.anon p { font-size: 12.5px; color: rgba(210,240,255,.65); line-height: 1.6 }
.anon strong { color: var(--green); font-weight: 600 }

/* section separator */
.ss { display: flex; align-items: center; gap: 16px; margin: 32px 0 24px }
.ss::before, .ss::after { content: ""; flex: 1; height: 1px; }
.ss::before { background: linear-gradient(90deg, transparent, rgba(0,212,212,0.3)); }
.ss::after { background: linear-gradient(270deg, transparent, rgba(0,212,212,0.3)); }
.ss span {
  font-size: 11px; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--teal); white-space: nowrap;
  text-shadow: 0 0 12px rgba(0,212,212,0.4);
}

/* labels */
.lb {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--txt3); margin-bottom: 8px;
}
.lb svg { width: 12px; height: 12px; fill: var(--txt3) }
.req { color: var(--red) }

/* inputs */
.iw { position: relative }
.iico {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; fill: var(--txt3);
  pointer-events: none; transition: fill var(--t);
}
input[type=text], select, textarea {
  width: 100%;
  background: rgba(0,180,220,0.06);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 13px 15px;
  font-size: 14px; font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--txt); outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.hi input { padding-left: 42px }
input::placeholder, textarea::placeholder { color: var(--txt3) }
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  background: rgba(0,212,212,0.07);
  box-shadow: 0 0 0 3px rgba(0,212,212,0.12), 0 0 20px rgba(0,212,212,0.05);
}
.hi:focus-within .iico { fill: var(--teal) }
input.er, select.er, textarea.er {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-d);
}
select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300D4D4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 42px;
}
select:hover { border-color: rgba(0,212,212,0.35); background-color: rgba(0,212,212,0.08); box-shadow: 0 4px 12px rgba(0,212,212,0.05); }
select option { background: #061020 }
textarea { resize: vertical; min-height: 124px }

.em { font-size: 12px; color: var(--red); margin-top: 5px; display: none }
.em.on { display: block }
.cc { display: flex; justify-content: flex-end; margin-top: 4px }
.ccn { font-size: 11px; color: var(--txt3); transition: color var(--t) }
.ccn.w { color: var(--orange) }
.fg { margin-bottom: 22px }

/* pills */
.pills { display: flex; flex-wrap: wrap; gap: 10px 8px; margin-top: 6px }
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px; font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--txt2); cursor: pointer; white-space: nowrap;
  transition: all var(--t); user-select: none;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(0,0,0,0.2));
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.pill input { display: none }
.pill:hover { border-color: rgba(0,212,212,0.35); color: #fff; background: rgba(0,212,212,0.1); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,212,212,0.1); }
.pill.pc { border-color: var(--teal); color: var(--teal); background: linear-gradient(145deg, var(--teal-d), rgba(0,0,0,0.2)); box-shadow: 0 4px 15px rgba(0,212,212,0.2), inset 0 1px 0 rgba(255,255,255,0.08); transform: translateY(-1px); }
.pill.pg { border-color: var(--green); color: var(--green); background: linear-gradient(145deg, var(--green-d), rgba(0,0,0,0.2)); box-shadow: 0 4px 15px rgba(0,224,160,0.15), inset 0 1px 0 rgba(255,255,255,0.08); transform: translateY(-1px); }
.pill.po { border-color: var(--orange); color: var(--orange); background: linear-gradient(145deg, var(--orange-d), rgba(0,0,0,0.2)); box-shadow: 0 4px 15px rgba(255,157,58,0.15), inset 0 1px 0 rgba(255,255,255,0.08); transform: translateY(-1px); }
.pill.pr { border-color: var(--red); color: var(--red); background: linear-gradient(145deg, var(--red-d), rgba(0,0,0,0.2)); box-shadow: 0 4px 15px rgba(255,90,90,0.15), inset 0 1px 0 rgba(255,255,255,0.08); transform: translateY(-1px); }

/* udot for urgensi */
.udot { width: 8px; height: 8px; border-radius: 50%; display: block; box-shadow: inset 0 1px 2px rgba(255,255,255,0.4); }
.ug-g { background: var(--green); box-shadow: 0 0 8px var(--green); }
.ug-o { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.ug-r { background: var(--red); box-shadow: 0 0 8px var(--red); }

/* submit button */
.sbtn {
  position: relative; width: 100%;
  background: linear-gradient(135deg, #005FD8 0%, #0088CC 60%, #00B4D8 100%);
  color: #fff; border: none; border-radius: var(--r);
  padding: 15px; font-size: 15px; font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 9px;
  transition: all var(--t); letter-spacing: .01em; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,95,216,0.4), 0 0 40px rgba(0,180,220,0.15);
}
.sbtn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,0));
  opacity: 0; transition: opacity var(--t);
}
.sbtn:hover::before { opacity: 1 }
.sbtn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,95,216,0.5), 0 0 50px rgba(0,200,220,0.2) }
.sbtn:active { transform: scale(.99) }
.sbtn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none }
.sbtn svg { width: 18px; height: 18px; fill: #fff }
.spin {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: sp .7s linear infinite;
}
@keyframes sp { to { transform: rotate(360deg) } }

/* success card */
.succ {
  display: none;
  background: linear-gradient(145deg, rgba(0,180,220,0.07), rgba(0,80,160,0.04));
  border: 1px solid var(--bdr);
  border-radius: var(--r2); padding: 60px 36px;
  text-align: center; animation: heroUp .4s ease both;
  backdrop-filter: blur(12px);
}
.sring {
  width: 82px; height: 82px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,224,160,0.15), rgba(0,224,160,0.05));
  border: 1px solid rgba(0,224,160,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 30px rgba(0,224,160,0.2);
}
.sring svg { width: 36px; height: 36px; fill: var(--green) }
.succ h2 { font-family: "Playfair Display", serif; font-size: 32px; margin-bottom: 12px }
.succ p { font-size: 14px; color: var(--txt2); line-height: 1.75; max-width: 340px; margin: 0 auto }
.succ a { color: var(--teal); text-decoration: none }
.bbtn {
  margin-top: 28px;
  background: var(--surf2); border: 1px solid var(--bdr2);
  border-radius: var(--r); padding: 11px 28px;
  font-size: 14px; font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--txt); cursor: pointer; transition: all var(--t);
}
.bbtn:hover { border-color: var(--teal); color: var(--teal); box-shadow: 0 0 20px rgba(0,212,212,0.15) }

/* ── SIDEBAR ── */
.sc {
  background: linear-gradient(145deg, rgba(0,180,220,0.06), rgba(0,60,120,0.04));
  border: 1px solid var(--bdr);
  border-radius: var(--r2); padding: 22px 24px; margin-bottom: 18px;
  transition: border-color var(--t), box-shadow var(--t);
  backdrop-filter: blur(10px);
}
.sc:hover {
  border-color: rgba(0,212,212,0.25);
  box-shadow: 0 4px 30px rgba(0,0,0,.2), 0 0 20px rgba(0,212,212,0.05);
}
.st {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.st svg { width: 14px; height: 14px; fill: var(--teal) }
.sr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--bdr);
  font-size: 13px;
}
.sr:last-of-type { border-bottom: none }
.sr .k { color: var(--txt2) }
.sr .v { font-weight: 600 }
.bdg {
  display: inline-flex; align-items: center;
  padding: 3px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
}
.bgn { background: var(--green-d); color: var(--green); border: 1px solid rgba(0,224,160,.22) }
.bcy { background: var(--teal-d); color: var(--teal); border: 1px solid rgba(0,212,212,.22) }

/* progress bar */
.pw { margin-top: 16px }
.pm { display: flex; justify-content: space-between; font-size: 11px; color: var(--txt3); margin-bottom: 7px }
.pt { height: 6px; background: rgba(0,180,220,0.1); border-radius: 999px; overflow: hidden }
.pf {
  height: 100%; width: 94%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0,212,212,.5);
}

/* tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px }
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 14px;
  background: linear-gradient(145deg, rgba(0,180,220,0.06), rgba(0,60,120,0.02));
  border: 1px solid rgba(255,255,255,0.06); border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--txt2);
  transition: all var(--t); cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.tag::before { content: "#"; color: var(--teal); font-weight: 700; opacity: 0.7; }
.tag:hover { border-color: rgba(0,212,212,0.3); color: #fff; background: rgba(0,212,212,0.08); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,212,212,0.1); }

.inf { font-size: 13px; color: var(--txt2); line-height: 1.75 }
.inf strong { color: var(--txt); font-weight: 600 }
.inf a { color: var(--teal); text-decoration: none }
.inf a:hover { text-decoration: underline }

/* lcard — logo card in sidebar */
.lcard {
  background: linear-gradient(135deg, rgba(0,212,212,0.07), rgba(245,194,0,0.05), rgba(26,143,255,0.06));
  border: 1px solid var(--bdr2);
  border-radius: var(--r2); padding: 22px 24px;
  margin-bottom: 18px; text-align: center;
  box-shadow: 0 0 30px rgba(0,212,212,0.06);
}
.lcard-imgs { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 12px }
.lcard-imgs img {
  height: 68px; width: 68px; object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.5));
  transition: transform .3s ease;
}
.lcard-imgs img:hover { transform: scale(1.1) }
.lcard-sep { width: 1px; height: 44px; background: var(--bdr2) }
.lcard .la { font-size: 13px; font-weight: 700; color: var(--txt); margin-bottom: 3px }
.lcard .lb2 { font-size: 11px; color: var(--txt3) }

/* toast */
#toast {
  position: fixed; bottom: 85px; right: 26px;
  padding: 13px 20px; border-radius: var(--r);
  font-size: 13px; font-weight: 500;
  backdrop-filter: blur(24px);
  border: 1px solid var(--bdr2);
  background: rgba(6,16,32,0.92);
  color: var(--txt); z-index: 999;
  opacity: 0; transform: translateY(12px);
  transition: all .22s ease; pointer-events: none;
  max-width: 290px;
}
#toast.on { opacity: 1; transform: translateY(0) }
#toast.te { border-color: rgba(255,90,90,.4); color: var(--red) }
#toast.to { border-color: rgba(0,224,160,.4); color: var(--green) }

/* footer */
footer {
  position: relative; z-index: 1;
  text-align: center; padding: 28px;
  border-top: 1px solid var(--bdr);
  font-size: 12px; color: var(--txt3);
}
footer a { color: var(--teal); text-decoration: none }

/* ── MOBILE MENU & MODALS (PURE CSS) ── */
.hamburger { display: none; cursor: pointer; z-index: 210; }
.hamburger svg { width: 30px; height: 30px; fill: var(--teal); transition: transform var(--t); }
.hamburger:active svg { transform: scale(0.9); }

.mob-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 204; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mob-overlay.on { opacity: 1; pointer-events: auto; }

.mob-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 320px; max-width: 85vw;
  background: linear-gradient(180deg, rgba(6,16,32,0.98), rgba(3,10,20,0.98));
  border-left: 1px solid var(--bdr2); box-shadow: -15px 0 50px rgba(0,0,0,0.6);
  z-index: 205; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 50px 30px; gap: 12px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-menu.on { transform: translateX(0); }
.mob-menu a { display: block; width: 100%; padding: 14px 20px; color: var(--txt3); font-size: 16px; font-weight: 600; text-decoration: none; transition: all var(--t); border-radius: 12px; }
.mob-menu a.mac { color: var(--teal); background: var(--teal-d); border-left: 4px solid var(--teal); padding-left: 16px; }
.mob-menu a:hover:not(.mac) { color: var(--txt); background: rgba(255,255,255,0.03); transform: translateX(6px); }
.mob-close { position: absolute; top: 20px; right: 26px; font-size: 40px; color: var(--txt3); cursor: pointer; transition: color var(--t); }
.mob-close:hover { color: var(--teal); }

/* Scroll to Top Button */
.scroll-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 190;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border: none; color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(20px);
  transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,212,212,0.3);
}
.scroll-top.on { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,212,212,0.4); }
.scroll-top svg { width: 22px; height: 22px; fill: #fff; }

.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.on { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--bg2); border: 1px solid var(--bdr2); border-radius: var(--r2);
  padding: 32px; max-width: 420px; width: 100%; position: relative;
  transform: translateY(20px) scale(0.95); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.modal-overlay.on .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 12px; right: 18px; background: none; border: none;
  color: var(--txt3); font-size: 28px; cursor: pointer; transition: color var(--t);
}
.modal-close:hover { color: var(--teal); }
.modal-box h2 { font-family: "Playfair Display", serif; font-size: 24px; color: #fff; margin-bottom: 16px; }
.modal-box p { font-size: 14.5px; color: var(--txt2); line-height: 1.7; margin-bottom: 24px; }
.modal-box strong { color: var(--txt); }

/* responsive optimasi */
@media (max-width: 768px) {
  .wrap { grid-template-columns: 1fr; }
  .nav-pill, .live { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 14px; }
  .hs { padding: 12px 14px; }
  .hs .n { font-size: 24px; }
  
  /* SUPER OPTIMASI MOBILE: Membunuh semua filter & bayangan agar scroll sangat ringan */
  .card, .sc, .lcard, .succ { padding: 20px 16px; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; border: 1px solid rgba(0,212,212,0.15); }
  .bg-scene { display: none; } /* Matikan orbs & gradient layar belakang */
  .hero-logo-wrap::before { display: none; animation: none; }
  .nav-imgs img, .hero-logos img, .lcard-imgs img, .sbtn, .hs { filter: none !important; box-shadow: none !important; }
  .pill, .tag, .sbtn { box-shadow: none !important; transform: none !important; }
  .nav-line { display: none; }
  .hamburger { display: block; }
  nav { height: 68px; border-bottom: 1px solid rgba(0,200,220,0.15); background: #030A14; backdrop-filter: none; -webkit-backdrop-filter: none; padding: 0 20px; box-shadow: none; }
  .nav-txt .a { font-size: 13px; }
  .nav-txt .b { font-size: 10.5px; }
  .nav-imgs img { height: 38px; width: 38px; }
  .nav-sep { height: 24px; }
  
  .hero-logos img { height: 72px; width: 72px; }
}