.oz-hero-section {
  --oz-ink: #0F141E;
  --oz-ink-muted: #5A6070;
  --oz-cream: #F5F0EB;
  --oz-cream-warm: #EDE8E2;
  --oz-yellow: #FAC828;
  --oz-violet: #5F2DFF;
  --oz-line: rgba(15, 20, 30, 0.10);
  padding: 80px 0 96px;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--oz-ink);
}
@media (min-width: 1024px) { .oz-hero-section { padding: 120px 0 140px; } }

.oz-hero-bg-cream { background: var(--oz-cream); }
.oz-hero-bg-white { background: white; }
.oz-hero-bg-ink   { background: var(--oz-ink); color: var(--oz-cream); }
.oz-hero-bg-ink .oz-hero-sub,
.oz-hero-bg-ink .oz-hero-bullet { color: rgba(245, 240, 235, 0.7); }

.oz-hero-section *, .oz-hero-section *::before, .oz-hero-section *::after { box-sizing: border-box; }
.oz-hero-wrap { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .oz-hero-wrap { padding: 0 40px; } }

.oz-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(95, 45, 255, 0.08);
  color: var(--oz-violet);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.oz-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oz-violet);
  position: relative;
}
.oz-pulse-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--oz-violet);
  opacity: 0.3;
  animation: oz-pulse 2s ease-out infinite;
}
@keyframes oz-pulse {
  0%   { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

.oz-hero-title {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 18ch;
  margin: 0 0 32px 0;
  color: inherit;
}
.oz-hero-title .oz-serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--oz-violet);
}

.oz-hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--oz-ink-muted);
  max-width: 56ch;
  margin: 0 0 40px 0;
}

.oz-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.oz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--oz-yellow);
  color: var(--oz-ink);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.oz-btn-primary:hover { transform: translateY(-1px); }

.oz-btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--oz-ink);
  padding: 13px 24px;
  border: 1.5px solid var(--oz-line);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.oz-btn-ghost:hover { border-color: var(--oz-ink); }
.oz-hero-bg-ink .oz-btn-ghost { color: var(--oz-cream); border-color: rgba(245, 240, 235, 0.2); }
.oz-hero-bg-ink .oz-btn-ghost:hover { border-color: var(--oz-cream); }

.oz-hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 13px;
  color: var(--oz-ink-muted);
}
.oz-hero-bullet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.oz-check { color: var(--oz-violet); flex-shrink: 0; }
