/* ═══════════════════════════════════════════
   SAYLO — Reset & Base
═══════════════════════════════════════════ */

/* ── Geist font via CDN ── */
@import url('https://fonts.cdnfonts.com/css/geist-sans');
/* Fallback stack: system UI and Inter cover most cases */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--void);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Noise grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ── Custom cursor ── */
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
}

#cur-r {
  position: fixed;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 77, 0, 0.45);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.1s, top 0.1s;
}

/* ── Typography base ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

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

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

button {
  font-family: var(--font-body);
  cursor: none;
}

ul {
  list-style: none;
}

/* ── Scroll reveal ── */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.65s var(--ease),
    transform 0.65s var(--ease);
}
.r.v { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ── Section shared ── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 12px;
  font-weight: 500;
  font-family: var(--font-body);
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: -4px;
  line-height: 0.97;
  margin-bottom: 14px;
  text-align: center;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 72px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive helpers ── */
@media (max-width: 1024px) {
  body { cursor: auto; }
  #cur, #cur-r { display: none; }
}

@media (max-width: 600px) {
  .section-title { font-size: 40px; letter-spacing: -2.5px; }
}
