/* Vegas123 — custom styles (di luar utilitas Tailwind) */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/fraunces/v37/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2WaE.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRggqxSvfedN62Zw.woff2") format("woff2");
}

:root {
  --v-bg: #0a100e;
  --v-surface: #121a17;
  --v-surface-2: #1a2621;
  --v-ink: #e8efe9;
  --v-muted: #9bb0a4;
  --v-emerald: #2f8f6b;
  --v-emerald-deep: #1e5c46;
  --v-gold: #c9a46a;
  --v-gold-soft: #e2c89a;
  --v-line: rgba(201, 164, 106, 0.22);
  --v-danger: #c45c5c;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--v-ink);
  background: var(--v-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Atmosphere — CSS only, no heavy images */
.hero-atmosphere {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(47, 143, 107, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(201, 164, 106, 0.12), transparent 50%),
    linear-gradient(165deg, #0a100e 0%, #0f1a16 45%, #0a100e 100%);
}

.surface-panel {
  background: linear-gradient(145deg, rgba(26, 38, 33, 0.92), rgba(18, 26, 23, 0.96));
  border: 1px solid var(--v-line);
}

.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v-gold), transparent);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 0.35rem;
  background: linear-gradient(135deg, var(--v-emerald) 0%, var(--v-emerald-deep) 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(47, 143, 107, 0.28);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 0.35rem;
  background: transparent;
  color: var(--v-gold-soft);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--v-gold);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(201, 164, 106, 0.12);
  transform: translateY(-1px);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--v-line);
  border-radius: 0.25rem;
  background: rgba(18, 26, 23, 0.7);
  font-size: 0.8rem;
  color: var(--v-muted);
}

.nav-link {
  color: var(--v-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--v-gold-soft);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
}

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

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.fade-up-delay-1 {
  animation-delay: 0.12s;
}

.fade-up-delay-2 {
  animation-delay: 0.24s;
}

.fade-up-delay-3 {
  animation-delay: 0.36s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--v-gold);
  color: #0a100e;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  backdrop-filter: blur(10px);
  background: rgba(10, 16, 14, 0.85);
  border-bottom: 1px solid var(--v-line);
}

.pay-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem;
  border: 1px solid var(--v-line);
  border-radius: 0.3rem;
  background: rgba(18, 26, 23, 0.65);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--v-ink);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-mark img {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: 10rem;
  object-fit: contain;
}

.logo-mark--footer img {
  height: 2.25rem;
  max-width: 8.5rem;
}

.section-pad {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 5.5rem 0;
  }
}
