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

  html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    hanging-punctuation: first last;
  }

  body {
    min-height: 100vh;
    line-height: 1.6;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--vwc-text-primary);
    background: var(--vwc-bg-primary);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
    text-wrap: balance;
  }

  p,
  li {
    max-width: 70ch;
    text-wrap: pretty;
  }

  a {
    color: var(--vwc-accent-primary);
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  /* Removed & nesting, wrote full selector */
  a:hover {
    color: var(--vwc-accent-hover);
  }

  a:focus-visible {
    outline: 2px solid var(--vwc-accent-primary);
    outline-offset: 2px;
    border-radius: 2px;
  }

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

  button,
  input,
  textarea,
  select {
    font: inherit;
    color: inherit;
  }

  button {
    cursor: pointer;
  }

  /* Removed & nesting, wrote full selector */
  button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
  }

  address {
    font-style: normal;
  }

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