/* Zero Waste RW — landing */

:root {
    --bg: #f5faf6;
    --surface: #ffffff;
    --ink: #0a2519;
    --ink-2: #3d5348;
    --muted: #65796e;
    --line: rgba(10, 37, 25, .09);

    --brand: #047857;
    --brand-hover: #065f46;
    --brand-900: #064e3b;
    --brand-950: #022c22;
    --mint: #d1fae5;
    --lime: #bef264;

    --organik: #27855a;
    --daur: #2787c7;
    --residu: #374151;

    --radius: 22px;
    --shadow: 0 1px 2px rgba(6, 60, 40, .05), 0 14px 34px -10px rgba(6, 60, 40, .14);
    --shadow-lg: 0 2px 4px rgba(6, 60, 40, .06), 0 28px 60px -16px rgba(6, 60, 40, .28);
    --font: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --mark-vein: #d1fae5;
    --ease: cubic-bezier(.22, .8, .24, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dd { margin: 0; }
button { font: inherit; color: inherit; cursor: pointer; }

.i { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 10px; }

.container { width: min(1180px, 100% - 40px); margin-inline: auto; }

.skip-link {
    position: fixed; left: 16px; top: -60px; z-index: 100;
    background: var(--brand-950); color: #fff; padding: 10px 16px; border-radius: 12px; font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* ---------- Tombol ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px; border-radius: 14px; border: 1px solid transparent;
    font-weight: 700; font-size: 15px; line-height: 1.2; white-space: nowrap;
    transition: transform .2s var(--ease), background-color .2s, box-shadow .2s, border-color .2s, color .2s;
}
.btn:active { transform: scale(.97); }
.btn--lg { padding: 15px 26px; font-size: 16px; border-radius: 16px; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px -6px rgba(4, 120, 87, .6); }
.btn--primary:hover { background: var(--brand-hover); }
.btn--light { background: #fff; color: var(--brand-950); box-shadow: 0 10px 28px -10px rgba(0, 0, 0, .45); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(0, 0, 0, .5); }
.btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .06); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); }

/* ---------- Navigasi ---------- */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 50;
    color: #fff;
    transition: background-color .3s, box-shadow .3s, color .3s, backdrop-filter .3s;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav.is-scrolled {
    color: var(--ink);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(1.6) blur(16px);
    -webkit-backdrop-filter: saturate(1.6) blur(16px);
    box-shadow: 0 1px 0 var(--line);
}
.nav.is-scrolled .brand__mark { background: var(--brand-900); color: #fff; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px;
    background: rgba(255, 255, 255, .14); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
    transition: background-color .3s;
}
.brand__mark svg { width: 26px; height: 26px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 14px; font-weight: 800; letter-spacing: .1em; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a:not(.btn) {
    padding: 9px 14px; border-radius: 12px; font-size: 14.5px; font-weight: 600; opacity: .86;
}
.nav__links a:not(.btn):hover { opacity: 1; background: rgba(255, 255, 255, .12); }
.nav.is-scrolled .nav__links a:not(.btn):hover { background: rgba(4, 120, 87, .08); }
.nav__cta { margin-left: 10px; padding: 10px 18px; }
.nav:not(.is-scrolled) .nav__cta { background: #fff; color: var(--brand-950); box-shadow: none; }

.nav__toggle {
    display: none; place-items: center; width: 44px; height: 44px; border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .08); font-size: 20px;
}
.nav.is-scrolled .nav__toggle { border-color: var(--line); background: #fff; }
.nav__toggle .i--close { display: none; }
.nav__toggle[aria-expanded="true"] .i--open { display: none; }
.nav__toggle[aria-expanded="true"] .i--close { display: block; }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden; color: #fff;
    padding: 148px 0 110px;
    border-radius: 0 0 44px 44px;
    background:
        radial-gradient(900px 520px at 88% -8%, rgba(52, 211, 153, .30), transparent 62%),
        radial-gradient(700px 460px at -8% 108%, rgba(190, 242, 100, .16), transparent 60%),
        linear-gradient(160deg, #022c22 0%, #04392a 55%, #064e3b 100%);
}
.hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 55% 35%, #000 25%, transparent 78%);
    mask-image: radial-gradient(ellipse 70% 70% at 55% 35%, #000 25%, transparent 78%);
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.pill {
    display: inline-flex; align-items: center; gap: 10px; max-width: 100%;
    padding: 7px 14px 7px 12px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
    background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .18);
    transition: background-color .2s, transform .2s var(--ease);
}
.pill:hover { background: rgba(255, 255, 255, .16); transform: translateY(-1px); }
.pill .i { transition: transform .2s var(--ease); }
.pill:hover .i { transform: translateX(3px); }
.pill__dot, .status i {
    position: relative; width: 9px; height: 9px; border-radius: 50%; background: #34d399; flex: none;
}
.pill__dot::after, .status i::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%; background: #34d399; opacity: .5;
    animation: ping 2s cubic-bezier(0, 0, .2, 1) infinite;
}

.hero h1 {
    margin-top: 22px; font-size: clamp(2.3rem, 5vw, 3.9rem); line-height: 1.08; letter-spacing: -.035em; font-weight: 800;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(100deg, #a7f3d0, var(--lime));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { margin-top: 22px; max-width: 560px; font-size: 1.1rem; color: rgba(236, 253, 245, .82); }
.hero__lead strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__facts { display: flex; flex-wrap: wrap; gap: 14px 36px; margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .14); }
.hero__facts li { display: flex; align-items: baseline; gap: 10px; }
.hero__facts strong { font-size: 1.8rem; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.hero__facts span { font-size: 13.5px; font-weight: 600; color: rgba(236, 253, 245, .68); max-width: 9ch; line-height: 1.3; }

/* Hero visual */
.hero__visual { position: relative; padding: 26px 0 40px 22px; }
.dash {
    position: relative; background: #fff; color: var(--ink); border-radius: 26px; overflow: hidden;
    box-shadow: 0 40px 80px -24px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .5);
    transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
    animation: rise .9s var(--ease) both;
}
.dash__bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; background: #f1f6f3; border-bottom: 1px solid var(--line); }
.dash__bar span { width: 10px; height: 10px; border-radius: 50%; background: #cfd9d3; }
.dash__bar small { margin-left: 10px; font-size: 12px; font-weight: 700; color: var(--muted); }
.dash__body { padding: 24px 24px 26px; }
.dash__label { font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.dash__total { margin-top: 4px; font-size: 3rem; font-weight: 800; letter-spacing: -.04em; line-height: 1.1; }
.dash__total span { margin-left: 6px; font-size: 1.15rem; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.dash__stack { display: flex; gap: 3px; height: 14px; margin-top: 18px; }
.dash__stack span {
    width: var(--w); background: var(--c); border-radius: 999px; transform-origin: left; animation: grow 1.1s .35s var(--ease) both;
}
.dash__legend { display: grid; gap: 10px; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.dash__legend li { display: flex; align-items: center; gap: 10px; }
.dash__legend i { width: 10px; height: 10px; border-radius: 3px; background: var(--c); }
.dash__legend b { margin-left: auto; color: var(--ink); font-weight: 800; }
.dash__note {
    display: flex; align-items: center; gap: 10px; margin-top: 22px; padding: 12px 14px;
    border-radius: 14px; background: #ecfdf5; color: #065f46; font-size: 14px; font-weight: 700;
}
.dash__note b { margin-left: auto; font-size: 16px; }

.chip {
    position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px;
    border-radius: 16px; background: #fff; color: var(--ink); font-size: 14px; font-weight: 800;
    box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .5);
}
.chip--verified { top: 0; right: -8px; animation: float 6s ease-in-out infinite; }
.chip--verified .i { color: var(--brand); font-size: 20px; }
.chip--bins { bottom: 8px; left: -6px; gap: 12px; padding: 14px 18px; animation: float 7s -2s ease-in-out infinite; }
.chip--bins span { color: var(--c); }
.chip--bins svg { width: 30px; height: 36px; }
.hero__caption { position: absolute; right: 0; bottom: 6px; font-size: 12px; font-weight: 600; color: rgba(236, 253, 245, .55); }

/* ---------- Seksi umum ---------- */
.section { padding: 112px 0; }
.section--tint { background: linear-gradient(180deg, #ecf7f0, #f5faf6); }
.section__head { max-width: 760px; margin-bottom: 52px; }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
    font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand);
}
.eyebrow::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: currentColor; }
.section__head--center .eyebrow::after { content: ''; width: 26px; height: 2px; border-radius: 2px; background: currentColor; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.15; letter-spacing: -.03em; font-weight: 800; text-wrap: balance; }
.lead { margin-top: 18px; font-size: 1.1rem; color: var(--ink-2); }

.icon-box {
    display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; flex: none;
    background: var(--mint); color: var(--brand); font-size: 22px;
}
.tag {
    display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 999px;
    font-size: 12.5px; font-weight: 800; background: rgba(4, 120, 87, .09); color: var(--brand);
}

/* Tentang */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pillars { display: grid; gap: 16px; }
.pillars li {
    display: flex; gap: 18px; padding: 22px; border-radius: var(--radius);
    background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
    transition: transform .3s var(--ease), box-shadow .3s, opacity .7s var(--ease);
}
.pillars li:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.pillars h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: -.01em; }
.pillars p { margin-top: 4px; color: var(--muted); font-size: .97rem; }

/* Tiga jalur */
.streams { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stream {
    position: relative; display: flex; flex-direction: column; padding: 28px; border-radius: 26px;
    background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
}
.stream::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--c); }
.stream__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.stream__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; background: var(--c-soft); color: var(--c); font-size: 26px; }
.stream .tag { background: var(--c-soft); color: var(--c); }
.stream h3 { font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; }
.stream > p { margin-top: 10px; color: var(--ink-2); font-size: .98rem; }
.stream dl { margin-top: auto; padding-top: 24px; }
.stream dl div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px dashed var(--line); font-size: 14px; }
.stream dt { color: var(--muted); font-weight: 600; }
.stream dd { font-weight: 800; text-align: right; }

/* Alur */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
    position: relative; padding: 30px 26px 26px; border-radius: var(--radius);
    background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.step__num {
    position: absolute; top: 22px; right: 24px; font-size: 3.4rem; line-height: 1; font-weight: 800;
    letter-spacing: -.05em; color: rgba(4, 120, 87, .1);
}
.step__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: var(--brand); color: #fff; font-size: 22px; box-shadow: 0 10px 20px -8px rgba(4, 120, 87, .55); }
.step h3 { margin-top: 20px; font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; }
.step p { margin-top: 8px; color: var(--muted); font-size: .96rem; }

/* Hover kartu (dipisah dari .reveal agar transisi tidak bentrok) */
.stream, .step, .role { transition: transform .3s var(--ease), box-shadow .3s, border-color .3s, opacity .7s var(--ease); }
.stream:hover, .step:hover, .role:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step:hover { border-color: rgba(4, 120, 87, .35); }

/* Fitur (bento) */
.section--dark {
    color: #fff; border-radius: 44px; margin: 0 12px;
    background:
        radial-gradient(700px 400px at 100% 0%, rgba(52, 211, 153, .20), transparent 60%),
        linear-gradient(165deg, #022c22, #053b2b);
}
.section--dark .eyebrow { color: #6ee7b7; }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento__item {
    position: relative; overflow: hidden; padding: 28px; border-radius: 24px;
    background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .11);
    transition: background-color .3s, transform .3s var(--ease), border-color .3s, opacity .7s var(--ease);
}
.bento__item:hover { background: rgba(255, 255, 255, .095); transform: translateY(-4px); border-color: rgba(110, 231, 183, .4); }
.bento__item--a { grid-column: span 3; }
.bento__item--b { grid-column: span 3; }
.bento__item--c { grid-column: span 4; }
.bento__item--d { grid-column: span 2; }
.bento__item--e { grid-column: span 3; }
.bento__item--f { grid-column: span 3; }
.icon-box--dark { background: rgba(110, 231, 183, .14); color: #6ee7b7; }
.bento h3 { margin-top: 20px; font-size: 1.25rem; font-weight: 800; letter-spacing: -.015em; }
.bento p { margin-top: 8px; color: rgba(236, 253, 245, .72); font-size: .98rem; max-width: 52ch; }

.flow { display: flex; align-items: center; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.flow span { padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 700; background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .85); }
.flow span.is-done { background: #34d399; color: #022c22; }
.flow i { width: 20px; height: 2px; background: rgba(255, 255, 255, .25); border-radius: 2px; }

.spark { display: flex; align-items: flex-end; gap: 10px; height: 92px; margin-top: 26px; }
.spark span { flex: 1; height: var(--h); border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, #6ee7b7, rgba(52, 211, 153, .25)); transform-origin: bottom; }
.reveal.is-visible .spark span { animation: rise-bar .9s var(--ease) both; }
.reveal.is-visible .spark span:nth-child(2) { animation-delay: .06s; }
.reveal.is-visible .spark span:nth-child(3) { animation-delay: .12s; }
.reveal.is-visible .spark span:nth-child(4) { animation-delay: .18s; }
.reveal.is-visible .spark span:nth-child(5) { animation-delay: .24s; }
.reveal.is-visible .spark span:nth-child(6) { animation-delay: .3s; }
.reveal.is-visible .spark span:nth-child(7) { animation-delay: .36s; }
.reveal.is-visible .spark span:nth-child(8) { animation-delay: .42s; }

.hier { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.hier li { padding: 7px 14px; border-radius: 12px; font-size: 13.5px; font-weight: 800; background: rgba(255, 255, 255, .1); }
.hier li:not(:last-child)::after { content: '→'; margin-left: 12px; color: #6ee7b7; }
.hier li:last-child { background: #34d399; color: #022c22; }

/* Peran */
.roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.role {
    padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.role h3 { margin-top: 18px; font-size: 1.15rem; font-weight: 800; }
.role p { margin-top: 6px; color: var(--muted); font-size: .95rem; }

/* Program pilot */
.section--pilot { background: linear-gradient(180deg, var(--bg) 0%, #e6f5ec 100%); }
.pilots { display: grid; grid-template-columns: 1.55fr 1fr; gap: 24px; align-items: stretch; }

.pilot {
    position: relative; display: flex; border-radius: 28px; overflow: hidden;
    background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.pilot--live {
    flex-direction: column; border-color: rgba(4, 120, 87, .28);
    box-shadow: 0 2px 4px rgba(6, 60, 40, .06), 0 30px 60px -22px rgba(4, 120, 87, .38);
    transition: transform .35s var(--ease), box-shadow .35s, opacity .7s var(--ease);
}
.pilot--live:hover { transform: translateY(-6px); box-shadow: 0 2px 4px rgba(6, 60, 40, .06), 0 40px 80px -24px rgba(4, 120, 87, .5); }

.browser { margin: 18px 18px 0; border-radius: 16px 16px 0 0; overflow: hidden; background: #eef5f0; border: 1px solid var(--line); border-bottom: 0; }
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #e2ede6; }
.browser__bar > span { width: 10px; height: 10px; border-radius: 50%; background: #c5d4cb; }
.browser__url {
    display: flex; align-items: center; gap: 7px; margin-left: 12px; padding: 5px 14px; border-radius: 999px;
    background: #fff; font-size: 12.5px; font-weight: 700; color: var(--ink-2);
}
.browser__url .i { font-size: 12px; color: var(--brand); }
.browser__body { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding: 14px; height: 170px; }
.browser__body aside { display: grid; align-content: start; gap: 9px; padding: 12px 10px; border-radius: 12px; background: var(--brand-900); }
.browser__body aside i { height: 9px; border-radius: 6px; background: rgba(255, 255, 255, .28); }
.browser__body aside i:first-child { background: #6ee7b7; }
.browser__main { display: grid; grid-template-rows: auto 1fr; gap: 12px; }
.browser__tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.browser__tiles i { height: 40px; border-radius: 10px; background: #fff; box-shadow: inset 0 -3px 0 var(--mint); }
.browser__chart { display: flex; align-items: flex-end; gap: 9px; padding: 12px; border-radius: 12px; background: #fff; }
.browser__chart span { flex: 1; height: var(--h); border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--brand), #6ee7b7); }

.pilot__content { display: flex; flex-direction: column; padding: 28px 30px 30px; background: var(--surface); position: relative; flex: 1; }
.pilot__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.status {
    display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 12px; border-radius: 999px;
    background: #ecfdf5; color: #065f46; font-size: 13px; font-weight: 800;
}
.pilot h3 { margin-top: 18px; font-size: 1.85rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.pilot__sub { margin-top: 2px; font-weight: 800; color: var(--brand); }
.pilot__content > p:not(.pilot__sub) { margin-top: 12px; color: var(--ink-2); max-width: 56ch; }
.pilot__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pilot__chips li { padding: 6px 13px; border-radius: 999px; font-size: 13px; font-weight: 700; background: #f0f5f2; color: var(--ink-2); border: 1px solid var(--line); }
.pilot__cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; align-self: flex-start;
    margin-top: 26px; padding: 14px 24px; border-radius: 16px;
    background: var(--brand); color: #fff; font-weight: 800; box-shadow: 0 10px 24px -8px rgba(4, 120, 87, .65);
    transition: background-color .2s;
}
.pilot__cta .i { transition: transform .25s var(--ease); }
.pilot--live:hover .pilot__cta { background: var(--brand-hover); }
.pilot--live:hover .pilot__cta .i { transform: translate(3px, -3px); }

.pilot--soon {
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 0; padding: 32px;
    background: transparent; border: 2px dashed rgba(4, 120, 87, .3); box-shadow: none;
}
.pilot--soon .icon-box { margin-bottom: 20px; }
.pilot--soon h3 { margin-top: 0; font-size: 1.45rem; }
.pilot--soon > p { margin-top: 10px; color: var(--muted); }
.pilot--soon .tag { position: absolute; top: 24px; right: 24px; }
.soon { margin-top: 24px; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 800; background: #fff; color: var(--muted); border: 1px solid var(--line); }

/* CTA */
.cta { padding: 20px 0 96px; }
.cta__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
    padding: 52px 56px; border-radius: 32px; color: #fff; position: relative; overflow: hidden;
    background:
        radial-gradient(500px 300px at 90% 0%, rgba(190, 242, 100, .22), transparent 60%),
        linear-gradient(135deg, #065f46, #022c22);
    box-shadow: 0 34px 70px -28px rgba(2, 44, 34, .8);
}
.cta h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta p { margin-top: 8px; color: rgba(236, 253, 245, .78); max-width: 46ch; }

/* Footer */
.footer { padding: 8px 0 32px; color: var(--ink-2); }
.footer__inner { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 36px; padding: 32px 0; border-top: 1px solid var(--line); }
.brand--footer { color: var(--ink); }
.brand--footer .brand__mark { background: var(--brand-900); }
.footer__tag { font-size: 14px; color: var(--muted); }
.footer__links { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-left: auto; font-size: 14px; font-weight: 700; }
.footer__links a:hover { color: var(--brand); }
.footer__legal { font-size: 13px; color: var(--muted); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; translate: 0 22px; transition-property: opacity, translate, transform, box-shadow, background-color, border-color; transition-duration: .7s, .7s, .3s, .3s, .3s, .3s; transition-timing-function: var(--ease); transition-delay: var(--d, 0s), var(--d, 0s), 0s, 0s, 0s, 0s; }
.js .reveal.is-visible { opacity: 1; translate: 0 0; }

/* ---------- Animasi ---------- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes rise { from { opacity: 0; transform: perspective(1400px) rotateY(-7deg) rotateX(3deg) translateY(30px); } }
@keyframes rise-bar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ---------- Responsif ---------- */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .hero__visual { max-width: 520px; padding-left: 0; }
    .dash { transform: none; animation: none; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .streams { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .roles { grid-template-columns: repeat(2, 1fr); }
    .pilots { grid-template-columns: 1fr; }
    .bento__item--c, .bento__item--d { grid-column: span 6; }
}

@media (max-width: 860px) {
    .nav__toggle { display: grid; }
    .nav__links {
        position: fixed; inset: 76px 12px auto 12px; flex-direction: column; align-items: stretch; gap: 2px;
        padding: 12px; border-radius: 22px; background: #fff; color: var(--ink);
        box-shadow: 0 30px 60px -20px rgba(2, 44, 34, .45), 0 0 0 1px var(--line);
        opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98); transform-origin: top;
        transition: opacity .2s, transform .25s var(--ease), visibility .2s;
    }
    .nav__links.is-open { opacity: 1; visibility: visible; transform: none; }
    .nav__links a:not(.btn) { padding: 14px 16px; font-size: 16px; opacity: 1; }
    .nav__links a:not(.btn):hover { background: rgba(4, 120, 87, .08); }
    .nav__cta { margin: 6px 0 0; padding: 14px 18px; }
    .nav:not(.is-scrolled) .nav__cta { background: var(--brand); color: #fff; }
}

@media (max-width: 720px) {
    .container { width: min(1180px, 100% - 32px); }
    .hero { padding: 120px 0 84px; border-radius: 0 0 32px 32px; }
    .hero__facts { gap: 14px 24px; }
    .hero__facts strong { font-size: 1.5rem; }
    .section { padding: 80px 0; }
    .section--dark { margin: 0 8px; border-radius: 32px; }
    .steps, .roles { grid-template-columns: 1fr; }
    .bento { grid-template-columns: 1fr; }
    .bento__item--a, .bento__item--b, .bento__item--c, .bento__item--d, .bento__item--e, .bento__item--f { grid-column: auto; }
    .cta__inner { padding: 36px 26px; }
    .cta__inner .btn { width: 100%; }
    .footer__links { margin-left: 0; }
    .chip--verified { right: 0; }
    .dash__total { font-size: 2.5rem; }
    .pilot__content { padding: 24px 22px 26px; }
    .pilot__cta { align-self: stretch; }
    .pilot--soon .tag { position: static; margin-bottom: 14px; }
    .browser { margin: 14px 14px 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    .js .reveal { opacity: 1; translate: none; }
}
