/* ===== ROOT & RESET ===== */
:root {
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --gold-dark: #D97706;
  --gold-glow: rgba(245, 158, 11, 0.15);
  --gold-subtle: rgba(245, 158, 11, 0.08);
  --bg: #050508;
  --bg-2: #0A0A10;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(245,158,11,0.25);
  --text: #F8F8F8;
  --text-muted: rgba(248,248,248,0.5);
  --text-dim: rgba(248,248,248,0.3);
  --done: #22C55E;
  --progress: #3B82F6;
  --soon: #F59E0B;
  --planned: #9CA3AF;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 0 60px rgba(245,158,11,0.08);
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100vw;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(245,158,11,0.5);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.2s var(--transition), width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor.expand { width: 20px; height: 20px; opacity: 0.5; }
.cursor-follower.expand { width: 56px; height: 56px; border-color: var(--gold); }

/* ===== PARTICLE CANVAS ===== */
.particle-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.4;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font);
  font-size: 4rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: -2px;
  margin-bottom: 2rem;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 30px rgba(245,158,11,0.3); }
  50% { text-shadow: 0 0 60px rgba(245,158,11,0.7), 0 0 100px rgba(245,158,11,0.3); }
}
.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; margin: 0 auto 1rem;
  overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.05s linear;
}
.preloader-text {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); font-family: var(--font);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: all 0.4s var(--transition);
}
.nav.scrolled {
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 3rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 4px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--font);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); letter-spacing: -1px;
}
.nav-logo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  margin-bottom: 12px;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.nav-links {
  display: flex; list-style: none; gap: 0.5rem;
}
.nav-link {
  position: relative; text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.5px;
  color: var(--text-muted); padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.3s ease;
  font-family: var(--font);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 20px; }
.nav-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem; border-radius: 20px;
  font-family: var(--font);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E;
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; top: 70px;
  background: rgba(5,5,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-link {
  display: block; padding: 1rem 2rem;
  font-size: 2rem; font-family: var(--font);
  font-weight: 600; color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-link:hover { color: var(--gold); }

/* ===== SECTION COMMONS ===== */
.section { position: relative; padding: 8rem 0; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; font-weight: 500;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text);
}
.gold-text { color: var(--gold); }
.section-subtitle { color: var(--text-muted); max-width: 500px; margin: 1rem auto 0; line-height: 1.7; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8rem 3rem 4rem;
  max-width: 1300px; margin: 0 auto; gap: 4rem;
  overflow: hidden;
}
.hero-bg {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 70%);
  top: -200px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(109,40,217,0.08), transparent 70%);
  bottom: 0; left: -100px;
  animation: float2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%);
  top: 40%; left: 40%;
  animation: float3 12s ease-in-out infinite;
}
@keyframes float1 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-30px, 30px); } }
@keyframes float2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(20px, -20px); } }
@keyframes float3 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(15px, 15px) scale(1.1); } }

.hero-content {
  position: relative; z-index: 1;
  flex: 1; max-width: 620px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.08);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem; border-radius: 20px;
  font-size: 0.78rem; letter-spacing: 0.5px;
  color: var(--gold); margin-bottom: 1.5rem;
  font-family: var(--font); font-weight: 500;
}
.hero-name {
  font-family: var(--font);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800; line-height: 1;
  letter-spacing: -2px;
}
.hero-name-first {
  display: block; color: var(--text);
}
.hero-name-last {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-tagline {
  font-size: 0.95rem; color: var(--gold); margin: 1.2rem 0;
  min-height: 1.7rem; font-family: var(--font); font-weight: 500;
  letter-spacing: 0.5px;
}
.typed-cursor { animation: blink 1s step-end infinite; }
.hero-desc {
  color: var(--text-muted); line-height: 1.75;
  font-size: 1rem; max-width: 520px; margin-bottom: 2rem;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; font-weight: 600; font-size: 0.9rem;
  padding: 0.85rem 1.8rem; border-radius: 12px;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(245,158,11,0.3);
  letter-spacing: 0.2px; font-family: var(--font);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,158,11,0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-size: 0.9rem;
  padding: 0.85rem 1.8rem; border-radius: 12px;
  text-decoration: none; transition: all 0.3s ease;
  border: 1px solid var(--border);
  letter-spacing: 0.2px; font-family: var(--font);
}
.btn-ghost:hover { border-color: var(--border-gold); color: var(--gold); background: var(--gold-subtle); }

.hero-socials {
  display: flex; gap: 1rem; align-items: center;
}
.social-link {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted); text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-3px);
}

/* Profile Card */
.hero-profile-card {
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.profile-card-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 300px;
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
}
.profile-card-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.profile-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(245,158,11,0.1);
}
.profile-img-wrapper {
  position: relative; width: 180px; height: 180px;
  margin: 0 auto 1.5rem; display:flex;align-items: center ; justify-content: center;
}
.profile-img-placeholder {
  width: 170px; height: 170px; border-radius: 50%;
  background: rgba(245,158,11,0.05);
  border: 2px solid var(--border-gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; position: relative; z-index: 1;
}
.profile-photo-bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.profile-photo-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.profile-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;

  border: 2px solid rgba(245,158,11,0.4);
}
.profile-ring {
  position: absolute; inset: -8px;
  border-radius: 50%; border: 1px solid rgba(245,158,11,0.2);
  animation: spin 8s linear infinite;
}
.profile-ring-2 {
  inset: -16px;
  border-color: rgba(245,158,11,0.1);
  animation: spin 12s linear infinite reverse;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.profile-card-info { text-align: center; margin-bottom: 1.5rem; }
.profile-card-info h3 {
  font-family: var(--font);
  font-size: 1.3rem; font-weight: 700;
}
.profile-card-info p { color: var(--text-muted); font-size: 0.82rem; margin-top: 4px; }
.profile-company {
  display: inline-block;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 0.72rem;
  padding: 0.3rem 0.7rem; border-radius: 6px;
  margin-top: 0.5rem; font-family: var(--font); font-weight: 500;
}

.profile-card-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0.5rem; margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 0.5rem;
}
.profile-stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font);
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.stat-lbl { font-size: 0.62rem; color: var(--text-dim); margin-top: 2px; display: block; }

.profile-card-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.tag {
  font-size: 0.7rem; padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}
.hero-scroll-hint span {
  font-family: var(--font);
  font-size: 0.65rem; letter-spacing: 3px;
  color: var(--text-dim); text-transform: uppercase; font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.about-lead {
  font-family: var(--font);
  font-size: 1.25rem; line-height: 1.6;
  color: var(--text); margin-bottom: 1.5rem;
  font-weight: 400;
}
.about-text p {
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 1rem; font-size: 0.95rem;
}
.about-highlights { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.highlight-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.highlight-item:hover { border-color: var(--border-gold); }
.highlight-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-subtle);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.highlight-item strong { display: block; font-size: 0.9rem; margin-bottom: 2px; font-weight: 600; }
.highlight-item span { font-size: 0.8rem; color: var(--text-muted); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.gallery-main { grid-column: span 2;height: 220px; }
.gallery-card {
  position: relative; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
  height: 160px;
}
.gallery-card:hover { transform: scale(1.02); border-color: var(--border-gold); }
.gallery-placeholder {
  background: rgba(245,158,11,0.04);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--text-dim);
  font-size: 0.75rem; text-align: center;
  padding: 2.5rem 1rem;
}
.gallery-placeholder.small { padding: 1.8rem 1rem; }
.gallery-placeholder span { font-family: var(--font); font-size: 0.7rem; font-weight: 400; }
.gallery-real-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.gallery-label {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 0.7rem; background: rgba(5,5,8,0.85);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem; border-radius: 6px;
  backdrop-filter: blur(10px); font-family: var(--font);
}

/* ===== VISION SECTION ===== */
.vision {
  background: var(--bg-2);
  overflow: hidden;
}
.vision-bg { position: absolute; inset: 0; pointer-events: none; }
.vision-orb {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.07), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; filter: blur(60px);
  animation: pulse-orb 6s ease-in-out infinite;
}
@keyframes pulse-orb { 0%, 100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.2); } }

.vision-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 4rem;
}
.vision-card {
  background: rgba(245,158,11,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.vision-main {
  background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(245,158,11,0.02));
}
.vision-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(245,158,11,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.vision-card-label {
  display: block; font-family: var(--font);
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem; font-weight: 600;
}
.vision-card h3 {
  font-family: var(--font);
  font-size: 1.2rem; font-weight: 500;
  line-height: 1.6;
  color: var(--text);
}
.vision-deco {
  position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.1);
}

.mission-list { display: flex; flex-direction: column; gap: 1rem; }
.mission-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.25rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.mission-item:hover { border-color: var(--border-gold); background: var(--bg-card-hover); }
.mission-num {
  font-family: var(--font);
  font-size: 1.8rem; font-weight: 800;
  color: rgba(245,158,11,0.2); line-height: 1;
  flex-shrink: 0; min-width: 42px;
}
.mission-content h4 { font-size: 0.9rem; margin-bottom: 4px; font-weight: 600; }
.mission-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* Values */
.values-section { margin-top: 2rem; }
.values-title {
  font-family: var(--font);
  font-size: 1.4rem; margin-bottom: 1.5rem; text-align: center;
  font-weight: 700;
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.5rem;
  text-align: center; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.value-card:hover { border-color: var(--border-gold); background: var(--bg-card-hover); }
.value-card:hover::before { opacity: 1; }
.value-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(245,158,11,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-card h4 { font-size: 0.95rem; margin-bottom: 4px; font-weight: 600; }
.value-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ===== JOURNEY / TIMELINE ===== */
.journey { background: var(--bg); }
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; width: 50%; position: relative;
  margin-bottom: 3rem;
}
.timeline-item.left { left: 0; padding-right: 3rem; justify-content: flex-end; }
.timeline-item.right { left: 50%; padding-left: 3rem; justify-content: flex-start; }

.timeline-dot {
  position: absolute; top: 1.5rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.timeline-item.left .timeline-dot { right: -16px; }
.timeline-item.right .timeline-dot { left: -16px; }
.timeline-dot.active { background: var(--gold-subtle); border-color: var(--gold); }

.timeline-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  max-width: 360px; transition: all 0.3s ease;
}
.timeline-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.timeline-card-active { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.04); }

.timeline-year {
  font-family: var(--font); font-size: 0.72rem; font-weight: 600;
  color: var(--gold); letter-spacing: 2px; margin-bottom: 0.5rem; text-transform: uppercase;
}
.timeline-emoji { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.timeline-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.timeline-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.timeline-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.timeline-tags span {
  font-size: 0.65rem; padding: 0.2rem 0.6rem;
  border-radius: 5px; background: rgba(245,158,11,0.08);
  border: 1px solid var(--border-gold); color: var(--gold);
  font-family: var(--font); font-weight: 500;
}

/* ===== ROADMAP ===== */
.roadmap { background: var(--bg-2); overflow: hidden; }
.roadmap-bg { position: absolute; inset: 0; pointer-events: none; }
.roadmap-orb {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.05), transparent 70%);
  top: 50%; right: -200px; transform: translateY(-50%);
  border-radius: 50%; filter: blur(80px);
}
.roadmap-legend {
  display: flex; gap: 1.5rem; justify-content: center;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.legend-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-muted);
  font-family: var(--font);
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.done .legend-dot { background: var(--done); }
.inprogress .legend-dot { background: var(--progress); }
.soon .legend-dot { background: var(--soon); }
.planned .legend-dot { background: var(--planned); }

.roadmap-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.roadmap-phase {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color 0.3s ease;
}
.roadmap-phase:hover { border-color: var(--border-gold); }
.phase-header { margin-bottom: 1.5rem; }
.phase-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.65rem; letter-spacing: 2px;
  padding: 0.3rem 0.7rem; border-radius: 6px; margin-bottom: 0.75rem;
  font-family: var(--font); font-weight: 700;
}
.done-badge { background: rgba(34,197,94,0.1); color: var(--done); border: 1px solid rgba(34,197,94,0.2); }
.inprogress-badge { background: rgba(59,130,246,0.1); color: var(--progress); border: 1px solid rgba(59,130,246,0.2); }
.soon-badge { background: rgba(245,158,11,0.1); color: var(--soon); border: 1px solid rgba(245,158,11,0.2); }
.planned-badge { background: rgba(156,163,175,0.1); color: var(--planned); border: 1px solid rgba(156,163,175,0.2); }

.phase-header h3 { font-family: var(--font); font-size: 1.2rem; font-weight: 700; }
.phase-header p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.roadmap-items { display: flex; flex-direction: column; gap: 1rem; }
.roadmap-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.75rem; border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.roadmap-item.done { background: rgba(34,197,94,0.04); border-color: rgba(34,197,94,0.1); }
.roadmap-item.inprogress { background: rgba(59,130,246,0.04); border-color: rgba(59,130,246,0.15); }
.roadmap-item.soon { background: rgba(245,158,11,0.04); border-color: rgba(245,158,11,0.1); }
.roadmap-item.planned { opacity: 0.6; }

.item-dot { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.pulse-dot { animation: pulse-ring 2s ease-in-out infinite; }
@keyframes pulse-ring { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

.item-content { flex: 1; }
.item-name { display: block; font-size: 0.87rem; font-weight: 600; margin-bottom: 3px; }
.item-desc { display: block; font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.5rem; }
.item-progress { display: flex; align-items: center; gap: 8px; }
.progress-bar {
  flex: 1; height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3B82F6, #60A5FA);
  border-radius: 4px;
  transition: width 1s var(--transition);
}
.item-progress span { font-family: var(--font); font-size: 0.72rem; color: var(--progress); font-weight: 600; }

/* ===== STATS ===== */
.stats { background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  text-align: center; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245,158,11,0.15), transparent, rgba(245,158,11,0.05));
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.stat-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.stat-card:hover::after { opacity: 1; }
.stat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(245,158,11,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.stat-number {
  font-family: var(--font);
  font-size: 2.8rem; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
  display: block;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.stat-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px; width: 0;
  transition: width 1.5s var(--transition);
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-2); overflow: hidden; }
.contact-bg { position: absolute; inset: 0; pointer-events: none; }
.contact-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.contact-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%);
  top: -100px; left: -100px;
}
.contact-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(109,40,217,0.06), transparent 70%);
  bottom: -50px; right: -50px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 2rem;
}
.contact-avatar-inner {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(245,158,11,0.08);
  border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.contact-avatar-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.contact-details h3 { font-family: var(--font); font-size: 1.1rem; font-weight: 700; }
.contact-details p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.contact-link:hover { border-color: var(--border-gold); background: var(--bg-card-hover); }
.cl-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(245,158,11,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.cl-text { flex: 1; }
.cl-label { display: block; font-size: 0.7rem; color: var(--text-dim); font-family: var(--font); font-weight: 500; letter-spacing: 0.5px; }
.cl-value { display: block; font-size: 0.85rem; margin-top: 2px; }
.cl-arrow { color: var(--text-dim); transition: transform 0.3s ease, color 0.3s ease; }
.contact-link:hover .cl-arrow { transform: translateX(4px); color: var(--gold); }

/* Form */
.contact-form-wrapper {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-form-wrapper::before {
  content: ''; display: block; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 2rem; opacity: 0.3;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 0.5rem; font-family: var(--font); font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 0.8rem 1rem; color: var(--text);
  font-family: var(--font); font-size: 0.9rem;
  outline: none; transition: border-color 0.3s ease;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(245,158,11,0.4);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%; padding: 0.9rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; font-weight: 700; font-size: 0.9rem;
  border: none; border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s ease; font-family: var(--font);
  box-shadow: 0 8px 24px rgba(245,158,11,0.25);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.4);
}
.btn-submit.sent { background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo {
  font-family: var(--font);
  font-size: 1.8rem; font-weight: 800;
  color: var(--gold); letter-spacing: -1px;
}
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.footer-copy { text-align: center; }
.footer-copy p { font-size: 0.78rem; color: var(--text-dim); }
.footer-made { margin-top: 4px; }
.heart { color: var(--gold); animation: heartbeat 1.5s ease-in-out infinite; display: inline-block; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: rgba(10,10,16,0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: var(--text); font-size: 0.85rem;
  backdrop-filter: blur(20px); z-index: 9999;
  transform: translateY(20px); opacity: 0;
  transition: all 0.4s var(--transition);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--gold); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(245,158,11,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding: 7rem 2rem 4rem; text-align: center; }
  .hero-profile-card { order: -1; }
  .profile-card-inner { width: auto; max-width: 320px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-socials { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .vision-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 5rem 0; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .timeline-item { width: 100%; left: 0 !important; padding-left: 3rem !important; padding-right: 0 !important; justify-content: flex-start !important; }
  .timeline-line { left: 0; }
  .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot { left: -16px !important; right: auto !important; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-name { font-size: clamp(2.8rem, 12vw, 4rem); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

a, button, div, span {
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-touch-callout: none;
}

.cursor,
.cursor-follower {
  display: none !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* FOTO BESAR ATAS */
.gallery-main {
  grid-column: span 2;
}