/* ── DESIGN TOKENS ── */
:root {
  --black:   #0a0a0a;
  --cream:   #E8E4DC;
  --white:   #ffffff;
  --teal:    #4A9B9B;
  --orange:  #E8613C;
  --grey-c:  #D8D4CC;
  --text-dk: #1a1a1a;
  --text-md: #444444;
  --text-lt: rgba(255,255,255,0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  cursor: none;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
#cur-dot,
#cur-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#cur-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  transition: opacity 0.2s;
}

#cur-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body.hovering #cur-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(255,255,255,0.9);
}

/* ── BRACKET CTA BUTTON ── */
.btn-br {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  cursor: none;
  transition: color 0.3s;
}

.btn-br.dark { color: var(--text-dk); }

.br-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.br-corner.tl { top: 0; left: 0;  border-top:    1.5px solid currentColor; border-left:   1.5px solid currentColor; }
.br-corner.tr { top: 0; right: 0; border-top:    1.5px solid currentColor; border-right:  1.5px solid currentColor; }
.br-corner.bl { bottom: 0; left: 0;  border-bottom: 1.5px solid currentColor; border-left:   1.5px solid currentColor; }
.br-corner.br { bottom: 0; right: 0; border-bottom: 1.5px solid currentColor; border-right:  1.5px solid currentColor; }

.btn-br:hover .tl { transform: translate(-4px, -4px); }
.btn-br:hover .tr { transform: translate( 4px, -4px); }
.btn-br:hover .bl { transform: translate(-4px,  4px); }
.btn-br:hover .br { transform: translate( 4px,  4px); }


/* ── REVEAL ANIMATION CLASSES ── */
.from-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.from-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.from-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.from-left.visible,
.from-right.visible,
.from-bottom.visible {
  opacity: 1;
  transform: none;
}
