/* Jiwa62 masuk — palet diselaraskan dengan banner (cyberpunk neon purple/magenta/gold) */

:root {
  --bg-deep: #0a0018;
  --bg-mid: #150028;
  --bg-card: #1e0838;
  --purple: #5d1094;
  --magenta: #d610b8;
  --magenta-bright: #e619cf;
  --cyan: #00c8ff;
  --blue: #3d9ef0;
  --gold: #f0b428;
  --gold-dark: #c88a12;
  --red-brand: #c82832;
  --text: #f8f0ff;
  --text-muted: #b8a0d0;
  --border-magenta: rgba(214, 16, 184, 0.45);
  --border-cyan: rgba(0, 200, 255, 0.35);
  --glow-magenta: 0 0 20px rgba(214, 16, 184, 0.45), 0 0 40px rgba(214, 16, 184, 0.15);
  --glow-gold: 0 0 18px rgba(240, 180, 40, 0.4);
  --glow-cyan: 0 0 16px rgba(0, 200, 255, 0.25);
  --radius: 8px;
  --radius-hex: 4px;
  --container: 1040px;
  --header-h: 64px;
  --font: "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    linear-gradient(160deg, #12002a 0%, #0a0018 45%, #1a0040 100%),
    repeating-linear-gradient(90deg, rgba(93, 16, 148, 0.04) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(0, 200, 255, 0.03) 0 1px, transparent 1px 48px);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cyan); text-decoration: none; transition: color 0.2s, text-shadow 0.2s; }
a:hover { color: #fff; text-shadow: var(--glow-cyan); }

:focus-visible {
  outline: 2px solid var(--magenta-bright);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.6rem 1rem; background: var(--gold); color: var(--bg-deep); font-weight: 700;
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 0, 24, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-magenta);
  box-shadow: 0 4px 24px rgba(93, 16, 148, 0.2);
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  min-height: var(--header-h);
  padding: 0.4rem 0;
}

.menu-left, .menu-right {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.menu-left { justify-content: flex-start; }
.menu-right { justify-content: flex-end; }

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu-left a, .menu-right a {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-hex);
}

.menu-left a:hover, .menu-right a:hover {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.brand-logo img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(240, 180, 40, 0.35));
}

.header-cta {
  display: flex;
  gap: 0.4rem;
  margin-left: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-hex);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn-outline {
  background: rgba(30, 8, 56, 0.8);
  color: var(--cyan);
  border-color: var(--border-cyan);
  box-shadow: var(--glow-cyan);
}
.btn-outline:hover {
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 200, 255, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a0033;
  border-color: rgba(240, 180, 40, 0.6);
  box-shadow: var(--glow-gold);
}
.btn-gold:hover {
  color: #1a0033;
  filter: brightness(1.1);
  box-shadow: 0 0 28px rgba(240, 180, 40, 0.55);
}

.menu-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-magenta);
  color: var(--magenta-bright);
  font-size: 1.2rem;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-hex);
  cursor: pointer;
  box-shadow: var(--glow-magenta);
}

.nav-drawer {
  display: none;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid var(--border-magenta);
  flex-direction: column;
  gap: 0.2rem;
  background: rgba(21, 0, 40, 0.95);
}

.nav-drawer.is-open { display: flex; }

.nav-drawer a {
  color: var(--text-muted);
  padding: 0.65rem 0.5rem;
  font-size: 0.9rem;
}
.nav-drawer a:hover { color: var(--cyan); }

.nav-drawer .drawer-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-magenta);
}
.nav-drawer .drawer-cta .btn { flex: 1; }

/* Hero */
.hero {
  padding: 1.5rem 0 3rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 280px;
  background: radial-gradient(ellipse, rgba(214, 16, 184, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-banner {
  position: relative;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, var(--magenta), var(--cyan), var(--gold)) border-box;
  box-shadow: var(--glow-magenta), 0 16px 48px rgba(0, 0, 0, 0.5);
}

.hero-banner img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-body {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, rgba(93, 16, 148, 0.9), rgba(214, 16, 184, 0.85));
  border: 1px solid var(--border-magenta);
  border-radius: 2px;
  box-shadow: var(--glow-magenta);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 0 30px rgba(214, 16, 184, 0.35);
}

.hero h1 a {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(120deg, #fff 30%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 a:hover { filter: brightness(1.15); }

.hero-lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-actions .btn { padding: 0.75rem 1.5rem; font-size: 0.8125rem; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pill {
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(30, 8, 56, 0.75);
  border: 1px solid var(--border-cyan);
  border-radius: 2px;
  box-shadow: inset 0 0 12px rgba(0, 200, 255, 0.08);
}

/* Sections */
.section { padding: 2.75rem 0; }

.section-tag {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta-bright);
  text-shadow: var(--glow-magenta);
}

.section h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #fff;
}

.prose { max-width: 40rem; }
.prose p { margin: 0 0 1rem; color: var(--text-muted); }
.prose p:last-child { margin-bottom: 0; }

/* Artikel */
.article-band {
  background: linear-gradient(180deg, rgba(30, 8, 56, 0.6), rgba(21, 0, 40, 0.9));
  border-block: 1px solid var(--border-magenta);
  box-shadow: inset 0 0 60px rgba(93, 16, 148, 0.12);
}

.article-content h2 { margin-top: 0; }

.article-content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

.article-content p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Benefits */
.benefit-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.benefit-card {
  padding: 1.25rem;
  background: rgba(30, 8, 56, 0.55);
  border: 1px solid var(--border-magenta);
  border-radius: var(--radius);
  border-top: 3px solid var(--magenta);
  box-shadow: inset 0 0 20px rgba(214, 16, 184, 0.06);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.benefit-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan), inset 0 0 24px rgba(0, 200, 255, 0.06);
}

.benefit-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.benefit-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ */
.faq-wrap { max-width: 38rem; }

.faq-item {
  border: 1px solid var(--border-magenta);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  background: rgba(30, 8, 56, 0.5);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: var(--glow-magenta);
  border-color: var(--magenta-bright);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--gold);
  font-size: 1.1rem;
  text-shadow: var(--glow-gold);
  transition: transform 0.25s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 1.1rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Footer */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-magenta);
  padding: 2rem 0 1.25rem;
  box-shadow: 0 -8px 32px rgba(93, 16, 148, 0.15);
}

.footer-cols {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 30px;
  width: auto;
  max-width: 140px;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 0 6px rgba(240, 180, 40, 0.3));
}

.footer-brand p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 20rem;
}

.footer-nav h4 {
  margin: 0 0 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta-bright);
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li { margin-bottom: 0.35rem; }

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-magenta);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal { display: flex; gap: 1rem; }

@media (min-width: 640px) {
  .benefit-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .benefit-strip { grid-template-columns: repeat(4, 1fr); }

  .hero-banner { max-width: 380px; margin-bottom: 0; }

  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .hero-body { margin: 0; text-align: left; }
  .hero-actions, .hero-pills { justify-content: flex-start; }

  .footer-cols { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 767px) {
  .header-bar { grid-template-columns: 44px 1fr 44px; }
  .header-right { display: none; }
  .brand-logo { grid-column: 2; text-align: center; }
  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }
}
