/* ============================================================
   YOUTHFIN LANDING PAGE — PEERLIST-INSPIRED DESIGN SYSTEM
   ============================================================ */

/* ── Google Fonts fallback / preload ── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&display=swap');

/* ── Design Tokens ── */
:root {
  --green:       #00AA45;
  --green-light: #E6F7ED;
  --green-mid:   #00913B;
  --bg:          #FAFAF8;
  --bg-card:     #FFFFFF;
  --bg-alt:      #F4F4F1;
  --border:      #E8E8E4;
  --border-dark: #D4D4CE;
  --text:        #1A1A18;
  --text-2:      #4A4A46;
  --text-3:      #8C8C88;
  --yellow:      #F59E0B;
  --purple:      #8B5CF6;
  --orange:      #F97316;
  --red:         #EF4444;
  --blue:        #3B82F6;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);

  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:  'Instrument Serif', Georgia, serif;

  --nav-h:       64px;
  --container:   1200px;
  --section-gap: 120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── Utilities ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
em { font-family: var(--font-serif); font-style: italic; }
.w-full { width: 100%; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,250,248,.88);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav-link {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.nav-link:hover { background: var(--bg-alt); color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto; /* guest: dorong Masuk + Buat Profil ke pojok kanan */
}
/* Kompres jarak antar item kanan navbar (+ → 🔔 → Dashboard → Avatar)
   dari 32px (gap nav-inner) menjadi 8px tanpa ubah layout kiri.
   DESKTOP ONLY — mobile punya gap:8px sendiri, negative margin akan overlap */
@media (min-width: 769px) {
  .yf-cb-btn { margin-left: auto; } /* dorong grup kanan ke pojok kanan */
  .notif-wrap,
  #nav-dashboard-btn,
  .nav-avatar-wrap {
    margin-left: -24px; /* 32px gap - 24px = 8px efektif */
  }
  #nav-dashboard-btn {
    margin-right: 0 !important; /* override inline style dari JS */
  }
}
.btn-ghost {
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-ghost:hover { background: var(--bg-alt); color: var(--text); border-color: var(--border); }
.btn-primary-nav {
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .15s;
  box-shadow: 0 1px 3px rgba(0,170,69,.25);
}
.btn-primary-nav:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,170,69,.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none; margin-left: auto; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + var(--banner-h, 0px));
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-link { padding: 10px 0; font-size: 15px; font-weight: 500; color: var(--text-2); border-bottom: 1px solid var(--border); }
.mobile-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.mobile-actions .btn-ghost { border-color: var(--border); } /* transparan default btn-ghost tak terlihat di atas background putih dropdown */

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  gap: 64px;
}
.hero-inner { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--green-light);
  border: 1px solid rgba(0,170,69,.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
.hero-title {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title em {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--green);
  display: block;
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--green-mid);
  box-shadow: 0 2px 8px rgba(0,170,69,.25);
  transition: all .2s;
}
.btn-hero-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,170,69,.35); }
.btn-hero-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-hero-primary:disabled:hover { background: var(--green); transform: none; box-shadow: none; }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--bg-card);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.btn-hero-secondary:hover { background: var(--bg-alt); border-color: var(--border-dark); transform: translateY(-1px); }
.hero-social-proof { display: flex; align-items: center; gap: 12px; }
.proof-avatars { display: flex; }
.proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-left: -8px;
  object-fit: cover;
  background: var(--bg-alt);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-weight: 600;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-count {
  background: var(--green-light);
  color: var(--green-mid);
  font-size: 10px;
  font-weight: 700;
}
.proof-text { font-size: 13px; color: var(--text-2); }
.proof-text strong { color: var(--text); }

/* ── Hero Visual ── */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 480px;
}
.hero-card-wrapper { position: relative; width: 380px; }
.ui-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.profile-card { animation-delay: 0s; }
.job-card { animation-delay: 2s; }
.skill-card { animation-delay: 4s; }

.profile-card {
  position: absolute;
  top: 0; left: 0;
  width: 300px;
  z-index: 3;
}
.profile-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.profile-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.profile-info { flex: 1; }
.profile-name { font-size: 13px; font-weight: 600; color: var(--text); }
.profile-role { font-size: 11px; color: var(--text-3); margin-top: 1px; }
.career-badge {
  background: var(--green);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  text-align: center;
}
.career-score { display: block; font-size: 16px; font-weight: 800; color: #fff; line-height: 1; }
.career-label { display: block; font-size: 9px; color: rgba(255,255,255,.8); font-weight: 500; text-transform: uppercase; }
.profile-skills { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.skill-tag {
  padding: 3px 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-2);
  font-weight: 500;
}
.skill-tag.active { background: var(--green-light); color: var(--green-mid); border-color: rgba(0,170,69,.2); }
.profile-stats { display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 12px; }
.stat { flex: 1; text-align: center; }
.stat strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.stat span { font-size: 10px; color: var(--text-3); }

.job-card {
  position: absolute;
  top: 140px; right: -60px;
  width: 240px;
  z-index: 4;
}
.job-match-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-mid);
  margin-bottom: 10px;
}
.match-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.job-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.company-logo {
  width: 32px; height: 32px;
  background: #635BFF;
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.job-title { font-size: 13px; font-weight: 600; color: var(--text); }
.job-company { font-size: 11px; color: var(--text-3); }
.job-salary { font-size: 12px; color: var(--text-2); margin-bottom: 10px; }
.btn-apply {
  width: 100%;
  padding: 7px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  transition: background .15s;
}
.btn-apply:hover { background: var(--green-mid); }

.skill-card {
  position: absolute;
  bottom: -20px; left: 10px;
  width: 240px;
  z-index: 3;
}
.skill-card-label { font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 12px; }
.skill-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.skill-name { font-size: 11px; color: var(--text-2); width: 90px; flex-shrink: 0; }
.skill-bar { flex: 1; height: 4px; background: var(--bg-alt); border-radius: 2px; overflow: hidden; }
.skill-fill { height: 100%; background: var(--green); border-radius: 2px; transition: width .8s ease; }
.skill-fill.warn { background: var(--yellow); }
.skill-fill.danger { background: var(--red); }
.skill-pct { font-size: 10px; color: var(--text-3); width: 28px; text-align: right; flex-shrink: 0; }

.ui-float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  animation: floatCard 5s ease-in-out infinite;
  animation-delay: 1s;
}
.notif-float { top: 300px; right: -80px; z-index: 5; width: 230px; }
.notif-float span { font-size: 20px; }
.notif-float strong { display: block; font-size: 12px; font-weight: 600; color: var(--text); }
.notif-float p { font-size: 11px; color: var(--text-3); margin-top: 1px; }

/* ============================================================
   LOGOS
============================================================ */
.logos-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  overflow: hidden;
  background: var(--bg-card);
}
.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 24px;
}
.logos-track-wrapper { overflow: hidden; position: relative; }
.logos-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo-item img {
  height: 22px;
  width: auto;
  filter: grayscale(1) opacity(0.35);
  transition: filter .25s;
  display: block;
}
.logo-item span {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: .3px;
}
.logo-item:hover img { filter: grayscale(0) opacity(0.85); }
.logo-item:hover span { color: var(--text-2); }

/* ============================================================
   STATS
============================================================ */
.stats-section {
  padding: 80px 32px;
}
.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 48px;
}
.stat-number {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
}
.stat-prefix { font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: var(--text); letter-spacing: -1px; }
.stat-suffix { font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: var(--green); }
.stat-desc { font-size: 13px; color: var(--text-3); margin-top: 8px; font-weight: 500; }
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   SECTION SHARED STYLES
============================================================ */
.section-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-light);
  border: 1px solid rgba(0,170,69,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label.light {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
}
.section-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--green);
  display: inline;
}
.section-title-left { font-size: clamp(28px, 3vw, 44px); text-align: left; }
.section-title-left em { font-size: clamp(28px, 3vw, 44px); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 auto 56px;
}

/* ============================================================
   AI SECTION
============================================================ */
.ai-section {
  padding: var(--section-gap) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}
.ai-feature-main {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-feature-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border: 1px solid rgba(0,170,69,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 4px;
}
.ai-feature-main h3 { font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: -.4px; }
.ai-feature-main p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.ai-feature-visual { margin-top: 16px; }
.radar-visual {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100px;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.radar-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.radar-bar { width: 100%; flex: 1; background: var(--bg-alt); border-radius: 4px 4px 0 0; overflow: hidden; display: flex; align-items: flex-end; min-height: 60px; }
.radar-fill { width: 100%; background: var(--green); border-radius: 4px 4px 0 0; }
.radar-fill.warn { background: var(--yellow); }
.radar-fill.danger { background: var(--red); }
.radar-item span { font-size: 9px; color: var(--text-3); font-weight: 500; white-space: nowrap; }

.ai-features-col { display: flex; flex-direction: column; gap: 16px; }
.ai-feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
}
.ai-feature-card:hover { border-color: var(--border-dark); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.ai-card-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.skill-icon { background: #EEF2FF; color: #6366F1; }
.job-icon { background: #FEF3C7; color: #D97706; }
.vcc-icon { background: #EFF6FF; color: #3B82F6; }
.network-icon { background: #F0FDF4; color: var(--green); }
.ai-feature-card h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.ai-feature-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-section { padding: var(--section-gap) 0; text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.step-card:hover { border-color: rgba(0,170,69,.3); box-shadow: var(--shadow); translate: 0 -4px; }
.step-number {
  font-size: 64px;
  font-weight: 900;
  color: var(--bg-alt);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  letter-spacing: -2px;
  user-select: none;
}
.step-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border: 1px solid rgba(0,170,69,.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -.3px; }
.step-card p { font-size: 13px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.step-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.mini-profile { display: flex; align-items: center; gap: 10px; }
.mini-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--green-light); border: 2px solid rgba(0,170,69,.2); flex-shrink: 0; }
.mini-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.mini-line { height: 8px; background: var(--border); border-radius: 4px; }
.w-70 { width: 70%; } .w-60 { width: 60%; } .w-50 { width: 50%; }
.w-40 { width: 40%; } .w-30 { width: 30%; }
.mini-score {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--radius-sm);
  padding: 5px 8px;
}
.mini-progress { display: flex; flex-direction: column; gap: 8px; }
.mini-prog-item { display: flex; align-items: center; gap: 8px; }
.mini-prog-item span { font-size: 10px; color: var(--text-3); width: 50px; flex-shrink: 0; }
.mini-bar {
  flex: 1;
  height: 5px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
}
.mini-bar div { height: 100%; border-radius: 3px; }
.mini-jobs { display: flex; flex-direction: column; gap: 8px; }
.mini-job { display: flex; align-items: center; gap: 8px; }
.mini-job-logo {
  width: 24px; height: 24px;
  background: #635BFF; color: #fff;
  border-radius: 4px; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mini-job-logo.g { background: #34A853; }
.mini-job-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mini-match {
  font-size: 10px; font-weight: 700;
  color: var(--green-mid);
  background: var(--green-light);
  padding: 2px 6px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* ============================================================
   JOBS
============================================================ */
.jobs-section {
  padding: var(--section-gap) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.jobs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.btn-outline-green {
  padding: 9px 18px;
  border: 1px solid rgba(0,170,69,.3);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-mid);
  background: transparent;
  transition: all .15s;
  flex-shrink: 0;
}
.btn-outline-green:hover { background: var(--green-light); }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.job-listing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.job-listing-card:hover { border-color: rgba(0,170,69,.25); box-shadow: var(--shadow-sm); }
.jlc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.jlc-logo {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.jlc-logo.stripe { background: #635BFF; }
.jlc-logo.notion { background: #1A1A18; }
.jlc-logo.gitlab { background: #FC6D26; font-size: 11px; }
.jlc-logo.figma { background: #F24E1E; }
.jlc-meta { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.jlc-company { font-size: 12px; font-weight: 600; color: var(--text); }
.jlc-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  width: fit-content;
}
.jlc-badge.remote { background: var(--green-light); color: var(--green-mid); }
.jlc-badge.hybrid { background: #FEF3C7; color: #D97706; }
.jlc-match { font-size: 11px; font-weight: 700; color: var(--green-mid); background: var(--green-light); padding: 3px 10px; border-radius: 100px; flex-shrink: 0; }
.jlc-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -.2px; }
.jlc-salary { font-size: 13px; color: var(--text-2); margin-bottom: 12px; }
.jlc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.jlc-tags span { padding: 3px 9px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 100px; font-size: 11px; color: var(--text-2); font-weight: 500; }
.jlc-apply {
  width: 100%; padding: 10px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
}
.jlc-apply:hover { background: var(--green-mid); }
.job-listing-card.locked .jlc-apply { display: none; }
.jlc-locked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250,250,248,.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  color: var(--text-3);
}
.jlc-locked-overlay a {
  padding: 8px 20px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
}
.jlc-locked-overlay a:hover { background: var(--green-mid); }

/* ============================================================
   COMMUNITY / FEED
============================================================ */
.community-section { padding: var(--section-gap) 0; text-align: center; }
.feed-preview { position: relative; max-width: 640px; margin: 0 auto; }
.feed-post {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
  text-align: left;
  transition: all .2s;
}
.feed-post:hover { border-color: var(--border-dark); box-shadow: var(--shadow-sm); }
.fp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.fp-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.fp-meta { flex: 1; }
.fp-name { font-size: 13px; font-weight: 600; color: var(--text); display: block; }
.fp-role { font-size: 11px; color: var(--text-3); }
.fp-time { font-size: 11px; color: var(--text-3); flex-shrink: 0; }
.fp-content { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 10px; }
.fp-tags { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.fp-tags span { font-size: 12px; color: var(--green-mid); background: var(--green-light); padding: 2px 8px; border-radius: 100px; font-weight: 500; }
.fp-actions { display: flex; gap: 8px; }
.fp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  transition: all .15s;
}
.fp-btn:hover { background: var(--border); color: var(--text); }
.feed-blur-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg) 80%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}
.btn-join-community {
  padding: 11px 24px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,170,69,.25);
  transition: all .2s;
}
.btn-join-community:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,170,69,.3); }

/* ============================================================
   BENTO GRID
============================================================ */
.bento-section { padding: var(--section-gap) 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
  text-align: left;
}
.bento-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
}
.bento-card:hover { border-color: rgba(0,170,69,.25); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 2; }
.bento-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border: 1px solid rgba(0,170,69,.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}
.bento-icon.yellow { background: #FEF3C7; color: #D97706; border-color: #FDE68A; }
.bento-icon.purple { background: #F5F3FF; color: #8B5CF6; border-color: #DDD6FE; }
.bento-icon.orange { background: #FFF7ED; color: #F97316; border-color: #FED7AA; }
.bento-icon.green { background: var(--green-light); color: var(--green-mid); border-color: rgba(0,170,69,.2); }
.bento-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -.3px; }
.bento-card p { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.bento-profile-visual { margin-top: 20px; }
.bvp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.bvp-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.bvp-ava { width: 36px; height: 36px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
.bvp-line { height: 8px; background: var(--border); border-radius: 4px; }
.bvp-tags { display: flex; gap: 6px; }
.bvp-tag { padding: 3px 10px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 100px; font-size: 11px; color: var(--text-2); font-weight: 500; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { padding: var(--section-gap) 0; text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .2s;
}
.testi-card:hover { border-color: var(--border-dark); box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-stars { font-size: 14px; color: var(--yellow); margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.testi-name { font-size: 13px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 11px; color: var(--text-3); margin-top: 1px; }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section { padding: var(--section-gap) 32px; }
.cta-card {
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(135deg, #00913B 0%, #00AA45 40%, #007A32 100%);
  border-radius: var(--radius-xl);
  padding: 80px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-title em { color: rgba(255,255,255,.75); font-size: clamp(32px, 4vw, 56px); font-weight: 400; }
.cta-subtitle { font-size: 16px; color: rgba(255,255,255,.8); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  padding: 13px 28px;
  background: #fff;
  color: var(--green-mid);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-cta-ghost {
  padding: 13px 24px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.25); }
.cta-decoration { position: absolute; inset: 0; pointer-events: none; }
.cta-deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
}
.ring-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.ring-2 { width: 300px; height: 300px; bottom: -120px; left: -80px; }
.ring-3 { width: 200px; height: 200px; top: -80px; left: 50%; transform: translateX(-50%); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding: 60px 32px 32px;
}
.footer .logo-mark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.footer .logo-text { color: #fff; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { flex: 1; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 6px; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 12px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--container);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-legal a:hover { color: #fff; }

/* ============================================================
   ANIMATIONS — Scroll-linked (GSAP, lihat js/landing.js)
============================================================ */
/* Kata hasil split judul — inline-block agar bisa di-translate per kata */
.yf-word { display: inline-block; will-change: transform, opacity; }

/* Reading progress bar — scaleX digerakkan GSAP mengikuti scroll halaman */
#yf-scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120;
  background: var(--green); transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; min-height: auto; padding-top: calc(var(--nav-h) + 60px); text-align: center; }
  .hero-inner { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { width: 100%; }
  .hero-card-wrapper { width: 340px; height: 420px; }
  .notif-float { right: -20px; }

  .ai-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 2; }
  .bento-wide { grid-column: span 2; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 32px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .cta-card { padding: 56px 40px; }
  .jobs-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .nav-links, .nav-actions { display: none; }
  .nav-inner { gap: 8px; padding: 0 20px; }
  .nav-logo { margin-right: auto; }
  .nav-avatar-wrap { margin-right: 4px; }
  .hamburger { display: flex; margin-left: 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-card { padding: 48px 28px; }
  .hero-card-wrapper { width: 280px; height: 360px; }
  .hero-visual { min-height: 320px; }
  .profile-card { width: 240px; }
  .job-card { top: 110px; right: -10px; width: 200px; }
  .skill-card { width: 200px; left: 4px; }
  .notif-float { display: none; }
  .landing-profiles-grid { grid-template-columns: 1fr !important; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .landing-profiles-grid { grid-template-columns: repeat(2,1fr) !important; }
}
