/* style.css */
:root {
  --color-dark: #07120a;
  --color-light: #f7f9f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
  /* Adjusted to match the white theme of the remaining example */
}

.example {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.content {
  max-width: 1200px;
  width: 100%;
  animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   Stark Contrast (Pure B&W)
   ========================================= */
.example-4 {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Outfit', sans-serif;
}

.example-4 .company-name {
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.example-4 .claim {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  color: #000000;
  margin-bottom: 4rem;
}

.example-4 .names {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #555555;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.example-4 .dot {
  color: #000000;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .example-4 .names {
    flex-direction: column;
    gap: 0.5rem;
  }

  .example-4 .dot {
    display: none;
  }
}