/* ===============================================================
   CROWSIGHT - ORYZO VISUAL SYSTEM
   Anton + Inter · near-black · crimson accent · GSAP scroll
   =============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

/* =========== TOKENS =========== */
:root {
  --bg:       #08070a;
  --bg2:      #0e0c12;
  --crimson:  #ff0033;
  --crimson2: #cc0029;
  --cream:    #f0ece8;
  --muted:    #7a706c;
  --line:     rgba(240,236,232,.10);
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* --- Compatibility tokens used by auth.css / forum.css --- */
  --accent:        var(--crimson);
  --crimson-light: #ffb3af;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --text-soft:     #e5e2e1;
  --text-mute:     #b08784;
  --text-fade:     #6d5252;
  --border-glass:  rgba(255,255,255,.12);
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;
  --t-fast: 0.18s;
  --t-base: 0.28s;
  --t-slow: 0.45s;
}

/* =========== RESET =========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--cream); }
body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--crimson); color: #08070a; }
.anton { font-family: 'Anton', sans-serif; font-weight: 400; letter-spacing: .01em; line-height: .92; }

/* =========== NAV =========== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(18px,4vw,54px);
  mix-blend-mode: difference;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
header.scrolled {
  mix-blend-mode: normal;
  background: rgba(8,7,10,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-top: 16px; padding-bottom: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Anton'; font-size: 20px; letter-spacing: .18em;
}
.nav-logo-circle {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 100%; height: 100%; object-fit: contain;
  /* the PNG has transparent padding - scale up so the emblem reads at full size */
  transform: scale(1.62); transform-origin: center;
}
.nav-logo-text .accent { color: var(--crimson); }
.nav-links {
  display: flex; gap: clamp(14px,2vw,34px);
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em;
}
.nav-links a { opacity: .8; transition: opacity .3s; }
.nav-links a:hover { opacity: 1; }
.auth-btn {
  border: 1px solid var(--cream); border-radius: 40px;
  padding: 9px 18px; font-size: 11px; text-transform: uppercase;
  letter-spacing: .18em; background: transparent; color: inherit;
  cursor: pointer; font-family: inherit;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ----- Sub-page nav (forum / legal) uses a .nav-inner wrapper ----- */
header > .nav-inner {
  flex: 1; width: 100%;
  display: flex; align-items: center; gap: clamp(12px,1.6vw,26px);
}
.nav-inner .nav-links { margin-right: auto; }
.notif-wrap, .user-search-wrap { position: relative; display: flex; align-items: center; }
.notif-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,.04);
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.notif-btn:hover { border-color: var(--crimson); color: var(--crimson); }
.notif-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 16px; height: 16px; padding: 0 4px; border-radius: 9px;
  background: var(--crimson); color: #fff; font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.notif-badge.hidden { display: none; }
.notif-panel {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: min(320px, 86vw); background: #100b12;
  border: 1px solid var(--border-glass); border-radius: var(--r-lg);
  padding: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.55); z-index: 60;
}
.notif-panel.hidden { display: none; }
.notif-header { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 12px; }
.notif-empty { font-size: 13px; color: var(--text-fade); font-weight: 300; }
.user-search-input-row input {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border-glass);
  border-radius: var(--r-md); padding: 10px 12px; color: var(--cream);
  font-family: var(--font); font-size: 13px; outline: none;
}
.user-search-input-row input:focus { border-color: var(--crimson); }

@media (max-width:640px) {
  header > .nav-inner { gap: 10px; }
  .nav-inner .nav-links { margin-right: 0; }
  .nav-inner .auth-btn { display: inline-flex; }
}

/* =========== HERO =========== */
#hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 40%, #1a0810 0%, #08070a 70%);
}
.disc-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
}
.disc {
  width: min(46vw,420px); aspect-ratio: 1; border-radius: 50%; position: relative;
  background:
    radial-gradient(circle at 50% 38%, #ff6080 0%, #ff0033 26%, #a00022 60%, #4a000f 100%);
  box-shadow: 0 40px 120px rgba(255,0,51,.35), inset 0 0 60px rgba(0,0,0,.45);
}
.disc::before {
  content: ""; position: absolute; inset: 14%; border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, #1a0810, #08070a 70%);
  box-shadow: inset 0 0 40px rgba(0,0,0,.7);
}
.disc::after {
  content: ""; position: absolute; inset: 30%; border-radius: 50%;
  border: 1px solid rgba(255,96,128,.4);
}
.disc-logo {
  position: absolute; inset: 16%; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.disc-logo img {
  width: 88%; height: 88%; object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0,0,0,.55));
  opacity: .95;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,0,51,.2);
}

.hero-copy {
  position: relative; z-index: 5; text-align: center;
  pointer-events: none; mix-blend-mode: difference;
}
.hero-copy .kicker {
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  opacity: .7; margin-bottom: 18px;
}
.hero-copy h1 { font-size: clamp(44px,9vw,140px); text-transform: uppercase; }
.hero-line { overflow: hidden; display: block; }
.hero-line span { display: block; transform: translateY(110%); }

.swaptext {
  position: absolute; z-index: 6; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
}
.swaptext h2 { font-size: clamp(40px,8vw,120px); text-transform: uppercase; text-align: center; }
.swaptext .accent { color: var(--crimson); }

.scrollcue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 6; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; opacity: .6;
}

/* =========== GENERIC SECTION =========== */
section { position: relative; }
.pad { padding: clamp(80px,12vh,180px) clamp(18px,5vw,90px); }
.eyebrow {
  font-size: 11px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 26px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--crimson); }
.big { font-size: clamp(54px,11vw,180px); text-transform: uppercase; }
.reveal { will-change: transform, opacity; }

/* =========== FEATURES (wearable-style) =========== */
#features { background: linear-gradient(180deg,#08070a,#110a0f); }
#features .lead {
  max-width: 760px; font-size: clamp(18px,2.2vw,28px); font-weight: 300;
  line-height: 1.3; color: #c8bfbc; margin-top: 8px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 70px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.feature-card {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0e0c12;
  position: relative;
  transition: background .3s;
}
.feature-card:hover { background: #140f18; }
.feature-card:nth-child(3n) { border-right: none; }
.feature-card-badge {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line);
  border-radius: 20px; padding: 3px 10px; display: inline-block; margin-bottom: 20px;
}
.feature-card-badge--premium { color: var(--crimson); border-color: rgba(255,0,51,.3); }
.feature-icon {
  width: 36px; height: 36px; margin-bottom: 18px;
}
.feature-icon svg { width: 100%; height: 100%; stroke: var(--crimson); }
.feature-card h3 {
  font-family: 'Anton'; font-weight: 400; font-size: 22px;
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: 10px;
  color: var(--cream);
}
.feature-card p { font-weight: 300; color: #c0b4b0; font-size: 13.5px; line-height: 1.55; }

/* =========== TECH / FEATURE DETAIL =========== */
#tech { background: linear-gradient(180deg,#110a0f,#08070a); }
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feat .vis {
  aspect-ratio: 1; border-radius: 10px; position: relative; overflow: hidden;
  background: radial-gradient(circle at 50% 50%,#1d0a12,#08070a);
  display: flex; align-items: center; justify-content: center;
}
/* --- overlay mock: floating HUD cards over a fake game viewport --- */
.overlay-vis { position: absolute; inset: 0; }
.ov-screen {
  position: absolute; inset: 12%;
  border-radius: 8px; border: 1px solid rgba(240,236,232,.14);
  background:
    linear-gradient(rgba(255,0,51,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,51,.045) 1px, transparent 1px),
    radial-gradient(circle at 60% 35%, #241016, #0c060a 75%);
  background-size: 34px 34px, 34px 34px, cover;
  box-shadow: inset 0 0 60px rgba(0,0,0,.6);
}
.ov-screen::before, .ov-screen::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: rgba(240,236,232,.35);
}
.ov-screen::before { width: 14px; height: 1px; transform: translate(-50%,-50%); }
.ov-screen::after  { width: 1px; height: 14px; transform: translate(-50%,-50%); }
.ov-hud {
  position: absolute; font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .22em; color: rgba(240,236,232,.4);
}
.ov-hud--tl { top: 12px; left: 14px; }
.ov-hud--br { bottom: 12px; right: 14px; }

.ov-card {
  position: absolute; z-index: 2;
  background: rgba(16,9,13,.78); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,0,51,.32); border-radius: 10px;
  padding: 14px 18px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 34px rgba(255,0,51,.14);
  animation: ovFloat 5s ease-in-out infinite;
}
.ov-label {
  font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--crimson); font-weight: 600;
}
.ov-sub { font-size: 10px; color: var(--muted); letter-spacing: .04em; }
.ov-value { font-family: 'Anton', sans-serif; font-size: 44px; line-height: 1; color: var(--cream); }

.ov-card--streak { top: 8%; left: 4%; }
.ov-card--timer  { right: 3%; top: 42%; width: 44%; animation-delay: 1.2s; }
.ov-card--score  {
  left: 12%; bottom: 6%; flex-direction: row; align-items: center; gap: 12px;
  animation-delay: 2.1s;
}
.ov-card--score span { font-size: 9px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.ov-card--score b { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--crimson); font-weight: 400; }

.ov-bar {
  height: 5px; border-radius: 3px; overflow: hidden;
  background: rgba(240,236,232,.12);
}
.ov-bar i {
  display: block; height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--crimson), #ff5c77);
  animation: ovDrain 4s linear infinite;
}

@keyframes ovFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ovDrain { 0% { width: 100%; } 100% { width: 4%; } }
@media (prefers-reduced-motion: reduce) {
  .ov-card { animation: none; }
  .ov-bar i { animation: none; width: 62%; }
}
.feat ul { list-style: none; margin-top: 34px; }
.feat li { padding: 18px 0; border-top: 1px solid var(--line); display: flex; gap: 18px; align-items: baseline; }
.feat li b { color: var(--crimson); font-family: 'Anton'; font-weight: 400; font-size: 14px; }
.feat li span { color: #c8bfbc; font-weight: 300; }

/* =========== HORIZONTAL SHOWCASE =========== */
#screenshots { overflow: hidden; }
.track { display: flex; gap: 24px; padding: 36px 6vw 48px; will-change: transform; }
.panel {
  /* width also capped by viewport height so the pinned panels never clip below the fold */
  flex: 0 0 min(86vw, 780px, calc((100vh - 480px) * 1.6)); border-radius: 16px; overflow: hidden;
  background: #0d090d; border: 1px solid var(--line);
  padding: 0; cursor: pointer; display: flex; flex-direction: column;
  font-family: inherit; color: inherit; text-align: left;
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
  transition: transform .4s var(--ease-out), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.panel:hover {
  transform: translateY(-6px);
  border-color: rgba(255,0,51,.4);
  box-shadow: 0 50px 110px rgba(255,0,51,.14), 0 40px 90px rgba(0,0,0,.6);
}
.panel.is-hidden { display: none; }
.panel-chrome {
  display: flex; align-items: center; gap: 14px;
  height: 46px; padding: 0 18px; flex-shrink: 0;
  background: #0a060a; border-bottom: 1px solid var(--line);
}
.panel-dots { display: flex; gap: 7px; }
.panel-dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(240,236,232,.18); }
.panel-dots i:first-child { background: var(--crimson); }
.panel-name { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); font-weight: 500; }
.panel-num { margin-left: auto; font-family: 'Anton'; font-size: 13px; letter-spacing: .12em; color: var(--muted); }
.panel-media {
  position: relative; flex: 1; aspect-ratio: 16 / 10;
  background: radial-gradient(circle at 50% 25%, #14101a, #08070a 75%);
  overflow: hidden;
}
.panel-media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .6s var(--ease);
}
.panel:hover .panel-media img { transform: scale(1.03); }
.panel-media::after {
  content: "⤢ Expand"; position: absolute; right: 14px; bottom: 12px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream);
  background: rgba(8,7,10,.72); padding: 6px 11px; border-radius: 20px;
  border: 1px solid var(--line); opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.panel:hover .panel-media::after { opacity: 1; transform: translateY(0); }

/* ===== LIGHTBOX ===== */
.ss-lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px,4vw,60px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.ss-lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
.ss-lb-backdrop { position: absolute; inset: 0; background: rgba(4,3,6,.88); backdrop-filter: blur(10px); }
.ss-lb-panel {
  position: relative; z-index: 1; width: min(94vw,1120px);
  display: flex; flex-direction: column; gap: 18px;
  transform: scale(.9) translateY(20px); opacity: 0;
  transition: transform .45s var(--ease-out), opacity .45s var(--ease-out);
}
.ss-lightbox.open .ss-lb-panel { transform: scale(1) translateY(0); opacity: 1; }
.ss-lb-stage { position: relative; display: flex; align-items: center; justify-content: center; }
.ss-lb-img {
  max-width: 100%; max-height: 74vh; width: auto; height: auto; object-fit: contain;
  border-radius: 14px; border: 1px solid var(--line); background: #08070a;
  box-shadow: 0 50px 130px rgba(0,0,0,.65); transition: opacity .15s ease;
}
.ss-lb-img.fading { opacity: 0; }
.ss-lb-close {
  position: fixed; top: 24px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(8,7,10,.6); color: var(--cream);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all .3s var(--ease); z-index: 2;
}
.ss-lb-close:hover { background: var(--crimson); border-color: var(--crimson); color: #fff; transform: rotate(90deg); }
.ss-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(8,7,10,.6); color: var(--cream);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all .25s var(--ease); z-index: 2;
}
.ss-lb-nav:hover { background: var(--crimson); border-color: var(--crimson); color: #fff; }
.ss-lb-prev { left: -12px; }
.ss-lb-next { right: -12px; }
.ss-lb-nav.disabled { display: none; }
.ss-lb-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ss-lb-info { display: flex; flex-direction: column; gap: 5px; }
.ss-lb-cat { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--crimson); }
.ss-lb-title { font-family: 'Anton'; font-size: clamp(20px,2.4vw,26px); text-transform: uppercase; color: var(--cream); }
.ss-lb-dots { display: flex; gap: 8px; }
.ss-lb-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(240,236,232,.2); cursor: pointer; transition: all .25s var(--ease); }
.ss-lb-dot.active { background: var(--crimson); transform: scale(1.3); }
@media (max-width:640px) {
  .ss-lb-prev { left: 2px; } .ss-lb-next { right: 2px; }
  .ss-lb-nav { width: 42px; height: 42px; }
  .ss-lb-close { top: 14px; right: 16px; }
}
.ss-filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 24px 6vw 8px; margin: 0;
  position: relative; z-index: 10;
}
.ss-filter {
  border: 1px solid var(--line); border-radius: 40px;
  padding: 7px 16px; font-size: 11px; text-transform: uppercase;
  letter-spacing: .14em; background: transparent; color: var(--cream);
  cursor: pointer; font-family: inherit; transition: all .3s;
}
.ss-filter.active,
.ss-filter:hover { border-color: var(--crimson); color: var(--crimson); }

/* =========== PRICING (flip section) =========== */
#pricing {
  min-height: 100vh; display: flex; align-items: center;
  transition: background-color .1s linear;
}
#pricing .inner { width: 100%; }
#pricing .huge { font-size: clamp(60px,14vw,220px); text-transform: lowercase; }
.pricing-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px;
}
.pricing-card {
  border: 1px solid var(--line); border-radius: 10px; padding: 44px 40px;
  background: rgba(255,255,255,.04);
}
.pricing-badge {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--crimson); border: 1px solid rgba(255,0,51,.3);
  border-radius: 20px; padding: 4px 12px; display: inline-block; margin-bottom: 28px;
}
.pricing-badge--free { color: var(--muted); border-color: var(--line); }
.pricing-amount { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 6px; }
.pricing-currency { font-size: 28px; font-weight: 600; margin-top: 8px; opacity: .7; }
.pricing-value { font-family: 'Anton'; font-size: clamp(60px,8vw,100px); line-height: 1; }
.pricing-period { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 36px; }
.pricing-features { list-style: none; border-top: 1px solid var(--line); padding-top: 28px; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: #c8bfbc; font-weight: 300; }
.pricing-features li svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--crimson); }
.pricing-feature--locked { opacity: .45; }
.pricing-feature--locked svg { stroke: var(--muted); }
.pricing-note-card {
  border: 1px solid var(--line); border-radius: 10px; padding: 36px;
  background: rgba(255,255,255,.02); grid-column: 1 / -1;
}
.pricing-note-card h4 {
  font-family: 'Anton'; font-size: 22px; text-transform: uppercase; margin-bottom: 22px; color: var(--cream);
}
.pricing-note-card ol { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-note-card li { display: flex; align-items: center; gap: 14px; font-size: 13.5px; color: #c8bfbc; font-weight: 300; }
.pricing-note-card li span { font-family: 'Anton'; color: var(--crimson); font-size: 18px; width: 24px; flex-shrink: 0; }

/* ----- pricing light-mode (added when the section flips to cream) ----- */
#pricing.is-light .btn-outline { border-color: #08070a; color: #08070a; }
#pricing.is-light .btn-outline:hover { background: rgba(8,7,10,.08); }
#pricing.is-light .pricing-card,
#pricing.is-light .pricing-note-card { border-color: rgba(8,7,10,.16); background: rgba(8,7,10,.04); }
#pricing.is-light .pricing-features { border-top-color: rgba(8,7,10,.16); }
#pricing.is-light .pricing-features li,
#pricing.is-light .pricing-note-card li { color: #453e3b; }
#pricing.is-light .pricing-period { color: #6d645f; }
#pricing.is-light .pricing-badge--free { color: #6d645f; border-color: rgba(8,7,10,.25); }
#pricing.is-light .pricing-note-card h4 { color: #08070a; }

/* =========== MARQUEE =========== */
.marquee {
  padding: 60px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap;
}
.marquee .run { display: inline-block; animation: scrollx 26s linear infinite; }
.marquee .run .big-label {
  font-family: 'Anton'; font-size: clamp(40px,8vw,110px); text-transform: uppercase;
  padding-right: 50px; -webkit-text-stroke: 1px var(--crimson); color: transparent;
}
.marquee .run .fill { color: var(--cream); -webkit-text-stroke: 0; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* =========== FAQ (reviews-style) =========== */
#faq { background: linear-gradient(180deg,#0e0c12,#08070a); }
.faq-list { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 60px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--cream);
  font-family: inherit; font-size: clamp(15px,1.4vw,18px); font-weight: 400;
  text-align: left; cursor: pointer; padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-arrow {
  width: 18px; height: 18px; flex-shrink: 0; stroke: var(--muted);
  transition: transform .35s;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); stroke: var(--crimson); }
.faq-answer { overflow: hidden; max-height: 0; }
.faq-answer p { padding-bottom: 26px; font-weight: 300; color: #c8bfbc; line-height: 1.6; max-width: 700px; }
.faq-answer a { color: var(--crimson); border-bottom: 1px solid rgba(255,0,51,.3); }

/* =========== COMMUNITY / REVIEWS (infinite roll) =========== */
#reviews { overflow: hidden; }
.reviews-marquee {
  margin-top: 60px;
  /* bleed to the section edges so cards roll across the full width */
  margin-left: calc(-1 * clamp(18px,5vw,90px));
  margin-right: calc(-1 * clamp(18px,5vw,90px));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reviews-row {
  display: flex; align-items: stretch; width: max-content;
  padding: 10px 0;
  animation: reviewsRoll 48s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-row { animation-play-state: paused; }
@keyframes reviewsRoll { to { transform: translateX(-50%); } }
/* drag-to-scroll: horizontal drags are ours, vertical stays with the page */
.reviews-marquee { cursor: grab; touch-action: pan-y; }
.reviews-marquee.dragging { cursor: grabbing; }
.reviews-marquee.dragging .review-card { user-select: none; -webkit-user-select: none; }
.reviews-marquee.dragging .review-card:hover { transform: none; }

.review-card {
  flex: 0 0 clamp(300px, 36vw, 440px);
  margin-right: 22px;
  border: 1px solid var(--line); border-radius: 10px; padding: 28px; background: #0e0c12;
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.review-card:hover {
  border-color: rgba(255,0,51,.35);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 30px rgba(255,0,51,.08);
  transform: translateY(-4px);
}
.review-card .stars { color: var(--crimson); letter-spacing: 3px; margin-bottom: 14px; }
.review-card p { font-weight: 300; color: #c8bfbc; line-height: 1.6; font-size: 13.5px; }
.review-card .who { margin-top: auto; padding-top: 20px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .reviews-row { animation: none; }
  .reviews-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}

/* =========== CTA BANNER =========== */
#cta-banner {
  background: radial-gradient(ellipse at 50% 0%,#1a0810 0%,#08070a 60%);
  border-top: 1px solid var(--line);
}
.cta-inner {
  display: flex; align-items: center; gap: 50px; flex-wrap: wrap;
}
.cta-logo-wrap {
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-logo-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  /* the PNG has transparent padding - scale up so the emblem reads at full size */
  transform: scale(1.45);
  filter: drop-shadow(0 0 14px rgba(0,0,0,.5));
}
.cta-text { flex: 1; min-width: 220px; }
.cta-text h2 { font-family: 'Anton'; font-size: clamp(28px,4vw,56px); text-transform: uppercase; margin-bottom: 8px; }
.cta-text p { font-weight: 300; color: #c8bfbc; font-size: 15px; }
.cta-buttons { flex-shrink: 0; }

/* =========== OUTRO =========== */
#outro {
  height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 50%,#1a0810,#08070a 75%);
}
#outro .word {
  font-size: clamp(60px,18vw,280px); text-transform: uppercase;
  display: flex; overflow: hidden;
}
#outro .word i { font-style: normal; display: inline-block; transform: translateY(120%); }

/* =========== FOOTER =========== */
footer {
  padding: 60px clamp(18px,5vw,90px) 40px;
  border-top: 1px solid var(--line);
}
.frow { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; align-items: flex-end; }
.footer-brand-big { font-size: clamp(40px,8vw,120px); }
.footer-links-group { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.footer-col a { font-size: 13px; color: #c8bfbc; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.fmeta { font-size: 12px; color: var(--muted); letter-spacing: .1em; }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: var(--muted);
}

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 40px; font-size: 11px; text-transform: uppercase; letter-spacing: .18em;
  padding: 12px 24px; font-family: inherit; cursor: pointer; transition: all .3s;
  font-weight: 500; border: none;
}
.btn-primary { background: var(--crimson); color: #fff; }
.btn-primary:hover { background: var(--crimson2); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--cream); color: var(--cream); }
.btn-outline:hover { background: rgba(240,236,232,.1); }
.btn-lg { padding: 14px 30px; font-size: 12px; }
.btn-full { width: 100%; }

/* =========== RESPONSIVE =========== */
@media (max-width:900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .feature-card:nth-child(2n) { border-right: none; }
  .feat { grid-template-columns: 1fr; }
  .feat .vis { display: none; }
  .pricing-wrapper { grid-template-columns: 1fr; }
}
@media (max-width:640px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; }
  .cta-inner { flex-direction: column; text-align: center; }

  header { mix-blend-mode: normal; background: rgba(8,7,10,.72); backdrop-filter: blur(14px); }
  .auth-btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: min(78vw, 320px); height: 100vh;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 40px;
    background: #0c0a0f; border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .4s var(--ease-out, ease);
    font-size: 14px; letter-spacing: .14em; z-index: 60;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { opacity: .9; }
  body.menu-open { overflow: hidden; }

  .ss-filter-bar { margin-bottom: 0; }
  .track { padding: 40px 5vw; }
  .panel { flex: 0 0 88vw; }
  .panel-name { font-size: 11px; letter-spacing: .1em; }
}
