/* Data Gobblin — shared base styles (DG-P13) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Skip-to-content (WCAG AA) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #2DC653;
  color: #0A0A0C;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Prevent horizontal overflow on mobile (UAT fix) */
html, body {
  overflow-x: hidden;
}

/* Ensure minimum touch targets (WCAG 2.5.8) */
@media (pointer: coarse) {
  a, button, [role="button"], input, select, textarea {
    min-height: 44px;
  }
}

/* Small-screen safety (375px and below) */
@media (max-width: 480px) {
  .wrap, .auth-wrap, .dp-hero, .pricing-hero, .sc-hero {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  table { font-size: 12px; }
  .dg-topnav { padding: 0 12px; }
}
