/* =====================================================
   BASE / GLOBAL STYLES
===================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}


/* =====================================================
   GENERAL SMALL SECTION LABELS
===================================================== */

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(253, 249, 250, 0.55);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin: 0 9px 3px 0;
}


/* =====================================================
   HERO SMALL LABEL
   Approved: bigger and NO yellow line.
===================================================== */

.hero-label {
  margin: 0 0 18px 0;
  color: rgba(253, 249, 250, 0.55);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* =====================================================
   GENERAL SECTIONS
===================================================== */

.section {
  padding: 10vw var(--page-padding);
}

.section-head {
  max-width: 820px;
  margin-bottom: 55px;
}

.section h2,
.contact h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 18px 0;
}

.section h2 em,
.contact h2 em {
  font-style: normal;
  color: var(--accent);
}

.section-lead {
  color: var(--muted);
  line-height: 1.8;
  max-width: 590px;
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* =====================================================
   MOUSE / TOUCH GLOW
===================================================== */

.pointer-glow {
  position: fixed;
  z-index: 1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(236, 244, 1, 0.12),
      rgba(236, 244, 1, 0.04) 32%,
      transparent 70%
    );

  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: screen;
}
