:root {
  --primary: #FF5A5A;
  --primary-hover: #E04848;
  --secondary: #F2680F;
  --accent: #FFB347;
  --bg: #0A0A0A;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --border: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-strong: rgba(255, 90, 90, 0.28);
  --text: #F5F5F5;
  --text-secondary: rgba(245, 245, 245, 0.78);
  --text-muted: rgba(245, 245, 245, 0.62);
  --gradient-1: linear-gradient(135deg, #FF5A5A 0%, #F2680F 100%);
  --gradient-glow: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 90, 90, 0.14) 0%, transparent 70%);
  --glow-primary: rgba(255, 90, 90, 0.18);
  --shadow-hard: 4px 4px 0px var(--border-strong);
  --shadow-hard-sm: 2px 2px 0px var(--border-strong);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 72px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg: #F7F5F2;
  --bg-elevated: #FFFFFF;
  --bg-card: #FAFAFA;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.16);
  --border-strong: rgba(255, 90, 90, 0.35);
  --text: #0F0F0F;
  --text-secondary: rgba(15, 15, 15, 0.75);
  --text-muted: rgba(15, 15, 15, 0.60);
  --gradient-glow: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 90, 90, 0.08) 0%, transparent 70%);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

@media (max-width: 767px) {
  section {
    padding: 72px 0;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 14px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-xs);
  background: rgba(255, 90, 90, 0.07);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-title span {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 560px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-xs);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  box-shadow: var(--shadow-hard-sm);
  transform: translate(0, 0);
}

.btn-primary {
  background: var(--gradient-1);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  box-shadow: var(--shadow-hard);
  transform: translate(-2px, -2px);
}

.btn-primary:active {
  box-shadow: none;
  transform: translate(2px, 2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-hard);
  transform: translate(-2px, -2px);
}

.btn-outline:active {
  box-shadow: none;
  transform: translate(2px, 2px);
}

.btn-lg {
  font-size: 1rem;
  padding: 15px 30px;
}

.btn-ghost {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.btn-ghost:hover {
  gap: 10px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .header.scrolled {
  background: rgba(247, 245, 242, 0.88);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-img--light {
  display: none;
}

.logo-img--dark {
  display: block;
}

[data-theme="light"] .logo-img--dark {
  display: none;
}

[data-theme="light"] .logo-img--light {
  display: block;
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

/* "Soon" indicator — coming-soon nav item (Jadwal Event, RFID dropdown) */
.nav-link.is-soon {
  cursor: not-allowed;
  opacity: 0.7;
  gap: 8px;
}
.mobile-link.is-soon { opacity: 0.7; cursor: not-allowed; }
.dropdown-item.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.dropdown-item.is-disabled h4 { display: inline-flex; align-items: center; gap: 8px; }
.nav-soon-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary, #FF5A5A);
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px;
  line-height: 1;
  vertical-align: middle;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 340px;
  padding: 12px;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), var(--shadow-hard);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.dropdown-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 12px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: rgba(255, 90, 90, 0.06);
  border-color: var(--border-strong);
}

.dropdown-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  background: rgba(255, 90, 90, 0.1);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.dropdown-text h4,
.dropdown-text .dropdown-item-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--bg-card);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 32px;
  gap: 8px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), opacity var(--transition);
  border-left: 2px solid var(--border-strong);
}

.mobile-nav.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.mobile-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.mobile-nav-divider {
  width: 40px;
  height: 2px;
  background: var(--border-strong);
  margin: 16px 0;
}

/* ══════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════ */
.footer {
  background: var(--bg-elevated);
  border-top: 2px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  border: 2px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
  box-shadow: var(--shadow-hard-sm);
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard);
}

.footer-col h4,
.footer-col .footer-col-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--primary);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
}

/* ══════════════════════════════════════════════
       FAB
    ══════════════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 20px;
  border-radius: var(--radius-xs);
  border: 2px solid #1ebe5d;
  box-shadow: var(--shadow-hard), 0 8px 24px rgba(37, 211, 102, 0.3);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  transform: translate(0, 0);
}

.fab:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px rgba(37, 211, 102, 0.5), 0 8px 24px rgba(37, 211, 102, 0.3);
}

.fab:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.fab-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .fab-text {
    display: none;
  }

  .fab {
    padding: 13px;
  }
}

/* ══════════════════════════════════════════════
       HERO SECTION
    ══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-content {}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 14px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-xs);
  background: rgba(255, 90, 90, 0.08);
}

.hero-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.8s infinite;
  will-change: transform, opacity;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6)
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title .gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.hero-client-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Dark mode default: invert logo hitam → putih */
.client-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%) invert(1);
  transition: opacity var(--transition), filter var(--transition);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%) invert(1);
}

/* Light mode: logo hitam on putih, tanpa invert */
[data-theme="light"] .client-logo {
  opacity: 0.5;
  filter: grayscale(100%) invert(0);
}

[data-theme="light"] .client-logo:hover {
  opacity: 0.9;
  filter: grayscale(0%) invert(0);
}

.client-logo-more {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg-card);
  white-space: nowrap;
}

.client-logo-more span {
  font-weight: 400;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
       HERO PREVIEW CARD (right column)
    ══════════════════════════════════════════════ */
.hero-preview {
  position: relative;
  /* Reserve space agar tidak Cumulative Layout Shift saat loading */
  min-height: 540px;
  contain: layout;
}

.preview-card {
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard), var(--shadow-lg);
  min-height: 480px;
  /* prevent CLS saat tab content swap */
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.preview-dots {
  display: flex;
  gap: 5px;
}

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.preview-dots span:nth-child(1) {
  background: #FF5F57;
}

.preview-dots span:nth-child(2) {
  background: #FEBC2E;
}

.preview-dots span:nth-child(3) {
  background: #28C840;
}

.preview-title {
  flex: 1;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.preview-tabs-row {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  overflow-x: auto;
}

.ptab {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 9px 14px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}

.ptab:hover {
  color: var(--text-secondary);
}

.ptab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--bg-elevated);
}

.preview-pane {
  display: none;
  padding: 14px 16px;
}

.preview-pane.active {
  display: block;
}

/* Shared mock elements */
.mock-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

.mock-badge-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #22c55e;
}

.mock-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 4px 0 2px;
}

.mock-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mock-track {
  height: 5px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 6px;
}

.mock-fill {
  height: 100%;
  background: var(--gradient-1);
  border-radius: var(--radius-full);
  width: var(--fill-pct, 50%);
}

.mock-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

/* Registrasi pane */
.mock-checkin-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.mock-qr-box {
  width: 68px;
  height: 68px;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 2px;
  padding: 6px;
}

.mock-qr-box span {
  background: var(--text);
  border-radius: 1px;
  opacity: 0.7;
}

.mock-qr-box span.e {
  opacity: 0.08;
}

.mock-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 6px var(--primary);
  animation: qr-scan 2.2s ease-in-out infinite;
  will-change: transform;
}

@keyframes qr-scan {
  0% {
    top: 10%
  }

  50% {
    top: 85%
  }

  100% {
    top: 10%
  }
}

.mock-checkin-info {
  flex: 1;
}

.mock-recent {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-recent-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.mock-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-1);
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.mock-recent-name {
  font-size: 0.74rem;
  font-weight: 600;
  flex: 1;
}

.mock-recent-time {
  font-size: 0.67rem;
  color: var(--text-muted);
}

/* Undangan pane */
.mock-stat-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mock-stat-chip {
  flex: 1;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
}

.mock-stat-chip .v {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.mock-stat-chip .l {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.mock-email-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-email-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.mock-email-status {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

.mock-email-sent .mock-email-status {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.mock-email-pending .mock-email-status {
  background: rgba(250, 204, 21, 0.15);
  color: #ca8a04;
}

.mock-email-name {
  font-size: 0.75rem;
  font-weight: 600;
  flex: 1;
}

.mock-email-sub {
  font-size: 0.67rem;
  color: var(--text-muted);
}

.mock-blast-btn {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  background: var(--gradient-1);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.85;
  pointer-events: none;
  cursor: default;
}

/* Doorprize pane */
.mock-wheel-wrap {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.mock-wheel {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid var(--border-strong);
  background: conic-gradient(var(--primary) 0deg 60deg, var(--secondary) 60deg 120deg, var(--accent) 120deg 180deg, rgba(255, 90, 90, 0.3) 180deg 240deg, rgba(242, 104, 15, 0.25) 240deg 300deg, var(--primary) 300deg 360deg);
  animation: spin-slow 9s linear infinite;
  will-change: transform;
  flex-shrink: 0;
  position: relative;
}

.mock-wheel::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid var(--primary);
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.mock-winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 179, 71, 0.15);
  border: 1px solid rgba(255, 179, 71, 0.3);
  color: var(--accent);
  border-radius: var(--radius-xs);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  margin-bottom: 4px;
}

.mock-winner-prize {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mock-anti-double {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.18);
  font-size: 0.73rem;
  color: #22c55e;
  font-weight: 600;
}

/* Souvenir pane */
.mock-souvenir-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.mock-souvenir-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(255, 90, 90, 0.08);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.mock-items-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}

.mock-item-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.mock-item-check {
  color: #22c55e;
  font-size: 10px;
}

/* Preview responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-preview {
    display: none;
  }
}

/* ══════════════════════════════════════════════
       MARQUEE / TICKER
    ══════════════════════════════════════════════ */
.marquee-section {
  padding: 0;
  overflow: hidden;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  background: var(--bg-card);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ══════════════════════════════════════════════
       TENTANG (ABOUT)
    ══════════════════════════════════════════════ */
.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tentang-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-hard), var(--shadow-lg);
}

.tentang-visual img,
.tentang-visual video,
.tentang-visual .tentang-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tentang-stat-chip {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--bg-elevated);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow-hard);
}

.tentang-stat-chip .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.tentang-stat-chip .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
       LAYANAN — HORIZONTAL SCROLL
    ══════════════════════════════════════════════ */
.layanan-section {
  padding-top: 0;
}

/* The outer container: height is set by JS (= 100vh + translation distance) */
.layanan-hscroll {
  position: relative;
}

/* Pinned viewport-height box while scrolling through layanan-hscroll */
.layanan-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 100px;
  gap: 32px;
  overflow: hidden;
}

/* Horizontal rail — translated by JS */
.layanan-track {
  display: flex;
  gap: 24px;
  /* Align first card with wrapper left edge */
  padding-left: max(calc((100vw - 1200px) / 2), 24px);
  padding-right: 24px;
  will-change: transform;
}

.layanan-track .service-card {
  flex-shrink: 0;
  width: clamp(240px, 28vw, 300px);
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.layanan-track .service-card p {
  flex: 1;
}

/* Card number chip */
.layanan-card-num {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 14px;
  opacity: 0.7;
}

/* Mobile: stack vertically, no sticky */
@media (max-width: 767px) {
  .layanan-hscroll {
    height: auto !important;
  }

  .layanan-sticky {
    position: relative;
    top: auto;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 24px;
    overflow: visible;
  }

  .layanan-track {
    flex-direction: column;
    padding: 0 24px;
    transform: none !important;
  }

  .layanan-track .service-card {
    width: 100%;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .layanan-hscroll {
    height: auto !important;
  }

  .layanan-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  .layanan-track {
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════
       LAYANAN (SERVICES)
    ══════════════════════════════════════════════ */
.layanan-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

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

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-card);
  padding: 28px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-hard-sm);
  transform: translate(0, 0);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--border-strong);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xs);
  background: rgba(255, 90, 90, 0.1);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow-hard-sm);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-card.featured {
  border-color: var(--border-strong);
  background: linear-gradient(145deg, rgba(255, 90, 90, 0.06) 0%, var(--bg-card) 100%);
}

/* ══════════════════════════════════════════════
       STATS
    ══════════════════════════════════════════════ */
.stats-section {
  background: var(--bg-elevated);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stat-item {
  padding: 32px 40px;
  border-right: 2px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 2px solid var(--border);
  }
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ══════════════════════════════════════════════
       WHY US (3-column grid)
    ══════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--bg-card);
  padding: 28px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-hard-sm);
}

.why-card:hover {
  border-color: var(--border-strong);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: rgba(255, 90, 90, 0.1);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
       TEKNOLOGI KAMI
    ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
       TEKNOLOGI KAMI — 2-COLUMN STICKY SCROLL
    ══════════════════════════════════════════════ */
.tekno-section {
  padding-top: 100px;
}

/* Outer tall container — JS sets height to create scroll travel distance */
.tekno-scroll-outer {
  position: relative;
}

/* Sticky 2-col shell */
.tekno-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* LEFT column */
.tekno-left {
  display: flex;
  flex-direction: column;
}

.tekno-left .section-label {
  margin-bottom: 12px;
}

.tekno-left .section-title {
  margin-bottom: 16px;
}

.tekno-left-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  min-height: 3.6em;
  transition: opacity 0.2s ease;
}

.tekno-left-desc.changing {
  opacity: 0;
}

/* Nav tab indicators */
.tekno-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tekno-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 0;
  text-align: left;
  color: var(--text-muted);
  transition: color var(--transition);
}

.tekno-nav-item:hover {
  color: var(--text-secondary);
}

.tekno-nav-item.active {
  color: var(--text);
}

.tekno-nav-item.done {
  color: var(--text-muted);
}

.tekno-nav-bar {
  width: 3px;
  height: 28px;
  border-radius: 2px;
  background: var(--border);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.tekno-nav-bar::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tekno-nav-item.active .tekno-nav-bar::after {
  height: 100%;
}

.tekno-nav-item.done .tekno-nav-bar::after {
  height: 100%;
  background: rgba(255, 90, 90, 0.3);
}

.tekno-nav-label {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
}

/* RIGHT column: card stage */
.tekno-right {
  height: 100%;
  display: flex;
  align-items: center;
}

.tekno-card-stage {
  position: relative;
  width: 100%;
  height: min(560px, calc(100vh - 140px));
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Noise/glitch overlay */
.tekno-noise {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.tekno-noise.flashing {
  animation: tekno-noise-anim 0.4s steps(4) forwards;
}

@keyframes tekno-noise-anim {
  0% {
    opacity: 0.65;
    transform: translate(0px, 0px);
  }

  25% {
    opacity: 0.45;
    transform: translate(-4px, 2px);
  }

  50% {
    opacity: 0.25;
    transform: translate(3px, -3px);
  }

  75% {
    opacity: 0.12;
    transform: translate(-2px, 1px);
  }

  100% {
    opacity: 0;
    transform: translate(0px, 0px);
  }
}

/* Individual cards — stacked absolutely, one visible at a time */
.tekno-card-item {
  position: absolute;
  inset: 0;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tekno-card-item.is-before {
  opacity: 0;
  transform: translateY(-52px);
  pointer-events: none;
}

.tekno-card-item.is-after {
  opacity: 0;
  transform: translateY(52px);
  pointer-events: none;
}

.tekno-card-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Card head */
.tekno-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tekno-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 90, 90, 0.08);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.tekno-card-icon--green {
  background: rgba(34, 197, 94, 0.08);
  color: #22c55e;
}

.tekno-card-icon--blue {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.tekno-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  flex: 1;
}

.tekno-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  background: rgba(255, 90, 90, 0.12);
  border: 1px solid rgba(255, 90, 90, 0.25);
  color: var(--primary);
  white-space: nowrap;
}

.tekno-card-badge--green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
  color: #22c55e;
}

.tekno-card-badge--blue {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
  color: #3b82f6;
}

/* Checklist */
.tekno-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.tekno-card-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.91rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.tekno-check {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-xs);
  background: rgba(255, 90, 90, 0.1);
  border: 1.5px solid rgba(255, 90, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.tekno-check--green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
  color: #22c55e;
}

.tekno-check--blue {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
  color: #3b82f6;
}

/* Mobile: disable sticky, stack cards vertically */
@media (max-width: 900px) {
  .tekno-scroll-outer {
    height: auto !important;
  }

  .tekno-scroll-sticky {
    position: relative;
    top: auto;
    height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 0 60px;
  }

  .tekno-nav {
    display: none;
  }

  .tekno-left-desc {
    margin-bottom: 0;
  }

  .tekno-right {
    height: auto;
  }

  .tekno-card-stage {
    position: static;
    height: auto;
    overflow: visible;
  }

  .tekno-card-item {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    margin-bottom: 16px;
  }

  .tekno-noise {
    display: none;
  }
}

/* ══════════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-hard-sm);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  padding: 18px 20px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

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

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}

.faq-item[open]>.faq-q {
  color: var(--primary);
}

.faq-item[open]>.faq-q::after {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-a {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq-a p {
  margin: 12px 0 0;
}

.faq-a strong {
  color: var(--text);
  font-weight: 600;
}

/* ══════════════════════════════════════════════
       ARTIKEL
    ══════════════════════════════════════════════ */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .artikel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .artikel-grid {
    grid-template-columns: 1fr;
  }
}

.artikel-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-hard-sm);
  position: relative;
}

.artikel-card:hover {
  border-color: var(--border-strong);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
}

/* Stretched internal link — entire card is clickable */
.artikel-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: 12px;
  transition: gap var(--transition);
}

.artikel-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
}

.artikel-card:hover .artikel-card-link {
  gap: 9px;
}

.artikel-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  overflow: hidden;
  position: relative;
}

.artikel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artikel-card:hover .artikel-thumb img {
  transform: scale(1.04);
}

.artikel-body {
  padding: 20px;
}

.artikel-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.artikel-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(255, 90, 90, 0.1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xs);
  padding: 3px 8px;
}

.artikel-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.artikel-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.artikel-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
       KARIR
    ══════════════════════════════════════════════ */
.karir-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 700px) {
  .karir-grid {
    grid-template-columns: 1fr;
  }
}

.job-card {
  background: var(--bg-card);
  padding: 24px 28px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
  box-shadow: var(--shadow-hard-sm);
}

.job-card:hover {
  border-color: var(--border-strong);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
}

.job-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: rgba(255, 90, 90, 0.1);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.job-info {
  flex: 1;
  min-width: 0;
}

.job-info h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.job-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.job-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-elevated);
}

.job-badge.type {
  color: var(--primary);
  border-color: var(--border-strong);
  background: rgba(255, 90, 90, 0.08);
}

.job-arrow {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}

.job-card:hover .job-arrow {
  border-color: var(--primary);
  color: var(--primary);
}

.karir-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
}

.karir-empty h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.karir-empty p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════
       CTA / KONTAK SECTION
    ══════════════════════════════════════════════ */
.cta-section {
  background: var(--bg-elevated);
  border-top: 2px solid var(--border);
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--bg-card);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-hard), var(--shadow-lg);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 90, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
       SCROLL REVEAL ANIMATION
    ══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Slide from side */
.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tentang-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner {
    padding: 36px 24px;
  }
}

/* ════════════════════════════════════════
       GLOBAL REDUCED-MOTION GUARD
       Untuk user yang aktifkan "prefers-reduced-motion" di OS-nya,
       matikan semua animasi infinite/looping berat agar CPU laptop/HP
       low-end tidak overheating + a11y compliance (WCAG 2.3.3).
    ════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .tekno-noise,
  .tekno-noise.flashing {
    animation: none !important;
    opacity: 0 !important;
  }

  .marquee,
  .marquee-track {
    animation: none !important;
  }

  [class*="spin-slow"],
  [class*="pulse-dot"],
  [class*="qr-scan"] {
    animation: none !important;
  }

  #particleCanvas {
    display: none !important;
  }
}