*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; }
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #1A1A1A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { display:block; width:100%; object-fit:cover; }

:root {
  --red:    #C0392B;
  --red-d:  #962015;
  --blue:   #1A3A6B;
  --navy:   #0C1B33;
  --ink:    #111111;
  --muted:  #555555;
  --subtle: #6B6B6B;
  --warm:   #F7F5F3;
  --border: #E5E5E5;
  --line:   #CFCBC7;
  --control:#8E8E8E;
  --white:  #FFFFFF;
}

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display:flex; align-items:center; gap:10px; }

.nav-links { display:flex; align-items:center; gap:0; }
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--subtle);
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--red); }

.nav-cta {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  padding: 0 22px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.nav-cta:hover { background: transparent; color: var(--red); }

.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.nav-toggle span { width:22px; height:1.5px; background:var(--ink); transition:all .2s; }

/* ── HERO (full-bleed photo) ─────────────────────────── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1624295351253-818bae679c9d?w=1800&q=85&auto=format&fit=crop&crop=center');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(.55) saturate(.8);
}
/* red gradient overlay — ground the brand */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,27,51,.94) 0%,
    rgba(12,27,51,.74) 45%,
    rgba(12,27,51,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 72px;
  width: 100%;
}
.hero-kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}
.hero-title {
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.5px;
  max-width: 820px;
  margin-bottom: 28px;
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-btns { display:flex; gap:10px; }
.btn-red {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .15s, color .15s;
}
.btn-red:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-white {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.85);
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  transition: color .15s, border-color .15s;
}
.btn-outline-white:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 48px;
  z-index: 2;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.4);
}

/* ── Chapter wrapper ─────────────────────────────────── */
.chapter { padding: 100px 0; }
.chapter + .chapter { border-top: 1px solid var(--border); }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* Chapter label */
.ch-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--red);
  margin-bottom: 20px;
}

/* Lead text — Palantir writes in large paragraph prose */
.lead {
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -.2px;
  margin-bottom: 36px;
  max-width: 780px;
}
.lead strong { font-weight: 700; color: var(--ink); }
.lead em { font-style: italic; color: var(--red); }

.body-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.95;
  max-width: 660px;
}
.body-text + .body-text { margin-top: 20px; }
.body-text strong { font-weight: 600; color: var(--ink); }

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 28px;
  margin: 40px 0;
  max-width: 580px;
}
.pull-quote p {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.55;
  font-style: italic;
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--subtle);
  font-style: normal;
}

/* ── Two-column narrative ────────────────────────────── */
.narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── Full-bleed photo section ────────────────────────── */
.photo-break {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.photo-break img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(.75);
}
/* scrim supaya teks tetap terbaca di atas foto yang terang */
.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(12,27,51,.92) 0%,
    rgba(12,27,51,.62) 45%,
    rgba(12,27,51,.15) 100%
  );
}
.photo-break-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.photo-break-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}
.photo-break-text {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 680px;
}
.photo-break-text em { color: var(--red); font-style: normal; }

/* ── Incident callout ────────────────────────────────── */
.incident {
  background: #FDF2F1;
  border: 1px solid rgba(192,57,43,.2);
  border-left: 4px solid var(--red);
  padding: 32px 36px;
  margin: 48px 0;
  max-width: 760px;
}
.incident-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.incident-tag::before { content:''; width:5px; height:5px; background:var(--red); flex-shrink:0; animation:pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.2}
}
.incident-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.incident-body {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.85;
}

/* ── Sovereignty section (dark blue) ────────────────── */
.sovereignty {
  background: var(--navy);
  padding: 100px 0;
}
.sovereignty .lead {
  color: #fff;
}
.sovereignty .lead em { color: var(--red); }
.sovereignty .body-text { color: rgba(255,255,255,.62); }
.sovereignty .body-text strong { color: rgba(255,255,255,.92); }
.sovereignty .pull-quote p { color: rgba(255,255,255,.85); }
.sovereignty .pull-quote { border-left-color: var(--red); }
.sovereignty .pull-quote cite { color: rgba(255,255,255,.5); }
.sovereignty .ch-label { color: rgba(255,255,255,.5); }

/* Three principles */
.principles {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}
.principle {
  padding: 36px 32px;
  background: var(--navy);
}
.principle-num {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 16px;
}
.principle-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.principle-body {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  line-height: 1.85;
}/* ── Roadmap (timeline style) ────────────────────────── */
.roadmap-section { background: var(--warm); }
.timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.timeline-item {
  padding: 0 0 48px 36px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--red);
  border: 2px solid #fff;
  outline: 1px solid var(--red);
}
.timeline-item.future::before { background: var(--control); outline-color: var(--control); }
.timeline-phase {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: 6px;
}
.timeline-item.future .timeline-phase { color: var(--subtle); }.timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.timeline-item.future .timeline-title { color: var(--muted); }
.timeline-body {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px;
}

/* ── Access / CTA ────────────────────────────────────── */
.access-section {
  background: #fff;
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.access-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.access-lead {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.3px;
}
.access-lead em { color: var(--red); font-style: normal; }
.access-body {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 20px;
}
.access-note {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--subtle);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Form */
.form-panel {
  border: 1px solid var(--border);
}
.form-header {
  background: var(--ink);
  padding: 14px 24px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.62);
}
.form-body { padding: 28px 24px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--subtle);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  border: 1px solid var(--control);
  background: #fff;
  color: var(--ink);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(192,57,43,.15);
}
.field input::placeholder { color: #767676; opacity: 1; }
.field input.invalid, .field select.invalid { border-color: var(--red); background: #FDF2F1; }
.field select option { background: #fff; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.submit-btn {
  width: 100%;
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 13px;
  cursor: pointer;
  margin-top: 8px;
  transition: background .15s, color .15s;
}
.submit-btn:hover { background: transparent; color: var(--red); }
.form-note {
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  font-size: 9px;
  font-weight: 400;
  color: var(--subtle);
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-status {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  min-height: 1px;
}
.form-status.error { color: var(--red); }
.form-status.ok    { color: #1E6B3A; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-bottom: 40px;
}
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.62);
  margin-bottom: 9px;
  transition: color .15s;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
}

/* ── Scroll reveal ───────────────────────────────────── */
/* Tanpa JavaScript konten tetap tampil. Kelas .js-anim dipasang
   oleh script.js, jadi penyembunyian hanya terjadi bila animasi siap. */
.js-anim .reveal { opacity:0; }
.reveal.visible { opacity:1; transform:none; }

/* ── Lenis smooth scroll ── */
html.lenis, html.lenis body { height:auto; }
.lenis.lenis-smooth { scroll-behavior:auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior:contain; }
.lenis.lenis-stopped { overflow:hidden; }

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

/* ══ WIDGET 1: Reading Progress Bar ══════════════════ */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--red);
  z-index: 9999;
  transition: width .1s linear;
}

/* ══ WIDGET 2: Network Diagram ═══════════════════════ */
.network-section {
  background: #F9F8F7;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  overflow: hidden;
}
.network-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.network-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.network-title em { color: var(--red); font-style: normal; }
.network-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.75;
  text-align: right;
}
#network-canvas {
  display: block;
  width: 100%;
  height: 340px;
}

/* ══ WIDGET 3: Particle Background (Sovereignty) ══════ */
.sovereignty { position: relative; overflow: hidden; }
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .35;
}
.sovereignty > .wrap { position: relative; z-index: 1; }
.sovereignty > .principles { position: relative; z-index: 1; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .narrative-grid { grid-template-columns: 1fr; gap: 40px; }
  .principles { grid-template-columns: 1fr; }
  .access-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .network-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .network-sub { text-align: left; max-width: 560px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display:none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: #fff; z-index: 199;
    border-bottom: 2px solid var(--red);
    padding: 0;
  }
  .nav-links.open a { height: 48px; padding: 0 24px; border-bottom: 1px solid var(--border); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 24px 56px; }
  .hero-title { font-size: 34px; }
  .hero-scroll { display: none; }
  .chapter { padding: 64px 0; }
  .lead { font-size: 20px; }
  .photo-break { height: 380px; }
  .photo-break-content { padding: 36px 24px; }
  .photo-break-text { font-size: 22px; }
  .sovereignty { padding: 64px 0; }
  .timeline { padding-left: 16px; }
  .timeline-item { padding-left: 24px; }
  .access-inner { padding: 0 24px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 24px 32px; }
  .footer-bottom { padding: 20px 24px 0; flex-direction: column; gap: 10px; }
}/* ══════════════════════════════════════════════════
   WARISAN PERADABAN
══════════════════════════════════════════════════ */.warisan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.warisan-tile {
  background: #fff;
  padding: 32px 22px 28px;
  display: flex;
  flex-direction: column;
  transition: background .15s;
  position: relative;
}
.warisan-tile:hover { background: var(--warm); }
.warisan-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.warisan-tile.t1::before { background: var(--red); }
.warisan-tile.t2::before { background: #8B1A00; }
.warisan-tile.t3::before { background: #C9962A; }
.warisan-tile.t4::before { background: var(--blue); }
.warisan-tile.t5::before { background: #255686; }

.warisan-era {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--subtle);
  margin-bottom: 8px;
}
.warisan-kingdom {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.warisan-rule {
  width: 24px; height: 2px;
  background: var(--red);
  margin-bottom: 12px;
}
.warisan-tile.t2 .warisan-rule { background: #8B1A00; }
.warisan-tile.t3 .warisan-rule { background: #C9962A; }
.warisan-tile.t4 .warisan-rule { background: var(--blue); }
.warisan-tile.t5 .warisan-rule { background: #255686; }

.warisan-legacy {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}/* ══════════════════════════════════════════════════
   PETA INDONESIA
══════════════════════════════════════════════════ */#indonesia-map { z-index: 2; }

/* ══════════════════════════════════════════════════
   MENGAPA SEKARANG
══════════════════════════════════════════════════ */
.sekarang-section {
  background: var(--warm);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.sekarang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.sekarang-tile {
  background: #fff;
  padding: 32px 28px;
  position: relative;
}
.sekarang-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.sekarang-icon {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 3px solid var(--red);
  line-height: 1.4;
}
.sekarang-topic {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--red);
  margin-bottom: 8px;
}
.sekarang-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.sekarang-body {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
}
.sekarang-body strong { font-weight: 700; color: var(--ink); }

.sekarang-verdict {
  margin-top: 48px;
  background: var(--red);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.sekarang-verdict-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  flex: 1;
}
.sekarang-verdict-text em {
  font-style: italic;
  color: rgba(255,255,255,.9);
}/* ══════════════════════════════════════════════════
   INTELLIGENCE BRIEF SECTION
══════════════════════════════════════════════════ */
/* Grid */
.intel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}/* Card top row *//* Card body *//* Card footer *//* ── Drawer ──────────────────────────────────────── */.drawer.open { transform: translateX(0); }/* Drawer content blocks *//* GARUDATA response block */
.d-response {
  background: #F0F4FA;
  border: 1px solid rgba(26,58,107,.15);
  border-left: 4px solid var(--blue);
  padding: 20px 22px;
  margin-top: 8px;
}
.d-response-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.d-response-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  flex-shrink: 0;
}
.d-response-body {
  font-size: 13px;
  font-weight: 400;
  color: #2A4A7A;
  line-height: 1.8;
}
.d-response-body strong { font-weight: 700; }

/* Source tag in drawer */
.d-source-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.d-source-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--subtle);
  border: 1px solid var(--line);
  padding: 4px 10px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — komponen yang didefinisikan di bawah
   blok media query utama, jadi harus dioverride di sini
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .warisan-grid  { grid-template-columns: repeat(2, 1fr); }
  .sekarang-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .intel-grid { grid-template-columns: 1fr; }
  .sekarang-section { padding: 64px 0; }
  .warisan-grid  { grid-template-columns: 1fr; }
  .sekarang-grid { grid-template-columns: 1fr; }
  .sekarang-verdict { padding: 24px; gap: 20px; }
  .sekarang-verdict-text { font-size: 15px; }
}
/* ══════════════════════════════════════════════════
   KOMPONEN GRAFIK — tambahan untuk draft 2026
   Blok terpisah. Stylesheet asli di atas tidak diubah.
   Hanya memakai token warna yang sudah ada.
══════════════════════════════════════════════════ */

/* ── Angka jangkauan ──────────────────────────────── */

.reach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px; }
.reach-item { background: #fff; padding: 44px 28px; text-align: center; }
.reach-num { font-size: 48px; font-weight: 800; color: var(--red); line-height: 1; letter-spacing: -.03em; margin-bottom: 12px; }
.reach-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--subtle); }

/* ── Model koordinasi (dua panel SVG) ──────────────── */
.coor-controls { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.coor-controls label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--subtle); }
.coor-controls input[type=range] { width: 210px; accent-color: var(--red); }
.coor-val { font-size: 17px; font-weight: 800; color: var(--ink); min-width: 26px; }
.coor-panes { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 40px; }
.coor-pane { background: #fff; padding: 28px 26px 30px; }
.coor-chip { display: inline-block; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; padding: 4px 10px; border: 1px solid; margin-bottom: 18px; }
.chip-mesh { color: var(--red);  border-color: rgba(192,57,43,.3);  background: rgba(192,57,43,.05); }
.chip-hub  { color: var(--blue); border-color: rgba(26,58,107,.25); background: rgba(26,58,107,.04); }
.coor-svg { width: 100%; max-width: 320px; margin: 0 auto; display: block; }
.coor-svg .edge { stroke-width: 1; fill: none; }
.coor-svg .edge-mesh { stroke: rgba(192,57,43,.4); }
.coor-svg .edge-hub  { stroke: rgba(26,58,107,.45); }
.coor-svg .nd { fill: #fff; stroke: var(--control); stroke-width: 1.5; }
.coor-svg .nd-core { fill: var(--red); }
.coor-svg .nd-label { fill: #fff; font-size: 13px; font-weight: 800; font-family: 'Open Sans', sans-serif; }
.coor-count { display: flex; align-items: baseline; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.coor-count b { font-size: 34px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.count-mesh b { color: var(--red); }
.count-hub b  { color: var(--blue); }
.coor-count span { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--subtle); }
.coor-sub { font-size: 12.5px; color: var(--muted); line-height: 1.8; margin-top: 14px; }

/* ── Ontology core (radial) ────────────────────────── */
.onto-wrap { background: var(--warm); border: 1px solid var(--border); padding: 28px 24px 0; margin-top: 44px; }
#ontoSvg { width: min(760px, 100%); margin-inline: auto; display: block; }
#ontoSvg .on-guide { fill: none; stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 7; opacity: .8; }
#ontoSvg .on-spoke { stroke: var(--border); stroke-width: 1; transition: stroke .2s; }
#ontoSvg .on-spoke.on { stroke: var(--red); }
#ontoSvg .on-chord { fill: none; stroke: var(--line); stroke-width: 1.2; opacity: .55; transition: stroke .2s, opacity .2s; }
#ontoSvg .on-chord.on { stroke: var(--red); opacity: 1; }
#ontoSvg .on-rel { fill: var(--subtle); font-size: 10px; font-weight: 600; font-family: 'Open Sans', sans-serif; text-anchor: middle; opacity: 0; transition: opacity .2s; }
#ontoSvg .on-rel.on { opacity: 1; fill: var(--red); }
#ontoSvg .on-node { cursor: pointer; }
#ontoSvg .on-node .c1 { fill: #fff; stroke: var(--line); stroke-width: 1.5; transition: stroke .2s, fill .2s; }
#ontoSvg .on-node .c2 { fill: var(--control); transition: fill .2s; }
#ontoSvg .on-node text { fill: var(--ink); font-size: 13px; font-weight: 600; font-family: 'Open Sans', sans-serif; text-anchor: middle; }
#ontoSvg .on-node.rel .c1 { stroke: var(--blue); }
#ontoSvg .on-node.rel .c2 { fill: var(--blue); }
#ontoSvg .on-node.on .c1 { stroke: var(--red); fill: #FDF2F1; }
#ontoSvg .on-node.on .c2 { fill: var(--red); }
#ontoSvg .on-core .k0 { fill: none; stroke: rgba(192,57,43,.35); stroke-width: 1; stroke-dasharray: 4 6; }
#ontoSvg .on-core .k1 { fill: rgba(192,57,43,.07); stroke: var(--red); stroke-width: 1.2; }
#ontoSvg .on-core .k2 { fill: var(--red); }
#ontoSvg .on-corelabel { fill: var(--subtle); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; font-family: 'Open Sans', sans-serif; text-anchor: middle; }
.onto-read { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: baseline; border-top: 1px solid var(--border); margin-top: 10px; padding: 16px 4px 18px; min-height: 56px; }
.onto-read b { font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--red); }
.onto-read span { font-size: 12.5px; color: var(--muted); }

/* ── Pipeline ──────────────────────────────────────── */
.pl-track { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; padding: 46px 0 8px; }
.pl-line { position: absolute; top: 74px; left: 10%; right: 10%; height: 1px; background: var(--line); }
.pl-node { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.pl-orb {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; background: #fff;
  border: 1.5px solid var(--line); color: var(--subtle);
  font-size: 16px; font-weight: 800; transition: all .2s;
}
.pl-node:first-child .pl-orb, .pl-node:last-child .pl-orb { border-color: var(--red); color: var(--red); }
.pl-name { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--ink); margin-bottom: 8px; }
.pl-sub { display: block; font-size: 12px; color: var(--muted); line-height: 1.7; }
.pipe-principle { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--border); }
.pipe-principle p { font-size: 14px; color: var(--muted); }
.pipe-principle b { color: var(--ink); font-weight: 700; }
.hitl { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: #A15000; border: 1px solid rgba(161,80,0,.4); padding: 7px 14px; white-space: nowrap; }
.pipe-fusion { font-size: 13px; color: var(--muted); line-height: 1.85; margin-top: 20px; }
.pipe-fusion b { color: var(--ink); font-weight: 700; }

/* ── Digital twin (panel gelap + lapisan isometrik) ── */
.twin-panel { background: var(--navy); padding: 56px 0; margin-top: 48px; }
.twin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.twin-scene { height: 420px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.twin-stack { position: relative; width: 300px; height: 300px; transform-style: preserve-3d; transform: rotateX(58deg) rotateZ(-38deg); }
.twin-plate {
  position: absolute; inset: 0; background: var(--pc);
  border: 1px solid rgba(255,255,255,.22);
  transform: translateZ(calc(var(--z) * 1px));
  transition: transform .35s, background .25s, border-color .25s;
}
.twin-plate.on { border-color: rgba(255,255,255,.85); transform: translateZ(calc(var(--z) * 1px)) scale(1.07); }.twin-item { display: grid; grid-template-columns: 12px 1fr; gap: 14px; align-items: start; padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.1); cursor: pointer; transition: background .2s; }
.twin-item:hover, .twin-item.on { background: rgba(255,255,255,.05); }
.twin-swatch { width: 12px; height: 12px; background: var(--pc); margin-top: 4px; }
.twin-name { display: block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 4px; }
.twin-desc { display: block; font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.7; }
.twin-sync { display: flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.45); margin-top: 20px; }
.twin-sync i { width: 6px; height: 6px; background: var(--red); animation: pulse 1.8s ease-in-out infinite; }

/* ── Ikon kartu ────────────────────────────────────── */
.card-icon { width: 30px; height: 30px; color: var(--red); margin-bottom: 18px; display: block; }
.sekarang-tile .card-icon[viewBox="0 0 44 44"] { width: 36px; height: 36px; }/* ── Manifesto ─────────────────────────────────────── */
/* ── Responsif ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .twin-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .coor-panes { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .pl-track { grid-template-columns: 1fr; gap: 26px; padding-top: 8px; }
  .pl-line { display: none; }
  .twin-scene { height: 320px; }
  .twin-stack { width: 210px; height: 210px; }
}

/* ══════════════════════════════════════════════════
   PERATAAN TEKS (JUSTIFY) — RESPONSIF
   Justify hanya diterapkan bila baris cukup panjang.
   Di bawah ~45 karakter per baris, rata kanan-kiri
   menimbulkan celah antarkata yang mengganggu, apalagi
   untuk kata panjang bahasa Indonesia.
══════════════════════════════════════════════════ */

/* ── Prosa utama: rata kanan-kiri mulai tablet ke atas ──
   Diukur: desktop 61–175 krt/baris · tablet 58–94 · ponsel 28–43.
   Ponsel dibiarkan rata kiri.                              */
@media (min-width: 768px) {
  .body-text,
  .incident-body,
  .d-response-body,
  .hero-sub,
  .access-body,
  .coor-sub,
  .network-sub,
  .twin-desc,
  .pipe-fusion {
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    -webkit-hyphens: none;
  }
}

/* ── Teks di dalam kartu: ikut lebar kartunya, bukan lebar layar ──
   Kartu bisa sempit di desktop (grid 5 kolom = 192px) tetapi lebar
   di tablet (1 kolom = 674px), jadi patokannya lebar kartu.        */
.warisan-tile,
.sekarang-tile,
.principle {
  container-type: inline-size;
}
@container (min-width: 320px) {
  .warisan-legacy,
  .sekarang-body,
  .principle-body {
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    -webkit-hyphens: none;
  }
}

/* Cadangan bila peramban tidak mendukung container query:
   samakan dengan aturan layar agar tetap rapi.            */
@supports not (container-type: inline-size) {
    .sekarang-body,
    .principle-body {
      text-align: justify;
      text-justify: inter-word;
      hyphens: none;
      -webkit-hyphens: none;
    }
}

/* ══════════════════════════════════════════════════
   GRID BERISI 3 KARTU
   Pada 769–1024px .sekarang-grid turun ke 2 kolom, sehingga
   grid berisi 3 kartu menyisakan satu sel kosong. Untuk grid
   yang isinya tepat 3, langsung turun ke 1 kolom.
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sekarang-grid:has(> :nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }
}

/* ── Nav saat halaman digulir (dipasang oleh ScrollTrigger) ── */
.nav.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,.07);
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255,255,255,.92);
}
