:root{
  --primary:#00A6A6;
  --primary-2:#0BCACA;
  --text:#0f0f0f;

  --ice-1:#FFFFFF; --ice-2:#F8FBFF; --ice-3:#EDF3FF;
  --neu-dark:#d6dee9; --neu-light:#ffffff;
  --footer-h: 56px;
}

*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}

body{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color:var(--text);
  background:#ffffff; /* ✅ putih polos */
  display:flex;align-items:center;justify-content:center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
           max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  min-height:100svh;
  position: relative; overflow-x:hidden;
  padding-bottom: calc(var(--footer-h) + env(safe-area-inset-bottom));
}

/* ✅ matikan efek overlay */
body::before,
body::after{
  content:none;
}

.layout{
  width:min(1100px, 100%);
  display:grid; gap:24px;
  grid-template-areas: "image" "content";
  padding-top: 0;
}

@media (min-width:960px){
  .layout{
    grid-template-columns: minmax(420px, 0.85fr) minmax(560px, 1.15fr);
    grid-template-areas: "image content";
    align-items:center;
    column-gap: clamp(140px, 14vw, 320px);
    min-height:80vh;
  }
  .image-stage{ justify-self:start; }
  .image-stage .stage-inner{ margin-left: clamp(-12px, -2vw, -28px); }
}

.image-stage{ grid-area:image; background:transparent; display:grid; place-items:center; }

.stage-inner{
  width: clamp(320px, 44vw, 640px);
  aspect-ratio:1/1;
  display:grid; place-items:center;
  position: relative;
  overflow: hidden;
}
.hero{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:contain;
  user-select:none; -webkit-user-drag:none;
  opacity:0; transform: translateY(6px) scale(.985);
  transition: opacity .35s ease, transform .40s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.hero.is-in{ opacity:1; transform: translateY(0) scale(1); }
.hero.is-out{ opacity:0; transform: translateY(6px) scale(1.01); }

.fade{ animation: fade .38s ease both }
@keyframes fade{
  from{opacity:0; transform:translateY(6px)}
  to{opacity:1; transform:translateY(0)}
}

.content{
  grid-area:content; background:transparent;
  padding: clamp(4px, 2vw, 8px);
  display:grid; gap: clamp(6px, 1.2vw, 10px);
}

h1{
  font-size:45px; line-height:60px; font-weight:900; color:#000;
  margin:0 0 6px; text-shadow:-3px 1px 5px rgba(0,0,0,0.41);
}

.desc{
  font-size:26px; line-height:30px; opacity:.9; max-width:72ch;
  margin:0; white-space:normal; overflow-wrap:break-word; word-break:normal; margin-top:-10px;
}

.actions{ margin-top:10px; display:flex; gap:12px; flex-wrap:wrap }
.btn{
  border:none; cursor:pointer; border-radius:16px; padding:14px 22px;
  font-weight:900; letter-spacing:.2px; font-size:1rem; transition:.15s;
  text-decoration:none; display:inline-block
}
.btn.primary{
  color:#fff; background: linear-gradient(180deg, var(--primary-2), var(--primary));
  box-shadow: 10px 10px 22px rgba(0,166,166,.22), -6px -6px 16px rgba(255,255,255,.70), inset -2px -2px 4px rgba(255,255,255,.35);
}
.btn.primary:hover{ transform:translateY(-2px) }
.btn.secondary{
  color:#0b5050; background: transparent; border:none;
  box-shadow: 8px 8px 16px var(--neu-dark), -8px 8px 16px var(--neu-light);
  padding:12px 18px; background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(247,250,255,.72));
}

.meta{ display:flex; gap:10px; align-items:center; margin-top:12px }
.dots{ display:flex; gap:10px; align-items:center; padding:4px 2px }
.dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(247,250,255,.88));
  box-shadow: 3px 3px 6px var(--neu-dark), -3px -3px 6px var(--neu-light);
  transition:.25s
}
.dot.active{
  width:26px; height:10px; border-radius:999px; background: var(--primary);
  box-shadow: inset 2px 2px 4px rgba(0,0,0,.22), inset -2px -2px 4px rgba(255,255,255,.42)
}

.access{ margin-top:16px; display:grid; gap:10px; align-content:start }
.access .label{
  color:#000; font-weight:bold; letter-spacing:.01em;
  font-size:clamp(1rem,1.6vw,1.25rem)
}
.access .logos{ display:flex; gap:14px; align-items:center; flex-wrap:wrap }
.access .logos img{
  height:78px; width:auto; display:block; border-radius:8px;
  box-shadow:0 8px 16px rgba(0,0,0,.12)
}

.app-badge{
  position:fixed;
  top:calc(env(safe-area-inset-top) + 13px);
  left:calc(env(safe-area-inset-left) + 12px);
  display:flex;
  align-items:center;
  gap:10px;
  color:#000;
  z-index:20;
  pointer-events:none;
}
.app-badge .icon{ width:28px; height:36px; opacity:.95 }
.app-badge .label{ line-height:1.02; flex:0 0 auto; }
.app-badge .label b{ display:block; font-size:1.16rem; font-weight:700; margin-top:2px }
.app-badge .label span{ display:block; font-size:.80rem; font-weight:500; opacity:.9 }

.app-badge .badge-logo{
  height:40px;
  width:auto;
  flex:0 0 auto;
  display:block;
  object-fit:contain;
}

@media (min-width:960px){
  .app-badge{ top:18px; left:20px }
}

@media (max-width:600px){
  .layout{ padding-top:25px; margin-top:-50px }
  .content{ margin-top:-12px }
  .image-stage{ align-items:start; justify-items:center }

  .stage-inner{
    width: clamp(300px, 92vw, 520px);
    margin-top: calc(clamp(12px, 5vh, 48px) + 40px);
  }

  .meta{ margin-top:12px; margin-bottom:6px }
  .access{ display:none !important }
  .footer-text{ font-size:12px; color:#333333 }
  h1{
    font-size:24px; line-height:26px; margin:0 0 6px;
    text-shadow:-3px 1px 5px rgba(0,0,0,.41)
  }
  .desc{
    font-size:16px; line-height:22px; max-width:100%;
    white-space:normal; overflow-wrap:break-word; word-break:normal; margin-top:-7px
  }
}

@media (max-width:380px){
  .stage-inner{ width: clamp(300px, 96vw, 540px); }
}

.site-footer{ position:fixed; left:0; right:0; bottom:0; z-index:10 }
.footer-frame{
  width:100%;
  border-top:1px solid rgba(40,80,160,.16);
  box-shadow:0 -6px 18px rgba(0,0,0,.05), inset 0 1px 0 rgba(255,255,255,.45);
  background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.95));
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 10px max(14px, env(safe-area-inset-right))
           calc(10px + env(safe-area-inset-bottom))
           max(14px, env(safe-area-inset-left));
}
.footer-inner{
  width:min(1100px, 100%); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:10px; color:#8c8c8c; font-size:.92rem; letter-spacing:.02em;
}
.footer-copy{ white-space:nowrap; color:inherit }
.footer-links{ display:flex; align-items:center; flex-wrap:wrap; gap:12px }
.footer-links a{ color:#8c8c8c; text-decoration:none; display:inline-block }
.footer-links a:hover{ text-decoration:underline }
@media (min-width:601px){
  .footer-links a + a::before{ content:"•"; color:#9aa4b2; margin:0 6px 0 2px }
}
@media (max-width:600px){
  .footer-inner{ justify-content:space-between; align-items:center; text-align:initial; gap:12px }
  .footer-copy{ width:auto; order:0; font-size:.86rem }
  .footer-links{
    width:auto; justify-content:flex-end; flex-wrap:nowrap;
    white-space:nowrap; gap:16px
  }
}
