/* Velvet Neon - Base Styles & Design Tokens */
:root {
  --bg: #120720;
  --bg-2: #1a0b2e;
  --bg-3: #22103b;
  --purple: #7b2ff7;
  --purple-soft: #9d4edd;
  --pink: #ff4d9d;
  --gold: #e8b04b;
  --text: #f6e9f3;
  --text-dim: #cdb6cf;
  --cream: #f2e9ee;
  --cream-ink: #21102e;
  --cream-ink-dim: #5a3d6b;
  --line: rgba(157, 78, 221, .28);
  --radius: 18px;
  --maxw: 1080px;
}

/* Local Font Loading */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/marcellus-regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/jost-300.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jost-400.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/jost-600.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/jost-700.woff2') format('woff2');
  font-display: swap;
}

/* Base Reset & Typography */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: 
    radial-gradient(1100px 620px at 78% -8%, rgba(123, 47, 247, .32), transparent 60%),
    radial-gradient(900px 560px at 8% 12%, rgba(255, 77, 157, .18), transparent 58%),
    linear-gradient(180deg, #1a0b2e 0%, #120720 38%, #0e0518 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 .5em;
}

/* Layout Components */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 74px 0; position: relative; }

.btn {
  display: inline-block;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  color: #1a0512;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  box-shadow: 0 10px 34px rgba(255, 77, 157, .34);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--purple-soft);
  background: rgba(157, 78, 221, .08);
}

.card {
  background: linear-gradient(165deg, rgba(34, 16, 59, .92), rgba(18, 7, 32, .92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all .25s ease;
}

.card:hover { 
  border-color: var(--pink); 
  transform: translateY(-3px); 
}

/* Utilities */
.glow { color: var(--gold); text-shadow: 0 0 24px rgba(232, 176, 75, .5); }
.accent { color: var(--gold); }
