/* keliatanajadulu.com — main site styles
   ============================================================
   Konsep: "Operator Document"
   - Type-led, fungsional, tropical-modernist
   - Batik-inspired hairlines as structural elements (bukan ornamen)
   - Mono labels untuk operator feel
   - Generous whitespace, satu Ochre moment di hero/CTA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--kj-ochre); color: var(--kj-forest); }

/* ============================================================
   GLOBAL GRAIN / TEXTURE OVERLAY — paper feel
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.40 0 0 0 0 0.34 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============================================================
   STRUCTURAL HAIRLINES — batik-inspired geometric scaffolding
   ============================================================ */

.scaffold {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.scaffold::before,
.scaffold::after {
  content: '';
  position: absolute;
  background: var(--kj-border);
}
/* vertical rails — frame the content */
.scaffold::before {
  top: 0; bottom: 0;
  left: 50%;
  width: var(--w-content);
  max-width: 100%;
  transform: translateX(-50%);
  background: transparent;
  border-left: 1px solid var(--kj-border);
  border-right: 1px solid var(--kj-border);
}
@media (max-width: 1248px) { .scaffold::before { display: none; } }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 233, 217, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base);
}
.nav.scrolled { border-bottom-color: var(--kj-border); }
.nav-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-mark {
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: 18px;
  color: var(--brand);
  text-decoration: none;
  text-transform: lowercase;
}
.nav-mark .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--kj-ochre);
  margin-left: 2px;
  vertical-align: middle;
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  margin-left: 16px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg1);
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-base);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--kj-ochre);
  transition: right var(--dur-base) var(--ease-standard);
}
.nav-link:hover::after { right: 0; }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--kj-border);
  border-radius: 999px;
  transition: all var(--dur-base);
}
.nav-cta:hover { border-color: var(--brand); background: var(--brand); color: var(--kj-cream); }
.nav-cta .live-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--kj-avocado);
  position: relative;
}
.nav-cta .live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 1px solid var(--kj-avocado);
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  text-decoration: none;
  line-height: 1;
  transition: background var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base),
              transform var(--dur-base);
  letter-spacing: -0.005em;
}
.btn-ochre {
  background: var(--kj-ochre);
  color: var(--kj-forest);
}
.btn-ochre:hover {
  background: var(--kj-ochre-dark);
  box-shadow: var(--shadow-cta);
}
.btn-forest {
  background: var(--brand);
  color: var(--kj-cream);
}
.btn-forest:hover { background: var(--kj-forest-90); }
.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--kj-border);
}
.btn-ghost:hover { border-color: var(--brand); }

.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-standard);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   CONTAINER + EYEBROW
   ============================================================ */

.container {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg2);
  text-transform: lowercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--kj-ochre);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

/* hero ambient batik pattern — large, soft, sits behind type */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 720px;
  height: 720px;
  background-image:
    radial-gradient(circle at center, transparent 0, transparent 110px, rgba(214, 205, 180, 0.55) 110px, rgba(214, 205, 180, 0.55) 111px, transparent 112px),
    radial-gradient(circle at center, transparent 0, transparent 180px, rgba(214, 205, 180, 0.45) 180px, rgba(214, 205, 180, 0.45) 181px, transparent 182px),
    radial-gradient(circle at center, transparent 0, transparent 260px, rgba(214, 205, 180, 0.4) 260px, rgba(214, 205, 180, 0.4) 261px, transparent 262px),
    radial-gradient(circle at center, transparent 0, transparent 340px, rgba(214, 205, 180, 0.32) 340px, rgba(214, 205, 180, 0.32) 341px, transparent 342px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: -200px;
  width: 400px;
  height: 400px;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 11px, rgba(230, 165, 50, 0.08) 11px, rgba(230, 165, 50, 0.08) 12px);
  pointer-events: none;
  z-index: 0;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg2);
  letter-spacing: -0.01em;
}
.hero-eyebrow-row .meta {
  display: flex;
  gap: 32px;
  align-items: center;
}
.hero-eyebrow-row .meta span:first-child { color: var(--fg1); font-weight: 500; }

.hero-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left { position: relative; z-index: 2; }

.hero h1 {
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--fg1);
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 700;
  color: var(--kj-forest);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 4px;
  height: 14px;
  background: var(--kj-ochre);
  z-index: -1;
  transform: skewX(-8deg);
}

.hero-grid { display: none; } /* legacy, replaced by hero-main */

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg1);
  max-width: 520px;
  font-weight: 400;
  margin-bottom: 32px;
}
.hero-sub strong { font-weight: 600; color: var(--fg1); }

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HERO RIGHT: animated system diagram */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: var(--bg-alt);
  border: 1px solid var(--kj-border);
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
}
.hv-stamp {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  opacity: 0.5;
  stroke-width: 1;
}
.hv-corner {
  position: absolute;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hv-corner.tl { top: 20px; left: 20px; }
.hv-corner.br { bottom: 20px; right: 20px; flex-direction: column; align-items: flex-end; gap: 2px; }
.hv-tag {
  background: var(--brand);
  color: var(--kj-cream);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.hv-pulse {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--kj-avocado);
  position: relative;
}
.hv-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 1px solid var(--kj-avocado);
  animation: ping 2s ease-out infinite;
}
.hv-tag-q { color: var(--fg2); font-size: 9px; }
.hv-tag-v {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg1);
  text-transform: none;
}
.hv-flow {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hv-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke-width: 1.2;
}
.hv-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--kj-border);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: -0.01em;
  z-index: 4;
  transition: background var(--dur-base), border-color var(--dur-base);
  min-width: 148px;
  box-sizing: border-box;
}
.hv-node-label { flex: 1; min-width: 0; }
.hv-node-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--kj-warm-gray);
}
.hv-node-label .k { color: var(--fg2); font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; }
.hv-node-label .v { color: var(--fg1); font-weight: 600; font-size: 12px; }
.hv-node.active {
  background: var(--brand);
  border-color: var(--brand);
}
.hv-node.active .hv-node-dot { background: var(--kj-ochre); box-shadow: 0 0 0 4px rgba(230, 165, 50, 0.25); }
.hv-node.active .hv-node-label .k { color: rgba(239, 233, 217, 0.6); }
.hv-node.active .hv-node-label .v { color: var(--kj-cream); }
.hv-node.n1 { top: 18%; left: 8%; }
.hv-node.n2 { top: 36%; right: 8%; }
.hv-node.n3 { bottom: 22%; right: 14%; }
.hv-node.n4 { bottom: 28%; left: 12%; }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg2);
}
.hero-scarcity .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--kj-clay);
  position: relative;
}
.hero-scarcity .dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 1px solid var(--kj-clay);
  animation: ping 2s ease-out infinite;
}
.hero-scarcity strong { color: var(--fg1); font-weight: 600; }

/* batik-style geometric stamp — bottom right of hero */
.batik-stamp {
  position: absolute;
  right: 32px;
  bottom: -1px;
  width: 96px;
  height: 96px;
  pointer-events: none;
  opacity: 0.9;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats {
  background: var(--brand);
  color: var(--kj-cream);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
/* layered batik-inspired textures on dark forest */
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(239,233,217,0.05) 1px, transparent 1px),
    repeating-linear-gradient(45deg, transparent 0, transparent 19px, rgba(230, 165, 50, 0.04) 19px, rgba(230, 165, 50, 0.04) 20px);
  background-size: 80px 100%, auto;
  pointer-events: none;
}
.stats::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  background-image:
    radial-gradient(circle at center, transparent 0, transparent 80px, rgba(120, 140, 58, 0.18) 80px, rgba(120, 140, 58, 0.18) 81px, transparent 82px),
    radial-gradient(circle at center, transparent 0, transparent 140px, rgba(120, 140, 58, 0.14) 140px, rgba(120, 140, 58, 0.14) 141px, transparent 142px),
    radial-gradient(circle at center, transparent 0, transparent 200px, rgba(120, 140, 58, 0.10) 200px, rgba(120, 140, 58, 0.10) 201px, transparent 202px);
  pointer-events: none;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat {
  padding: 0 32px;
  border-left: 1px solid rgba(239, 233, 217, 0.15);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--kj-cream);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .unit {
  font-size: 22px;
  font-weight: 500;
  color: var(--kj-ochre);
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(239, 233, 217, 0.65);
  letter-spacing: -0.01em;
  line-height: 1.4;
  max-width: 200px;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 128px 0;
  position: relative;
}
.section.bone { background: var(--bg-alt); }
.section.tight { padding: 96px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--kj-border);
}
.section-head .label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg2);
  letter-spacing: -0.01em;
}
.section-head .label .marker {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--kj-ochre);
  vertical-align: middle;
  margin-right: 12px;
}
.section-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg1);
  margin: 0;
}
.section-head h2 .em {
  font-style: italic;
  font-weight: 700;
}

/* ============================================================
   HOW IT WORKS — 7-day timeline
   ============================================================ */

.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 32px;
  right: 32px;
  height: 1px;
  background: var(--kj-border);
  z-index: 0;
}

.day {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border: 0;
  position: relative;
  z-index: 1;
}
.day-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}
.day-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 2px solid var(--kj-border);
  margin-bottom: 12px;
  margin-left: 12px;
  position: relative;
  transition: all var(--dur-base);
}
.day-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px dashed var(--kj-border);
  opacity: 0;
  transition: opacity var(--dur-base);
}
.day.milestone .day-dot {
  background: var(--kj-ochre);
  border-color: var(--kj-ochre);
  width: 20px;
  height: 20px;
  margin-left: 10px;
  margin-bottom: 8px;
}
.day.milestone .day-dot::after { opacity: 1; border-color: var(--kj-ochre); }
.day:hover .day-dot {
  background: var(--kj-forest);
  border-color: var(--kj-forest);
}
.day-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg2);
  font-weight: 600;
}
.day.milestone .day-num { color: var(--kj-clay); }
.day-card {
  background: var(--bg);
  border: 1px solid var(--kj-border);
  border-radius: 10px;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-base), transform var(--dur-base);
}
.day-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 19px, rgba(214, 205, 180, 0.20) 19px, rgba(214, 205, 180, 0.20) 20px);
  opacity: 0;
  transition: opacity var(--dur-base);
  pointer-events: none;
}
.day:hover .day-card { border-color: var(--kj-warm-gray); transform: translateY(-2px); }
.day:hover .day-card::before { opacity: 1; }
.day.milestone .day-card { border-color: var(--kj-ochre); background: var(--bg); }
.day-card > * { position: relative; z-index: 1; }
.day-card .day-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg1);
  margin-bottom: 4px;
}
.day-card .day-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg2);
  margin: 0;
}
.day-card .day-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
  padding-top: 12px;
}
.day-card .day-chips .chip {
  font-size: 10px;
  padding: 3px 7px;
  background: var(--bg-alt);
}
/* ============================================================
   Day card — "Stempel Paper" treatment
   Cream card on bone section, corner tab (data-tab), soft shadow.
   ============================================================ */
.section.bone .day-card {
  background: var(--kj-cream);
  border-radius: 4px;
  padding: 28px 16px 20px;
  box-shadow:
    0 1px 0 rgba(15, 31, 27, 0.04),
    0 6px 14px -8px rgba(15, 31, 27, 0.12);
}
.section.bone .day-card::after {
  content: attr(data-tab);
  position: absolute;
  top: 0;
  left: 0;
  background: var(--kj-forest);
  color: var(--kj-cream);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 4px 10px 4px 12px;
  text-transform: uppercase;
  border-bottom-right-radius: 6px;
  z-index: 2;
}
.section.bone .day.milestone .day-card {
  border-color: var(--kj-ochre);
  box-shadow:
    0 1px 0 rgba(15, 31, 27, 0.04),
    0 8px 18px -8px rgba(184, 91, 61, 0.22);
}
.section.bone .day.milestone .day-card::after {
  background: var(--kj-ochre);
  color: var(--kj-charcoal);
}
.section.bone .day:hover .day-card {
  border-color: var(--kj-warm-gray);
  box-shadow:
    0 1px 0 rgba(15, 31, 27, 0.04),
    0 14px 24px -10px rgba(15, 31, 27, 0.18);
}
/* Tab replaces the inline day-num — hide it on desktop */
.section.bone .day-num { opacity: 0; height: 0; margin: 0; overflow: hidden; }
.section.bone .day { gap: 12px; }
/* Pop the dot against cream card + bone rail */
.section.bone .day-dot { background: var(--kj-cream); border-color: var(--kj-warm-gray); border-width: 2px; }
.section.bone .day.milestone .day-dot { background: var(--kj-ochre); border-color: var(--kj-ochre); }

.day-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg1);
}
.day-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg2);
  letter-spacing: -0.01em;
  margin-top: 12px;
}

.day-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg2);
}
.day-deliverables {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg1);
  background: var(--bg);
  border: 1px solid var(--kj-border);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}
.section.bone .chip { background: var(--bg-alt); }
.chip.milestone {
  background: var(--kj-forest);
  color: var(--kj-cream);
  border-color: var(--kj-forest);
}

/* ============================================================
   WHAT YOU GET — deliverables grid
   ============================================================ */

.deliverables {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.deliv {
  background: var(--bg);
  border: 1px solid var(--kj-border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color var(--dur-base), transform var(--dur-base), box-shadow var(--dur-base);
  min-height: 320px;
  overflow: hidden;
}
.deliv::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 23px, rgba(214, 205, 180, 0.18) 23px, rgba(214, 205, 180, 0.18) 24px);
  opacity: 0;
  transition: opacity var(--dur-base);
  pointer-events: none;
}
.deliv:hover::before { opacity: 1; }
.deliv:hover { border-color: var(--kj-warm-gray); transform: translateY(-2px); }
.section.bone .deliv { background: var(--bg-alt); }

.deliv > * { position: relative; z-index: 1; }

.deliv.feature {
  background: var(--brand);
  color: var(--kj-cream);
  border-color: var(--brand);
}
.deliv.feature::before {
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 23px, rgba(230, 165, 50, 0.10) 23px, rgba(230, 165, 50, 0.10) 24px);
  opacity: 1;
}
.deliv.feature:hover { background: var(--kj-forest-90); border-color: var(--brand); }

/* layout grid spans */
.deliv.span-12 { grid-column: span 12; min-height: auto; }
.deliv.span-6 { grid-column: span 6; }
.deliv.span-4 { grid-column: span 4; }
.deliv.span-3 { grid-column: span 3; }
.deliv.span-5 { grid-column: span 5; }
.deliv.span-7 { grid-column: span 7; }
.deliv.span-8 { grid-column: span 8; }

.deliv-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.deliv-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg2);
  letter-spacing: 0.04em;
}
.deliv.feature .deliv-num { color: rgba(239, 233, 217, 0.6); }
.deliv-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--kj-clay);
  letter-spacing: -0.01em;
  padding: 4px 10px;
  background: rgba(184, 91, 61, 0.08);
  border-radius: 999px;
}
.deliv.feature .deliv-tag {
  color: var(--kj-ochre);
  background: rgba(230, 165, 50, 0.15);
}

.deliv h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg1);
  margin-top: auto;
}
.deliv.feature h3 { color: var(--kj-cream); }

.deliv h3 .em {
  font-style: italic;
  font-weight: 600;
}

.deliv-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg2);
}
.deliv.feature .deliv-desc { color: rgba(239, 233, 217, 0.8); }

/* mini visual blocks inside deliverables */
.mini-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg2);
  letter-spacing: -0.01em;
}
.mini-stack .row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--kj-border-soft);
}
.mini-stack .row:last-child { border-bottom: 0; }
.mini-stack .row .check {
  color: var(--kj-avocado);
  font-weight: 600;
}

/* whatsapp mock for the AI chatbot card */
.wa-mock {
  background: var(--bg);
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(239, 233, 217, 0.2);
}
.wa-msg {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 88%;
  line-height: 1.4;
  font-size: 13px;
}
.wa-msg.them {
  background: rgba(239, 233, 217, 0.1);
  color: rgba(239, 233, 217, 0.92);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.wa-msg.us {
  background: var(--kj-ochre);
  color: var(--kj-forest);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

/* ============================================================
   COMPARE V2 — paired rows with arrow
   ============================================================ */
.compare-v2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-v2-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: stretch;
}
.cv-bukan, .cv-adalah {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--kj-border);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.45;
}
.cv-bukan {
  background: var(--bg);
  color: var(--fg2);
  text-decoration: line-through;
  text-decoration-color: rgba(184, 91, 61, 0.5);
  text-decoration-thickness: 1px;
}
.cv-bukan::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 23px, rgba(184, 91, 61, 0.06) 23px, rgba(184, 91, 61, 0.06) 24px);
  pointer-events: none;
}
.cv-adalah {
  background: var(--brand);
  color: var(--kj-cream);
  border-color: var(--brand);
  font-weight: 500;
}
.cv-adalah::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, transparent 0, transparent 23px, rgba(230, 165, 50, 0.10) 23px, rgba(230, 165, 50, 0.10) 24px);
  pointer-events: none;
}
.cv-adalah strong {
  color: var(--kj-ochre);
  font-weight: 700;
}
.cv-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  text-decoration: none;
}
.cv-bukan .cv-icon {
  background: rgba(184, 91, 61, 0.12);
  color: var(--kj-clay);
}
.cv-adalah .cv-icon {
  background: var(--kj-ochre);
  color: var(--kj-forest);
}
.cv-text { position: relative; z-index: 1; }
.cv-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  color: var(--fg3);
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .compare-v2-row { grid-template-columns: 1fr; gap: 8px; }
  .cv-arrow { transform: rotate(90deg); padding: 4px 0; }
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--kj-border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.compare-col {
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.compare-col.bukan {
  background: var(--bg);
  border-right: 1px solid var(--kj-border);
}
.compare-col.bukan::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 27px, rgba(184, 91, 61, 0.06) 27px, rgba(184, 91, 61, 0.06) 28px);
  pointer-events: none;
}
.compare-col.adalah {
  background: var(--brand);
  color: var(--kj-cream);
}
.compare-col.adalah::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, transparent 0, transparent 27px, rgba(230, 165, 50, 0.10) 27px, rgba(230, 165, 50, 0.10) 28px);
  pointer-events: none;
}
.compare-col.adalah::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background-image:
    radial-gradient(circle at center, transparent 0, transparent 60px, rgba(230, 165, 50, 0.18) 60px, rgba(230, 165, 50, 0.18) 61px, transparent 62px),
    radial-gradient(circle at center, transparent 0, transparent 110px, rgba(230, 165, 50, 0.12) 110px, rgba(230, 165, 50, 0.12) 111px, transparent 112px);
  pointer-events: none;
}
.compare-col > * { position: relative; z-index: 1; }
.compare-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.compare-col.adalah .compare-label { color: rgba(239, 233, 217, 0.55); }
.compare-col.adalah .compare-label::before { background: var(--kj-ochre); }
.compare-label::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--kj-clay);
}
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  font-size: 17px;
  line-height: 1.55;
  padding-left: 32px;
  position: relative;
  font-weight: 500;
}
.compare-col.bukan .compare-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(184, 91, 61, 0.12);
  color: var(--kj-clay);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.compare-col.adalah .compare-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--kj-ochre);
  color: var(--kj-forest);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */

.cta {
  background: var(--brand);
  color: var(--kj-cream);
  padding: 128px 0 96px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  /* batik-inspired diagonal hairlines */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 0px, transparent 79px, rgba(230, 165, 50, 0.06) 79px, rgba(230, 165, 50, 0.06) 80px);
  background-size: 80px 80px;
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.cta-pitch h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--kj-cream);
}
.cta-pitch h2 .em {
  font-style: italic;
  font-weight: 700;
  color: var(--kj-ochre);
}
.cta-pitch p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(239, 233, 217, 0.78);
  margin-bottom: 48px;
  max-width: 460px;
}

.cta-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(239, 233, 217, 0.85);
  letter-spacing: -0.01em;
}
.cta-bullets li {
  list-style: none;
  display: flex;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(239, 233, 217, 0.12);
}
.cta-bullets li:last-child { border-bottom: 0; }
.cta-bullets .key { color: var(--kj-ochre); min-width: 80px; }

/* form */
.form-card {
  background: var(--kj-cream);
  color: var(--fg1);
  padding: 40px;
  border-radius: 12px;
  position: relative;
}
.form-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg2);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--kj-ochre);
}
.form-card h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.form-card .form-sub {
  font-size: 14px;
  color: var(--fg2);
  margin-bottom: 28px;
  line-height: 1.5;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg2);
  letter-spacing: -0.01em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--kj-border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--fg1);
  transition: border-color var(--dur-base), background var(--dur-base);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--kj-forest);
  background: #fff;
}
.field input::placeholder { color: var(--fg3); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  padding: 18px 24px;
  font-size: 16px;
}

.form-fineprint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg2);
  margin-top: 16px;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* form success */
.form-success {
  text-align: center;
  padding: 32px 16px;
  display: none;
}
.form-success.show { display: block; animation: fadeIn 400ms var(--ease-standard); }
.form-success .ok {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--kj-avocado);
  color: var(--kj-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
.form-success h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--fg2); line-height: 1.5; max-width: 320px; margin: 0 auto; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--kj-forest-90);
  color: rgba(239, 233, 217, 0.7);
  padding: 56px 0 40px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-mark {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 18px;
  color: var(--kj-cream);
  letter-spacing: -0.025em;
  text-transform: lowercase;
  margin-bottom: 8px;
}
.footer .meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer a { color: rgba(239, 233, 217, 0.7); text-decoration: none; }
.footer a:hover { color: var(--kj-ochre); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-standard),
              transform 700ms var(--ease-standard);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 60ms; }
.reveal.delay-2 { transition-delay: 120ms; }
.reveal.delay-3 { transition-delay: 180ms; }
.reveal.delay-4 { transition-delay: 240ms; }
.reveal.delay-5 { transition-delay: 300ms; }
.reveal.delay-6 { transition-delay: 360ms; }

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { padding: 14px 20px; }
  .container { padding: 0 20px; }

  .hero { padding: 56px 0 64px; }
  .hero-eyebrow-row { margin-bottom: 32px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-eyebrow-row .meta { gap: 16px; flex-wrap: wrap; }
  .hero h1 { font-size: 48px; margin-bottom: 24px; line-height: 1.0; }
  .hero h1 .accent::after { bottom: 4px; height: 8px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; padding-top: 16px; }
  .hero-main { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { order: 2; }
  .hero-visual { max-width: 100%; padding: 20px; }
  .hv-corner.tl { top: 16px; left: 16px; }
  .hv-corner.br { bottom: 16px; right: 16px; }
  .hv-node { min-width: 132px; font-size: 10px; padding: 7px 10px; }
  .hv-node-label .v { font-size: 11px; }
  .hero-sub { font-size: 17px; }
  .batik-stamp { width: 64px; height: 64px; right: 20px; }

  .stats { padding: 40px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stat { padding: 0 20px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat-num { font-size: 44px; }

  .section { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; padding-bottom: 24px; align-items: start; }

  .timeline { grid-template-columns: 1fr 1fr; gap: 12px; }
  .timeline::before { display: none; }
  .day-dot { margin-left: 0; }

  .deliverables { grid-template-columns: 1fr !important; }
  .deliv.span-12, .deliv.span-6, .deliv.span-4, .deliv.span-3, .deliv.span-5, .deliv.span-7, .deliv.span-8 { grid-column: 1 / -1; }
  .deliv { min-height: auto; padding: 32px 24px; }

  .compare { grid-template-columns: 1fr; }
  .compare-col.bukan { border-right: 0; border-bottom: 1px solid var(--kj-border); }

  .cta { padding: 64px 0 48px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px 24px; }
  .field-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
