/* ============================================================
   PUSAT — base.css
   Bundled from: variables, reset, typography, animations, utilities
   ============================================================ */

/* ══════════════════════════════════════
   VARIABLES (from variables.css)
   ══════════════════════════════════════ */

:root {
  /* ── Brand Colors ── */
  --color-navy: #2F3677;
  --color-navy-mid: #252b5e;
  --color-navy-light: #e8ebf5;
  --color-navy-dark: #1a1f45;

  --color-rose: #E61D25;
  --color-rose-mid: #c4141b;
  --color-rose-light: #fde8e9;

  /* ── Neutral Palette ── */
  --color-white: #ffffff;
  --color-off-white: #f5f7fa;
  --color-light: #f0f4f8;
  --color-gray-100: #f1f1f1;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d0d0d0;
  --color-gray-400: #aaaaaa;
  --color-gray-500: #7d8185;
  --color-gray-600: #555555;
  --color-gray-700: #333333;
  --color-gray-800: #222222;
  --color-gray-900: #111111;

  /* ── Text Colors ── */
  --text-primary: #2F3677;
  --text-body: #333333;
  --text-muted: #7d8185;
  --text-light: #aaaaaa;
  --text-white: #ffffff;
  --text-on-navy: #ffffff;
  --text-on-rose: #ffffff;

  /* ── Semantic Colors ── */
  --color-success: #198754;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-info: #0dcaf0;

  /* ── Typography ── */
  --font-display: "DM Serif Display", Georgia, serif;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  --text-xs: clamp(0.75rem, 0.7rem + 0.15vw, 0.75rem);
  --text-sm: clamp(0.8125rem, 0.75rem + 0.2vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.875rem + 0.25vw, 1rem);
  --text-md: clamp(1rem, 0.9rem + 0.35vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.55vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 0.8vw, 1.875rem);
  --text-3xl: clamp(1.75rem, 1.4rem + 1.1vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 1.6vw, 3rem);
  --text-5xl: clamp(2.5rem, 1.75rem + 2.4vw, 3.75rem);
  --text-hero: clamp(2.5rem, 2rem + 3vw, 4.5rem);

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  --leading-tight: 1.2;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --leading-loose: 2;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;
  --tracking-widest: 0.16em;

  /* ── Spacing Scale (fluid) ── */
  --space-1: clamp(0.2rem, 0.15rem + 0.15vw, 0.25rem);
  --space-2: clamp(0.375rem, 0.3rem + 0.3vw, 0.5rem);
  --space-3: clamp(0.625rem, 0.55rem + 0.35vw, 0.75rem);
  --space-4: clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
  --space-5: clamp(1rem, 0.85rem + 0.55vw, 1.25rem);
  --space-6: clamp(1.125rem, 0.9rem + 0.75vw, 1.5rem);
  --space-8: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --space-10: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem);
  --space-12: clamp(2rem, 1.5rem + 1.8vw, 3rem);
  --space-16: clamp(2.5rem, 1.75rem + 2.5vw, 4rem);
  --space-20: clamp(3rem, 2rem + 3.2vw, 5rem);
  --space-24: clamp(3.5rem, 2.25rem + 4vw, 6rem);
  --space-32: clamp(4rem, 2.5rem + 5vw, 8rem);

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.1);
  --shadow-navy: 0 8px 32px rgba(16, 46, 82, 0.25);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);

  /* ── Layout ── */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;
  --container-max: 1320px;
  --container-gutter: clamp(1rem, 4vw, 2rem);

  /* ── Transitions ── */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-bounce: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-index Scale ── */
  --z-below: -1;
  --z-base: 0;
  --z-raised: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;

  /* ── Navigation ── */
  --nav-height: 72px;
  --utility-bar-height: 38px;
  --nav-total-height: calc(var(--nav-height) + var(--utility-bar-height));
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --utility-bar-height: 0px;
  }
}

/* ══════════════════════════════════════
   RESET (from reset.css)
   ══════════════════════════════════════ */

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

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
  hyphens: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  border-top: 1px solid currentColor;
  opacity: 0.2;
}

fieldset {
  border: none;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--color-rose);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background-color: var(--color-rose);
  color: #fff;
}

:target {
  scroll-margin-top: 80px;
}

/* ══════════════════════════════════════
   TYPOGRAPHY (from typography.css)
   ══════════════════════════════════════ */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--text-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

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

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

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

.text-display {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: var(--weight-regular);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.text-display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--weight-regular);
  line-height: 1.25;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--weight-extrabold);
  color: var(--color-navy);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-3);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: var(--space-3);
}

p {
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
}

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

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

a {
  color: var(--color-navy-mid);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-rose);
}

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

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

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

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

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

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-regular {
  font-weight: var(--weight-regular);
}

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

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

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.tracking-wide {
  letter-spacing: var(--tracking-wide);
}

.tracking-wider {
  letter-spacing: var(--tracking-wider);
}

.tracking-widest {
  letter-spacing: var(--tracking-widest);
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

mark {
  background-color: var(--color-rose);
  color: var(--color-white);
  padding: 0 0.2em;
  border-radius: 2px;
}

blockquote {
  border-left: 4px solid var(--color-rose);
  padding: var(--space-4) var(--space-6);
  background: var(--color-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: var(--text-md);
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--color-gray-100);
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--color-navy-mid);
}

pre code {
  background: none;
  padding: 0;
}

/* ══════════════════════════════════════
   ANIMATIONS (from animations.css)
   ══════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger-children.revealed>* {
  opacity: 1;
  transform: none;
}

.stagger-children.revealed>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children.revealed>*:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger-children.revealed>*:nth-child(3) {
  transition-delay: 0.19s;
}

.stagger-children.revealed>*:nth-child(4) {
  transition-delay: 0.26s;
}

.stagger-children.revealed>*:nth-child(5) {
  transition-delay: 0.33s;
}

.stagger-children.revealed>*:nth-child(6) {
  transition-delay: 0.40s;
}

.stagger-children.revealed>*:nth-child(7) {
  transition-delay: 0.47s;
}

.stagger-children.revealed>*:nth-child(8) {
  transition-delay: 0.54s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.04);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-zoom {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

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

.count-up {
  display: inline-block;
}

.text-shimmer {
  background: linear-gradient(90deg, var(--color-rose) 0%, var(--color-rose) 40%, var(--color-rose) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.float {
  animation: floatY 4s ease-in-out infinite;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.arrow-link::after {
  content: '→';
  display: inline-block;
  transition: transform var(--transition-base);
}

.arrow-link:hover {
  color: var(--color-rose);
  gap: var(--space-3);
}

.arrow-link:hover::after {
  transform: translateX(4px);
}

.arrow-link-white {
  color: rgba(255, 255, 255, 0.85);
}

.arrow-link-white:hover {
  color: var(--color-rose);
}

.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.6s ease;
}

.img-zoom:hover img {
  transform: scale(1.06);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--color-gray-200);
  border-top-color: var(--color-rose);
  border-radius: var(--radius-full);
  animation: spin 0.75s linear infinite;
}

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

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

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .stagger-children>* {
    opacity: 1;
    transform: none;
  }

  .stats-strip::before,
  .cta-banner::before {
    animation: none;
  }
}

/* ══════════════════════════════════════
   UTILITIES (from utilities.css)
   ══════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.container-sm {
  max-width: var(--container-sm);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.container-md {
  max-width: var(--container-md);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.container-lg {
  max-width: var(--container-lg);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.container-xl {
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.container-2xl {
  max-width: var(--container-2xl);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

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

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

.section-lg {
  padding-block: var(--space-32);
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-inline-flex {
  display: inline-flex;
}

.d-inline-block {
  display: inline-block;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-1 {
  flex: 1;
}

.flex-auto {
  flex: auto;
}

.flex-none {
  flex: none;
}

.items-start {
  align-items: flex-start;
}

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

.items-end {
  align-items: flex-end;
}

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

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.self-start {
  align-self: flex-start;
}

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

.self-end {
  align-self: flex-end;
}

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

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

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

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

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

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

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

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

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
}

.grid-2>* {
  max-width: clamp(17.5rem, 33vw, 28rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.grid-auto-sm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.grid-auto-md {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.grid-auto-md>* {
  max-width: clamp(17.5rem, 33vw, 28rem);
}

.grid-auto-lg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

.grid-auto-lg>* {
  max-width: clamp(17.5rem, 33vw, 30rem);
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mt-12 {
  margin-top: var(--space-12);
}

.mt-16 {
  margin-top: var(--space-16);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-12 {
  margin-bottom: var(--space-12);
}

.mb-16 {
  margin-bottom: var(--space-16);
}

.mx-auto {
  margin-inline: auto;
}

.p-0 {
  padding: 0;
}

.p-4 {
  padding: var(--space-4);
}

.p-6 {
  padding: var(--space-6);
}

.p-8 {
  padding: var(--space-8);
}

.py-4 {
  padding-block: var(--space-4);
}

.py-6 {
  padding-block: var(--space-6);
}

.py-8 {
  padding-block: var(--space-8);
}

.px-4 {
  padding-inline: var(--space-4);
}

.px-6 {
  padding-inline: var(--space-6);
}

.px-8 {
  padding-inline: var(--space-8);
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

.min-w-0 {
  min-width: 0;
}

.max-w-full {
  max-width: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-center {
  object-position: center;
}

.object-top {
  object-position: top;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.aspect-3-2 {
  aspect-ratio: 3 / 2;
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-2xl {
  border-radius: var(--radius-2xl);
}

.rounded-full {
  border-radius: var(--radius-full);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-none {
  box-shadow: none;
}

.bg-white {
  background-color: var(--color-white);
}

.bg-light {
  background-color: var(--color-light);
}

.bg-navy {
  background-color: var(--color-navy);
}

.bg-dark {
  background-color: var(--color-navy-dark);
}

.bg-orange {
  background-color: var(--color-rose);
}

.bg-gold {
  background-color: var(--color-navy-light);
}

.bg-gray {
  background-color: var(--color-gray-100);
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-gray-200);
  margin-block: var(--space-8);
}

.divider-orange {
  width: 60px;
  height: 3px;
  background-color: var(--color-rose);
  border-radius: var(--radius-full);
  margin-block: var(--space-4);
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.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;
}

.is-hidden:not(.page-loader) {
  display: none !important;
}

body.overflow-hidden {
  overflow: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.z-base {
  z-index: var(--z-base);
}

.z-raised {
  z-index: var(--z-raised);
}

.z-overlay {
  z-index: var(--z-overlay);
}

@media (max-width: 1024px) {
  .lg-hidden {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .md-hidden {
    display: none !important;
  }

  .md-block {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .sm-hidden {
    display: none !important;
  }

  .sm-block {
    display: block !important;
  }
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-gray-300);
  border-radius: 9999px;
  border: 1px solid transparent;
  background-clip: content-box;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-navy);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.main-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-rose);
}