




@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

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

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--text-body);
  background-color: var(--bg-page);
  background-image: var(--batik-kawung);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--text-primary);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-md);
}

h4 {
  font-size: var(--text-base);
}


a {
  color: var(--text-link);
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}


img {
  display: block;
  max-width: 100%;
  height: auto;
}


ul,
ol {
  list-style: none;
}


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


input,
textarea,
select {
  font-family: inherit;
  font-size: var(--text-base);
}


:focus-visible {
  outline: 3px solid var(--teal-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}


.section-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--teal-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.text-muted {
  color: var(--text-muted);
}

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

.text-primary {
  color: var(--text-primary);
}

.text-teal {
  color: var(--teal-primary);
}

.text-amber {
  color: var(--amber-primary);
}


.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-base {
  font-size: var(--text-base);
}

.text-lg {
  font-size: var(--text-lg);
}


.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-semibold {
  font-weight: var(--fw-semibold);
}

.fw-bold {
  font-weight: var(--fw-bold);
}


.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}


.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}


.divider {
  border: none;
  border-top: 1px solid var(--border-default);
}


.skip-link {
  position: absolute;
  top: -40px;
  left: var(--space-4);
  background: var(--teal-primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  z-index: var(--z-toast);
  transition: top var(--dur-base) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-4);
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}


::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}


@media (prefers-reduced-motion: reduce) {

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


.mobile-only {
  display: none !important;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  span.mobile-only, a.mobile-only, button.mobile-only {
    display: inline-block !important;
  }
}