/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .72rem 1.5rem; border-radius: 4px;
  font-weight: 700; font-size: .85rem; letter-spacing: .02em;
  transition: all .15s; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform .15s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--violet); color: #fff;
  border-color: var(--violet-2);
  box-shadow: 4px 4px 0 0 rgba(0,0,0,.2);
}
.btn-primary:hover {
  background: var(--violet-2);
  box-shadow: 6px 6px 0 0 rgba(0,0,0,.22);
  transform: translate(-2px,-2px);
}
.btn-outline {
  background: transparent; color: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.18);
}
.btn-outline:hover {
  background: rgba(244,114,182,.12);
  border-color: rgba(244,114,182,.5);
  color: var(--violet-glow);
  transform: translate(-2px,-2px);
}
.btn-outline-dark {
  background: var(--white); color: var(--text);
  border: 2px solid var(--border);
  box-shadow: 3px 3px 0 0 rgba(0,0,0,.08);
}
.btn-outline-dark:hover {
  border-color: var(--violet); color: var(--violet);
  box-shadow: 3px 3px 0 0 rgba(244,114,182,.25);
  transform: translate(-1px,-1px);
}
.btn-primary:active  { transform: translate(0,0); box-shadow: 2px 2px 0 0 rgba(0,0,0,.2); }
.btn-outline:active  { transform: translate(0,0); }
.btn-outline-dark:active { transform: translate(0,0); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   CONTAINER & SECTION LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
section { padding: 5.5rem 0; }

/* Section eyebrow — // code marker */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--violet); margin-bottom: .75rem;
  line-height: 1;
}
.section-eyebrow::before {
  content: '//';
  font-family: 'Press Start 2P', monospace;
  font-size: .6em;
  letter-spacing: 0;
  opacity: .9;
  flex-shrink: 0;
  line-height: 1;
}

/* Section title — pink gradient */
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(130deg, var(--text) 40%, var(--violet) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-sub {
  color: var(--text-muted); margin-top: .75rem;
  font-size: .95rem; line-height: 1.75; max-width: 520px;
}
.section-header { margin-bottom: 3rem; position: relative; z-index: 1; overflow: hidden; }

/* Dark section header */
.section-header-dark .section-eyebrow { color: var(--violet-glow); }
.section-header-dark .section-title {
  background: linear-gradient(130deg, #ffffff 40%, var(--violet-glow) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header-dark .section-sub { color: rgba(255,255,255,.42); }

/* Pixel watermark numbers */
.section-num {
  position: absolute;
  bottom: -0.25rem; right: 0;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400; line-height: 1; letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244,114,182,.13);
  pointer-events: none; -webkit-user-select: none; user-select: none; z-index: 0;
}
.section-num-light {
  -webkit-text-stroke-color: rgba(255,255,255,.07);
}
