/* ==========================================================================
   InstaCamsLive — "The Live Signal" design system
   Cool, electric, broadcast-motif — deliberately distinct from siblings
   in this network. Keep additions consolidated here.
   ========================================================================== */

:root {
  /* Color */
  --void: #0A0E1A;
  --void-2: #12182B;
  --signal-cyan: #00E5FF;
  --volt-violet: #8B5CF6;
  --alert-lime: #C4FF3D;
  --mist: #EAF6FF;
  --paper: #FFFFFF;
  --gradient-signal: linear-gradient(135deg, #00E5FF 0%, #8B5CF6 100%);
  --gradient-void: linear-gradient(180deg, #0A0E1A 0%, #151B2E 100%);

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Layout */
  --content-width: 1200px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset-ish base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* !important guard: Astra (parent theme) prints its own dynamic CSS which
   has repeatedly overridden base colors in this network's other sites —
   guaranteeing this from the start rather than discovering it under fire. */
html, body {
  background: var(--void) !important;
  color: var(--mist) !important;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.03rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0 0 0.5em; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
body.age-gate-active { overflow: hidden; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem; width: auto; height: auto;
  background: var(--signal-cyan); color: var(--void); padding: 0.75em 1.25em;
  border-radius: var(--radius-sm); z-index: 999; clip: auto; font-weight: 700;
}
:focus-visible { outline: 2px solid var(--volt-violet); outline-offset: 3px; }

/* ---------- Layout helpers ---------- */
.section-inner { max-width: var(--content-width); margin: 0 auto; padding: 6rem 1.5rem; }
.section-inner--narrow { max-width: 780px; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.75rem); color: var(--void); }
.section-title--light { color: var(--paper); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--volt-violet); margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--signal-cyan); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--alert-lime);
  box-shadow: 0 0 0 0 rgba(196,255,61,0.6); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(196,255,61,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(196,255,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(196,255,61,0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  padding: 0.9em 1.7em; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.btn--primary {
  background: var(--gradient-signal); color: var(--void);
  box-shadow: 0 10px 30px -8px rgba(0, 229, 255, 0.45);
}
.btn--primary:hover { box-shadow: 0 14px 34px -6px rgba(139, 92, 246, 0.55); }
.btn--large { padding: 1.1em 2em; font-size: 1.02rem; }
.btn__icon { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn__icon { transform: translateX(4px); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--mist); border: 1px solid rgba(255,255,255,0.14); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--void); transition: box-shadow 0.3s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 30px -20px rgba(0,0,0,0.7); }
.site-header__inner { max-width: var(--content-width); margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.site-logo { display: flex; align-items: center; gap: 0.65em; }
.site-logo__icon { width: 32px; height: 32px; flex-shrink: 0; }
.site-logo__word { display: flex; flex-direction: column; line-height: 1; }
.site-logo__word-main {
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  background: var(--gradient-signal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-logo__word-tag { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.55; margin-top: 2px; display: inline-flex; align-items: center; gap: 0.4em; }
.site-logo__word-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--alert-lime); animation: pulse-dot-small 2.2s infinite; flex-shrink: 0; }
@keyframes pulse-dot-small {
  0% { box-shadow: 0 0 0 0 rgba(196,255,61,0.55); }
  70% { box-shadow: 0 0 0 4px rgba(196,255,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(196,255,61,0); }
}
.site-nav__list { display: flex; gap: 1.75rem; }
.site-nav__list a { font-size: 0.92rem; font-weight: 500; opacity: 0.8; transition: opacity 0.2s ease; }
.site-nav__list a:hover { opacity: 1; }

/* ---------- Hero (full-bleed, centered — no split layout) ---------- */
.hero { position: relative; padding: 6rem 1.5rem 4rem; overflow: hidden; text-align: center; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 30%, rgba(0,229,255,0.14) 0%, transparent 65%),
              radial-gradient(50% 50% at 50% 60%, rgba(139,92,246,0.1) 0%, transparent 65%);
}
/* Large ambient radar rings behind the whole hero, not tied to a small card */
.hero__rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; pointer-events: none; width: min(900px, 140vw); aspect-ratio: 1; }
.hero__rings span {
  position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(0,229,255,0.14);
  animation: radar-ping-wide 4.5s var(--ease-out) infinite;
}
.hero__rings span:nth-child(2) { animation-delay: 1.5s; border-color: rgba(139,92,246,0.12); }
.hero__rings span:nth-child(3) { animation-delay: 3s; }
@keyframes radar-ping-wide {
  0% { transform: scale(0.3); opacity: 0.7; }
  100% { transform: scale(1); opacity: 0; }
}

.hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero__title { font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: -0.02em; color: var(--paper); }
.hero__title-accent {
  display: block; background: var(--gradient-signal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__subtitle { max-width: 46ch; font-size: 1.14rem; opacity: 0.78; margin-left: auto; margin-right: auto; }
.hero__actions { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin: 1.75rem 0 2rem; }
.hero__note { font-family: var(--font-mono); font-size: 0.76rem; opacity: 0.5; margin: 0; }

/* Small floating live badge under the CTA — replaces the old large side card */
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6em; margin-top: 0.5rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5em 1em; border-radius: 999px; font-family: var(--font-mono); font-size: 0.8rem;
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--alert-lime); animation: pulse-dot 2s infinite; flex-shrink: 0; }
.hero__badge strong { color: var(--signal-cyan); font-weight: 700; }

.hero__meta-stats { display: flex; gap: 2rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.hero__meta-stat { text-align: center; }
.hero__meta-stat dt { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.5; margin-bottom: 0.3em; }
.hero__meta-stat dd { margin: 0; font-family: var(--font-mono); font-size: 1.3rem; font-weight: 700; color: var(--volt-violet); }

/* ---------- Editorial showcase panels (alternating image/text) ---------- */
.showcase { background: var(--void); }
.showcase__panel {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
  padding: 3.5rem 0;
}
.showcase__panel + .showcase__panel { border-top: 1px solid rgba(255,255,255,0.06); }
@media (min-width: 860px) {
  .showcase__panel { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .showcase__panel--reverse .showcase__media { order: 2; }
  .showcase__panel--reverse .showcase__copy { order: 1; }
}
.showcase__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.showcase__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.showcase__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.18), rgba(139,92,246,0.14));
  mix-blend-mode: multiply;
}
.showcase__copy h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--paper); margin-bottom: 0.6em; }
.showcase__copy p { opacity: 0.72; font-size: 1rem; max-width: 46ch; }
.showcase__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.showcase__chip {
  font-family: var(--font-mono); font-size: 0.76rem; padding: 0.45em 0.9em; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); opacity: 0.85;
}


.hero__scroll-cue { display: flex; justify-content: center; margin-top: 2.5rem; position: relative; z-index: 1; }
.hero__scroll-cue span {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.24); border-radius: 999px; position: relative; display: block;
}
.hero__scroll-cue span::before {
  content: ''; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px;
  background: var(--signal-cyan); border-radius: 999px; transform: translateX(-50%);
  animation: scroll-cue 1.6s ease infinite;
}
@keyframes scroll-cue { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 18px; } 100% { opacity: 0; top: 6px; } }

/* ---------- Live feed ticker ---------- */
.ticker-strip { background: var(--void); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0.9rem 0; }
.ticker-strip__inner { max-width: var(--content-width); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.ticker-strip__bars { display: flex; align-items: flex-end; gap: 3px; height: 22px; }
.ticker-strip__bars span { width: 3px; border-radius: 2px; background: var(--gradient-signal); animation: bar-bounce 1.1s ease-in-out infinite; }
.ticker-strip__bars span:nth-child(1) { animation-delay: 0s; }
.ticker-strip__bars span:nth-child(2) { animation-delay: 0.1s; }
.ticker-strip__bars span:nth-child(3) { animation-delay: 0.2s; }
.ticker-strip__bars span:nth-child(4) { animation-delay: 0.3s; }
.ticker-strip__bars span:nth-child(5) { animation-delay: 0.4s; }
.ticker-strip__bars span:nth-child(6) { animation-delay: 0.5s; }
.ticker-strip__bars span:nth-child(7) { animation-delay: 0.6s; }
@keyframes bar-bounce { 0%, 100% { height: 5px; } 50% { height: 20px; } }
.ticker-strip__label { font-family: var(--font-mono); font-size: 0.8rem; opacity: 0.65; margin: 0; min-width: 220px; transition: opacity 0.4s ease; }
.ticker-strip__label.is-fading { opacity: 0; }

/* ---------- Device / access band ---------- */
.access-band { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: flex-end; }
.access-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) brightness(0.55); transform: scale(1.12); transition: transform 6s var(--ease-out); }
.access-band.is-visible .access-band__img { transform: scale(1); }
.access-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.25) 0%, rgba(10,14,26,0.92) 100%),
              linear-gradient(120deg, rgba(0,229,255,0.32), rgba(139,92,246,0.2));
  mix-blend-mode: multiply;
}
.access-band__content { position: relative; z-index: 1; padding: 3.5rem 1.5rem; max-width: var(--content-width); margin: 0 auto; width: 100%; }
.access-band__content h2 { color: var(--paper); font-size: clamp(1.7rem, 3vw, 2.4rem); max-width: 22ch; margin-bottom: 0.5em; }
.access-band__content p { color: var(--mist); opacity: 0.8; max-width: 42ch; margin: 0; }

/* ---------- Features + Trust combined: dark bento grid, asymmetric tiles ---------- */
.features { background: var(--void-2); color: var(--mist); }
.bento-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(160px, auto); }
  .bento-tile--wide { grid-column: span 2; grid-row: span 2; }
}
.bento-tile {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md); padding: 1.75rem; display: flex; flex-direction: column;
  justify-content: flex-end; position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease;
}
.bento-tile:hover { transform: translateY(-4px); border-color: rgba(0,229,255,0.3); }
.bento-tile--wide { justify-content: center; }
.bento-tile--wide .bento-tile__icon { width: 52px; height: 52px; font-size: 1.5rem; }
.bento-tile--wide h3 { font-size: 1.5rem; }
.bento-tile--wide p { max-width: 34ch; opacity: 0.72; }
.bento-tile::before {
  content: ''; position: absolute; top: -30%; right: -20%; width: 60%; height: 60%; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.1) 0%, transparent 70%); pointer-events: none;
}
.bento-tile__icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.bento-tile__icon--cyan { background: rgba(0,229,255,0.14); }
.bento-tile__icon--violet { background: rgba(139,92,246,0.16); }
.bento-tile__icon--lime { background: rgba(196,255,61,0.2); }
.bento-tile h3 { font-size: 1.08rem; margin-bottom: 0.4em; color: var(--paper); }
.bento-tile p { font-size: 0.92rem; opacity: 0.65; margin: 0; }
.bento-tile--trust { border-left: 2px solid var(--signal-cyan); }
.trust-more { text-align: center; margin-top: 2.5rem; }
.trust-more a { font-weight: 700; color: var(--volt-violet); transition: opacity 0.2s ease; }
.trust-more a:hover { opacity: 0.7; }

/* ---------- How it works: horizontal connected timeline ---------- */
.how-it-works { background: var(--void); border-top: 1px solid rgba(255,255,255,0.06); }
.timeline { position: relative; margin-top: 3.5rem; }
.timeline__track {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; position: relative;
}
@media (min-width: 780px) {
  .timeline__track { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .timeline__track::before {
    content: ''; position: absolute; top: 22px; left: calc(16.66% + 0px); right: calc(16.66% + 0px);
    height: 1px; background: linear-gradient(90deg, var(--signal-cyan), var(--volt-violet));
    opacity: 0.35; z-index: 0;
  }
}
.timeline__node { position: relative; z-index: 1; text-align: center; }
.timeline__index {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--void); border: 1px solid rgba(0,229,255,0.4);
  font-family: var(--font-mono); font-weight: 700; color: var(--signal-cyan); font-size: 0.92rem;
}
.timeline__node h3 { color: var(--paper); font-size: 1.18rem; }
.timeline__node p { opacity: 0.65; font-size: 0.94rem; max-width: 26ch; margin: 0 auto; }
.how-it-works__cta { display: flex; justify-content: center; margin-top: 3.5rem; }

/* ---------- Live signal log: real terminal window with a typewriter effect ---------- */
.signal-log { background: var(--void-2); }
.terminal {
  margin-top: 2.5rem; max-width: 640px;
  background: var(--void); border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,229,255,0.06);
  overflow: hidden;
}
.terminal__bar {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.terminal__dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal__dot--red { background: #FF5F57; }
.terminal__dot--yellow { background: #FEBC2E; }
.terminal__dot--green { background: #28C840; }
.terminal__filename {
  margin-left: 0.5rem; font-family: var(--font-mono); font-size: 0.76rem; opacity: 0.5;
}
.terminal__body { padding: 1.25rem 1.5rem 1.5rem; min-height: 220px; }
.terminal__line {
  font-family: var(--font-mono); font-size: 0.9rem; line-height: 1.9; color: var(--mist);
  display: flex; gap: 0.7em; align-items: baseline; transition: opacity 0.3s ease;
}
.terminal__prompt { color: var(--signal-cyan); flex-shrink: 0; user-select: none; }
.terminal__line:nth-child(even) .terminal__prompt { color: var(--volt-violet); }
.terminal__text { white-space: pre-wrap; word-break: break-word; }
.terminal__cursor {
  display: inline-block; width: 8px; height: 1.1em; background: var(--alert-lime);
  margin-left: 2px; vertical-align: text-bottom; animation: cursor-blink 0.9s steps(1) infinite;
}
@keyframes cursor-blink { 50% { opacity: 0; } }
.signal-log__note { font-family: var(--font-mono); font-size: 0.72rem; opacity: 0.4; margin-top: 1.5rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); color: var(--void); }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-more { text-align: center; margin-top: 2rem; }
.faq-more a { font-weight: 700; color: var(--volt-violet); transition: opacity 0.2s ease; }
.faq-more a:hover { opacity: 0.75; }
.faq-item { border: 1px solid rgba(10,14,26,0.1); border-radius: var(--radius-sm); padding: 1rem 1.25rem; }
.faq-item summary { cursor: pointer; font-weight: 700; font-family: var(--font-body); list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--volt-violet); }
.faq-item[open] summary::after { content: '–'; }
.faq-item div { padding-top: 0.75rem; opacity: 0.75; }

/* ---------- Closing CTA band ---------- */
.closing-cta { position: relative; overflow: hidden; background: var(--gradient-void); border-top: 1px solid rgba(255,255,255,0.06); }
.closing-cta::before {
  content: ''; position: absolute; inset: -40% 20% auto -20%; height: 180%;
  background: radial-gradient(50% 50% at 20% 30%, rgba(0,229,255,0.18) 0%, transparent 60%),
              radial-gradient(45% 45% at 90% 60%, rgba(139,92,246,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.closing-cta__inner { position: relative; z-index: 1; max-width: var(--content-width); margin: 0 auto; padding: 4rem 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.closing-cta__inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--paper) !important; margin: 0; max-width: 20ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--void); }
.site-footer__inner { max-width: var(--content-width); margin: 0 auto; padding: 3.5rem 1.5rem 2rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; } }
.site-footer__col--brand { max-width: 320px; }
.site-footer__brand { display: flex; align-items: center; gap: 0.6em; margin-bottom: 0.9rem; }
.site-footer__brand .site-logo__word-main { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; background: var(--gradient-signal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-footer__tagline { font-size: 0.9rem; opacity: 0.6; margin-bottom: 1rem; }
.site-footer__status { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.5; margin: 0; }
.site-footer__col-title { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--signal-cyan); margin: 0 0 1.1rem; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__list a { position: relative; font-size: 0.9rem; opacity: 0.72; transition: opacity 0.2s ease, padding-left 0.2s ease; }
.site-footer__list a::before { content: '›'; position: absolute; left: -1em; opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; transform: translateX(-4px); color: var(--signal-cyan); font-weight: 700; }
.site-footer__list a:hover { opacity: 1; padding-left: 1em; }
.site-footer__list a:hover::before { opacity: 1; transform: translateX(0); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.75rem; }
.site-footer__legal { opacity: 0.4; font-size: 0.78rem; margin: 0; }
.site-footer__top {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14) !important;
  background: rgba(255,255,255,0.04) !important; color: var(--mist) !important; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.site-footer__top:hover { background: var(--gradient-signal) !important; border-color: transparent !important; color: var(--void) !important; }

/* ---------- Generic page ---------- */
.generic-page { padding-top: 2rem; }
.generic-post__content { color: var(--mist); opacity: 0.92; }
.generic-post__content h2 { font-size: 1.5rem; margin-top: 2.2em; margin-bottom: 0.5em; color: var(--paper); }
.generic-post__content h2:first-child { margin-top: 0; }
.generic-post__content h3 { font-size: 1.12rem; margin-top: 1.6em; margin-bottom: 0.4em; color: var(--paper); }
.generic-post__content p { margin-bottom: 1.1em; line-height: 1.7; }
.generic-post__content ul, .generic-post__content ol { margin: 0 0 1.1em; padding-left: 1.4em; list-style: revert; }
.generic-post__content li { margin-bottom: 0.5em; line-height: 1.6; }
.generic-post__content a { color: var(--signal-cyan); text-decoration: underline; text-underline-offset: 2px; }
.generic-post__content strong { color: var(--paper); }
.generic-post__content .pvc-updated { font-family: var(--font-mono); font-size: 0.8rem; opacity: 0.5; margin-bottom: 2.5em; }

/* ---------- Contact Form 7 ---------- */
.wpcf7-form { margin-top: 2rem; }
.wpcf7-form p { margin-bottom: 1.4rem; }
.wpcf7-form label { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; color: var(--mist) !important; margin-bottom: 0.5em; }
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form input[type="url"], .wpcf7-form textarea {
  width: 100%; padding: 0.85em 1em; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04);
  color: var(--mist); font-family: var(--font-body); font-size: 0.94rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.wpcf7-form textarea { min-height: 160px; resize: vertical; }
.wpcf7-form input:focus, .wpcf7-form textarea:focus { outline: none; border-color: var(--signal-cyan); background: rgba(255,255,255,0.07); }
.wpcf7-form input[type="submit"] {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  padding: 0.9em 1.7em; border-radius: 999px; border: none !important; cursor: pointer;
  background: var(--gradient-signal) !important; color: var(--void) !important;
  box-shadow: 0 10px 30px -8px rgba(0, 229, 255, 0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.wpcf7-form input[type="submit"]:hover { box-shadow: 0 14px 34px -6px rgba(139, 92, 246, 0.55); }
.wpcf7-not-valid-tip { color: var(--alert-lime); font-size: 0.84rem; margin-top: 0.4em; }
.wpcf7-response-output { margin-top: 1.5rem !important; padding: 1em 1.25em; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.14); font-size: 0.9rem; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  background: radial-gradient(60% 60% at 30% 20%, rgba(0,229,255,0.2) 0%, transparent 60%),
              radial-gradient(50% 50% at 85% 80%, rgba(139,92,246,0.18) 0%, transparent 60%),
              var(--void);
}
.age-gate[hidden] { display: none; }
.age-gate__card {
  position: relative; max-width: 440px; width: 100%; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2.75rem 2.25rem 2.25rem;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7); animation: gate-in 0.6s var(--ease-out);
}
@keyframes gate-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.age-gate__mark {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 1.25rem;
  background: var(--gradient-signal); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--void); font-size: 1.05rem;
}
.age-gate__title { color: var(--paper); font-size: 1.55rem; margin-bottom: 0.5rem; }
.age-gate__copy { opacity: 0.7; font-size: 0.96rem; max-width: 34ch; margin: 0 auto 1.75rem; }
.age-gate__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.age-gate__legal { font-family: var(--font-mono); font-size: 0.68rem; opacity: 0.4; margin: 1.5rem 0 0; }

/* ---------- Chat page (full-bleed, no site header/footer) ---------- */
body.ic-chat-fullscreen { margin: 0; overflow: hidden; }
.ic-chat-fullscreen__main { display: block; width: 100vw; height: 100dvh; }
.ic-chat-fullscreen__main iframe { width: 100%; height: 100%; border: 0; display: block; }
.ic-chat-fullscreen__main > *:not(.ic-chat-fullscreen__unconfigured) { width: 100%; height: 100%; }
.ic-chat-fullscreen__unconfigured {
  display: flex; align-items: center; justify-content: center; height: 100%; padding: 2rem; text-align: center;
  color: var(--mist); font-family: var(--font-mono); font-size: 0.9rem; opacity: 0.7;
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; display: flex; padding: 0.75rem 1rem;
  background: rgba(10,14,26,0.94); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%); transition: transform 0.4s var(--ease-out);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn { width: 100%; justify-content: center; }
@media (min-width: 720px) { .mobile-cta-bar { display: none; } }

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, rgba(0,229,255,0) 70%);
  pointer-events: none; transform: translate(-50%, -50%); z-index: 0; transition: opacity 0.4s ease; opacity: 0;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow.is-active { opacity: 1; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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



