/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Poppins:wght@400;600;700;900&family=Lato:wght@400;700&display=swap');

/* === RESET + BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  color: #111;
  background: #fff;
  min-height: 100vh;
}

/* === VARIABLES === */
:root {
  --blue: #0063B3;
  --yellow: #FFD91B;
  --orange: #F37421;
  --black: #000;
  --white: #fff;
  --grey-light: #f5f5f5;
  --grey-mid: #e0e0e0;
  --text-muted: #666;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* === SITE HEADER === */
.site-header {
  background: var(--blue);
  color: var(--white);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.site-header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-header__logo img { height: 40px; }
.site-header__logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--yellow { background: var(--yellow); color: var(--black); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--white { background: var(--white); color: var(--blue); border: 2px solid var(--blue); }
.btn--danger { background: #d9534f; color: var(--white); }
.btn--sm { padding: 6px 14px; font-size: 0.85rem; }

/* === MAIN CONTENT === */
.main-content { max-width: 1400px; margin: 0 auto; padding: 24px 16px; }

/* === FORMS === */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #333;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.15s;
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--blue); }
.form-control.is-invalid { border-color: #d9534f; }
.form-hint { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.char-counter { font-size: 0.82rem; color: var(--text-muted); text-align: right; margin-top: 4px; }
.char-counter.near-limit { color: var(--orange); }
.char-counter.at-limit { color: #d9534f; font-weight: 700; }
.error-msg { color: #d9534f; font-size: 0.85rem; margin-top: 6px; display: none; }
.error-msg.visible { display: block; }

/* === ALERT === */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.alert--error { background: #fce8e8; border: 1px solid #d9534f; color: #a02020; }
.alert--success { background: #e8f5e9; border: 1px solid #2a9d5c; color: #1a6e3a; }
.alert--info { background: #fff8e1; border: 1px solid var(--yellow); color: #5a4a00; }

/* === PASSWORD MODAL === */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.modal__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--blue);
}
.modal__sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

/* === GALLERY MASONRY === */
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.gallery-counter { font-size: 0.9rem; color: var(--text-muted); }
.masonry-grid { columns: 4; column-gap: 12px; }
@media (max-width: 1200px) { .masonry-grid { columns: 3; } }
@media (max-width: 768px) { .masonry-grid { columns: 2; } }
@media (max-width: 480px) { .masonry-grid { columns: 1; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--grey-light);
}
.masonry-item img,
.masonry-item video {
  display: block;
  width: 100%;
  height: auto;
}
.masonry-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.masonry-item:hover .masonry-item__overlay { opacity: 1; }
.masonry-item__caption { color: var(--white); font-size: 0.82rem; line-height: 1.3; }
.masonry-item__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  pointer-events: none;
}

/* === PAGINATION === */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 0;
}
.pagination__btn {
  min-width: 36px; height: 36px;
  padding: 0 10px;
  border: 2px solid var(--grey-mid);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.15s;
}
.pagination__btn:hover { border-color: var(--blue); color: var(--blue); }
.pagination__btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.pagination__input { width: 64px; }

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox__close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--white); font-size: 2rem;
  cursor: pointer; line-height: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: var(--white);
  font-size: 2rem; width: 48px; height: 64px;
  cursor: pointer; border-radius: 6px;
}
.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }
.lightbox__media { max-width: 90vw; max-height: 75vh; border-radius: var(--radius); }
.lightbox__media video { max-width: 90vw; max-height: 75vh; }
.lightbox__info { margin-top: 16px; text-align: center; color: var(--white); }
.lightbox__name { font-family: 'Poppins', sans-serif; font-weight: 600; }
.lightbox__caption { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 4px; max-width: 600px; }

/* === BACK TO TOP === */
.back-to-top {
  display: none;
  position: fixed; bottom: 24px; right: 24px;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.2rem;
  cursor: pointer; box-shadow: var(--shadow);
  align-items: center; justify-content: center;
  z-index: 50;
}
.back-to-top.visible { display: flex; }

/* === UPLOAD PAGE === */
.upload-page { max-width: 640px; margin: 40px auto; padding: 0 16px; }
.upload-page__header { text-align: center; margin-bottom: 32px; }
.upload-page__logo { max-width: 180px; margin-bottom: 16px; }
.upload-page__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--blue);
}
.file-drop {
  border: 3px dashed var(--grey-mid);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.file-drop:hover, .file-drop.drag-over {
  border-color: var(--blue);
  background: #f0f7ff;
}
.file-drop__icon { font-size: 2.5rem; margin-bottom: 12px; }
.file-drop__text { font-size: 0.95rem; color: var(--text-muted); }
.file-list { margin-top: 16px; }
.file-list__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  background: var(--grey-light);
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 0.85rem;
}
.file-list__name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-list__size { color: var(--text-muted); margin: 0 12px; flex-shrink: 0; }
.file-list__remove { background: none; border: none; color: #d9534f; cursor: pointer; font-size: 1rem; }
.upload-summary { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
.upload-summary.over-limit { color: #d9534f; font-weight: 700; }

/* === CONFIRMATION === */
.confirmation {
  text-align: center;
  padding: 60px 20px;
  max-width: 480px;
  margin: 0 auto;
}
.confirmation__icon { font-size: 4rem; margin-bottom: 16px; }
.confirmation__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 12px;
}

/* === ADMIN === */
.admin-login {
  max-width: 400px;
  margin: 80px auto;
  padding: 40px;
  border: 1px solid var(--grey-mid);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.admin-login__logo { text-align: center; margin-bottom: 24px; }
.admin-login__logo img { max-width: 120px; }

/* === SWIPE REVIEW === */
.review-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 24px 16px;
}

.upload-killswitch {
  width: 100%;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 2px solid;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}
.upload-killswitch--on {
  background: #f0fdf4;
  border-color: #16a34a;
}
.upload-killswitch--off {
  background: #fff1f1;
  border-color: #dc2626;
  animation: ks-pulse 1.8s ease-in-out infinite;
}
@keyframes ks-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}
.upload-killswitch__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.upload-killswitch__icon { font-size: 1.5rem; }
.upload-killswitch__title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.upload-killswitch--on .upload-killswitch__title { color: #15803d; }
.upload-killswitch--off .upload-killswitch__title { color: #dc2626; }
.upload-killswitch__sub {
  font-size: 0.72rem;
  color: #555;
  margin-top: 0.1rem;
}
.upload-killswitch__btn {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.upload-killswitch--on .upload-killswitch__btn {
  background: #dc2626;
  color: #fff;
}
.upload-killswitch--on .upload-killswitch__btn:hover { background: #b91c1c; }
.upload-killswitch--off .upload-killswitch__btn {
  background: #16a34a;
  color: #fff;
}
.upload-killswitch--off .upload-killswitch__btn:hover { background: #15803d; }
.review-counter {
  display: flex; gap: 24px;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
.review-counter__item { text-align: center; }
.review-counter__num { display: block; font-size: 1.6rem; font-weight: 900; }
.counter--approved { color: #2a9d5c; }
.counter--pending  { color: var(--blue); }
.counter--deleted  { color: #d9534f; }

.card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 560px;
}
.swipe-card {
  position: absolute; inset: 0;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  user-select: none;
  touch-action: none;
}
.swipe-card.is-back {
  transform: scale(0.95) translateY(10px);
  z-index: 0;
  pointer-events: none;
}
.swipe-card.is-front { z-index: 1; transition: none; }
.swipe-card.animate-out { transition: transform 0.3s ease, opacity 0.3s; }

.swipe-card__media {
  flex: 1;
  overflow: hidden;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-in;
  position: relative;
}
.swipe-card__media img { width: 100%; height: 100%; object-fit: contain; }
.swipe-card__media video { width: 100%; height: 100%; object-fit: contain; }

.swipe-label {
  position: absolute;
  top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  border: 4px solid;
  border-radius: 8px;
  padding: 4px 12px;
  opacity: 0;
  transition: opacity 0.1s;
  pointer-events: none;
}
.swipe-label--approve { left: 16px; color: #2a9d5c; border-color: #2a9d5c; transform: rotate(-12deg); }
.swipe-label--delete  { right: 16px; color: #d9534f; border-color: #d9534f; transform: rotate(12deg); }

.swipe-card__info { padding: 16px; border-top: 1px solid var(--grey-mid); }
.swipe-card__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.swipe-card__caption { font-size: 0.88rem; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.swipe-card__meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }

.swipe-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.swipe-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 3px solid;
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow: var(--shadow);
}
.swipe-btn:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.swipe-btn--delete { border-color: #d9534f; color: #d9534f; }
.swipe-btn--skip   { border-color: var(--text-muted); color: var(--text-muted); font-size: 1rem; }
.swipe-btn--approve { border-color: #2a9d5c; color: #2a9d5c; }
.swipe-btn--undo   { border-color: var(--blue); color: var(--blue); font-size: 1rem; }

.review-filters {
  display: flex; gap: 8px;
  margin-top: 20px;
}
.filter-btn {
  padding: 6px 14px;
  border: 2px solid var(--grey-mid);
  border-radius: 20px;
  background: var(--white);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

.inline-edit { display: none; padding: 16px; background: var(--grey-light); border-top: 1px solid var(--grey-mid); }
.inline-edit.visible { display: block; }
.inline-edit textarea { resize: vertical; min-height: 80px; }

.empty-queue {
  text-align: center;
  padding: 60px 20px;
}
.empty-queue__icon { font-size: 4rem; margin-bottom: 16px; }
.empty-queue__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blue);
}

/* === FOOTER === */
.site-footer {
  background: var(--blue);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  margin-top: 0;
}
.site-footer img { height: 32px; opacity: 0.8; }

/* === UTILITY === */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.spinner {
  display: inline-block;
  width: 24px; height: 24px;
  border: 3px solid var(--grey-mid);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === ADMIN GRID VIEW === */
.grid-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 16px;
  flex-wrap: wrap;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1100px) { .admin-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .admin-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .admin-grid { grid-template-columns: 1fr; } }

.admin-grid-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}
.admin-grid-item.is-selected { outline: 3px solid var(--blue); }
.admin-grid-item__media {
  width: 100%;
  aspect-ratio: 4/3;
  background: #111;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.admin-grid-item__media img,
.admin-grid-item__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.admin-grid-item__check {
  position: absolute;
  top: 8px; left: 8px;
  width: 22px; height: 22px;
  accent-color: var(--blue);
  cursor: pointer;
  z-index: 2;
}
.admin-grid-item__info {
  padding: 10px 12px;
  flex: 1;
}
.admin-grid-item__name { font-weight: 700; font-size: 0.85rem; }
.admin-grid-item__caption { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; line-height: 1.3; }
.admin-grid-item__actions {
  display: flex;
  border-top: 1px solid var(--grey-mid);
}
.admin-grid-item__actions button {
  flex: 1;
  padding: 8px;
  border: none;
  background: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.admin-grid-item__actions button:first-child { border-right: 1px solid var(--grey-mid); }
.admin-grid-item__actions .approve-btn:hover { background: #e8f5e9; color: #2a9d5c; }
.admin-grid-item__actions .delete-btn:hover  { background: #fce8e8; color: #d9534f; }

/* === LANDING SECTIONS === */

.landing-divider {
  text-align: center;
  padding: 2.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}
.landing-divider::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--yellow);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.landing-about {
  background: var(--blue);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}
.landing-about__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}
.landing-about__headline {
  font-family: 'Paytone One', sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
  text-transform: uppercase;
}
.landing-about__headline em {
  color: var(--yellow);
  font-style: normal;
}
.landing-about__body {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.88);
}
.landing-about__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.landing-about__cta-primary {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.landing-about__cta-primary:hover { background: #e6c400; }
.landing-about__cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.landing-about__cta-secondary:hover { border-color: rgba(255,255,255,0.85); }


.landing-poh {
  background: #fff8e1;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  padding: 3.5rem 2rem;
}
.landing-poh__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.landing-poh__icon {
  font-size: 4rem;
  flex-shrink: 0;
  line-height: 1;
}
.landing-poh__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.landing-poh__body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
@media (max-width: 600px) {
  .landing-poh__inner { flex-direction: column; text-align: center; }
}
.landing-cta {
  background: var(--yellow);
  padding: 1.75rem 2rem;
}
.landing-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.landing-cta__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.landing-cta__logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
.landing-cta__headline {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.15rem;
}
.landing-cta__sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: #333;
}
.landing-cta__btn {
  display: inline-block;
  background: #000;
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.landing-cta__btn:hover { background: #222; color: var(--yellow); }

/* ── Footer ─────────────────────────────────────────────────────────── */
.landing-footer {
  background: var(--black);
  color: #aaa;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.landing-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.landing-footer__wordmark {
  background: var(--white);
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
}
.landing-footer__links {
  display: flex;
  gap: 1.5rem;
}
.landing-footer__links a {
  color: var(--yellow);
  text-decoration: none;
}
.landing-footer__links a:hover { text-decoration: underline; }
