/* ============================================================
   LEMONSHARK — shared stylesheet
   Dark first. Volt for accent. Orange for action.
   ============================================================ */

:root {
  --volt:   #DCFF00;
  --black:  #0A0A0A;
  --navy:   #0E1B2E;
  --orange: #FF4D1C;
  --slate:  #3D3D4E;
  --white:  #F7F7F2;
  --mid:    #161622;
  --card:   #1C1C2A;

  --max:   1240px;
  --pad:   clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: var(--volt); color: var(--black); }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

h1 {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  letter-spacing: -0.03em;
  font-weight: 900;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  font-weight: 700;
}

p { color: rgba(247,247,242,0.7); }
strong { color: var(--white); font-weight: 400; }

.volt { color: var(--volt); }
.muted { color: rgba(247,247,242,0.55); }

/* ---------- Layout ---------- */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { padding: 7rem 0; position: relative; }
section.tight { padding: 4rem 0; }

/* ---------- Eyebrow label ---------- */

.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--volt);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.label::before {
  content: '';
  width: 1.6rem;
  height: 1px;
  background: var(--volt);
}

/* ---------- Buttons ---------- */

.btn,
.btn-ghost,
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  padding: 1.05rem 1.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn {
  background: var(--volt);
  color: var(--black);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(220,255,0,0.55);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(255,77,28,0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(247,247,242,0.25);
}
.btn-ghost:hover {
  border-color: var(--volt);
  color: var(--volt);
  transform: translateY(-2px);
}

.btn .arrow,
.btn-orange .arrow,
.btn-ghost .arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow,
.btn-orange:hover .arrow,
.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Navigation ---------- */

nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad);
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247,247,242,0.06);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: inline-flex;
}
.nav-logo .ls { color: var(--volt); }
.nav-logo .rest { color: var(--white); }

.nav-links {
  display: flex;
  gap: 2.4rem;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: rgba(247,247,242,0.6);
  transition: color .2s;
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--volt);
}

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  background: var(--volt);
  color: var(--black);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(220,255,0,0.5);
}

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  padding-top: 11rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(220,255,0,0.07), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(255,77,28,0.05), transparent 60%),
    linear-gradient(rgba(247,247,242,0.025) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(247,247,242,0.025) 1px, transparent 1px) 0 0 / 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 80%);
}

/* Decorative shark fin mark in hero */
.hero-fin {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: 35%;
  width: clamp(120px, 14vw, 220px);
  height: auto;
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 8px 30px rgba(220,255,0,0.18));
  animation: finFloat 6s ease-in-out infinite alternate;
}
.hero .container { position: relative; z-index: 1; }

@keyframes finFloat {
  from { transform: translateY(-6px) rotate(-2deg); }
  to   { transform: translateY(6px)  rotate(2deg); }
}

@media (max-width: 760px) {
  .hero-fin { display: none; }
}

.hero h1 .accent {
  color: var(--volt);
  display: inline-block;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(247,247,242,0.7);
  max-width: 36rem;
  margin-top: 1.6rem;
  line-height: 1.55;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
}

.spots-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(247,247,242,0.15);
  border-radius: 999px;
}
.spots-pill .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,77,28,0.6);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,28,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(255,77,28,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,28,0); }
}

/* ---------- Ticker ---------- */

.ticker {
  background: var(--volt);
  color: var(--black);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 22s linear infinite;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  white-space: nowrap;
  align-items: center;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.ticker-track .diamond {
  color: var(--black);
  opacity: 0.6;
}

@keyframes ticker {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Section header ---------- */

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.section-head h2 { max-width: 28ch; }
.section-head .lede {
  max-width: 32ch;
  color: rgba(247,247,242,0.6);
  font-size: 1rem;
}

/* ---------- Cards ---------- */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.25rem;
}

.card {
  position: relative;
  background: var(--card);
  padding: 2.2rem 1.7rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(247,247,242,0.05);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(247,247,242,0.12);
}
.card:hover::before { transform: scaleX(1); }

.card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--volt);
  letter-spacing: 0.2em;
  margin-bottom: 1.4rem;
}
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.15;
}
.card-text {
  font-size: 0.95rem;
  color: rgba(247,247,242,0.6);
  line-height: 1.6;
}

/* ---------- Stats strip ---------- */

.stats {
  background: var(--mid);
  padding: 4.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat {
  text-align: left;
  padding: 0 1rem;
  border-left: 1px solid rgba(247,247,242,0.08);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--volt);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(247,247,242,0.55);
  margin-top: 0.6rem;
}

/* ---------- Testimonial ---------- */

.testimonial {
  background: var(--navy);
  padding: 7rem 0;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: var(--pad);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18rem;
  line-height: 1;
  color: var(--volt);
  opacity: 0.08;
  pointer-events: none;
}
.quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.18;
  max-width: 28ch;
  margin: 0 auto;
  text-align: center;
}
.quote-attr {
  text-align: center;
  margin-top: 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--volt);
}

.trust-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(247,247,242,0.08);
  padding-top: 2rem;
}
.trust-row li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}
.trust-row .k {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--volt);
  font-weight: 700;
}
.trust-row .v {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CTA strip ---------- */

.cta-strip {
  padding: 6rem 0;
  position: relative;
  background:
    linear-gradient(180deg, var(--black), var(--mid));
  border-top: 1px solid rgba(247,247,242,0.05);
  border-bottom: 1px solid rgba(247,247,242,0.05);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 18ch;
}
.cta-inner h2 .accent { color: var(--volt); }

/* ---------- Footer ---------- */

footer {
  background: var(--black);
  border-top: 1px solid rgba(247,247,242,0.06);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.foot-brand .nav-logo { font-size: 1.6rem; }
.foot-brand p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(247,247,242,0.4);
  max-width: 28ch;
}
.foot-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--volt);
  margin-bottom: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 0.55rem; }
.foot-col a {
  font-size: 0.92rem;
  color: rgba(247,247,242,0.55);
  transition: color .2s;
}
.foot-col a:hover { color: var(--volt); }

.copyright-bar {
  border-top: 1px solid rgba(247,247,242,0.06);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(247,247,242,0.4);
  letter-spacing: 0.05em;
}

/* ---------- Custom cursor ---------- */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  mix-blend-mode: difference;
  display: none;
}
.cursor-dot {
  width: 10px; height: 10px;
  background: var(--volt);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--volt);
  background: transparent;
  transition: width .25s, height .25s, background .25s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  background: rgba(220,255,0,0.12);
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select, .card { cursor: none; }
  .cursor-dot, .cursor-ring { display: block; }
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ============================================================
   PAGE: ABOUT
   ============================================================ */

.story {
  background: var(--navy);
  padding: 7rem 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.story-grid h2 { color: var(--white); }
.story-grid p {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: rgba(247,247,242,0.7);
}
.quote-card {
  background: rgba(10,10,10,0.55);
  border-left: 3px solid var(--volt);
  padding: 2rem 2rem 2rem 2.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}
.quote-card .by {
  display: block;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--volt);
}

.not-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.5rem;
  margin-top: 2rem;
}
.not-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(247,247,242,0.08);
  font-size: 0.98rem;
  color: rgba(247,247,242,0.7);
}
.not-list li::before {
  content: '✕';
  color: var(--orange);
  font-weight: 700;
  margin-top: 0.05rem;
}

/* ============================================================
   PAGE: CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.contact-info p { margin-top: 1.2rem; font-size: 1.02rem; max-width: 38ch; }

.contact-meta {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.4rem;
}
.contact-meta-item {
  border-top: 1px solid rgba(247,247,242,0.08);
  padding-top: 1.2rem;
}
.contact-meta-item .k {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--volt);
  margin-bottom: 0.4rem;
}
.contact-meta-item .v {
  font-size: 1.05rem;
  color: var(--white);
}
.contact-meta-item .v a:hover { color: var(--volt); }

.contact-form {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(247,247,242,0.06);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(247,247,242,0.55);
}
.field label .req { color: var(--orange); margin-left: 0.2rem; }

.field input,
.field textarea,
.field select {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--white);
  background: var(--mid);
  border: 1px solid rgba(247,247,242,0.08);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color .2s, background .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--volt);
  background: var(--black);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(247,247,242,0.3); }

.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.6rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-foot .small {
  font-size: 0.78rem;
  color: rgba(247,247,242,0.4);
  max-width: 30ch;
}

.success-banner,
.error-banner {
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.success-banner {
  background: rgba(220,255,0,0.08);
  border: 1px solid var(--volt);
  color: var(--volt);
}
.error-banner {
  background: rgba(255,77,28,0.08);
  border: 1px solid var(--orange);
  color: var(--orange);
}

/* ============================================================
   PAGE: FAQ
   ============================================================ */

.faq-cat {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--volt);
  font-weight: 700;
  margin: 3rem 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.faq-cat::before {
  content: '';
  width: 1.6rem;
  height: 1px;
  background: var(--volt);
}
.faq-cat:first-child { margin-top: 0; }

.faq-item {
  border-top: 1px solid rgba(247,247,242,0.08);
  padding: 1.4rem 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(247,247,242,0.08); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  color: var(--white);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--volt); }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  border: 1px solid rgba(247,247,242,0.2);
  border-radius: 999px;
  transition: border-color .2s, transform .3s var(--ease);
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: '';
  position: absolute;
  background: var(--white);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item summary .plus::before { width: 0.7rem; height: 1px; }
.faq-item summary .plus::after  { width: 1px; height: 0.7rem; transition: transform .3s var(--ease); }
.faq-item[open] summary .plus { border-color: var(--volt); transform: rotate(135deg); }
.faq-item[open] summary .plus::before,
.faq-item[open] summary .plus::after { background: var(--volt); }

.faq-item .answer {
  padding-top: 1.2rem;
  color: rgba(247,247,242,0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 70ch;
}

/* ============================================================
   PAGE: PRIVACY / GENERIC LONG FORM
   ============================================================ */

.prose {
  max-width: 70ch;
}
.prose h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin: 2.8rem 0 1rem;
}
.prose h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.15rem;
}
.prose p { margin-bottom: 1rem; line-height: 1.8; }
.prose ul { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.prose ul li {
  margin-bottom: 0.55rem;
  color: rgba(247,247,242,0.7);
}
.prose a { color: var(--volt); border-bottom: 1px solid rgba(220,255,0,0.4); }
.prose a:hover { border-bottom-color: var(--volt); }

.page-hero-small {
  padding: 11rem 0 4rem;
  border-bottom: 1px solid rgba(247,247,242,0.06);
}
.page-hero-small h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
}

/* ============================================================
   PAGE: 404
   ============================================================ */

.fourofour {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--pad);
}
.fourofour h1 {
  font-size: clamp(7rem, 22vw, 17rem);
  color: var(--volt);
  line-height: 0.85;
  margin-bottom: 1.5rem;
}

/* ============================================================
   ADMIN
   ============================================================ */

.admin-shell {
  min-height: 100vh;
  padding: 4rem var(--pad);
  max-width: 1100px;
  margin: 0 auto;
}
.admin-shell h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.admin-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.admin-bar .meta {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(247,247,242,0.45);
}
.sub-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(247,247,242,0.06);
  border-left: 3px solid var(--volt);
}
.sub-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.sub-head .who {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.sub-head .when {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(247,247,242,0.4);
  text-transform: uppercase;
}
.sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
  font-size: 0.93rem;
}
.sub-grid .k {
  color: rgba(247,247,242,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}
.sub-grid .v { color: var(--white); margin-bottom: 0.4rem; }
.sub-msg {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247,247,242,0.06);
  color: rgba(247,247,242,0.7);
  white-space: pre-wrap;
  font-size: 0.95rem;
}

.login-box {
  max-width: 400px;
  margin: 14vh auto;
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid rgba(247,247,242,0.06);
  border-radius: var(--radius);
}
.login-box h1 { font-size: 1.8rem; margin-bottom: 1.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 5rem 0; }
}

@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid rgba(247,247,242,0.08); padding: 1.2rem 0 0; }
  .stat:first-child { border-top: none; padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .not-list { grid-template-columns: 1fr; }
  .sub-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .hero { padding-top: 8rem; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
