/* ==========================================================
   SENMASTER 2026 — Shared Design System
   Universitas Terbuka | Light Academic Theme
   ========================================================== */

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

/* --- Design Tokens --- */
:root {
  /* Colors */
  --color-primary:        #003F8A;   /* UT Blue */
  --color-primary-light:  #1A5BAD;
  --color-primary-dark:   #002a5e;
  --color-accent:         #F5C400;   /* UT Gold / Yellow */
  --color-accent-light:   #FFD83D;
  --color-accent-dark:    #C9A000;
  --color-white:          #FFFFFF;
  --color-bg:             #F8F9FC;
  --color-bg-alt:         #EEF2F8;
  --color-surface:        #FFFFFF;
  --color-border:         #D6E0EE;
  --color-text:           #1A1A2E;
  --color-text-muted:     #5A6A7E;
  --color-text-light:     #8A9BB0;
  --color-success:        #28A745;
  --color-error:          #DC3545;
  --color-warning:        #F5C400;

  /* Typography */
  --font-heading:   'Plus Jakarta Sans', sans-serif;
  --font-body:      'Inter', sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,63,138,0.08);
  --shadow-md:  0 4px 16px rgba(0,63,138,0.12);
  --shadow-lg:  0 8px 32px rgba(0,63,138,0.16);
  --shadow-xl:  0 16px 48px rgba(0,63,138,0.20);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-base:   350ms cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow:   500ms cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Container */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 2.5rem);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover { color: var(--color-primary-light); }

/* --- Accessibility (a11y) Focus Ring --- */
:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Skip to main content link for screen readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-accent);
  transition: top 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.skip-link:focus {
  top: 1rem;
  color: var(--color-white);
}

/* --- Glassmorphism Utilities --- */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 32px 0 rgba(0, 63, 138, 0.08);
}

.glass-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* --- Batik Pattern (SVG background) --- */
.batik-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23003F8A' fill-opacity='0.05'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z'/%3E%3Cpath d='M30 10L50 30L30 50L10 30Z' fill='%23F5C400' fill-opacity='0.06'/%3E%3Ccircle cx='30' cy='30' r='4' fill='%23003F8A' fill-opacity='0.07'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.batik-border-l,
.batik-border-r {
  position: relative;
}

.batik-border-l::before,
.batik-border-r::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 6px;
  background: repeating-linear-gradient(
    180deg,
    var(--color-primary) 0px,
    var(--color-primary) 8px,
    var(--color-accent)  8px,
    var(--color-accent)  16px
  );
  opacity: 0.6;
}
.batik-border-l::before { left: 0; }
.batik-border-r::after  { right: 0; }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* --- Section --- */
.section {
  padding-block: var(--space-4xl);
}

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

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

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

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-label {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-primary .section-title { color: var(--color-white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
}

.section-primary .section-desc { color: rgba(255,255,255,0.8); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.text-primary  { color: var(--color-primary); }
.text-accent   { color: var(--color-accent-dark); }
.text-muted    { color: var(--color-text-muted); }
.text-center   { text-align: center; }
.text-sm       { font-size: 0.875rem; }
.text-xs       { font-size: 0.75rem; }
.font-bold     { font-weight: 700; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 76, 129, 0.3);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(244, 208, 63, 0.4);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
}

/* --- Cards --- */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.card-compact {
  padding: var(--space-lg);
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.badge-primary { background: rgba(0,63,138,0.1); color: var(--color-primary); }
.badge-accent  { background: rgba(245,196,0,0.2); color: var(--color-accent-dark); }
.badge-green   { background: rgba(40,167,69,0.1); color: var(--color-success); }
.badge-gray    { background: var(--color-bg-alt); color: var(--color-text-muted); }

/* --- Grid Utilities --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* --- Flex Utilities --- */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { flex-direction: column; }
.gap-sm       { gap: var(--space-sm); }
.gap-md       { gap: var(--space-md); }
.gap-lg       { gap: var(--space-lg); }

/* --- Divider --- */
.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin-block: var(--space-xl);
  border: none;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

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

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.navbar__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-muted);
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.navbar__nav a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition-fast);
  padding: 4px 0;
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.navbar__nav a:hover { color: var(--color-primary); }
.navbar__nav a:hover::after { transform: scaleX(1); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--color-border);
}

.lang-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) var(--container-pad);
  gap: var(--space-md);
}

.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

/* --- Footer --- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.85);
  padding-block: var(--space-3xl) var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: var(--space-sm); }
.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}
.footer__col ul a:hover { color: var(--color-white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}
.footer__social a:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
}


/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-base);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.modal__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  line-height: 1;
  transition: color var(--transition-fast);
}
.modal__close:hover { color: var(--color-error); }

/* --- Stats / Counters --- */
.stat-card {
  text-align: center;
  padding: var(--space-xl);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* --- Loading Spinner --- */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: auto;
}

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

/* --- Toast Notification --- */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  background: var(--color-text);
  color: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-family: var(--font-body);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: fadeInUp 0.3s ease;
  min-width: 260px;
}

.toast-success { background: var(--color-success); }
.toast-error   { background: var(--color-error); }
.toast-warning { background: var(--color-accent-dark); color: var(--color-white); }

/* --- Language Toggle Classes --- */
/* Hide all bilingual elements by default */
:not(html):not(body).lang-id { display: none; }
:not(html):not(body).lang-en { display: none; }

/* Show correct language based on body class */
body.lang-id .lang-id { display: revert; }
body.lang-en .lang-en { display: revert; }

/* Inline spans need inline display */
span.lang-id { display: none; }
span.lang-en { display: none; }
body.lang-id span.lang-id { display: inline; }
body.lang-en span.lang-en { display: inline; }

/* Block-level language elements */
div.lang-id, p.lang-id, h1.lang-id, h2.lang-id, h3.lang-id, h4.lang-id { display: none; }
div.lang-en, p.lang-en, h1.lang-en, h2.lang-en, h3.lang-en, h4.lang-en { display: none; }
body.lang-id div.lang-id,
body.lang-id p.lang-id,
body.lang-id h1.lang-id,
body.lang-id h2.lang-id,
body.lang-id h3.lang-id,
body.lang-id h4.lang-id { display: block; }
body.lang-en div.lang-en,
body.lang-en p.lang-en,
body.lang-en h1.lang-en,
body.lang-en h2.lang-en,
body.lang-en h3.lang-en,
body.lang-en h4.lang-en { display: block; }

/* --- Responsive Navbar --- */
@media (max-width: 900px) {
  .navbar__nav  { display: none; }
  .hamburger    { display: flex; }
}

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

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.w-full { width: 100%; }

/* --- Sticky CTA Bar (mobile) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) var(--container-pad);
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0,63,138,0.1);
}

@media (max-width: 600px) {
  .sticky-cta { display: flex; gap: var(--space-sm); }
  .sticky-cta .btn { flex: 1; font-size: 0.8rem; }
}

/* --- Touch Targets Accessibility --- */
@media (pointer: coarse) {
  .btn, .lang-btn, .hamburger, .year-btn, .gh-view-btn, .cat-btn {
    min-height: 44px;
  }
}

/* --- Print Stylesheet --- */
@media print {
  .navbar, .hamburger, .lang-toggle, .sticky-cta, .toast-container, 
  .hero__ctas, .hero__scroll, .footer, .skip-link, .modal__close,
  .year-selector, .flipbook-controls, .gh-filter-bar, .gh-view-toggle {
    display: none !important;
  }
  body {
    background: #ffffff !important;
    color: #000000 !important;
    padding-top: 0 !important;
  }
  .card, .modal {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  a[href]::after {
    content: "" !important;
  }
}
