/* ============================================
   global.css â€” Base resets & shared utilities
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); }

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

/* â”€â”€ Shared Section Wrapper â”€â”€ */
.section {
  padding: var(--space-xl) var(--space-lg);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* â”€â”€ Eyebrow label â”€â”€ */
.eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}

/* â”€â”€ Section title â”€â”€ */
.s-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.s-title .gold  { color: var(--gold); }
.s-title .teal  { color: var(--teal); }

/* â”€â”€ Glow divider â”€â”€ */
.glow-div {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(254, 214, 91, 0.2),
    rgba(0, 229, 200, 0.12),
    transparent
  );
}

/* â”€â”€ Scroll reveal â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.v { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.44s; }

/* â”€â”€ Buttons â”€â”€ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 52px rgba(254, 214, 91, 0.55);
}
.btn-primary svg {
  transition: transform 0.3s;
}
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  background: transparent;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.06);
}