@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

:root {
  --bg:       #0b0b0a;
  --surface:  #111110;
  --surface2: #161614;
  --border:   #1e1e1c;
  --border2:  #2a2a27;
  --red:      #b83a2a;
  --red-lt:   #cc4433;
  --red-dim:  #7a2418;
  --text:     #ede8e0;
  --text2:    #a09a90;
  --muted:    #525049;
  --faint:    #1a1a18;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.has-cursor { cursor: none; }

.cur-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
}
.cur-ring {
  width: 28px; height: 28px;
  border: 1px solid rgba(184,58,42,0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* eyebrow — sin decoración, solo texto */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* títulos — DM Sans 600, sin drama */
.display {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* botones */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-fill {
  background: var(--red);
  color: var(--bg);
  padding: 12px 28px;
}
.btn-fill:hover { background: var(--red-lt); }

.btn-outline {
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 11px 24px;
  background: transparent;
}
.btn-outline:hover { border-color: var(--red-dim); color: var(--text); }

.btn-ghost {
  color: var(--muted);
  background: transparent;
  padding: 0;
  font-size: 13px;
}
.btn-ghost::after { content: ' →'; color: var(--red); }
.btn-ghost:hover { color: var(--text); }

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }
