/* ============================================================
   LANDING PAGE — MyPsych v2
   Semua class pakai prefix .lp- untuk isolasi dari styles.css
   ============================================================ */

/* ============================================================
   RESET & VARIABLES
   ============================================================ */
.lp-shell *,
.lp-shell *::before,
.lp-shell *::after {
  box-sizing: border-box;
}

.lp-shell {
  --lp-blue:          #2f7df2;
  --lp-blue-dark:     #1f67d1;
  --lp-blue-deep:     #1857b8;
  --lp-blue-light:    #edf5ff;
  --lp-blue-subtle:   #f5f9ff;
  --lp-blue-border:   #d6e5fb;

  --lp-white:         #ffffff;
  --lp-bg:            #fbfcfe;
  --lp-bg-soft:       #f7faff;
  --lp-text:          #18263b;
  --lp-text-muted:    #728196;
  --lp-text-soft:     #8a97a8;
  --lp-line:          #e3ebf4;
  --lp-line-strong:   #d3dfec;

  --lp-green:         #28a665;
  --lp-green-light:   #e8f7ef;
  --lp-orange:        #f59e0b;
  --lp-orange-light:  #fff5e6;

  --lp-shadow-sm:     0 2px 8px rgba(24,48,80,.04);
  --lp-shadow-md:     0 8px 24px rgba(24,48,80,.06);
  --lp-shadow-lg:     0 18px 48px rgba(24,48,80,.08);
  --lp-shadow-blue:   0 12px 32px rgba(47,125,242,.18);

  --lp-r-sm:          8px;
  --lp-r-md:          14px;
  --lp-r-lg:          22px;
  --lp-r-xl:          28px;

  font-family: 'Inter', -apple-system, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--lp-text);
  background: var(--lp-white);
  -webkit-font-smoothing: antialiased;
}

.lp-shell h1,
.lp-shell h2,
.lp-shell h3,
.lp-shell h4 {
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.lp-shell h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; letter-spacing: -0.04em; }
.lp-shell h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.03em; }
.lp-shell h3 { font-size: 1.15rem; font-weight: 700; }
.lp-shell h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.lp-shell p  { margin: 0 0 14px; }
.lp-shell a  { color: inherit; text-decoration: none; }

.lp-container {
  width: min(1160px, 100% - 40px);
  margin: 0 auto;
}

.lp-text-blue { color: var(--lp-blue); }

/* ============================================================
   BUTTONS
   ============================================================ */
.lp-btn-primary,
.lp-btn-secondary,
.lp-btn-ghost,
.lp-btn-white,
.lp-btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
}

.lp-btn-lg { padding: 14px 24px; font-size: 1rem; }

.lp-btn-primary {
  background: var(--lp-blue);
  color: var(--lp-white);
  box-shadow: var(--lp-shadow-blue);
}
.lp-btn-primary:hover {
  background: var(--lp-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(47,125,242,.28);
}

.lp-btn-secondary {
  background: var(--lp-white);
  color: var(--lp-text);
  border-color: var(--lp-line-strong);
}
.lp-btn-secondary:hover {
  background: var(--lp-blue-subtle);
  border-color: var(--lp-blue-border);
  transform: translateY(-1px);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text-muted);
  font-weight: 600;
}
.lp-btn-ghost:hover { color: var(--lp-text); background: var(--lp-blue-subtle); }

.lp-btn-white {
  background: var(--lp-white);
  color: var(--lp-blue-deep);
}
.lp-btn-white:hover {
  background: var(--lp-blue-light);
  transform: translateY(-1px);
}

.lp-btn-outline-white {
  background: transparent;
  color: var(--lp-white);
  border-color: rgba(255,255,255,.5);
}
.lp-btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--lp-white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.lp-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--lp-line);
}

.lp-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--lp-text);
}

.lp-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-blue);
  box-shadow: 0 0 0 4px var(--lp-blue-light);
}

.lp-nav-links {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.lp-nav-links a {
  color: var(--lp-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s;
  cursor: pointer;
}
.lp-nav-links a:hover { color: var(--lp-blue); }

.lp-nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--lp-blue-subtle) 0%, var(--lp-white) 70%);
  overflow: hidden;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--lp-blue-light);
  color: var(--lp-blue-deep);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.lp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-blue);
  box-shadow: 0 0 0 3px rgba(47,125,242,.2);
}

.lp-hero h1 {
  margin-bottom: 20px;
  letter-spacing: -0.045em;
}

.lp-hero-sub {
  font-size: 1.08rem;
  color: var(--lp-text-muted);
  margin-bottom: 28px;
  max-width: 520px;
}

.lp-hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lp-hero-note {
  font-size: 0.85rem;
  color: var(--lp-text-soft);
}
.lp-hero-note strong { color: var(--lp-text); }

/* --- Mockup Browser --- */
.lp-hero-visual {
  position: relative;
  perspective: 1000px;
}

.lp-mockup-glow {
  position: absolute;
  inset: 10% 5% -10% 5%;
  background: radial-gradient(ellipse at center, rgba(47,125,242,.28), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.lp-mockup-browser {
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-lg);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  animation: lpFloatY 6s ease-in-out infinite;
}

@keyframes lpFloatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.lp-mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f8fafc;
  border-bottom: 1px solid var(--lp-line);
}

.lp-toolbar-dot { width: 11px; height: 11px; border-radius: 50%; }
.lp-toolbar-dot.red    { background: #ff5f57; }
.lp-toolbar-dot.yellow { background: #febc2e; }
.lp-toolbar-dot.green  { background: #28c840; }

.lp-mockup-url {
  margin-left: 12px;
  padding: 3px 10px;
  background: var(--lp-white);
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--lp-text-muted);
  font-weight: 500;
}

.lp-mockup-content { padding: 18px 20px 22px; }

.lp-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lp-line);
  margin-bottom: 16px;
}

.lp-mockup-brand { font-weight: 800; font-size: 0.9rem; }

.lp-mockup-user {
  font-size: 0.72rem;
  color: var(--lp-text-muted);
  padding: 4px 10px;
  background: var(--lp-blue-light);
  border-radius: 999px;
  font-weight: 600;
}

.lp-mockup-greeting { margin-bottom: 16px; }

.lp-mockup-eyebrow {
  display: block;
  font-size: 0.6rem;
  color: var(--lp-text-soft);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.lp-mockup-greeting h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lp-text);
  text-transform: none;
  letter-spacing: -0.01em;
  margin: 0;
}

.lp-mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.lp-mockup-stat {
  padding: 10px 12px;
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-line);
  border-radius: 10px;
}

.lp-mockup-stat-label {
  display: block;
  font-size: 0.62rem;
  color: var(--lp-text-muted);
  margin-bottom: 4px;
}

.lp-mockup-stat strong {
  font-size: 1.05rem;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}

.lp-mockup-chart {
  padding: 12px 14px;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  background: var(--lp-white);
}

.lp-mockup-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.lp-mockup-chart-title { font-size: 0.75rem; font-weight: 700; }

.lp-mockup-chart-badge {
  font-size: 0.62rem;
  padding: 3px 8px;
  background: var(--lp-bg-soft);
  color: var(--lp-text-muted);
  border-radius: 999px;
  font-weight: 600;
}

.lp-mockup-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lp-line);
  margin-bottom: 8px;
}

.lp-mockup-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--lp-blue), var(--lp-blue-deep));
  border-radius: 4px 4px 2px 2px;
  transform-origin: bottom;
  animation: lpBarRise 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  opacity: 0.55;
}

.lp-mockup-bar-current {
  opacity: 1;
  box-shadow: 0 4px 12px rgba(47,125,242,.35);
}

.lp-mockup-bar:nth-child(1) { animation-delay: 0.1s; }
.lp-mockup-bar:nth-child(2) { animation-delay: 0.2s; }
.lp-mockup-bar:nth-child(3) { animation-delay: 0.3s; }
.lp-mockup-bar:nth-child(4) { animation-delay: 0.4s; }
.lp-mockup-bar:nth-child(5) { animation-delay: 0.5s; }
.lp-mockup-bar:nth-child(6) { animation-delay: 0.6s; }
.lp-mockup-bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes lpBarRise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.lp-mockup-chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--lp-text-soft);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.lp-trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-white);
}

.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.lp-trust-item strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--lp-blue);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.lp-trust-item span {
  font-size: 0.82rem;
  color: var(--lp-text-muted);
  font-weight: 500;
}

/* ============================================================
   KRAEPELIN HIGHLIGHT
   ============================================================ */
.lp-kraepelin {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--lp-blue-subtle) 0%, var(--lp-white) 100%);
  position: relative;
  overflow: hidden;
}

.lp-kraepelin::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(47,125,242,.08), transparent 70%);
  pointer-events: none;
}

.lp-kraepelin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}

.lp-badge-hot {
  display: inline-block;
  padding: 5px 12px;
  background: var(--lp-orange-light);
  color: #a06207;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.lp-kraepelin h2 { margin-bottom: 18px; }

.lp-kraepelin p {
  font-size: 1.02rem;
  color: var(--lp-text-muted);
  margin-bottom: 24px;
  max-width: 480px;
}

.lp-kraepelin-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-kraepelin-stats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--lp-text);
}

.lp-stat-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: var(--lp-blue-light);
  color: var(--lp-blue-deep);
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
}

.lp-kraepelin-visual { display: flex; justify-content: center; }

.lp-kraepelin-card {
  width: 100%;
  max-width: 400px;
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-lg);
  box-shadow: var(--lp-shadow-lg);
  padding: 22px 24px;
  animation: lpFloatY 6s ease-in-out infinite;
  animation-delay: 1s;
}

.lp-kraepelin-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.lp-kraepelin-label {
  font-size: 0.65rem;
  color: var(--lp-text-soft);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.lp-kraepelin-timer {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 5px 12px;
  background: var(--lp-blue-light);
  color: var(--lp-blue-deep);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  animation: lpPulseTimer 1.5s ease-in-out infinite;
}

@keyframes lpPulseTimer {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.04); }
}

.lp-timer-value { font-size: 1rem; }
.lp-timer-unit  { font-size: 0.7rem; opacity: 0.75; }

.lp-kraepelin-numbers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 8px;
  margin-bottom: 20px;
}

.lp-kraepelin-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--lp-text);
  letter-spacing: -0.05em;
  line-height: 1;
}

.lp-kraepelin-op {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lp-blue);
}

.lp-kraepelin-input {
  flex: 1;
  min-width: 60px;
  height: 62px;
  background: var(--lp-blue-subtle);
  border: 2px solid var(--lp-blue-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px;
}

.lp-cursor {
  display: inline-block;
  width: 2px;
  height: 32px;
  background: var(--lp-blue);
  animation: lpBlink 1s steps(1) infinite;
}

@keyframes lpBlink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.lp-kraepelin-progress {
  height: 4px;
  background: var(--lp-blue-light);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 12px;
}

.lp-kraepelin-progress-fill {
  height: 100%;
  width: 45%;
  background: var(--lp-blue);
  border-radius: 99px;
  animation: lpProgressMove 3s ease-in-out infinite;
}

@keyframes lpProgressMove {
  0%, 100% { width: 45%; }
  50%      { width: 75%; }
}

.lp-kraepelin-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--lp-text-soft);
  font-weight: 500;
}

/* ============================================================
   SECTION HEADS (shared)
   ============================================================ */
.lp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.lp-section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--lp-blue);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.lp-section-sub {
  font-size: 1.02rem;
  color: var(--lp-text-muted);
  margin: 12px 0 0;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.lp-categories {
  padding: 90px 0;
  background: var(--lp-white);
}

.lp-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-category-card {
  position: relative;
  padding: 26px 22px;
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-md);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.lp-category-active:hover {
  border-color: var(--lp-blue-border);
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-4px);
}

.lp-category-coming {
  background: var(--lp-bg-soft);
  opacity: 0.9;
}

.lp-badge-coming {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 8px;
  background: var(--lp-orange-light);
  color: #a06207;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lp-category-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--lp-blue-light);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.lp-category-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.lp-category-card p {
  font-size: 0.87rem;
  color: var(--lp-text-muted);
  margin-bottom: 18px;
  flex: 1;
}

.lp-category-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--lp-text-soft);
  padding-top: 14px;
  border-top: 1px solid var(--lp-line);
  margin-bottom: 14px;
}

.lp-category-count { font-weight: 700; color: var(--lp-text); }

.lp-category-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lp-blue);
  cursor: pointer;
  transition: color 0.15s;
}

.lp-category-link:hover { color: var(--lp-blue-dark); }

/* ============================================================
   FEATURES
   ============================================================ */
.lp-features {
  padding: 90px 0;
  background: var(--lp-bg);
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-feature-card {
  padding: 30px 26px;
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-md);
  transition: all 0.2s ease;
}

.lp-feature-card:hover {
  border-color: var(--lp-blue-border);
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-4px);
}

.lp-feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--lp-blue-light);
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.lp-feature-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.lp-feature-card p {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  margin: 0;
}

/* ============================================================
   PREVIEW RESULT
   ============================================================ */
.lp-preview-result {
  padding: 90px 0;
  background: var(--lp-white);
}

.lp-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.lp-preview-copy h2 { margin-bottom: 16px; }

.lp-preview-copy p {
  font-size: 1.02rem;
  color: var(--lp-text-muted);
  margin-bottom: 22px;
}

.lp-preview-copy strong { color: var(--lp-text); font-weight: 700; }

.lp-preview-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-preview-points li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--lp-text);
  font-size: 0.94rem;
}

.lp-preview-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--lp-green);
  font-weight: 900;
  font-size: 0.9rem;
}

.lp-preview-visual { display: flex; justify-content: center; }

.lp-preview-card {
  width: 100%;
  max-width: 480px;
  padding: 26px 28px;
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-lg);
  box-shadow: var(--lp-shadow-lg);
}

.lp-preview-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.lp-preview-card-label {
  display: block;
  font-weight: 800;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.lp-preview-card-period {
  font-size: 0.75rem;
  color: var(--lp-text-soft);
}

.lp-preview-card-badge {
  padding: 5px 12px;
  background: var(--lp-green-light);
  color: var(--lp-green);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
}

.lp-preview-bars {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 180px;
  padding-bottom: 26px;
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--lp-line);
}

.lp-preview-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 100%;
  position: relative;
}

.lp-preview-bar {
  width: 100%;
  max-width: 60px;
  height: var(--h);
  background: linear-gradient(180deg, var(--lp-blue), var(--lp-blue-deep));
  border-radius: 8px 8px 4px 4px;
  opacity: 0.75;
  transform-origin: bottom;
  animation: lpBarRise 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.lp-preview-bar-group:nth-child(1) .lp-preview-bar { animation-delay: 0.2s; }
.lp-preview-bar-group:nth-child(2) .lp-preview-bar { animation-delay: 0.4s; }
.lp-preview-bar-group:nth-child(3) .lp-preview-bar { animation-delay: 0.6s; }
.lp-preview-bar-group:nth-child(4) .lp-preview-bar { animation-delay: 0.8s; }

.lp-preview-bar-current {
  opacity: 1;
  box-shadow: 0 8px 20px rgba(47,125,242,.28);
}

.lp-preview-bar-group span {
  position: absolute;
  bottom: -22px;
  font-size: 0.7rem;
  color: var(--lp-text-soft);
  font-weight: 600;
}

.lp-preview-card-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 6px;
}

.lp-preview-stat {
  padding: 12px 10px;
  background: var(--lp-bg-soft);
  border-radius: 10px;
  text-align: center;
}

.lp-preview-stat span {
  display: block;
  font-size: 0.68rem;
  color: var(--lp-text-muted);
  margin-bottom: 4px;
}

.lp-preview-stat strong {
  font-size: 1.05rem;
  color: var(--lp-blue);
  letter-spacing: -0.02em;
}

/* ============================================================
   CV ATS
   ============================================================ */
.lp-cv-ats {
  padding: 90px 0;
  background: var(--lp-bg);
}

.lp-cv-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.lp-badge-coming-lg {
  display: inline-block;
  padding: 6px 14px;
  background: var(--lp-orange-light);
  color: #a06207;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.lp-cv-copy h2 { margin-bottom: 16px; }

.lp-cv-copy p {
  font-size: 1.02rem;
  color: var(--lp-text-muted);
  margin-bottom: 26px;
}

.lp-cv-copy strong { color: var(--lp-text); }

.lp-ppf-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.lp-ppf-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
}

.lp-ppf-label {
  min-width: 70px;
  padding: 4px 10px;
  background: var(--lp-blue-light);
  color: var(--lp-blue-deep);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.lp-ppf-text {
  font-size: 0.9rem;
  color: var(--lp-text);
  font-weight: 500;
}

.lp-cv-visual { display: flex; justify-content: center; }

.lp-cv-preview {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 210 / 297;
  padding: 40px 32px;
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-md);
  box-shadow: var(--lp-shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-cv-preview-line {
  height: 10px;
  background: var(--lp-bg-soft);
  border-radius: 4px;
}
.lp-cv-preview-line.long   { width: 100%; }
.lp-cv-preview-line.medium { width: 75%; }
.lp-cv-preview-line.short  { width: 45%; }
.lp-cv-preview-gap { height: 20px; }

/* ============================================================
   WHY FREE
   ============================================================ */
.lp-why-free {
  padding: 70px 0;
  background: var(--lp-white);
}

.lp-why-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 48px;
  background: linear-gradient(135deg, var(--lp-blue-subtle), var(--lp-white));
  border: 1px solid var(--lp-blue-border);
  border-radius: var(--lp-r-lg);
  text-align: center;
}

.lp-why-card h2 {
  color: var(--lp-blue-deep);
  margin-bottom: 20px;
}

.lp-why-card p {
  font-size: 1.02rem;
  color: var(--lp-text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.lp-why-card p:last-child { margin-bottom: 0; }
.lp-why-card strong { color: var(--lp-text); font-weight: 700; }

/* ============================================================
   ABOUT / TIMELINE
   ============================================================ */
.lp-about {
  padding: 90px 0;
  background: var(--lp-bg);
}

.lp-timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 24px 26px;
  background: var(--lp-white);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-md);
  transition: all 0.2s ease;
}

.lp-timeline-item:hover {
  border-color: var(--lp-blue-border);
  box-shadow: var(--lp-shadow-sm);
}

.lp-timeline-item-current {
  border-color: var(--lp-blue);
  background: linear-gradient(135deg, var(--lp-blue-subtle), var(--lp-white));
}

.lp-timeline-year {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lp-blue);
  letter-spacing: -0.02em;
}

.lp-timeline-item-current .lp-timeline-year { color: var(--lp-blue-deep); }

.lp-timeline-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.lp-timeline-body p {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  margin: 0;
}

.lp-timeline-body strong { color: var(--lp-text); }

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq {
  padding: 90px 0;
  background: var(--lp-white);
}

.lp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-faq-item {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-md);
  background: var(--lp-white);
  overflow: hidden;
  transition: border-color 0.15s;
}

.lp-faq-item[open] {
  border-color: var(--lp-blue-border);
  background: var(--lp-blue-subtle);
}

.lp-faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--lp-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.lp-faq-item summary::-webkit-details-marker { display: none; }

.lp-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--lp-blue);
  font-weight: 400;
  transition: transform 0.2s;
  line-height: 1;
}

.lp-faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.lp-faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.lp-final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-blue-deep) 100%);
  color: var(--lp-white);
  position: relative;
  overflow: hidden;
}

.lp-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.12), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}

.lp-final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.lp-final-cta h2 {
  color: var(--lp-white);
  margin-bottom: 12px;
}

.lp-final-cta p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}

.lp-final-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  padding: 60px 0 24px;
  background: var(--lp-text);
  color: rgba(255,255,255,.7);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.lp-footer-brand .lp-brand-text {
  color: var(--lp-white);
  font-weight: 800;
  font-size: 1.05rem;
}

.lp-footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  margin: 6px 0 0;
  max-width: 260px;
}

.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer-col h4 {
  color: var(--lp-white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.lp-footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,.7);
  transition: color 0.15s;
  cursor: pointer;
}

.lp-footer-col a:hover { color: var(--lp-white); }

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .lp-hero-grid,
  .lp-kraepelin-grid,
  .lp-preview-grid,
  .lp-cv-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .lp-hero { padding: 60px 0 40px; }

  .lp-category-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-feature-grid  { grid-template-columns: 1fr; }
  .lp-footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {

   .lp-navbar-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }
  /* Perkecil mockup di HP supaya section berikutnya cepat terlihat */
  .lp-mockup-content { padding: 14px 16px 18px; }
  .lp-mockup-greeting h4 { font-size: 0.85rem; }
  .lp-mockup-stat strong { font-size: 0.95rem; }
  .lp-mockup-chart-bars { height: 70px; }
  .lp-mockup-chart-title { font-size: 0.7rem; }
  .lp-mockup-url { font-size: 0.65rem; }
  .lp-nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 8px;
    /* Scrollbar disembunyikan tapi tetap bisa di-scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Snap ke awal supaya tidak ada potongan huruf */
    scroll-snap-type: x proximity;
  }
  .lp-nav-links::-webkit-scrollbar { display: none; }

  .lp-nav-links a {
    font-size: 0.82rem;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .lp-nav-actions {
    flex-shrink: 0;
    gap: 6px;
  }

  .lp-nav-actions .lp-btn-ghost,
  .lp-nav-actions .lp-btn-primary {
    padding: 9px 14px;
    font-size: 0.85rem;
  }

  .lp-container { width: calc(100% - 32px); }

  .lp-hero { padding: 40px 0 30px; }
  .lp-hero-cta { flex-direction: column; }
  .lp-hero-cta .lp-btn-lg { width: 100%; }

  .lp-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .lp-kraepelin,
  .lp-categories,
  .lp-features,
  .lp-preview-result,
  .lp-cv-ats,
  .lp-about,
  .lp-faq { padding: 60px 0; }

  .lp-section-head { margin-bottom: 40px; }

  .lp-category-grid { grid-template-columns: 1fr; }

  .lp-why-card { padding: 30px 22px; }

  .lp-timeline-item { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .lp-timeline-year { font-size: 1.05rem; }

  .lp-preview-card-foot { grid-template-columns: repeat(2, 1fr); }

  .lp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .lp-mockup-stats { grid-template-columns: repeat(2, 1fr); }

  .lp-kraepelin-num { font-size: 2.2rem; }
  .lp-kraepelin-input { height: 52px; }

  .lp-final-cta-actions .lp-btn-lg { width: 100%; }
}
/* ============================================================
   FIX: Halaman About & view panjang
   Bikin langsung tampil dari atas, bukan di-center vertikal.
   Karena #aboutView ada di luar <main>, main.app-shell juga
   perlu dilepas min-height-nya supaya tidak ikut memberi ruang
   kosong di atas saat halaman About aktif.
   ============================================================ */

body[data-view="about"] main.app-shell {
  min-height: 0;
  padding: 0;
}

#aboutView.screen {
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 18px 0;
}

#aboutView .about-shell {
  margin: 0 auto;
  flex-shrink: 0;
}

/* View panjang lain di masa depan bisa pakai class ini */
.screen.screen-top {
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 18px 0;
}

.screen.screen-top > .card,
.screen.screen-top > [class$="-shell"] {
  margin: 0 auto;
  flex-shrink: 0;
}

@media (max-width: 620px) {
  #aboutView.screen {
    padding: 10px 0;
  }
}
@media (max-width: 480px) {
  .about-shell {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .about-hero h1 {
    font-size: 1.55rem;
  }

  .about-step {
    padding: 18px;
  }

  .about-principles h2,
  .about-cta h2 {
    font-size: 1.2rem;
  }
}
