:root {
  --color-bg: #000000;
  --color-text: #fafafa;
  --color-subtle: #808080;
  --color-border: #333333;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --header-height: 80px;
}
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
body.about-page {
  background-color: var(--color-bg);
  color: var(--color-text);
  padding-top: var(--header-height);
}

/* ============================================== */
/* === HERO & PAGE STRUCTURE === */
/* ============================================== */

.hero-section {
  height: calc(100vh - var(--header-height));
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
  position: relative;
}

.hero-container-split {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  height: 100%;
}

.hero-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin: 0;
  text-transform: none;
}

.hero-slogan {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--color-subtle);
  max-width: 45ch;
  line-height: 1.7;
}

.scroll-down-prompt {
  position: absolute;
  bottom: 2rem;
  left: 0;
  animation: bounce 2s infinite;
}

.scroll-down-prompt i {
  font-size: 1.5rem;
  color: var(--color-subtle);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

/* Dashboard Styling */
.dashboard {
  border: 1px solid var(--color-border);
  padding: 1.2rem 1.5rem;
  background-color: #050505;
  font-family: var(--font-mono);
  max-width: 520px;
}
.dashboard-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-subtle);
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.dashboard-section {
  padding: 0.75rem 0;
}
.dashboard-section:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.status-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}
.status-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.status-list li span:first-child {
  color: var(--color-subtle);
}
.status-value {
  color: var(--color-text);
}
.blinking-cursor {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: var(--color-text);
  }
}
.competency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
.competency-item {
  transition: opacity 0.3s ease;
}
.item-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.item-header h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.item-header svg {
  color: var(--color-subtle);
  flex-shrink: 0;
}
.competency-item p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-subtle);
  line-height: 1.6;
  margin: 0;
}
.competency-grid.is-dimmed .competency-item:not(.is-hovered) {
  opacity: 0.3;
}
.competency-item.is-hovered {
  opacity: 1;
}
.tech-stack-main-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 0.75rem 0;
}
.tech-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tech-category h4 {
  font-size: 0.85rem;
  color: var(--color-subtle);
  margin: 0 0 0.25rem 0;
  font-weight: 400;
}
.tech-category p {
  font-size: 0.85rem;
  color: var(--color-text);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================== */
/* === KODE RESPONSIVE === */
/* ============================================== */
@media (max-width: 992px) {
  .hero-section {
    height: auto;
    min-height: 0;
    padding: 12vh 1.5rem;
  }

  .hero-container-split {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .hero-left {
    order: 1;
    text-align: center;
    height: auto;
    position: static;
  }

  .hero-right {
    order: 2;
    width: 100%;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
  }

  .dashboard {
    margin: 0 auto;
  }

  .scroll-down-prompt {
    display: none;
  }

  .competency-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================== */
/* === MANIFESTO JOURNEY STYLES === */
/* ============================================== */
#manifesto-journey {
  position: relative;
  width: 100%;
  background-color: var(--color-bg);
}
.journey-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10vh 2rem 20vh;
  position: relative;
}
.svg-line-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.svg-line-container svg path {
  stroke: var(--color-border);
  stroke-width: 2;
  fill: none;
}
.journey-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40vh;
}
.content-block {
  width: 100%;
  text-align: center;
  max-width: 65ch;
  padding: 1rem;
  position: relative;
  z-index: 2; /* Pastikan konten di atas glow */
}

/* === PERBAIKAN FINAL: Sorotan Latar Belakang Terang === */
.content-block::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 150%;
  /* Perubahan utama: Kecerahan warna ditingkatkan secara signifikan */
  background: radial-gradient(
    circle,
    rgba(250, 250, 250, 0.4) 0%,
    rgba(250, 250, 250, 0) 65%
  );
  /* Blur sedikit dikurangi agar lebih fokus */
  filter: blur(50px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  /* Menambahkan shadow pada glow itu sendiri untuk lapisan ekstra */
  box-shadow: 0 0 100px 40px rgba(255, 255, 255, 0.15);
}

.content-block.is-active::before {
  opacity: 1;
}

/* Mengubah warna teks menjadi putih cerah saat aktif agar kontras */
.content-block.is-active h2,
.content-block.is-active h3,
.content-block.is-active p,
.content-block.is-active li {
  color: #ffffff;
}
/* === AKHIR PERBAIKAN === */

.manifesto-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-subtle);
  margin-bottom: 2rem;
  transition: color 0.5s ease;
}
#content-manifesto h2 {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-text);
  line-height: 1.2;
  transition: color 0.5s ease;
}
.block-title {
  display: block;
  font-family: var(--font-mono);
  color: var(--color-subtle);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  transition: color 0.5s ease;
}
#content-approach p,
#content-collective p,
#content-partner p,
#content-meaning p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 2rem;
  transition: color 0.5s ease;
}
#content-approach ul {
  list-style: none;
  text-align: left;
  display: inline-block;
  padding-left: 0;
}
#content-approach li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  transition: color 0.5s ease;
}
.list-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--color-subtle);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* === EFEK BARU: Animasi Gradien "Noise" === */
@keyframes animated-noise-gradient {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 25% 100%;
  }
  75% {
    background-position: 75% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#content-cta h2 {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.2;
  margin-bottom: 2.5rem;
  background: linear-gradient(
    120deg,
    #ff3b3b,
    #4dff8a,
    #4da6ff,
    #fffa4d,
    #ff4dff,
    #4dffff
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animated-noise-gradient 4s linear infinite;
  transition: all 0.4s ease-in-out;
}

#content-cta h2:hover {
  -webkit-text-fill-color: var(--color-text);
  background: none;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  animation: none;
}
/* === AKHIR EFEK BARU === */

.journey-cta {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-bg);
  background-color: var(--color-text);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.journey-cta:hover {
  transform: scale(1.05);
  background-color: #fff;
}
.services-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1.5rem;
}
.services-list ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.services-list li {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--color-text);
  transition: color 0.5s ease;
}
#content-meaning h2 {
  font-family: var(--font-mono);
  font-size: 3rem;
  color: var(--color-text);
  letter-spacing: 4px;
  margin-bottom: 1rem;
  transition: color 0.5s ease;
}

@media (max-width: 768px) {
  .journey-container {
    padding: 10vh 1rem 15vh;
  }
  .journey-content {
    gap: 30vh;
  }
  .content-block {
    max-width: 100%;
  }
  .services-list {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .services-list ul {
    margin-bottom: 1rem;
  }
}

.journey-node {
  width: 14px;
  height: 14px;
  background-color: var(--color-text);
  border: 2px solid var(--color-text);
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(250, 250, 250, 0.5);
  opacity: 0;
  transition: box-shadow 0.3s ease;
}

.content-block.is-active .journey-node {
  box-shadow: 0 0 20px rgba(250, 250, 250, 0.8),
    0 0 30px rgba(250, 250, 250, 0.6);
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.7);
  }
  70% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 10px rgba(250, 250, 250, 0);
  }
  100% {
    transform: translateX(-50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(250, 250, 250, 0);
  }
}

.journey-node.is-visible {
  animation: pulse 2s infinite;
}
