:root {
  --bg: #ffffff;
  --bg-soft: #f3faf5;
  --bg-mint: #ecf8f0;
  --surface: #ffffff;
  --surface-2: #f6fbf8;
  --border: rgba(16, 90, 54, 0.12);
  --border-strong: rgba(16, 90, 54, 0.24);
  --ink: #122a1c;
  --text: #284534;
  --muted: #5d7568;
  --faint: #8aa093;
  --green: #16a34a;
  --green-d: #15803d;
  --green-dd: #116335;
  --emerald: #22c55e;
  --lime: #65a30d;
  --teal: #0d9488;
  --amber: #d97706;
  --blue: #2546a8;
  --grad: linear-gradient(120deg, #15803d, #22c55e);
  --grad-2: linear-gradient(120deg, #0d9488, #16a34a);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 18px -8px rgba(16, 90, 54, 0.22);
  --shadow: 0 24px 60px -28px rgba(16, 70, 44, 0.4);
  --shadow-green: 0 18px 40px -16px rgba(34, 197, 94, 0.45);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(820px 540px at 88% -8%, rgba(34, 197, 94, 0.1), transparent 60%),
    radial-gradient(720px 540px at -5% 12%, rgba(13, 148, 136, 0.08), transparent 55%);
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: #fff; }
:where(section, .article, .page-hero)[id] { scroll-margin-top: 90px; }
.anchor { position: absolute; top: -90px; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: #bfe0cd; border-radius: 20px; border: 3px solid var(--bg-soft); }
::-webkit-scrollbar-thumb:hover { background: #94d0ad; }

.skip-link { position: fixed; top: -60px; left: 16px; z-index: 1100; background: var(--green-d); color: #fff; padding: 10px 18px; border-radius: 10px; transition: top .25s var(--ease); }
.skip-link:focus { top: 16px; }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1000; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--grad); }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s;
}
.nav.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 46px; width: auto; object-fit: contain; transition: transform .3s var(--ease); }
.brand__logo--ut { height: 48px; }
.brand:hover .brand__logo { transform: scale(1.04); }
.brand__divider { width: 1px; height: 34px; background: var(--border-strong); }
.brand__text { display: flex; flex-direction: column; justify-content: center; line-height: 1.12; }
.brand__text-top { font-family: var(--display); font-weight: 700; font-size: 1.04rem; color: var(--green-d); letter-spacing: -.01em; white-space: nowrap; }
.brand__text-sub { font-family: var(--display); font-weight: 500; font-size: .74rem; letter-spacing: normal; text-transform: none; white-space: nowrap; color: rgba(21, 128, 61, .6); }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 13px; font-size: .9rem; font-weight: 600; color: var(--text);
  border-radius: 10px; cursor: pointer; transition: color .25s, background .25s; white-space: nowrap;
}
button.nav__link { font-family: inherit; line-height: inherit; background: none; border: 0; }
.nav__caret { width: 15px; height: 15px; transition: transform .3s var(--ease); opacity: .7; }
.nav__link:hover { color: var(--green-d); background: var(--bg-mint); }
.nav__item--has-menu:hover .nav__caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow); padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: .28s var(--ease); z-index: 50;
}
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav__item--has-menu:hover .dropdown, .nav__item--has-menu:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__link { padding: 11px 14px; font-size: .9rem; font-weight: 500; color: var(--text); border-radius: 10px; transition: background .2s, color .2s, padding .2s; }
.dropdown__link:hover { background: var(--bg-mint); color: var(--green-d); padding-left: 18px; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 7px; margin-left: 8px;
  padding: 10px 17px; font-size: .88rem; font-weight: 700; color: #fff;
  background: var(--grad); border-radius: 11px; box-shadow: var(--shadow-green);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.nav__cta i { width: 16px; height: 16px; }
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(34, 197, 94, 0.6); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 13px; font-weight: 700; font-size: .95rem; cursor: pointer; border: 1px solid transparent; transition: transform .3s var(--ease), box-shadow .3s, background .3s, border-color .3s; }
.btn i { width: 18px; height: 18px; }
.btn--primary { color: #fff; background: var(--grad); box-shadow: var(--shadow-green); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(34, 197, 94, 0.65); }
.btn--ghost { color: var(--green-d); background: #fff; border-color: var(--border-strong); }
.btn--ghost:hover { transform: translateY(-3px); background: var(--bg-mint); border-color: var(--green); }
.btn__play { display: grid; place-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--grad); color: #fff; }
.btn__play i { width: 15px; height: 15px; }

.hero { position: relative; min-height: 480px; display: grid; align-items: center; padding: 130px clamp(18px, 5vw, 54px) 40px; z-index: 1; overflow: hidden; }
.hero__globe { position: absolute; top: 50%; right: 1vw; transform: translateY(-50%); width: min(52vw, 88vh, 840px); height: min(52vw, 88vh, 840px); z-index: 1; pointer-events: auto; cursor: grab; touch-action: pan-y; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 13%); mask-image: linear-gradient(90deg, transparent 0, #000 13%); }
.hero__globe:active { cursor: grabbing; }
.hero__canvas { width: 100%; height: 100%; display: block; }
.globe-label { position: absolute; top: 0; left: 0; display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px 6px 8px; background: #fff; border: 1px solid var(--border-strong); border-radius: 100px; box-shadow: var(--shadow-sm); font-size: .8rem; font-weight: 700; color: var(--green-d); white-space: nowrap; transform: translate(-50%, -130%); opacity: 0; transition: opacity .3s; will-change: transform, opacity; }
.globe-label svg, .globe-label i { width: 15px; height: 15px; color: var(--green); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 32%, rgba(255,255,255,.45) 60%, rgba(255,255,255,.05) 82%, transparent 100%); }
.hero__grid { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(16,90,54,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(16,90,54,.04) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(circle at 70% 40%, #000, transparent 75%); mask-image: radial-gradient(circle at 70% 40%, #000, transparent 75%); }
.hero__content { max-width: 760px; position: relative; z-index: 2; }
.badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; font-size: .82rem; font-weight: 600; color: var(--green-d); background: var(--bg-mint); border: 1px solid var(--border-strong); border-radius: 100px; margin-bottom: 26px; }
.badge__leaf { display: inline-flex; align-items: center; justify-content: center; filter: drop-shadow(0 2px 3px rgba(21, 128, 61, 0.45)); transform-origin: 50% 90%; animation: leafsway 3.4s var(--ease) infinite; }
.badge__leaf svg { width: 17px; height: 17px; }
@keyframes leafsway { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); } 70%, 100% { box-shadow: 0 0 0 10px rgba(34,197,94,0); } }
.hero__title { font-family: var(--display); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; font-size: clamp(1.78rem, 4.9vw, 3.55rem); margin-bottom: 24px; color: var(--ink); }
.hero__title-row { display: block; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad--2 { background: var(--grad-2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--muted); max-width: 600px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 52px); }
.hero__stat strong { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.4rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.hero__stat span { font-size: .84rem; color: var(--faint); margin-top: 6px; display: block; max-width: 165px; }
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; color: var(--faint); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.hero__mouse { width: 22px; height: 36px; border: 1.6px solid var(--border-strong); border-radius: 14px; display: grid; justify-content: center; padding-top: 6px; }
.hero__mouse span { width: 3px; height: 7px; border-radius: 3px; background: var(--green); animation: scrollWheel 1.6s var(--ease) infinite; }
@keyframes scrollWheel { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(8px); } }

.hero-strip { position: relative; z-index: 1; background: linear-gradient(90deg, var(--green-d), var(--green-dd)); color: #eafff2; padding: 11px clamp(16px, 4vw, 24px); }
.hero-strip__inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; text-align: center; }
.hero-strip__icon { display: inline-flex; flex: 0 0 auto; }
.hero-strip__icon svg, .hero-strip__icon i { width: 18px; height: 18px; color: #bef264; }
.hero-strip__text { font-family: var(--display); font-weight: 700; font-size: clamp(.82rem, 1.6vw, .95rem); letter-spacing: .02em; color: #a8e3c4; -webkit-text-fill-color: transparent; background-image: linear-gradient(90deg, #a8e3c4 0%, #a8e3c4 30%, #ffffff 45%, #ffffff 55%, #a8e3c4 70%, #a8e3c4 100%); background-size: 220% 100%; background-repeat: no-repeat; background-position: 0 0; -webkit-background-clip: text; background-clip: text; animation: stripShimmer 3.6s linear infinite; }
@keyframes stripShimmer { 0% { background-position: 100% 0; } 100% { background-position: 0% 0; } }
.hero-strip__badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 100px; background: rgba(255, 255, 255, .16); color: #fff; font-weight: 700; font-size: .76rem; text-decoration: none; white-space: nowrap; transition: background .2s; }
a.hero-strip__badge:hover { background: rgba(255, 255, 255, .3); }
.hero-strip__badge svg, .hero-strip__badge i { width: 13px; height: 13px; }
.hero-banners { padding: clamp(26px, 4vw, 44px) clamp(16px, 4vw, 24px) clamp(44px, 6vw, 76px); }
.hero-banners__wrap { position: relative; max-width: 1100px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--bg-mint); }
.hero-banners__track { display: flex; transition: transform .55s var(--ease); }
.hero-banners__slide { flex: 0 0 100%; aspect-ratio: 1390 / 380; }
.hero-banners__slide a, .hero-banners__slide img { display: block; width: 100%; height: 100%; }
.hero-banners__slide img { object-fit: cover; }
.hero-banners__nav { position: absolute; top: 50%; transform: translateY(-50%); display: grid; place-content: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .85); color: var(--ink); cursor: pointer; box-shadow: var(--shadow-sm); z-index: 2; transition: background .2s; }
.hero-banners__nav:hover { background: #fff; }
.hero-banners__nav--prev { left: 12px; }
.hero-banners__nav--next { right: 12px; }
.hero-banners__nav svg, .hero-banners__nav i { width: 20px; height: 20px; }
.hero-banners__dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: 7px; z-index: 2; }
.hero-banners__dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .55); cursor: pointer; transition: background .2s, transform .2s; }
.hero-banners__dot.is-active { background: #fff; transform: scale(1.25); }
@media (max-width: 560px) { .hero-banners__nav { width: 34px; height: 34px; } }

.section { position: relative; z-index: 1; max-width: var(--max); margin-inline: auto; padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 24px); }
.section__head { max-width: 760px; margin-bottom: 52px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--between { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; flex-wrap: wrap; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-d); margin-bottom: 16px; }
.eyebrow i { width: 16px; height: 16px; }
.section__title { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; line-height: 1.14; font-size: clamp(1.7rem, 4vw, 2.8rem); color: var(--ink); }
.section__sub { color: var(--muted); font-size: clamp(1rem, 2vw, 1.1rem); margin-top: 16px; }
.section__head--center .section__sub { margin-inline: auto; max-width: 640px; }

.gogreen, .smart, .press, .galeri, .mitra { background: var(--bg-soft); max-width: none; padding-inline: 0; padding-block: clamp(56px, 9vw, 110px); }
.gogreen .gogreen__grid, .gogreen .gogreen__programs,
.smart .section__head, .smart .smart__layout,
.press .section__head, .press .press__grid,
.galeri .section__head, .galeri .galeri__grid,
.mitra .section__head, .mitra .mitra__grid { max-width: var(--max); margin-inline: auto; padding-inline: clamp(18px, 5vw, 24px); }

.gogreen { position: relative; }
.gogreen__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; margin-bottom: 44px; }
.gogreen__lead { color: var(--text); font-size: clamp(1.02rem, 2vw, 1.18rem); margin-top: 18px; line-height: 1.8; }
.gogreen__year { position: relative; text-align: center; padding: 34px; border-radius: var(--radius); background: linear-gradient(160deg, #eafaf0, #d6f5e2); border: 1px solid var(--border-strong); box-shadow: var(--shadow-sm); }
.gogreen__yearnum { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(3.4rem, 9vw, 5.4rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gogreen__yearlabel { display: block; margin-top: 8px; color: var(--green-d); font-weight: 600; font-size: .92rem; }
.gogreen__programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.program { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s; }
.program:hover { transform: translateY(-5px); border-color: var(--green); }
.program__icon { flex-shrink: 0; display: grid; place-content: center; width: 46px; height: 46px; border-radius: 13px; color: var(--green-d); background: var(--bg-mint); }
.program__icon i { width: 22px; height: 22px; }
.program__text { font-weight: 600; color: var(--ink); font-size: .95rem; }

.indikator__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { position: relative; padding: 30px 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.pillar::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(34, 197, 94, 0.1), transparent 45%); opacity: 0; transition: opacity .4s; }
.pillar:hover { transform: translateY(-8px); border-color: var(--green); box-shadow: var(--shadow); }
.pillar:hover::before { opacity: 1; }
.pillar__num { position: absolute; top: 18px; right: 22px; font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: rgba(16, 90, 54, 0.08); }
.pillar__icon { display: grid; place-content: center; width: 54px; height: 54px; border-radius: 15px; margin-bottom: 20px; }
.pillar__icon i { width: 26px; height: 26px; }
.pillar__icon--green { color: var(--green-d); background: #dcfce7; }
.pillar__icon--blue { color: var(--blue); background: #dbeafe; }
.pillar__icon--amber { color: var(--amber); background: #fef3c7; }
.pillar__icon--teal { color: var(--teal); background: #ccfbf1; }
.pillar h3 { font-family: var(--display); font-size: 1.22rem; margin-bottom: 10px; color: var(--ink); }
.pillar p { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.pillar__tag { display: inline-block; font-size: .76rem; font-weight: 700; color: var(--green-d); padding: 5px 12px; border-radius: 100px; background: var(--bg-mint); border: 1px solid var(--border); }

.smart__layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(34px, 5vw, 60px); align-items: center; }
.dashboard { border-radius: var(--radius); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; }
.dashboard__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot--r { background: #ff5f57; } .dot--y { background: #febc2e; } .dot--g { background: #28c840; }
.dashboard__url { margin-left: 10px; font-size: .76rem; color: var(--faint); display: inline-flex; align-items: center; gap: 6px; }
.dashboard__url i { width: 13px; height: 13px; }
.dashboard__body { padding: 22px; display: grid; gap: 18px; }
.dashboard__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric { padding: 16px 18px; border-radius: var(--radius-sm); background: var(--bg-soft); border: 1px solid var(--border); }
.metric--live { background: var(--bg-mint); border-color: var(--border-strong); }
.metric__label { font-size: .76rem; color: var(--faint); }
.metric__val { display: block; font-family: var(--display); font-weight: 700; font-size: 1.8rem; margin: 4px 0; color: var(--ink); letter-spacing: -.02em; }
.metric__val em { font-size: .9rem; font-weight: 500; font-style: normal; color: var(--muted); }
.metric__trend { font-size: .76rem; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.metric__trend i { width: 14px; height: 14px; }
.metric__trend.down { color: var(--green); }
.chart { padding: 16px 18px; border-radius: var(--radius-sm); background: var(--bg-soft); border: 1px solid var(--border); }
.chart__head { display: flex; justify-content: space-between; align-items: center; font-size: .76rem; color: var(--faint); margin-bottom: 10px; }
.chart__live { display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.chart__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: ping 1.6s var(--ease) infinite; }
.chart__svg { width: 100%; height: 90px; }
.dashboard__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 600; color: var(--muted); padding: 7px 12px; border-radius: 100px; background: var(--bg-soft); border: 1px solid var(--border); }
.pill i { width: 14px; height: 14px; }
.pill--on { color: var(--green-d); border-color: var(--border-strong); background: var(--bg-mint); }
.smart__steps { display: grid; gap: 12px; }
.step { display: flex; gap: 18px; padding: 20px; border-radius: var(--radius-sm); border: 1px solid transparent; background: #fff; transition: border-color .3s, transform .3s var(--ease), box-shadow .3s; }
.step:hover { border-color: var(--border); transform: translateX(6px); box-shadow: var(--shadow-sm); }
.step__icon { flex-shrink: 0; display: grid; place-content: center; width: 48px; height: 48px; border-radius: 13px; color: var(--green-d); background: var(--bg-mint); }
.step__icon i { width: 22px; height: 22px; }
.step h3 { font-family: var(--display); font-size: 1.12rem; margin-bottom: 4px; color: var(--ink); }
.step p { color: var(--muted); font-size: .92rem; }

.showcase { position: relative; max-width: 980px; margin: 0 auto; }
.showcase__browser { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-strong); background: #fff; box-shadow: var(--shadow); }
.showcase__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.showcase__url { flex: 1; margin-left: 10px; display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); background: #fff; padding: 7px 14px; border-radius: 100px; border: 1px solid var(--border); overflow: hidden; white-space: nowrap; }
.showcase__url i { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.showcase__open { display: grid; place-content: center; width: 34px; height: 34px; border-radius: 10px; color: var(--muted); border: 1px solid var(--border); transition: color .25s, background .25s, transform .25s; flex-shrink: 0; }
.showcase__open i { width: 16px; height: 16px; }
.showcase__open:hover { color: var(--green-d); background: var(--bg-mint); transform: translateY(-2px); }
.showcase__frame { position: relative; aspect-ratio: 16 / 10; background: var(--bg-mint); }
.showcase__frame iframe { width: 100%; height: 100%; border: 0; background: #fff; }
.showcase__placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px; text-align: center; padding: 40px; background: radial-gradient(500px circle at 50% 0%, rgba(34, 197, 94, 0.1), transparent 60%), var(--bg-mint); }
.showcase__placeholder[hidden] { display: none; }
.iotfb { display: grid; justify-items: center; gap: 14px; max-width: 460px; }
.iotfb__art { position: relative; width: 264px; height: 148px; color: var(--green); margin-bottom: 6px; }
.iotfb__links { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.iotfb__links path { animation: dashflow 1.2s linear infinite; }
@keyframes dashflow { to { stroke-dashoffset: -16; } }
.iotfb__hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: grid; place-content: center; width: 52px; height: 52px; border-radius: 16px; color: #fff; background: var(--grad); box-shadow: var(--shadow-green); z-index: 2; }
.iotfb__hub svg, .iotfb__hub i { width: 25px; height: 25px; }
.iotfb__pulse { position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; transform: translate(-50%, -50%); border-radius: 18px; background: var(--green); opacity: .25; animation: iotpulse 2s var(--ease) infinite; }
@keyframes iotpulse { 0% { transform: translate(-50%,-50%) scale(1); opacity: .3; } 70%, 100% { transform: translate(-50%,-50%) scale(2.6); opacity: 0; } }
.iotfb__node { position: absolute; display: grid; place-content: center; width: 34px; height: 34px; border-radius: 11px; background: #fff; border: 1px solid var(--border-strong); color: var(--green-d); box-shadow: var(--shadow-sm); z-index: 2; }
.iotfb__node svg, .iotfb__node i { width: 16px; height: 16px; }
.iotfb__node--1 { top: 16px; left: 26px; animation: iotfloat 5s ease-in-out infinite; }
.iotfb__node--2 { top: 16px; right: 26px; animation: iotfloat 5.6s ease-in-out infinite .4s; }
.iotfb__node--3 { bottom: 16px; left: 26px; animation: iotfloat 6s ease-in-out infinite .8s; }
.iotfb__node--4 { bottom: 16px; right: 26px; animation: iotfloat 5.3s ease-in-out infinite 1.1s; }
@keyframes iotfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.iotfb h3 { font-family: var(--display); font-size: 1.35rem; color: var(--ink); }
.iotfb p { color: var(--muted); font-size: .96rem; }
.showcase__pulse { display: grid; place-content: center; width: 76px; height: 76px; border-radius: 22px; color: var(--green-d); background: #fff; border: 1px solid var(--border-strong); box-shadow: var(--shadow-sm); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.showcase__pulse i { width: 36px; height: 36px; }
.showcase__placeholder h3 { font-family: var(--display); font-size: 1.3rem; color: var(--ink); }
.showcase__placeholder p { color: var(--muted); max-width: 460px; font-size: .94rem; }
.showcase__chips { position: absolute; inset: 0; pointer-events: none; }
.chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; font-size: .82rem; font-weight: 700; border-radius: 100px; background: #fff; border: 1px solid var(--border-strong); box-shadow: var(--shadow); }
.chip i { width: 16px; height: 16px; }
.chip--a { top: -18px; right: 8%; color: var(--green-d); animation: floaty 5s ease-in-out infinite; }
.chip--b { bottom: 12%; left: -14px; color: var(--teal); animation: floaty 6.5s ease-in-out infinite .5s; }
.chip--c { top: 30%; right: -16px; color: var(--lime); animation: floaty 5.8s ease-in-out infinite 1s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.iot__features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 58px; }
.iot__feature { padding: 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s; }
.iot__feature:hover { transform: translateY(-6px); border-color: var(--green); }
.iot__feature > i { width: 26px; height: 26px; color: var(--green-d); margin-bottom: 14px; }
.iot__feature h4 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 6px; color: var(--ink); }
.iot__feature p { color: var(--muted); font-size: .88rem; }

.press__all { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--green-d); }
.press__all i { width: 18px; height: 18px; transition: transform .25s; }
.press__all:hover i { transform: translateX(4px); }
.press__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.press__grid--all { grid-template-columns: repeat(3, 1fr); }
.news { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.news:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.news--featured { grid-column: span 3; flex-direction: row; }
.news__media { display: block; overflow: hidden; }
.news__thumb { display: grid; place-content: center; height: 190px; color: rgba(255,255,255,.85); }
.news__img { width: 100%; height: 190px; object-fit: cover; transition: transform .5s var(--ease); }
.news:hover .news__img { transform: scale(1.05); }
.news--featured .news__media { flex: 0 0 44%; }
.news--featured .news__thumb, .news--featured .news__img { height: 100%; min-height: 240px; }
.news__thumb i { width: 46px; height: 46px; }
.news__thumb--1 { background: linear-gradient(140deg, #16a34a, #65a30d); }
.news__thumb--2 { background: linear-gradient(140deg, #0d9488, #16a34a); }
.news__thumb--3 { background: linear-gradient(140deg, #15803d, #0d9488); }
.news__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.news--featured .news__body { justify-content: center; padding: clamp(24px, 4vw, 44px); }
.news__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.news__tag { font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--green-d); background: var(--bg-mint); padding: 4px 11px; border-radius: 100px; }
.news__date { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--faint); }
.news__date i { width: 13px; height: 13px; }
.news__title { font-family: var(--display); font-size: 1.18rem; line-height: 1.3; color: var(--ink); }
.news--featured .news__title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.news__title a:hover { color: var(--green-d); }
.news__excerpt { color: var(--muted); font-size: .92rem; }
.news__more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--green-d); margin-top: 4px; }
.news__more i { width: 16px; height: 16px; transition: transform .25s; }
.news__more:hover i { transform: translate(3px, -3px); }

.sdg__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 20px; max-width: 720px; margin: 0 auto; }
.sdg__tile { position: relative; flex: 1 1 130px; max-width: 160px; display: flex; flex-direction: column; justify-content: space-between; min-height: 150px; padding: 20px; border-radius: var(--radius-sm); background: var(--sdg); color: #fff; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.sdg__tile:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow); }
.sdg__tile::after { content: ""; position: absolute; right: -20px; bottom: -20px; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.12); }
.sdg__no { font-family: var(--display); font-weight: 800; font-size: 2.4rem; line-height: 1; }
.sdg__title { font-weight: 600; font-size: .92rem; position: relative; z-index: 1; }
.sdg__tile--logo { padding: 0; background: transparent; box-shadow: none; min-height: 0; justify-content: flex-start; align-items: center; gap: 10px; overflow: visible; }
.sdg__tile--logo:hover { transform: translateY(-4px); box-shadow: none; }
.sdg__tile--logo::after, .sdg__tile--logo::before { display: none; }
.sdg__logo { width: 100%; max-width: 148px; aspect-ratio: 1 / 1; height: auto; object-fit: contain; border-radius: 14px; display: block; }
.sdg__tile--logo .sdg__title { color: var(--text); text-align: center; padding: 0; font-size: .82rem; }

.galeri__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; grid-auto-flow: row dense; }
.galeri__item { position: relative; display: grid; place-content: center; border-radius: var(--radius); overflow: hidden; color: #fff; cursor: pointer; }
.galeri__item--tall { grid-row: span 2; }
.galeri__item--wide { grid-column: span 2; }
.galeri__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.galeri__item:hover .galeri__photo { transform: scale(1.06); }
.galeri__icon { display: grid; place-content: center; transition: transform .5s var(--ease); position: relative; z-index: 1; }
.galeri__icon i { width: 52px; height: 52px; opacity: .92; }
.galeri__item:hover .galeri__icon { transform: scale(1.15) rotate(-4deg); }
.galeri__item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.45)); }
.galeri__cap { position: absolute; left: 16px; bottom: 14px; right: 16px; z-index: 1; display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; transform: translateY(6px); opacity: .92; transition: transform .4s var(--ease); }
.galeri__cap i { width: 16px; height: 16px; }
.galeri__item:hover .galeri__cap { transform: translateY(0); }
.galeri__item--g1 { background: linear-gradient(150deg, #15803d, #65a30d); }
.galeri__item--g2 { background: linear-gradient(150deg, #0d9488, #16a34a); }
.galeri__item--g3 { background: linear-gradient(150deg, #d97706, #16a34a); }
.galeri__item--g4 { background: linear-gradient(150deg, #16a34a, #0d9488); }
.galeri__item--g5 { background: linear-gradient(150deg, #65a30d, #15803d); }
.galeri__item--g6 { background: linear-gradient(150deg, #15803d, #0d9488); }
.galeri__more { max-width: var(--max); margin: 30px auto 0; padding-inline: clamp(18px, 5vw, 24px); display: flex; justify-content: center; }

.pgallery__count { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-weight: 600; color: var(--green-d); }
.pgallery__count i { width: 17px; height: 17px; }
.pgallery { columns: 4 220px; column-gap: 18px; }
.pgallery__card { position: relative; display: block; width: 100%; margin: 0 0 18px; border: 0; padding: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; break-inside: avoid; background: #eef4f0; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.pgallery__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pgallery__card:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.pgallery__img { display: block; width: 100%; height: auto; }
.pgallery__icon { display: grid; place-content: center; aspect-ratio: 4 / 3; color: #fff; }
.pgallery__icon i { width: 54px; height: 54px; opacity: .92; }
.pgallery__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding: 14px; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.62)); opacity: 0; transition: opacity .3s var(--ease); }
.pgallery__card:hover .pgallery__overlay, .pgallery__card:focus-visible .pgallery__overlay { opacity: 1; }
.pgallery__cap { color: #fff; font-weight: 600; font-size: .9rem; line-height: 1.3; }
.pgallery__zoom { flex: 0 0 auto; display: grid; place-content: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(4px); }
.pgallery__zoom i { width: 17px; height: 17px; }

.pg-modal { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 40px); }
.pg-modal.is-open { display: flex; }
.pg-modal__backdrop { position: absolute; inset: 0; background: rgba(8, 24, 16, .72); backdrop-filter: blur(6px); }
.pg-modal__panel { position: relative; z-index: 1; display: flex; flex-direction: column; width: min(840px, 100%); max-height: 90vh; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); animation: pgIn .26s var(--ease); }
@keyframes pgIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.pg-modal__close { position: absolute; top: 12px; right: 12px; z-index: 2; display: grid; place-content: center; width: 40px; height: 40px; border: 0; border-radius: 12px; background: rgba(255,255,255,.9); color: var(--ink); cursor: pointer; box-shadow: var(--shadow-sm); transition: background .2s, transform .2s; }
.pg-modal__close:hover { background: #fff; transform: rotate(90deg); }
.pg-modal__close i { width: 20px; height: 20px; }
.pg-modal__media { flex: 1 1 auto; min-height: 0; display: flex; align-items: center; justify-content: center; background: #0d1f16; }
.pg-modal__img { display: block; max-width: 100%; max-height: 64vh; object-fit: contain; }
.pg-modal__icon { display: grid; place-content: center; width: 100%; aspect-ratio: 16 / 9; color: #fff; }
.pg-modal__icon i { width: 72px; height: 72px; opacity: .94; }
.pg-modal__info { flex: 0 0 auto; padding: 18px 22px 22px; }
.pg-modal__title { font-family: var(--display); font-size: 1.2rem; color: var(--ink); }
.pg-modal__meta { margin-top: 6px; color: var(--muted); font-size: .9rem; }
@media (max-width: 900px) { .pgallery { columns: 3 180px; } }
@media (max-width: 620px) { .pgallery { columns: 2 140px; column-gap: 12px; } .pgallery__card { margin-bottom: 12px; } }

.impact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.impact__item { padding: 38px 28px; text-align: center; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s; }
.impact__item:hover { transform: translateY(-6px); border-color: var(--green); }
.impact__item strong { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.1rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.impact__item span { color: var(--muted); font-size: .92rem; margin-top: 10px; display: block; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; padding-top: 0; }
.timeline::before { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--border-strong) 12%, var(--border-strong) 88%, transparent); }
.tl-item { position: relative; padding: 38px 6px 0; }
.tl-dot { position: absolute; top: 1px; left: 1px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 2px solid var(--border-strong); box-shadow: 0 0 0 4px var(--bg, #f4faf6); }
.tl-dot--now { background: var(--green); border-color: var(--green); box-shadow: 0 0 0 4px var(--bg, #f4faf6), 0 0 0 9px rgba(34,197,94,.16); animation: ping 2.4s var(--ease) infinite; }
.tl-year { display: inline-flex; align-items: center; font-family: var(--display); font-weight: 700; font-size: .82rem; color: var(--green-d); }
.tl-item h3 { font-family: var(--display); font-size: 1.12rem; margin: 8px 0; color: var(--ink); }
.tl-item p { color: var(--muted); font-size: .88rem; }

.mitra__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.mitra__item { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 120px; padding: 26px 18px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); text-align: center; transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.mitra__item:hover, a.mitra__item:focus-visible { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow); }
.mitra__icon { display: grid; place-content: center; width: 58px; height: 58px; border-radius: 16px; color: var(--green-d); background: var(--bg-mint); transition: transform .35s var(--ease); }
.mitra__icon i { width: 28px; height: 28px; }
.mitra__item:hover .mitra__icon { transform: scale(1.08); }
.mitra__icon--logo { width: auto; max-width: 100%; height: 66px; background: none; border: 0; padding: 0; border-radius: 0; overflow: visible; }
.mitra__icon--logo img { height: 66px; width: auto; max-width: 150px; object-fit: contain; display: block; }
.mitra__name { position: absolute; left: 50%; bottom: calc(100% - 6px); transform: translate(-50%, 6px); background: var(--green-dd); color: #fff; padding: 7px 13px; border-radius: 10px; font-size: .78rem; font-weight: 600; white-space: nowrap; max-width: 240px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s; z-index: 6; }
.mitra__name::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--green-dd); }
.mitra__item:hover .mitra__name, a.mitra__item:focus-visible .mitra__name { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
a.mitra__item { text-decoration: none; }
.mitra__marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.mitra__track { display: flex; width: max-content; animation-name: mitraScroll; animation-timing-function: linear; animation-iteration-count: infinite; will-change: transform; }
.mitra__track .mitra__item { width: 210px; flex: 0 0 auto; margin-right: 16px; }
.mitra__track .mitra__name { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; background: none; color: var(--text); box-shadow: none; padding: 0; margin-top: 12px; white-space: normal; max-width: none; }
.mitra__track .mitra__name::after { display: none; }
.mitra__marquee:hover .mitra__track { animation-play-state: paused; }
@keyframes mitraScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mitra__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; gap: 16px; } }

.cta__card { position: relative; max-width: 880px; margin: 0 auto; text-align: center; padding: clamp(44px, 7vw, 78px) clamp(28px, 5vw, 60px); border-radius: 32px; background: linear-gradient(160deg, var(--green-d), var(--green-dd)); color: #eafff2; overflow: hidden; box-shadow: var(--shadow); }
.cta__glow { position: absolute; top: -45%; left: 50%; transform: translateX(-50%); width: 70%; height: 130%; background: radial-gradient(circle, rgba(101, 163, 13, 0.4), transparent 60%); pointer-events: none; }
.cta__icon { position: relative; display: inline-grid; place-content: center; width: 64px; height: 64px; border-radius: 18px; margin-bottom: 18px; color: #fff; background: rgba(255,255,255,.16); }
.cta__icon i { width: 30px; height: 30px; }
.cta__card h2 { position: relative; font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.5rem); letter-spacing: -.02em; margin-bottom: 16px; color: #fff; }
.cta__card p { position: relative; color: #d6f5e2; max-width: 560px; margin: 0 auto 32px; }
.cta__actions { position: relative; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta .btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.cta .btn--ghost:hover { background: rgba(255,255,255,.2); border-color: #fff; }

.page-hero { position: relative; padding: 140px clamp(18px, 5vw, 24px) 50px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.page-hero__inner { max-width: var(--max); margin: 0 auto; }
.page-hero__title { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--ink); margin: 6px 0 12px; }
.page-hero__lead { color: var(--muted); max-width: 620px; font-size: 1.08rem; }
.cat-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cat-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 100px; background: #fff; border: 1px solid var(--border); font-weight: 600; font-size: .86rem; color: var(--text); transition: all .25s var(--ease); }
.cat-chip span { background: var(--bg-mint); color: var(--green-d); padding: 1px 8px; border-radius: 100px; font-size: .76rem; }
.cat-chip:hover { border-color: var(--green); color: var(--green-d); transform: translateY(-2px); }
.cat-chip.is-active { background: var(--grad); color: #fff; border-color: transparent; }
.cat-chip.is-active span { background: rgba(255,255,255,.25); color: #fff; }
.article__tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); }
.article__tags > svg, .article__tags > i { width: 18px; height: 18px; color: var(--faint); }
.tag-pill { padding: 5px 13px; border-radius: 100px; background: var(--bg-mint); color: var(--green-d); font-size: .82rem; font-weight: 600; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--faint); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: var(--green-d); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { width: 14px; height: 14px; }

.article { max-width: 940px; margin: 0 auto; padding: 0 clamp(18px, 5vw, 24px) clamp(40px, 7vw, 80px); }
.article__header { padding: 130px 0 30px; }
.article__header-inner { max-width: 940px; margin: 0 auto; }
.article__tag { display: inline-block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--green-d); background: var(--bg-mint); padding: 5px 13px; border-radius: 100px; margin-bottom: 16px; }
.article__title { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; font-size: clamp(1.8rem, 4.6vw, 3rem); color: var(--ink); }
.article__title sup { font-size: .52em; font-weight: 700; vertical-align: super; line-height: 0; }
.article__body sup { font-size: .72em; vertical-align: super; line-height: 0; }
.article__meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 18px; color: var(--faint); font-size: .9rem; }
.article__meta span { display: inline-flex; align-items: center; gap: 7px; }
.article__meta i { width: 16px; height: 16px; }
.article__views { padding: 3px 11px; border-radius: 999px; background: #ecfdf3; color: var(--green-d); font-weight: 600; }
.article__views svg { width: 15px; height: 15px; }
.article__share { max-width: 880px; margin: 36px auto 0; padding: 22px 24px; border: 1px solid var(--border); border-radius: 18px; background: linear-gradient(135deg, #f3fbf6, #ffffff); }
.article__share-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.article__share-label svg, .article__share-label i { width: 18px; height: 18px; }
.article__share-links { display: flex; flex-wrap: wrap; gap: 10px; }
.share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 12px; border: 1px solid var(--border); background: #fff; color: var(--ink); font-weight: 600; font-size: .9rem; cursor: pointer; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease; }
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,42,28,.12); }
.share-btn svg, .share-btn i { width: 18px; height: 18px; }
.share-btn--wa:hover { color: #25d366; border-color: #25d366; }
.share-btn--fb:hover { color: #1877f2; border-color: #1877f2; }
.share-btn--tg:hover { color: #229ed9; border-color: #229ed9; }
.share-btn--x:hover { color: #000; border-color: #000; }
.share-btn--copy.is-copied { color: var(--green-d); border-color: var(--green); background: #ecfdf3; }
@media (max-width: 560px) { .article__share-links .share-btn span { display: none; } .share-btn { padding: 12px; } }
.article__cover { max-width: 1080px; margin: 0 auto 36px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.article__cover img { width: 100%; max-height: 480px; object-fit: cover; }
.article__body { font-size: 1.08rem; line-height: 1.85; color: var(--text); }
.article__body::after { content: ""; display: table; clear: both; }
.article__body > *:first-child { margin-top: 0; }
.article__body p { margin: 0 0 20px; }
.article__body > p:first-of-type { font-size: 1.16rem; line-height: 1.75; color: var(--ink); }
.article__body h2 { font-family: var(--display); font-weight: 700; font-size: 1.62rem; color: var(--ink); margin: 40px 0 14px; line-height: 1.25; letter-spacing: -.01em; padding-left: 16px; border-left: 4px solid var(--green); }
.article__body h3 { font-family: var(--display); font-weight: 700; font-size: 1.32rem; color: var(--ink); margin: 32px 0 12px; line-height: 1.3; }
.article__body h4 { font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--ink); margin: 26px 0 10px; }
.article__body ul, .article__body ol { margin: 0 0 22px; padding-left: 4px; list-style: none; }
.article__body ul li, .article__body ol li { position: relative; margin-bottom: 11px; padding-left: 30px; }
.article__body ul li::before { content: ""; position: absolute; left: 6px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(34, 197, 94, .16); }
.article__body ol { counter-reset: gclist; }
.article__body ol li::before { counter-increment: gclist; content: counter(gclist); position: absolute; left: 0; top: .05em; width: 22px; height: 22px; display: grid; place-content: center; border-radius: 50%; background: var(--bg-mint); color: var(--green-d); font-size: .76rem; font-weight: 700; font-family: var(--display); }
.article__body li > ul, .article__body li > ol { margin: 11px 0 0; }
.article__body a { color: var(--green-d); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color .2s; }
.article__body a:hover { color: var(--green); }
.article__body strong, .article__body b { color: var(--ink); font-weight: 700; }
.article__body img { width: 100%; height: auto; border-radius: var(--radius-sm); margin: 26px 0; box-shadow: var(--shadow-sm); }
.article__body figure { margin: 30px 0; }
.article__body figure img { margin: 0; }
.article__body figcaption, .article__body .wp-caption-text { margin-top: 10px; text-align: center; font-size: .88rem; color: var(--faint); font-style: italic; }
.article__body blockquote { position: relative; border-left: 4px solid var(--green); padding: 14px 22px; margin: 28px 0; color: var(--text); background: var(--bg-mint); border-radius: 0 14px 14px 0; }
.article__body blockquote p:last-child { margin-bottom: 0; }
.article__body hr { border: 0; height: 1px; background: var(--border); margin: 38px 0; }
.article__body pre { background: #0f2418; color: #d9f9e6; padding: 18px 20px; border-radius: 14px; overflow-x: auto; margin: 24px 0; font-size: .9rem; line-height: 1.6; }
.article__body code { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: .92em; background: var(--bg-mint); color: var(--green-d); padding: 2px 7px; border-radius: 6px; }
.article__body pre code { background: none; color: inherit; padding: 0; }
.article__body table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: .96rem; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.article__body th, .article__body td { padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.article__body thead th { background: var(--bg-mint); color: var(--ink); font-family: var(--display); font-weight: 700; font-size: .9rem; }
.article__body tbody tr:nth-child(even) { background: var(--bg-soft); }
.article__body tbody tr:last-child td { border-bottom: 0; }
.article__body iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; border-radius: 14px; margin: 26px 0; }
.article__body .aligncenter, .article__body figure.aligncenter { margin-left: auto; margin-right: auto; }
.article__body .alignright { float: right; margin: 8px 0 18px 24px; max-width: 50%; }
.article__body .alignleft { float: left; margin: 8px 24px 18px 0; max-width: 50%; }
.article__footer { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; flex-wrap: wrap; }
.pagination__link { display: grid; place-content: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 12px; background: #fff; border: 1px solid var(--border); font-weight: 600; color: var(--text); transition: all .25s var(--ease); }
.pagination__link:hover { border-color: var(--green); color: var(--green-d); }
.pagination__link.is-active { background: var(--grad); color: #fff; border-color: transparent; }

.empty-state { text-align: center; padding: 80px 20px; color: var(--faint); }
.empty-state i { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--border-strong); }

.error-page { min-height: 80vh; display: grid; place-content: center; text-align: center; padding: 120px 24px 60px; }
.error-page__code { font-family: var(--display); font-weight: 800; font-size: clamp(5rem, 18vw, 11rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.error-page h1 { font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.2rem); color: var(--ink); margin: 10px 0 14px; }
.error-page p { color: var(--muted); max-width: 460px; margin: 0 auto 28px; }
.error-page__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); margin-top: 20px; padding: 60px clamp(18px, 5vw, 54px) 28px; background: var(--bg-soft); }
.footer__top { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: 50px; }
.footer__brand { display: grid; gap: 16px; align-content: start; }
.footer__logos { display: flex; align-items: center; gap: 16px; }
.footer__logos img { height: 50px; width: auto; object-fit: contain; }
.footer__logos .footer__logo--ut { height: 58px; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 340px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { display: grid; place-content: center; width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--border); color: var(--green-d); transition: transform .25s var(--ease), background .25s, color .25s; }
.footer__social a:hover { transform: translateY(-3px); background: var(--grad); color: #fff; border-color: transparent; }
.footer__social i, .footer__social svg { width: 19px; height: 19px; }
.footer__col a svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 30px; }
.footer__col h4 { font-family: var(--display); font-size: .95rem; margin-bottom: 16px; color: var(--ink); }
.footer__col a { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .9rem; padding: 5px 0; transition: color .25s, transform .25s; }
.footer__col a i { width: 16px; height: 16px; }
.footer__col a:hover { color: var(--green-d); transform: translateX(4px); }
.footer__bottom { max-width: var(--max); margin: 38px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: var(--faint); }

.pillar { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-content: start; }
.pillar__icon { grid-row: 1; grid-column: 1; margin: 0; }
.pillar h3 { grid-column: 2; align-self: center; margin: 0; }
.pillar p { grid-column: 1 / -1; margin-top: 14px; }
.pillar__tag { grid-column: 1 / -1; justify-self: start; }
.pillar__num { z-index: 1; }
.iot__feature { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; }
.iot__feature > i, .iot__feature > svg { width: 26px; height: 26px; color: var(--green-d); margin: 0; }
.iot__feature h4 { margin: 0; grid-column: 2; }
.iot__feature p { grid-column: 1 / -1; margin-top: 8px; }

.hero__lead, .gogreen__lead, .article__body p, .page-hero__lead { text-align: justify; text-justify: inter-word; }
.section__sub { text-align: justify; text-justify: inter-word; }
.section__head--center .section__sub { text-align-last: center; }
.pillar p, .iot__feature p, .step p, .news__excerpt { text-align: justify; text-justify: inter-word; }

[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

.nav__backdrop { position: fixed; inset: 0; z-index: 880; background: rgba(8, 30, 18, 0.45); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.nav__backdrop.is-open { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }

.lightbox { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(6, 18, 12, 0.86); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: 14px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); transform: scale(.94); transition: transform .35s var(--ease); object-fit: contain; background: #fff; }
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #eafff2; font-size: .92rem; padding: 0 24px; }
.lightbox__close { position: absolute; top: 20px; right: 22px; width: 46px; height: 46px; display: grid; place-content: center; border-radius: 12px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; cursor: pointer; transition: background .2s; }
.lightbox__close:hover { background: rgba(255,255,255,.24); }
.lightbox__close svg { width: 22px; height: 22px; }
[data-lightbox], .article__cover img, .article__body img, .gallery-img { cursor: zoom-in; }

body.no-scroll { overflow: hidden; }
.welcome { position: fixed; inset: 0; z-index: 1300; display: grid; place-items: center; padding: 22px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.welcome.is-open { opacity: 1; visibility: visible; }
.welcome__backdrop { position: absolute; inset: 0; background: rgba(6, 30, 18, 0.62); backdrop-filter: blur(5px); }
.welcome__card { position: relative; z-index: 1; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; background: #fff; border-radius: 26px; padding: 38px 36px 30px; box-shadow: 0 40px 100px -30px rgba(6, 40, 22, .55); transform: scale(.93) translateY(14px); transition: transform .35s var(--ease); text-align: center; }
.welcome.is-open .welcome__card { transform: none; }
.welcome__card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 140px; border-radius: 26px 26px 0 0; background: radial-gradient(420px 140px at 50% -30%, rgba(34, 197, 94, .18), transparent 70%); pointer-events: none; }
.welcome__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px; background: #ecfdf3; color: var(--green-d); font-weight: 700; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid #c7ecd4; }
.welcome__badge svg, .welcome__badge i { width: 15px; height: 15px; }
.welcome__head h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.55rem, 4vw, 2rem); margin: 16px 0 8px; letter-spacing: -.02em; background-image: linear-gradient(100deg, transparent 41%, rgba(255, 255, 255, .4) 50%, transparent 59%), linear-gradient(95deg, #15803d, #22c55e 45%, #34d399 55%, #15803d); background-size: 250% 100%, 100% 100%; background-repeat: no-repeat; background-position: -60% 0, 0 0; -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; animation: welcomeShine 5s ease-in-out infinite; }
@keyframes welcomeShine { 0% { background-position: -60% 0, 0 0; } 55%, 100% { background-position: 160% 0, 0 0; } }
.welcome__head > p { color: var(--muted); font-size: .98rem; max-width: 42ch; margin: 0 auto; line-height: 1.6; }
.welcome__stage { margin: 26px 0 6px; min-height: 188px; display: grid; align-items: start; }
.welcome__step { display: none; grid-column: 1; grid-row: 1; }
.welcome__step.is-active { display: block; animation: welcomeIn .45s var(--ease); }
@keyframes welcomeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.welcome__air { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; pointer-events: none; z-index: 0; }
.welcome__p { position: absolute; bottom: -16px; width: 9px; height: 9px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(168, 247, 200, .95), rgba(34, 197, 94, .35) 60%, transparent 75%); opacity: 0; animation: welcomeFloat 10s linear infinite; will-change: transform, opacity; }
.welcome__p--leaf { border-radius: 0 100% 0 100%; background: linear-gradient(135deg, #6ee7a8, #15803d); }
.welcome__p:nth-child(1) { left: 8%; animation-duration: 10s; animation-delay: 0s; }
.welcome__p:nth-child(2) { left: 20%; width: 6px; height: 6px; animation-duration: 8s; animation-delay: 1.2s; }
.welcome__p:nth-child(3) { left: 34%; animation-duration: 11.5s; animation-delay: 2.6s; }
.welcome__p:nth-child(4) { left: 47%; width: 7px; height: 7px; animation-duration: 9s; animation-delay: .6s; }
.welcome__p:nth-child(5) { left: 59%; width: 5px; height: 5px; animation-duration: 12s; animation-delay: 3.3s; }
.welcome__p:nth-child(6) { left: 71%; animation-duration: 8.6s; animation-delay: 1.8s; }
.welcome__p:nth-child(7) { left: 83%; width: 6px; height: 6px; animation-duration: 10.6s; animation-delay: .3s; }
.welcome__p:nth-child(8) { left: 92%; width: 8px; height: 8px; animation-duration: 9.4s; animation-delay: 2.2s; }
.welcome__p:nth-child(9) { left: 14%; animation-duration: 11.8s; animation-delay: 4s; }
@keyframes welcomeFloat {
  0% { transform: translateY(0) translateX(0) rotate(0deg) scale(.5); opacity: 0; }
  12% { opacity: .9; }
  50% { transform: translateY(-230px) translateX(24px) rotate(140deg) scale(1); opacity: .7; }
  88% { opacity: .45; }
  100% { transform: translateY(-460px) translateX(-12px) rotate(250deg) scale(1.08); opacity: 0; }
}
.welcome__head, .welcome__stage, .welcome__dots, .welcome__nav { position: relative; z-index: 1; }
.welcome__icon { display: inline-grid; place-content: center; width: 72px; height: 72px; border-radius: 22px; background: var(--grad); color: #fff; box-shadow: 0 14px 30px -8px rgba(21, 128, 61, .5); margin-bottom: 16px; animation: welcomeBreathe 3.2s var(--ease) infinite; }
@keyframes welcomeBreathe { 0%, 100% { box-shadow: 0 14px 30px -8px rgba(21, 128, 61, .5); transform: translateY(0); } 50% { box-shadow: 0 18px 40px -6px rgba(21, 128, 61, .65), 0 0 0 9px rgba(34, 197, 94, .08); transform: translateY(-3px); } }
.welcome__icon svg, .welcome__icon i { width: 34px; height: 34px; }
.welcome__step h3 { font-family: var(--display); font-weight: 700; font-size: 1.32rem; color: var(--ink); margin-bottom: 10px; }
.welcome__step p { color: var(--muted); font-size: 1rem; line-height: 1.65; max-width: 44ch; margin: 0 auto; }
.welcome__dots { display: flex; justify-content: center; gap: 8px; margin: 8px 0 24px; }
.welcome__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--border-strong); cursor: pointer; transition: width .3s var(--ease), background .3s; }
.welcome__dot.is-active { width: 26px; background: var(--green); }
.welcome__remember { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 9px; margin: 0 0 16px; font-size: .88rem; color: var(--muted); cursor: pointer; user-select: none; }
.welcome__remember input { width: 17px; height: 17px; accent-color: var(--green); cursor: pointer; flex: 0 0 auto; }
.welcome__nav { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 48px; }
.welcome__nav::before { content: ""; flex: 0 0 32px; }
.welcome__nav-btns { display: inline-flex; align-items: center; gap: 12px; }
.btn[hidden] { display: none; }
.welcome__credit { position: static; flex: 0 0 auto; }
.welcome__info { width: 32px; height: 32px; display: grid; place-content: center; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--muted); cursor: pointer; transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease); }
.welcome__credit:hover .welcome__info, .welcome__credit:focus-within .welcome__info { color: var(--green-d); border-color: var(--green); background: var(--bg-mint); }
.welcome__info i, .welcome__info svg { width: 16px; height: 16px; }
.welcome__about { position: absolute; bottom: calc(100% + 12px); left: 50%; z-index: 7; width: min(290px, 78vw); text-align: left; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 15px 18px; display: grid; gap: 5px; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(6px); transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s; pointer-events: none; }
.welcome__credit:hover .welcome__about, .welcome__credit:focus-within .welcome__about { opacity: 1; visibility: visible; transform: translateX(-50%); pointer-events: auto; }
.welcome__about-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-d); }
.welcome__about-eyebrow i, .welcome__about-eyebrow svg { width: 14px; height: 14px; }
.welcome__about-name { font-family: var(--display); font-size: 1.02rem; color: var(--ink); line-height: 1.3; }
.welcome__about-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.welcome__about-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 7px; font-size: .85rem; font-weight: 700; color: var(--green-d); text-decoration: none; transition: gap .2s var(--ease), color .2s var(--ease); }
.welcome__about-link:hover { color: var(--green); gap: 9px; }
.welcome__about-link i, .welcome__about-link svg { width: 15px; height: 15px; }
@media (prefers-reduced-motion: reduce) {
  .welcome__head h2 { animation: none; }
  .welcome__p { display: none; }
  .welcome__icon { animation: none; }
}
@media (max-width: 560px) {
  .welcome__card { padding: 30px 18px 22px; border-radius: 22px; }
  .welcome__stage { min-height: 210px; }
  .welcome__nav { gap: 12px; }
  .welcome__nav-btns { gap: 10px; }
  .welcome__nav .btn { padding: 11px 14px; }
}

.gc-grid { display: grid; gap: 20px; margin: 22px 0; }
.gc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.gc-card h3 { font-family: var(--display); color: var(--ink); margin-bottom: 8px; }
.gc-cta { background: linear-gradient(160deg, var(--green-d), var(--green-dd)); color: #eafff2; border-radius: var(--radius); padding: 32px; text-align: center; margin: 24px 0; }
.gc-cta h3 { color: #fff; font-family: var(--display); font-size: 1.5rem; margin-bottom: 10px; }
.gc-cta p { color: #d6f5e2; margin-bottom: 18px; }
.gc-cta strong, .gc-cta b { color: #fff; }
.gc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 12px; background: var(--grad); color: #fff !important; font-weight: 700; text-decoration: none !important; box-shadow: var(--shadow-green); }
.gc-cta .gc-btn { background: #fff; color: var(--green-d) !important; }
.gc-alert { display: flex; gap: 12px; padding: 16px 18px; border-radius: 12px; background: var(--bg-mint); border: 1px solid var(--border-strong); color: var(--green-dd); margin: 20px 0; }
.gc-quote { border-left: 4px solid var(--green); padding: 8px 22px; margin: 22px 0; font-style: italic; color: var(--muted); background: var(--bg-mint); border-radius: 0 12px 12px 0; }
.gc-faq { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.gc-faq__item { border: 1px solid var(--border); border-radius: 14px; background: #fff; overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s; }
.gc-faq__item[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.gc-faq__q { position: relative; display: block; padding: 16px 50px 16px 18px; font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink); cursor: pointer; list-style: none; transition: color .2s; }
.gc-faq__q::-webkit-details-marker { display: none; }
.gc-faq__q:hover { color: var(--green-d); }
.gc-faq__q::after { content: ""; position: absolute; right: 20px; top: 50%; width: 9px; height: 9px; border-right: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: translateY(-65%) rotate(45deg); transition: transform .25s var(--ease); }
.gc-faq__item[open] .gc-faq__q::after { transform: translateY(-35%) rotate(-135deg); }
.gc-faq__a { padding: 0 18px 18px; color: var(--text); animation: gcFaqIn .25s var(--ease); }
.gc-faq__a > *:last-child { margin-bottom: 0; }
@keyframes gcFaqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.gc-media { width: 100%; border-radius: var(--radius); overflow: hidden; margin: 22px 0; }
.gc-media img { width: 100%; display: block; }
.gc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; margin: 24px 0; }
.gc-divider { height: 1px; background: var(--border); border: 0; margin: 30px 0; }
.gc-table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: .95rem; }
.gc-table th, .gc-table td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; }
.gc-table th { background: var(--bg-mint); color: var(--green-dd); font-weight: 700; }
.gc-table tr:nth-child(even) td { background: var(--bg-soft); }
.gc-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin: 22px 0; background: var(--bg-mint); }
.gc-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gc-pdf { margin: 24px 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.gc-pdf__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; background: var(--bg-mint); border-bottom: 1px solid var(--border); }
.gc-pdf__title { display: inline-flex; align-items: center; gap: 8px; min-width: 0; font-weight: 700; font-size: .92rem; color: var(--green-dd); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gc-pdf__title svg, .gc-pdf__title i { width: 18px; height: 18px; flex: 0 0 auto; }
.gc-pdf__full { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; padding: 8px 15px; border-radius: 10px; background: var(--green-d); color: #fff !important; font-weight: 600; font-size: .82rem; text-decoration: none !important; transition: background .2s; }
.gc-pdf__full:hover { background: var(--green-dd); }
.gc-pdf__frame { position: relative; width: 100%; height: 600px; background: #525659; }
.gc-pdf__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gc-pdf--soon { box-shadow: none; }
.gc-pdf__soon { display: flex; align-items: center; gap: 14px; padding: 22px; background: var(--bg-soft); color: var(--muted); }
.gc-pdf__soon i, .gc-pdf__soon svg { width: 30px; height: 30px; flex: 0 0 auto; color: var(--faint); }
.gc-pdf__soon strong { display: block; color: var(--ink); margin-bottom: 2px; }
.gc-pdf__soon span { font-size: .92rem; }
.pdfm { position: fixed; inset: 0; z-index: 1300; display: none; align-items: center; justify-content: center; padding: clamp(10px, 3vw, 32px); }
.pdfm.is-open { display: flex; }
.pdfm__backdrop { position: absolute; inset: 0; background: rgba(8, 24, 16, .82); backdrop-filter: blur(4px); }
.pdfm__panel { position: relative; z-index: 1; display: flex; flex-direction: column; width: min(1000px, 100%); height: 90vh; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); }
.pdfm__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.pdfm__title { font-weight: 700; color: var(--ink); font-size: .95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pdfm__actions { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.pdfm__open { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 10px; background: var(--green-d); color: #fff !important; font-weight: 600; font-size: .82rem; text-decoration: none !important; }
.pdfm__open:hover { background: var(--green-dd); }
.pdfm__close { display: grid; place-content: center; width: 38px; height: 38px; border: 1px solid var(--border-2); border-radius: 11px; background: #fff; color: var(--ink); font-size: 1.4rem; line-height: 1; cursor: pointer; }
.pdfm__close:hover { background: var(--bg-mint); }
.pdfm__frame { flex: 1 1 auto; min-height: 0; background: #525659; }
.pdfm__frame iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) { .gc-pdf__frame { height: 440px; } }
.gc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.gc-stats--4 { grid-template-columns: repeat(4, 1fr); }
.gc-stat { position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 22px; border-radius: 18px; background: linear-gradient(155deg, var(--green-d), var(--green-dd)); color: #eafff2; box-shadow: 0 18px 40px -22px rgba(16, 70, 44, .55); transition: transform .3s var(--ease), box-shadow .3s; }
.gc-stat:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -24px rgba(16, 70, 44, .6); }
.gc-stat::after { content: ""; position: absolute; right: -26px; bottom: -26px; width: 104px; height: 104px; border-radius: 50%; background: rgba(255, 255, 255, .1); }
.gc-stat--teal { background: linear-gradient(155deg, #0d9488, #0f5132); }
.gc-stat--amber { background: linear-gradient(155deg, #c77f00, #15803d); }
.gc-stat__icon { display: grid; place-content: center; width: 44px; height: 44px; border-radius: 13px; background: rgba(255, 255, 255, .18); color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.gc-stat__icon i { width: 22px; height: 22px; }
.gc-stat__eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .82); position: relative; z-index: 1; }
.gc-stat__num { font-family: var(--display); font-weight: 800; font-size: 2.8rem; line-height: 1.05; color: #fff; letter-spacing: -.02em; margin-top: 2px; position: relative; z-index: 1; }
.gc-stat__num--text { font-size: 1.7rem; line-height: 1.15; }
.gc-stat__label { margin-top: 8px; font-size: .9rem; color: #d6f5e2; line-height: 1.45; position: relative; z-index: 1; }
.gc-sdg { display: grid; gap: 12px; margin: 22px 0; }
.gc-sdg__item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border-radius: 14px; background: #fff; border: 1px solid var(--border); border-left: 5px solid var(--c, var(--green)); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.gc-sdg__item:hover { transform: translateX(3px); }
.gc-sdg__no { flex: 0 0 auto; display: grid; place-content: center; width: 48px; height: 48px; border-radius: 12px; background: var(--c, var(--green)); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.35rem; }
.gc-sdg__tx strong { display: block; color: var(--ink); margin-bottom: 2px; }
.gc-sdg__tx span { color: var(--muted); font-size: .95rem; line-height: 1.5; }
.gc-team { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 14px; margin: 24px 0; }
.gc-member { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px; padding: 20px 14px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.gc-member:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.gc-member__photo { display: grid; place-content: center; width: 78px; height: 78px; border-radius: 50%; overflow: hidden; background: var(--bg-mint); color: var(--green-d); margin-bottom: 10px; flex-shrink: 0; }
.gc-member__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gc-member__photo i, .gc-member__photo [data-lucide] { width: 32px; height: 32px; }
.gc-member__name { font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--ink); line-height: 1.3; }
.gc-member__role { font-size: .8rem; font-weight: 600; color: var(--green-d); margin-top: 2px; }
.gc-member__unit { font-size: .77rem; color: var(--muted); margin-top: 1px; }
.gc-member--lead { background: linear-gradient(165deg, #f4fbf6, #fff); }
.gc-member--lead .gc-member__photo { background: var(--grad); color: #fff; }
.gc-member--me { border-color: var(--green); box-shadow: 0 0 0 2px rgba(22, 163, 74, .14), var(--shadow-sm); }
@media (max-width: 700px) { .gc-grid--2, .gc-grid--3, .gc-cols, .gc-stats { grid-template-columns: 1fr; } .gc-team { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); } }
@media (min-width: 701px) and (max-width: 980px) { .gc-stats--4 { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 1080px) {
  .nav__links { gap: 0; }
  .nav__link { padding: 9px 10px; font-size: .86rem; }
}
@media (max-width: 980px) {
  .hero__globe { display: none; }
  .hero { min-height: auto; }
  .hero__scroll { left: auto; right: 16px; bottom: 16px; transform: none; }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: auto; left: auto;
    height: 100vh; height: 100dvh; width: min(340px, 86vw); flex-direction: column;
    align-items: stretch; justify-content: flex-start; gap: 4px; padding: 84px 20px 30px;
    background: #fff; border-left: 1px solid var(--border); box-shadow: var(--shadow);
    transform: translateX(105%); transition: transform .45s var(--ease);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .nav__links.is-open { transform: none; }
  .nav__item { width: 100%; }
  .nav__link { width: 100%; justify-content: space-between; padding: 13px 16px; font-size: 1rem; }
  .nav__item.is-open .nav__caret { transform: rotate(180deg); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 6px 12px; min-width: 0; display: none; }
  .nav__item.is-open .dropdown { display: grid; }
  .nav__cta { margin: 10px 0 0; justify-content: center; }
  .nav__burger { display: flex; z-index: 901; }
  .gogreen__grid, .smart__layout { grid-template-columns: 1fr; }
  .gogreen__programs { grid-template-columns: repeat(2, 1fr); }
  .indikator__grid, .iot__features, .impact__grid, .press__grid, .press__grid--all { grid-template-columns: repeat(2, 1fr); }
  .news--featured { grid-column: span 2; flex-direction: column; }
  .news--featured .news__media { flex: none; }
  .news--featured .news__thumb, .news--featured .news__img { height: 200px; min-height: 0; }
  .galeri__grid { grid-template-columns: repeat(2, 1fr); }
  .galeri__item--wide { grid-column: span 2; }
  .galeri__item--tall { grid-row: span 1; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .timeline::before { display: none; }
  .tl-dot { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .brand__logo { height: 40px; } .brand__logo--ut { height: 36px; }
}
@media (max-width: 600px) {
  .brand__logo { height: 32px; } .brand__logo--ut { display: none; } .brand__divider { display: none; }
  .brand { gap: 10px; }
  .brand__text-top { font-size: .9rem; }
  .brand__text-sub { font-size: .68rem; letter-spacing: normal; }
  .nav { padding: 10px 16px; }
  .indikator__grid, .iot__features, .impact__grid, .press__grid, .press__grid--all, .gogreen__programs, .timeline, .mitra__grid { grid-template-columns: 1fr; }
  .news--featured { grid-column: span 1; }
  .galeri__grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .galeri__item--wide { grid-column: span 1; }
  .dashboard__row { grid-template-columns: 1fr; }
  .showcase__frame { aspect-ratio: auto; min-height: 440px; }
  .showcase__placeholder { padding: 26px 20px; }
  .hero { padding-top: 120px; min-height: auto; }
  .hero__globe { display: none; }
  .globe-label { display: none; }
  .hero::before { background: linear-gradient(0deg, var(--bg) 6%, rgba(255,255,255,.7) 48%, rgba(255,255,255,.55) 100%); }
  .hero__stat span { max-width: none; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .chip { display: none; }
  .section__head--between { flex-direction: column; align-items: flex-start; }
  .article__meta { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
