:root{
    --bg:#000000;
    --card:#111826;
    --card2:#0f1623;
    --text:#dfe6f1;
    --muted:#a9b4c2;
    --muted-soft: rgba(169,180,194,0.6);
    --line:rgba(255,255,255,.16);
    --btn:#2f81f7;
    --shadow:0 10px 30px rgba(0,0,0,.35);
    --radius:18px;
}
*{box-sizing:border-box}

html, body{
    min-height: 100%;
    background-color: var(--bg);
}

body{
    margin:0;
    font-family: ui-sans-serif, -apple-system, system-ui, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    color:var(--text);
    line-height:1.35;
    min-height:100vh;
    background:
    radial-gradient(80vw 55vh at 20% -10%, rgba(30,83,120,0.7), transparent 60%),
    radial-gradient(60vw 45vh at 90% 10%, rgba(255,255,255,.1), transparent 55%),
    var(--bg);
}

/* Paint the page background on a fixed layer so Chrome never shows white beyond the footer/overscroll */
/*body::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    background:
    radial-gradient(80vw 55vh at 20% -10%, rgba(30,83,120,0.7), transparent 60%),
    radial-gradient(60vw 45vh at 90% 10%, rgba(255,255,255,.1), transparent 55%),
    var(--bg);
    background-repeat:no-repeat;
}*/

a{color:inherit; text-decoration:none}
.wrap{max-width:980px; margin:0 auto; padding:22px 16px 34px}
.topbar{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px 12px;
/*    border:1px solid var(--line);*/
    border-radius:var(--radius);
    background:rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}
.logo{
    width:42px; height:42px; border-radius:999px;
    background:#000; color:#fff;
    display:grid; place-items:center;
    font-weight:900; letter-spacing:.5px;
    flex:0 0 auto;
}
.brand{
    display:flex; flex-direction:column;
    gap:2px;
    min-width:0;
}
.brand .name{
    font-weight:900;
    letter-spacing:.8px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.brand .tag{
    font-size:12px;
    letter-spacing:4px;
    color:var(--muted);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.brand-logo{
    height:44px;
    width:auto;
    display:block;
}
.sr-only{
    position:absolute !important;
    width:1px; height:1px;
    padding:0; margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}


.hero{padding:18px 6px 10px}
.hero .underline{
    margin-bottom:14px;   /* was 28px → closer to subtitle */
}

.hero .lead{
    margin:0 0 26px;      /* push cards downward */
    font-size:13px;
    opacity:0.55;
}

.h1{
    margin:16px 0 10px;
    font-size:30px;
    letter-spacing:-.6px;
    line-height:1.05;
    font-weight:700;
    color: #CFEAFF;
}
.sub{
    margin:0 0 16px;
    color:var(--muted);
    font-size:15px;
    max-width:62ch;
}
.pillrow{display:flex; flex-wrap:wrap; gap:10px; margin:12px 0 18px}
.pill{
    padding:8px 12px;
    border:1px solid var(--line);
    border-radius:999px;
    background:rgba(255,255,255,.03);
    color:var(--muted-soft);
    font-size:12px;
}

.grid{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
}
@media (max-width:720px){
    .page-hasil .idea-media{
        grid-template-columns:1fr; /* stack top/bottom */
    }
    /* Do NOT set a fixed height/max-height on images in stacked mode:
       let the image keep its natural aspect ratio (height:auto). */
}


.card{
    position:relative;
    display:grid;
    grid-template-columns:72px 1fr;
    column-gap:14px;
    align-items:center;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    box-shadow:var(--shadow);
    padding:12px;
    overflow:hidden;
}
.card::after{
    content:"";
    position:absolute; inset:-2px;
    background: radial-gradient(500px 220px at 20% 0%, rgba(47,129,247,.22), transparent 55%);
    opacity:.55;
    pointer-events:none;
}
.card > *{position:relative; z-index:1}
.thumb{
    width:72px;
    height:72px;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.04);
    display:grid;
    place-items:center;
}
.thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.card-text{
    min-width:0;
}
@media (min-width:720px){
    .thumb{ width:80px; height:80px; }
    .card{ grid-template-columns:80px 1fr; }
}
.card .kicker{
    color:var(--muted);
    font-size:12px;
    letter-spacing:1.2px;
    text-transform:uppercase;
}
.card h3{
    margin:0 0 6px;
    font-size:18px;
    letter-spacing:-.2px;
}
.card p{
    margin:0;
    color: var(--muted);
    font-size:13px;
    max-width:100%;
    opacity:0.8;
}
.card .go{
    margin-top:12px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:800;
    font-size:11px;
    color:#e6f0ff;
    opacity:0.7;
}
.card:active{transform:scale(.99)}
.hint{
    margin:18px 4px 12px;
    color:var(--muted);
    font-size:13px;
}

.cta{
    margin:18px 0 10px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:rgba(255,255,255,.03);
    padding:16px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}
.cta strong{font-size:16px}

.cta.secondary{background:transparent;color:var(--muted);border:1px solid var(--line);font-weight:600}
.note{
    margin-top:0px;
    color:var(--muted);
    font-size:13px;
    text-align:center;
}
.row{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}
.nav-row{margin-top:60px;}
.btnrow{display:flex; gap:10px; flex-wrap:wrap}
.btn{
    border:0;
    border-radius:14px;
    padding:12px 14px;
    font-weight:900;
    letter-spacing:.3px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:10px;
    user-select:none;
}
.btn.primary{background:var(--btn); color:white}
/*.btn.whatsapp{*/
/*    background:#25D366;*/
/*    color:#0b2e1a;*/
/*    font-weight:900;*/
/*}*/
/*.btn.whatsapp:hover{*/
/*    filter:brightness(1.05);*/
/*}*/
/*.btn.ghost{*/
.btn.ghost{
    background:transparent;
    color:var(--text);
    border:1px solid var(--line);
}

.link-action{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-weight:700;
    color:var(--muted);
    opacity:.5;
    cursor:pointer;
    padding:0;
    border:0;
    background:none;
}
.link-action:hover{
    color:var(--text);
    text-decoration:underline;
    text-underline-offset:3px;
}

.underline{
    width:70%;
    height:2px;
    background:#CFEAFF;
    margin-bottom:28px;
    opacity:.6;
    
}

.back{display:inline-block;color:var(--muted);text-decoration:none;border:1px solid var(--line);border-radius:12px;padding:10px 12px}

.faq {
    margin-top: 90px;
    max-width: 280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    margin-bottom: 0;
}
.faq h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin: 0 0 6px;
}
.faq-acc {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 0px;
}
.faq-acc details {
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 6px 0;
}
.faq-acc summary {
    list-style: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.faq-acc summary::-webkit-details-marker { display: none; }
.faq-acc .faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    line-height: 1;
    color: rgba(255,255,255,0.45);
    flex: 0 0 auto;
}
.faq-acc details[open] .faq-icon { transform: rotate(180deg); }
.faq-acc .faq-body {
    margin: 8px 0 0;
    color: rgba(255,255,255,0.55);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-size: 11px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 320ms ease, opacity 240ms ease;
}
.faq-acc details[open] .faq-body {
    max-height: 240px;
    opacity: 1;
}

.breadcrumbs{
    max-width: 460px;
    width: 100%;
    margin: 12px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .02em;
    color: rgba(255,255,255,.32);
    text-align: center;
}
.breadcrumbs a{
    color: rgba(255,255,255,.38);
    text-decoration: none;
}
.breadcrumbs a:hover{
    color: rgba(255,255,255,.58);
}
.breadcrumbs .sep{
    opacity: .35;
}
.breadcrumbs [aria-current="page"]{
    color: rgba(255,255,255,.52);
}

.actions-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:18px;
    gap:12px;
    flex-wrap:wrap;
}
footer{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:8px;
    font-size:12px;
    color:var(--muted);
}
.footer-left,.footer-right{max-width:520px}
footer a{color:var(--muted); text-underline-offset:3px;}
.footer-left{max-width:520px; opacity:.70}
.footer-legal{margin-top:6px; font-size:12px; opacity:.50}
.footer-right{margin-top:10px; opacity:.8}

/* ===== /lihat/hasil page overrides ===== */
.page-hasil .card{ overflow:visible; }
.page-hasil .card:active{ transform:none; }

.page-hasil .card{
    display:block;
}

/* Center the card title (Ide Utama / Alternatif) on /hasil */
.page-hasil .card-title{
    display:block;      /* make <strong> behave like a block so centering works */
    text-align:center;
    margin:0 0 8px;
    font-size:20px;
    font-weight:800;
}

/* /hasil short reveal overlay (no spinner, quick fade) */
.page-hasil .hasil-loading{
    position:fixed;
    inset:0;
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:
    radial-gradient(80vw 55vh at 20% -10%, rgba(30,83,120,0.45), transparent 60%),
    radial-gradient(60vw 45vh at 90% 10%, rgba(255,255,255,.08), transparent 55%),
    #05070a;
/*    opacity: 1;*/
    transition: opacity .22s ease;
}

.page-hasil .hasil-loading__inner{
    width:min(520px, 92vw);
    border:1px solid rgba(255,255,255,.14);
    border-radius:18px;
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    box-shadow:0 18px 60px rgba(0,0,0,.55);
    padding:18px 16px;
    text-align:center;
}
.page-hasil .hasil-loading__title{
    font-weight:800;
    font-size:15px;
    letter-spacing:-.2px;
}

.page-hasil .hasil-loading__sub{
    margin-top:6px;
    font-size:13px;
    color:var(--muted);
    opacity:.85;
}
.page-hasil .hasil-loading__sub::after{
    content:"";
    display:block;              /* puts dots on a new line */
    margin-top:6px;
    letter-spacing:2px;
    animation: hasilDots 1.6s steps(1,end) infinite;
    height:1em;              /* reserve space so card height never jumps */
    line-height:1;
}

/* Subtle pulse for loading card */
@keyframes hasilPulse{
    0%{ transform:scale(1); opacity:1; }
    50%{ transform:scale(1.015); opacity:.96; }
    100%{ transform:scale(1); opacity:1; }
}

/* Animated ellipsis for loading text */
@keyframes hasilDots{
    0%{ content:"\00a0"; }
    25%{ content:"."; }
    50%{ content:".."; }
    75%{ content:"..."; }
    100%{ content:"\00a0"; }
}

/* Apply animations (scoped to /hasil only) */
.page-hasil .hasil-loading__inner{
    animation: hasilPulse 1.6s ease-in-out infinite;
}

/* Two-image layout inside /hasil idea cards (POV + Position) */
.page-hasil .idea-media{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-top:10px;
    /* If you want images to bleed to card edges, set margin-left/right to -12px (card padding). */
}
.page-hasil .idea-media.is-single{
    grid-template-columns:1fr;
}
.page-hasil .idea-figure{ margin:0; }

/* A hard container that guarantees images never escape the card */
.page-hasil .idea-imgbox{
    width:100%;
    max-width:100%;
    overflow:hidden;
    border-radius:14px;          /* rounded corners */
    border-left:0;
    border-right:0;
}

.page-hasil .idea-img{
    display:block;
    width:100%;
    height:auto;              /* natural aspect ratio */
}

.page-hasil .card .note{
    max-width:none;
    color:var(--muted);
    opacity:0.8;
    text-align:center;
    margin:10px auto 0;
    font-size:15px;
    width:100%;
}

.page-hasil .card .note.js-closing{ font-size:13px; }


/* But don't affect the header logo */
.page-hasil .topbar img.brand-logo,
.page-hasil .topbar img{
    width:auto;
    height:44px;
    max-height:none !important;
    object-fit:contain !important;
}

.page-hasil .idea-cap{
    font-size:13px;
    color:var(--muted);
    width:100%;
    max-width:100%;
    text-align:center;
    margin-top:6px;
}

.page-hasil .cta-block{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0;     /* tighter spacing */
    margin-top:50px;
}

.page-hasil .cta-intro{
    text-align:center;
    color:var(--text);
    font-size:16px;
    font-weight:900;
    margin:0;            /* no extra space under the intro */
}

/* In hasil CTA block, remove the default top margin so intro can sit tight above the button */
.page-hasil .cta-block .cta{
    margin-top:0;
}

@media (max-width:640px){
    .page-hasil .idea-media{
        grid-template-columns:1fr; /* stack on small screens */
    }
    /* No max-height here—prevents cropping */
}

.page-hasil #bundlesGrid.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:16px;
    margin-top:14px;
}

@media (max-width: 520px){
    .page-hasil #bundlesGrid.grid{
        grid-template-columns:1fr;
    }
}

.page-hasil #bundlesGrid .bundle{
    border:1px solid var(--line);
    border-radius:16px;
    background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    box-shadow:var(--shadow);
    padding:14px;
}

.page-hasil #bundlesGrid .bundle h3{
    margin:0 0 6px;
    font-size:18px;
    letter-spacing:-.2px;
}

.page-hasil #bundlesGrid .bundle .meta{
    color:var(--muted);
    font-size:13px;
    margin:0 0 10px;
}

.page-hasil #bundlesGrid .bundle .items{
    margin:0;
    padding-left:18px;
    color: rgba(233,238,246,.85);
    overflow-wrap:anywhere;
    word-break:normal;
}

.page-hasil #bundlesGrid .bundle .items li{
    margin:6px 0;
}

/* ===== /lihat/hasil CTA + alignment ===== */
.page-hasil .actions-row{
    justify-content:center;
    width:100%;
    padding-left:5%;
    padding-right:5%;
    max-width:600px;
}

.page-hasil .actions-row .cta{
    width:100%;
    max-width:none;
    min-width:0;
}

.cta.whatsapp{
    padding:12px 16px;
    font-size:20px;
    font-weight:800;

    background:#128C3E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cta.whatsapp:hover{
    filter:brightness(1.05);
}

.page-hasil .nav-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    margin-top:60px;
    flex-wrap:wrap;
}

/* Ensure clear separation between stacked cards on the hasil page */
.page-hasil .card + .card{
    margin-top:18px;
}
