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

    :root {
      --black: #080705;
      --deep: #0d0b08;
      --surface: #131109;
      --surface2: #18160f;
      --surface3: #1f1c13;
      --amber: #c4813a;
      --amber-light: #e8a85c;
      --amber-pale: #f2d49a;
      --cream: #ede5d4;
      --cream-soft: #c8bfae;
      --muted: #6b6355;
      --softer: #9e9282;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'DM Sans', system-ui, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
      cursor: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      appearance: none;
      border: 0;
      background: none;
    }

    .is-hidden {
      display: none;
    }

    /* CURSOR */
    .cursor {
      width: 8px;
      height: 8px;
      background: var(--amber);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
    }

    .cursor-ring {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(196, 129, 58, 0.45);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width 0.3s, height 0.3s;
    }

    body:has(a:hover) .cursor-ring,
    body:has(button:hover) .cursor-ring {
      width: 50px;
      height: 50px;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      padding: 1.5rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(8, 7, 5, 0.92), transparent);
      pointer-events: none;
    }

    .nav-logo {
      font-family: var(--serif);
      font-weight: 300;
      font-size: 1.3rem;
      letter-spacing: 0.4em;
      color: var(--amber-pale);
      text-decoration: none;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
      cursor: none;
    }

    .nav-links {
      display: flex;
      gap: 3rem;
      list-style: none;
      position: relative;
      z-index: 1;
    }

    .nav-links a {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
      cursor: none;
    }

    .nav-links a:hover {
      color: var(--amber-light);
    }

    .nav-links a.active {
      color: var(--amber-pale);
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: none;
      position: relative;
      z-index: 601;
      padding: 4px;
      border: 0;
      background: transparent;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--amber-pale);
      transition: all 0.3s;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .nav-mobile {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8, 7, 5, 0.97);
      z-index: 600;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }

    .nav-mobile.open {
      display: flex;
    }

    .nav-mobile a {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--cream-soft);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.3s;
      cursor: none;
    }

    .nav-mobile a:hover {
      color: var(--amber-pale);
    }

    /* PAGES */
    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    /* ═══════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 0 4rem;
    }

    .hero-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 65% 55% at 50% 55%, rgba(196, 129, 58, 0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      width: 1px;
      background: linear-gradient(to top, transparent, var(--amber), transparent);
      animation: particleRise linear infinite;
      opacity: 0;
    }

    @keyframes particleRise {
      0% {
        transform: translateY(100vh);
        opacity: 0;
      }

      10% {
        opacity: 0.8;
      }

      90% {
        opacity: 0.3;
      }

      100% {
        transform: translateY(-20vh);
        opacity: 0;
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1000px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.68rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeUp 1s 0.4s forwards;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--amber);
    }

    .hero-title {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(5rem, 15vw, 13rem);
      line-height: 0.9;
      letter-spacing: -0.03em;
      color: var(--cream);
      opacity: 0;
      animation: fadeUp 1.4s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      white-space: normal;
      word-break: break-word;
    }

    .hero-title em {
      font-style: italic;
      color: var(--amber-pale);
    }

    .hero-sep {
      width: 60px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--amber), transparent);
      margin: 2.5rem auto;
      opacity: 0;
      animation: fadeIn 1s 1.2s forwards;
    }

    .hero-sub {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(1rem, 2vw, 1.3rem);
      color: var(--softer);
      max-width: 520px;
      margin: 0 auto 3.5rem;
      line-height: 1.9;
      opacity: 0;
      animation: fadeUp 1s 1s forwards;
    }

    .hero-cta {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1s 1.4s forwards;
    }

    .btn-primary {
      background: transparent;
      color: var(--amber-pale);
      border: 1px solid var(--amber);
      padding: 1rem 3rem;
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: none;
      transition: background 0.4s, color 0.4s;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--amber);
      transform: translateX(-100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .btn-primary:hover::before {
      transform: translateX(0);
    }

    .btn-primary:hover {
      color: var(--black);
    }

    .btn-primary span {
      position: relative;
      z-index: 1;
    }

    .btn-ghost {
      background: transparent;
      color: var(--muted);
      border: 1px solid rgba(110, 100, 85, 0.4);
      padding: 1rem 3rem;
      font-family: var(--sans);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: none;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-ghost:hover {
      border-color: var(--amber);
      color: var(--amber-light);
    }

    .hero-scroll {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      opacity: 0;
      animation: fadeIn 1s 2.2s forwards;
    }

    .scroll-line {
      width: 1px;
      height: 55px;
      background: linear-gradient(to bottom, transparent, var(--amber));
      animation: scrollPulse 2s infinite;
    }

    .scroll-label {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.3;
      }

      50% {
        opacity: 1;
      }
    }

    /* MARQUEE */
    .marquee-wrap {
      border-top: 1px solid rgba(196, 129, 58, 0.15);
      border-bottom: 1px solid rgba(196, 129, 58, 0.15);
      padding: 1.5rem 0;
      overflow: hidden;
      background: var(--surface);
    }

    .marquee-track {
      display: flex;
      gap: 4rem;
      width: max-content;
      animation: marquee 22s linear infinite;
    }

    .marquee-item {
      font-family: var(--serif);
      font-style: italic;
      font-size: 1.1rem;
      color: var(--muted);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .marquee-dot {
      color: var(--amber);
      margin-right: 4rem;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* SECTIONS */
    section {
      padding: 9rem 4rem;
    }

    .section-label {
      font-size: 0.68rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--amber);
      display: block;
      margin-bottom: 1.5rem;
    }

    /* MANIFESTO */
    .manifesto-wrap {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 6rem;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }

    .manifesto-left {
      padding-top: 0.5rem;
    }

    .manifesto-number {
      font-family: var(--serif);
      font-size: 8rem;
      font-weight: 300;
      color: rgba(196, 129, 58, 0.12);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .manifesto-right p {
      font-family: var(--serif);
      font-size: clamp(1.3rem, 2.2vw, 1.8rem);
      font-weight: 300;
      line-height: 1.75;
      color: var(--cream-soft);
      margin-bottom: 1.5rem;
    }

    .manifesto-right p em {
      font-style: italic;
      color: var(--amber-pale);
    }

    .manifesto-right p strong {
      font-weight: 400;
      color: var(--cream);
    }

    /* STEPS */
    .steps-section {
      overflow: hidden;
      border-top: 1px solid rgba(196, 129, 58, 0.1);
      border-bottom: 1px solid rgba(196, 129, 58, 0.1);
    }

    .steps-track {
      display: flex;
      width: max-content;
      animation: scrollSteps 20s linear infinite;
    }

    .steps-track:hover {
      animation-play-state: paused;
    }

    .step-item {
      flex-shrink: 0;
      width: 360px;
      padding: 5rem 3rem;
      border-right: 1px solid rgba(196, 129, 58, 0.1);
      transition: background 0.3s;
    }

    .step-item:hover {
      background: rgba(196, 129, 58, 0.025);
    }

    .step-num {
      font-family: var(--serif);
      font-size: 5rem;
      color: rgba(196, 129, 58, 0.18);
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    .step-title {
      font-family: var(--serif);
      font-size: 1.5rem;
      color: var(--cream);
      margin-bottom: 0.75rem;
    }

    .step-body {
      font-size: 0.875rem;
      color: var(--softer);
      line-height: 1.9;
    }

    @keyframes scrollSteps {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* OFFERINGS */
    .offerings-section {
      background: var(--surface);
    }

    .offerings-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 6rem 2rem;
    }

    .offerings-promo-title {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 2rem;
    }

    .accent-italic {
      font-style: italic;
      color: var(--amber-pale);
    }

    .offerings-promo-copy {
      font-size: 0.95rem;
      color: var(--softer);
      line-height: 1.9;
      max-width: 480px;
      margin: 0 auto 3rem;
    }

    .offerings-header {
      max-width: 1100px;
      margin: 0 auto 3rem;
    }

    .offerings-title {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 300;
      color: var(--cream);
      max-width: 560px;
      line-height: 1.3;
    }

    .offerings-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      max-width: 1100px;
      margin: 0 auto;
      background: rgba(196, 129, 58, 0.1);
    }

    .offering-card {
      background: var(--surface);
      padding: 3rem;
      transition: background 0.4s;
      position: relative;
      overflow: hidden;
    }

    .offering-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, var(--amber), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s;
    }

    .offering-card:hover {
      background: rgba(15, 13, 8, 0.98);
    }

    .offering-card:hover::after {
      transform: scaleX(1);
    }

    .offering-glyph {
      font-family: var(--serif);
      font-size: 1.5rem;
      color: rgba(196, 129, 58, 0.4);
      margin-bottom: 1.25rem;
      display: block;
    }

    .offering-desc {
      font-size: 0.82rem;
      color: var(--softer);
      line-height: 1.85;
    }

    /* QUOTE */
    .quote-section {
      text-align: center;
      padding: 8rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .quote-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(196, 129, 58, 0.05), transparent 70%);
      pointer-events: none;
    }

    .quote-mark {
      font-family: var(--serif);
      font-size: 8rem;
      line-height: 0.5;
      color: rgba(196, 129, 58, 0.2);
      display: block;
      margin-bottom: 2rem;
    }

    .quote-text {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(1.5rem, 3vw, 2.3rem);
      font-weight: 300;
      color: var(--cream);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.65;
    }

    /* MERCH */

    /* SUBMIT */
    .submit-section {
      padding: 9rem 4rem;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .submit-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.25;
      margin-bottom: 1rem;
    }

    .submit-title em {
      font-style: italic;
      color: var(--amber-pale);
    }

    .submit-sub {
      font-size: 0.88rem;
      color: var(--softer);
      margin-bottom: 3.5rem;
      line-height: 1.9;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .form-wrap {
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.4rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .form-label {
      font-size: 0.62rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--amber);
    }

    .form-input,
    .form-textarea,
    .form-select {
      background: var(--surface);
      border: 1px solid rgba(196, 129, 58, 0.15);
      color: var(--cream);
      font-family: var(--sans);
      font-size: 0.88rem;
      font-weight: 300;
      padding: 0.85rem 1.2rem;
      outline: none;
      transition: border-color 0.35s;
      width: 100%;
      resize: none;
      -webkit-appearance: none;
    }

    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
      border-color: var(--amber);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--muted);
    }

    .form-textarea {
      min-height: 150px;
    }

    .form-select option {
      background: var(--deep);
    }

    .upload-zone {
      border: 1px dashed rgba(196, 129, 58, 0.25);
      padding: 2.5rem;
      text-align: center;
      transition: all 0.3s;
      cursor: none;
      position: relative;
      display: none;
    }

    .upload-zone.show {
      display: block;
    }

    .upload-zone:hover {
      border-color: var(--amber);
      background: rgba(196, 129, 58, 0.03);
    }

    .upload-zone input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: none;
      width: 100%;
      height: 100%;
    }

    .upload-file-name {
      font-size: 0.78rem;
      color: var(--amber);
      margin-top: 0.75rem;
    }

    .upload-icon {
      font-family: var(--serif);
      font-size: 1.5rem;
      color: rgba(196, 129, 58, 0.4);
      margin-bottom: 0.75rem;
      display: block;
    }

    .upload-text {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .upload-text span {
      color: var(--amber);
    }

    .anon-toggle {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.2rem;
      border: 1px solid rgba(196, 129, 58, 0.15);
      transition: border-color 0.3s;
      cursor: none;
      width: 100%;
      text-align: left;
    }

    .anon-toggle:hover {
      border-color: rgba(196, 129, 58, 0.35);
    }

    .toggle-switch {
      width: 40px;
      height: 22px;
      background: var(--surface3);
      border: 1px solid rgba(196, 129, 58, 0.3);
      border-radius: 11px;
      position: relative;
      cursor: none;
      transition: background 0.3s;
      flex-shrink: 0;
    }

    .toggle-switch.active {
      background: var(--amber);
    }

    .toggle-knob {
      width: 16px;
      height: 16px;
      background: var(--cream);
      border-radius: 50%;
      position: absolute;
      top: 2px;
      left: 2px;
      transition: transform 0.3s;
    }

    .toggle-switch.active .toggle-knob {
      transform: translateX(18px);
    }

    .toggle-label {
      font-size: 0.8rem;
      color: var(--softer);
    }

    .toggle-label strong {
      color: var(--cream);
      font-weight: 400;
    }

    .voice-group {
      border: 1px solid rgba(196, 129, 58, 0.2);
      padding: 2rem;
      text-align: center;
    }

    .voice-label {
      font-size: 0.62rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.5rem;
    }

    .voice-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .record-btn {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(196, 129, 58, 0.12);
      border: 2px solid var(--amber);
      color: var(--amber-pale);
      font-size: 1.4rem;
      cursor: none;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .voice-status {
      font-size: 0.78rem;
      color: var(--softer);
      margin-bottom: 0.25rem;
    }

    .voice-timer {
      font-family: var(--serif);
      font-size: 1.5rem;
      color: var(--cream);
    }

    .recording-audio {
      width: 100%;
      margin-bottom: 1rem;
      opacity: 0.8;
    }

    .record-again-btn {
      background: transparent;
      border: 1px solid rgba(196, 129, 58, 0.2);
      color: var(--muted);
      padding: 0.4rem 1rem;
      font-family: var(--sans);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: none;
    }

    .voice-help {
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: 1rem;
      line-height: 1.6;
    }

    .honeypot-input {
      position: absolute;
      left: -9999px;
      opacity: 0;
      pointer-events: none;
    }

    .turnstile-wrap {
      display: flex;
      justify-content: center;
      margin: 1rem 0;
    }

    .centered-row {
      text-align: center;
    }

    .form-note {
      font-size: 0.72rem;
      color: var(--muted);
      text-align: center;
      line-height: 1.7;
    }

    .form-note a {
      color: var(--amber);
      text-decoration: none;
    }

    /* ═══════════════════════════════════════
   EVENTS PAGE
═══════════════════════════════════════ */
    .ev-stage {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 4rem 4rem;
      background: var(--black);
    }

    #candleCanvas {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 240px;
      pointer-events: none;
    }

    .ev-content {
      position: relative;
      z-index: 10;
    }

    .ev-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.65rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 1s 0.3s forwards;
    }

    .ev-eyebrow::before,
    .ev-eyebrow::after {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--amber);
    }

    .ev-title {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(4.5rem, 14vw, 11rem);
      line-height: 0.9;
      color: var(--cream);
      opacity: 0;
      animation: fadeUp 1.2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      white-space: normal;
      word-break: break-word;
    }

    .ev-title em {
      font-style: italic;
      color: var(--amber-pale);
    }

    .ev-sep {
      width: 1px;
      height: 55px;
      background: linear-gradient(to bottom, transparent, var(--amber), transparent);
      margin: 2.5rem auto;
      opacity: 0;
      animation: fadeIn 1s 1.2s forwards;
    }

    .ev-sub {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: var(--softer);
      max-width: 440px;
      margin: 0 auto 3rem;
      line-height: 1.9;
      opacity: 0;
      animation: fadeUp 1s 0.9s forwards;
    }

    .ev-form {
      display: flex;
      gap: 0;
      max-width: 420px;
      width: 100%;
      margin: 0 auto;
      opacity: 0;
      animation: fadeUp 1s 1.4s forwards;
    }

    .ev-input {
      flex: 1;
      background: rgba(20, 18, 10, 0.8);
      border: 1px solid rgba(196, 129, 58, 0.25);
      border-right: none;
      color: var(--cream);
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 300;
      padding: 0.9rem 1.4rem;
      outline: none;
      transition: border-color 0.3s;
    }

    .ev-input:focus {
      border-color: var(--amber);
    }

    .ev-input::placeholder {
      color: var(--muted);
    }

    .ev-btn {
      background: var(--amber);
      color: var(--black);
      border: 1px solid var(--amber);
      padding: 0.9rem 2rem;
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: none;
      transition: background 0.3s;
      white-space: nowrap;
    }

    .ev-btn:hover {
      background: var(--amber-light);
    }

    .ev-note {
      margin-top: 1rem;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      color: var(--muted);
      opacity: 0;
      animation: fadeIn 1s 2s forwards;
    }

    .tiers {
      display: flex;
      gap: 3rem;
      justify-content: center;
      margin-top: 3.5rem;
      opacity: 0;
      animation: fadeIn 1s 2.5s forwards;
    }

    .tier-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
    }

    .tier-name {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .tier-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }

    .tier-badge.general .tier-dot {
      background: var(--muted);
    }

    .tier-badge.premium .tier-dot {
      background: var(--amber);
    }

    .tier-badge.vip .tier-dot {
      background: var(--amber-pale);
    }

    /* ═══════════════════════════════════════
   VOID PAGE
═══════════════════════════════════════ */
    .void-hero {
      min-height: 80vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10rem 4rem 5rem;
      position: relative;
      overflow: hidden;
    }

    #starsCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .void-title {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(5rem, 17vw, 13rem);
      line-height: 0.9;
      color: var(--cream);
      position: relative;
      z-index: 2;
      opacity: 0;
      animation: fadeUp 1.2s 0.5s forwards;
    }

    .void-title em {
      font-style: italic;
      color: var(--amber-pale);
    }

    .void-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.65rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 2rem;
      position: relative;
      z-index: 2;
      opacity: 0;
      animation: fadeUp 1s 0.3s forwards;
    }

    .void-eyebrow::before,
    .void-eyebrow::after {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--amber);
    }

    .void-sep {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, transparent, var(--amber), transparent);
      margin: 2rem auto;
      position: relative;
      z-index: 2;
      opacity: 0;
      animation: fadeIn 1s 1.2s forwards;
    }

    .void-desc {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: var(--softer);
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.9;
      position: relative;
      z-index: 2;
      opacity: 0;
      animation: fadeUp 1s 0.9s forwards;
    }

    .stats-bar {
      background: var(--surface);
      border-top: 1px solid rgba(196, 129, 58, 0.12);
      border-bottom: 1px solid rgba(196, 129, 58, 0.12);
      padding: 2.5rem 4rem;
      display: flex;
      gap: 5rem;
      justify-content: center;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: var(--serif);
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--amber-pale);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.35rem;
    }

    .filter-bar {
      padding: 2rem 4rem;
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      border-bottom: 1px solid rgba(196, 129, 58, 0.08);
      background: rgba(8, 7, 5, 0.95);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .filter-label {
      font-size: 0.62rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .filter-btn {
      background: transparent;
      border: 1px solid rgba(196, 129, 58, 0.18);
      color: var(--softer);
      padding: 0.45rem 1.2rem;
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: none;
      transition: all 0.3s;
    }

    .filter-btn:hover,
    .filter-btn.active {
      border-color: var(--amber);
      color: var(--amber-light);
      background: rgba(196, 129, 58, 0.05);
    }

    .filter-search {
      margin-left: auto;
      background: transparent;
      border: 1px solid rgba(196, 129, 58, 0.12);
      color: var(--cream);
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 300;
      padding: 0.45rem 1.2rem;
      outline: none;
      transition: border-color 0.3s;
      min-width: 200px;
      cursor: none;
    }

    .filter-search:focus {
      border-color: var(--amber);
    }

    .filter-search::placeholder {
      color: var(--muted);
    }

    .void-grid {
      padding: 3rem 4rem;
      columns: 3;
      column-gap: 2px;
      background: rgba(196, 129, 58, 0.02);
    }

    .truth-card {
      break-inside: avoid;
      margin-bottom: 2px;
      background: var(--black);
      padding: 2.5rem;
      transition: background 0.4s;
      position: relative;
      overflow: hidden;
      cursor: none;
    }

    .truth-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, transparent, var(--amber), transparent);
      opacity: 0;
      transition: opacity 0.5s;
    }

    .truth-card:hover {
      background: var(--surface);
    }

    .truth-card:hover::before {
      opacity: 1;
    }

    .truth-card.featured {
      background: var(--surface);
      border-left: 2px solid rgba(196, 129, 58, 0.35);
    }

    .truth-type {
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .truth-type::before {
      content: '';
      width: 10px;
      height: 1px;
      background: var(--muted);
    }

    .truth-text {
      font-family: var(--serif);
      font-size: clamp(0.95rem, 1.4vw, 1.1rem);
      font-weight: 300;
      line-height: 1.85;
      color: var(--cream-soft);
      margin-bottom: 1.25rem;
      max-height: 160px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(196, 129, 58, 0.3) transparent;
    }

    .truth-text.big {
      font-size: clamp(1.1rem, 1.8vw, 1.3rem);
      color: var(--cream);
    }

    .truth-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-top: 1px solid rgba(196, 129, 58, 0.08);
      padding-top: 0.85rem;
    }

    .truth-author {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .truth-city {
      font-size: 0.65rem;
      color: var(--muted);
    }

    .truth-city::before {
      content: '·';
      margin-right: 0.75rem;
    }

    .truth-date {
      font-size: 0.65rem;
      color: var(--muted);
      margin-left: auto;
      font-family: var(--serif);
      font-style: italic;
    }

    .truth-anon {
      font-size: 0.62rem;
      color: rgba(196, 129, 58, 0.6);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .load-more-wrap {
      text-align: center;
      padding: 4rem;
    }

    .load-more-btn {
      background: transparent;
      border: 1px solid rgba(196, 129, 58, 0.22);
      color: var(--softer);
      padding: 1rem 3rem;
      font-family: var(--sans);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: none;
      transition: all 0.3s;
    }

    .load-more-btn:hover {
      border-color: var(--amber);
      color: var(--amber-light);
    }

    .loading-state {
      text-align: center;
      padding: 6rem;
    }

    .loading-state-empty {
      color: var(--muted);
      font-family: var(--serif);
      font-style: italic;
    }

    .media-embed-video {
      width: 100%;
      max-height: 280px;
      background: #000;
      margin-bottom: 1rem;
      opacity: 0.9;
    }

    .media-embed-audio {
      width: 100%;
      margin-bottom: 1rem;
      opacity: 0.85;
    }

    .loading-dots {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
    }

    .loading-dot {
      width: 4px;
      height: 4px;
      background: var(--amber);
      border-radius: 50%;
      animation: dotPulse 1.2s infinite;
    }

    .loading-dot:nth-child(2) {
      animation-delay: 0.2s;
    }

    .loading-dot:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes dotPulse {

      0%,
      100% {
        opacity: 0.2;
        transform: scale(0.8);
      }

      50% {
        opacity: 1;
        transform: scale(1.2);
      }
    }

    /* ADD YOUR CODE RIGHT HERE 👇 */
    .steps-track,
    .marquee-track {
      max-width: 100vw;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid rgba(196, 129, 58, 0.1);
      padding: 3rem 4rem;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
    }

    .footer-logo {
      font-family: var(--serif);
      font-weight: 300;
      font-size: 1rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--amber-pale);
    }

    .footer-center {
      font-family: var(--serif);
      font-style: italic;
      font-size: 0.88rem;
      color: var(--muted);
      text-align: center;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      justify-content: flex-end;
    }

    .footer-links a {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
      cursor: none;
    }

    .footer-links a:hover {
      color: var(--amber);
    }

    /* TOAST */
    .toast {
      position: fixed;
      bottom: 2rem;
      left: 1rem;
      right: 1rem;
      transform: translateY(200%);
      background: var(--surface2);
      border: 1px solid rgba(196, 129, 58, 0.4);
      color: var(--cream);
      padding: 1rem 2rem;
      font-family: var(--serif);
      font-style: italic;
      font-size: 1rem;
      z-index: 1000;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      text-align: center;
      pointer-events: none;
    }

    .toast.show {
      transform: translateY(0);
    }

    /* REVEAL ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.revealed {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 {
      transition-delay: 0.15s;
    }

    .reveal-delay-2 {
      transition-delay: 0.3s;
    }

    .reveal-delay-3 {
      transition-delay: 0.45s;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav {
        padding: 1.25rem 1.5rem;
      }

      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      section {
        padding: 5rem 1.5rem;
      }

      .manifesto-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .offerings-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .void-grid {
        columns: 1;
        padding: 2rem 1.5rem;
      }

      .stats-bar {
        gap: 2.5rem;
        padding: 1.5rem;
      }

      .filter-bar {
        padding: 1.25rem 1.5rem;
      }

      footer {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
      }

      .hero {
        padding: 0 1rem;
      }

      .hero-title {
        font-size: clamp(4rem, 18vw, 8rem);
      }

      .ev-stage {
        padding: 6rem 1.5rem 3rem;
      }

      .void-hero {
        padding: 7rem 1.5rem 3rem;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .steps-track {
        overflow-x: auto;
        animation: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      .steps-track::-webkit-scrollbar {
        display: none;
      }

      .step-item {
        scroll-snap-align: start;
      }

      body {
        cursor: auto;
      }

      .cursor,
      .cursor-ring {
        display: none;
      }

      .btn-primary,
      .btn-ghost,
      .nav-hamburger,
      .record-btn,
      .record-again-btn,
      .anon-toggle,
      .filter-btn,
      .load-more-btn,
      .ev-btn {
        cursor: pointer;
      }

      .marquee-track {
        animation: none;
      }

      .step-item {
        width: 85vw;
        scroll-snap-align: center;
      }
    }

    @media (max-width: 600px) {
      nav {
        padding: 1rem;
      }

      .filter-search {
        min-width: 100%;
        width: 100%;
      }

      .truth-text {
        max-height: none;
        overflow: visible;
      }

      .truth-card {
        padding: 1.5rem;
      }

      .nav-logo {
        font-size: 1rem;
        letter-spacing: 0.2em;
      }

      .btn-primary,
      .btn-ghost {
        width: 100%;
        text-align: center;
      }

      .submit-section {
        padding: 4rem 1.5rem;
      }

      .form-wrap {
        gap: 1rem;
      }

      .filter-bar {
        flex-direction: column;
        align-items: stretch;
      }

      .filter-search {
        margin-left: 0;
      }

      .ev-form {
        flex-direction: column;
      }

      .ev-input {
        border-right: 1px solid rgba(196, 129, 58, 0.25);
      }

      .ev-btn {
        width: 100%;
      }

      footer {
        padding: 2rem 1rem;
      }
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    nav {
      backdrop-filter: blur(10px);
    }

    #about {
      padding: 9rem 4rem;
      background: var(--surface);
    }

    .about-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .about-label {
      font-size: 0.68rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--amber);
      display: block;
      margin-bottom: 1.5rem;
    }

    .about-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    .about-copy {
      font-size: 0.92rem;
      color: var(--softer);
      line-height: 1.95;
      margin-bottom: 1.25rem;
    }

    .about-copy-last {
      margin-bottom: 0;
    }

    .about-media-wrap {
      position: relative;
    }

    .about-video {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      border: 1px solid rgba(196, 129, 58, 0.2);
      background: #000;
    }

    .about-video-frame {
      display: block;
      min-height: 320px;
    }

    @media (max-width: 900px) {
      #about {
        padding: 5rem 1.5rem;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
      }

      .about-media-wrap {
        width: 100%;
      }

      .about-video-frame {
        width: 100%;
        min-height: 220px;
      }
    }
