:root {
  --mineral: #0A0B0D;
  --surface: #121316;
  --surface-2: #1B1B1D;
  --rule: #2A2C30;
  --bone: #F2EDE1;
  --paper: #C6BBA3;
  --dim: #7C7464;
  --vermilion: #FF381F;
  --cyan: #00E6F2;
  --brass: #B69A5A;
  --cobalt: #162A3A;
  --success: #7EBD6F;
  --hold: #FFB04A;
  --bad: #F06755;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "Azeret Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--mineral);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(242, 237, 225, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 225, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridBreath 18s linear infinite;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 56, 31, 0.10), transparent 32%),
    linear-gradient(300deg, rgba(0, 230, 242, 0.07), transparent 36%);
  animation: atmosphereDrift 22s ease-in-out infinite alternate;
  z-index: -3;
}

body[data-page="home"]::after,
body[data-page="signup"]::after {
  background:
    linear-gradient(120deg, rgba(255, 56, 31, 0.10), transparent 34%),
    linear-gradient(300deg, rgba(182, 154, 90, 0.06), transparent 42%);
}

a {
  color: inherit;
}

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

button,
a,
input,
textarea,
select {
  min-height: 44px;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--cyan);
  color: var(--mineral);
  border: 1px solid var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 400;
  background: var(--vermilion);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px max(20px, 4vw);
  border-bottom: 1px solid rgba(198, 187, 163, 0.14);
  background: rgba(10, 11, 13, 0.90);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  text-decoration: none;
  min-height: 44px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--brass);
  display: grid;
  place-items: center;
  color: var(--vermilion);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.brand-word span {
  margin-left: 4px;
  padding: 0 6px;
  color: var(--mineral);
  background: var(--vermilion);
}

.topbar nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar nav a,
.topbar nav button {
  color: var(--paper);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  padding: 8px 10px;
}

.topbar nav a:hover,
.topbar nav button:hover {
  color: var(--cyan);
  border-color: rgba(0, 230, 242, 0.30);
}

.topbar nav .nav-cta {
  color: var(--mineral);
  background: var(--vermilion);
  border-color: var(--vermilion);
  font-weight: 700;
}

.topbar nav .nav-cta:hover {
  color: var(--mineral);
  background: var(--bone);
  border-color: var(--bone);
}

main {
  min-height: 70vh;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.event-banner {
  position: relative;
  z-index: 360;
  border-bottom: 1px solid rgba(198, 187, 163, 0.18);
  background:
    linear-gradient(120deg, rgba(255, 56, 31, 0.16), transparent 34%),
    linear-gradient(300deg, rgba(0, 230, 242, 0.10), transparent 42%),
    rgba(10, 11, 13, 0.96);
}

.event-banner-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: 28px;
  align-items: center;
}

.event-banner-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.event-banner-kicker,
.event-banner-address {
  margin: 0;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-banner h2 {
  margin: 0;
  max-width: 10ch;
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(42px, 5.3vw, 70px);
  font-weight: 400;
  line-height: 0.96;
}

.event-banner p {
  max-width: 58ch;
  margin: 0;
  color: var(--paper);
  font-size: 1.02rem;
}

.event-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.event-visual-system {
  --scroll-progress: 0;
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(198, 187, 163, 0.28);
  background:
    linear-gradient(rgba(242, 237, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 225, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 56, 31, 0.18), transparent 38%),
    linear-gradient(315deg, rgba(0, 230, 242, 0.12), transparent 42%),
    rgba(18, 19, 22, 0.88);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.event-visual-system::before,
.event-visual-system::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.event-visual-system::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 17%, rgba(0, 230, 242, 0.12) 17.2% 17.45%, transparent 17.7% 43%, rgba(255, 56, 31, 0.14) 43.2% 43.45%, transparent 43.7%),
    linear-gradient(0deg, transparent 0 28%, rgba(182, 154, 90, 0.12) 28.2% 28.45%, transparent 28.7% 62%, rgba(0, 230, 242, 0.10) 62.2% 62.45%, transparent 62.7%);
  mix-blend-mode: screen;
  opacity: calc(0.25 + (var(--scroll-progress) * 0.45));
  animation: visualGridDrift 16s linear infinite;
}

.event-visual-system::after {
  inset: 0;
  border: 1px solid rgba(242, 237, 225, 0.08);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.52);
}

.event-visual-card {
  --scroll-y: 0px;
  --scroll-x: 0px;
  --scroll-rotate: 0deg;
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 237, 225, 0.22);
  background: rgba(10, 11, 13, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  transform: translate3d(var(--scroll-x), var(--scroll-y), 0) rotate(var(--scroll-rotate));
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.event-visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08);
  animation: portraitFloat 11s ease-in-out infinite alternate;
}

.event-visual-card figcaption,
.event-motion-map span {
  margin: 0;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.event-visual-card figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  border: 1px solid rgba(198, 187, 163, 0.24);
  background: rgba(10, 11, 13, 0.78);
  padding: 6px 8px;
  overflow-wrap: anywhere;
}

.visual-community {
  left: 8%;
  top: 10%;
  width: 70%;
  height: 44%;
}

.visual-session {
  left: 7%;
  bottom: 12%;
  width: 29%;
  height: 34%;
}

.visual-crew {
  right: 7%;
  top: 7%;
  width: 28%;
  height: 36%;
}

.visual-camera {
  left: 39%;
  bottom: 6%;
  width: 24%;
  height: 34%;
}

.visual-sound {
  right: 7%;
  bottom: 11%;
  width: 28%;
  height: 34%;
}

.event-motion-map {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-motion-map span {
  width: fit-content;
  border: 1px solid rgba(198, 187, 163, 0.22);
  color: var(--paper);
  background: rgba(10, 11, 13, 0.62);
  padding: 7px 9px;
  box-shadow: inset 0 0 28px rgba(0, 230, 242, 0.04);
  animation: pointGlow 3.8s ease-in-out infinite;
}

.event-motion-map span:nth-child(2) {
  animation-delay: 0.45s;
}

.event-motion-map span:nth-child(3) {
  animation-delay: 0.9s;
}

.event-motion-map span:nth-child(4) {
  animation-delay: 1.35s;
}

.event-motion-map span:nth-child(5) {
  animation-delay: 1.8s;
}

.narrow {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 86px 0 54px;
  border-bottom: 1px solid rgba(198, 187, 163, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 42px;
  align-items: center;
}

.kicker,
.eyebrow,
.chip,
.status,
.meta,
.form-hint,
.route-label {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
}

.kicker,
.eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

body[data-page="home"] .kicker,
body[data-page="home"] .eyebrow,
body[data-page="signup"] .kicker,
body[data-page="signup"] .eyebrow {
  color: var(--vermilion);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: 66px;
  max-width: 740px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

p {
  color: var(--paper);
  margin: 0;
  max-width: 68ch;
}

.lede {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--vermilion);
  background: var(--vermilion);
  color: var(--mineral);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.button:hover {
  background: var(--bone);
  border-color: var(--bone);
}

.button.secondary {
  color: var(--bone);
  background: transparent;
  border-color: rgba(198, 187, 163, 0.28);
}

.button.secondary:hover {
  color: var(--cyan);
  background: rgba(0, 230, 242, 0.08);
  border-color: rgba(0, 230, 242, 0.38);
}

body[data-page="home"] .button.secondary:hover,
body[data-page="signup"] .button.secondary:hover {
  color: var(--bone);
  background: rgba(182, 154, 90, 0.10);
  border-color: rgba(182, 154, 90, 0.42);
}

.button.brass {
  color: var(--mineral);
  background: var(--brass);
  border-color: var(--brass);
}

.button[disabled],
button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero-visual,
.mock-screen {
  background: var(--surface);
  border: 1px solid rgba(198, 187, 163, 0.18);
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 20px;
  min-height: 460px;
}

.logo-plate {
  padding: 16px;
  background: var(--mineral);
  border: 1px solid var(--rule);
  margin-bottom: 18px;
}

.route-map {
  display: grid;
  gap: 10px;
}

.route-row {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: rgba(22, 42, 58, 0.48);
  border: 1px solid rgba(0, 230, 242, 0.14);
}

body[data-page="home"] .route-row,
body[data-page="signup"] .route-row {
  background: rgba(18, 19, 22, 0.72);
  border-color: rgba(198, 187, 163, 0.16);
}

.route-row strong {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cyan);
}

.route-row span {
  color: var(--paper);
  font-size: 14px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid rgba(198, 187, 163, 0.24);
  color: var(--paper);
  background: rgba(10, 11, 13, 0.48);
  white-space: nowrap;
}

.status.building {
  color: var(--vermilion);
  border-color: rgba(255, 56, 31, 0.34);
  background: rgba(255, 56, 31, 0.08);
}

.status.beta,
.status.live {
  color: var(--cyan);
  border-color: rgba(0, 230, 242, 0.34);
  background: rgba(0, 230, 242, 0.08);
}

body[data-page="home"] .status.beta,
body[data-page="home"] .status.live,
body[data-page="signup"] .status.beta,
body[data-page="signup"] .status.live {
  color: var(--brass);
  border-color: rgba(182, 154, 90, 0.38);
  background: rgba(182, 154, 90, 0.08);
}

.status.coming,
.status.hold {
  color: var(--hold);
  border-color: rgba(255, 176, 74, 0.34);
  background: rgba(255, 176, 74, 0.08);
}

.status.good {
  color: var(--success);
  border-color: rgba(126, 189, 111, 0.34);
  background: rgba(126, 189, 111, 0.08);
}

.section {
  padding: 76px 0;
  border-bottom: 1px solid rgba(198, 187, 163, 0.10);
}

section[id],
.module-section[id] {
  scroll-margin-top: 96px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.48fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head p {
  align-self: end;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card,
.feature,
.panel,
.feed-card,
.profile-block {
  background: var(--surface);
  border: 1px solid rgba(198, 187, 163, 0.16);
}

.card,
.feature,
.feed-card,
.profile-block {
  padding: 22px;
}

.card:hover,
.feature:hover,
.feed-card:hover {
  border-color: rgba(0, 230, 242, 0.30);
}

body[data-page="home"] .card:hover,
body[data-page="home"] .feature:hover,
body[data-page="home"] .feed-card:hover,
body[data-page="signup"] .card:hover,
body[data-page="signup"] .feature:hover,
body[data-page="signup"] .feed-card:hover {
  border-color: rgba(182, 154, 90, 0.36);
}

.card .eyebrow,
.feature .eyebrow {
  margin-bottom: 10px;
}

.card p,
.feature p {
  margin-top: 12px;
  font-size: 15px;
}

.feature-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.feature-link {
  display: grid;
  align-content: space-between;
  color: inherit;
  text-decoration: none;
  min-height: 210px;
}

.feature-link:hover h3,
.feature-link:focus-visible h3 {
  color: var(--bone);
}

.feature-jump {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  margin-top: 16px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.2;
  border-bottom: 1px solid rgba(182, 154, 90, 0.42);
}

.feature-link:hover .feature-jump,
.feature-link:focus-visible .feature-jump {
  color: var(--cyan);
  border-bottom-color: rgba(0, 230, 242, 0.52);
}

.callout {
  padding: 24px;
  background: linear-gradient(90deg, rgba(255, 56, 31, 0.16), rgba(22, 42, 58, 0.50));
  border: 1px solid rgba(255, 56, 31, 0.30);
}

.callout h3,
.callout p {
  max-width: 760px;
}

.page-footer {
  padding: 38px max(20px, 4vw);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(198, 187, 163, 0.12);
  padding-top: 22px;
}

.footer-row a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 187, 163, 0.22);
}

.footer-row a:hover {
  color: var(--bone);
  border-bottom-color: rgba(242, 237, 225, 0.44);
}

.product-hero {
  min-height: 84vh;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.mini-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(182, 154, 90, 0.34);
  color: var(--brass);
  background: rgba(182, 154, 90, 0.07);
  font-family: var(--mono);
  font-size: 11px;
}

.product-surface {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 56, 31, 0.08), transparent 42%),
    var(--surface);
}

.surface-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(198, 187, 163, 0.12);
}

.surface-top strong {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.surface-top span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
}

.feed-preview,
.network-feed,
.value-stack,
.signup-mini-feed {
  display: grid;
  gap: 12px;
}

.activity-card,
.feed-post,
.value-row,
.mini-feed-row {
  border: 1px solid rgba(198, 187, 163, 0.14);
  background: rgba(10, 11, 13, 0.54);
}

.activity-card {
  padding: 16px;
}

.activity-card h3 {
  margin-top: 10px;
}

.activity-card p {
  margin-top: 8px;
  font-size: 14px;
}

.activity-card.compact {
  padding: 13px 16px;
}

.activity-type {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 8px;
  border: 1px solid rgba(198, 187, 163, 0.26);
  color: var(--paper);
  background: rgba(242, 237, 225, 0.04);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.2;
}

.activity-type.gear {
  color: var(--brass);
  border-color: rgba(182, 154, 90, 0.40);
  background: rgba(182, 154, 90, 0.08);
}

.activity-type.paid {
  color: var(--vermilion);
  border-color: rgba(255, 56, 31, 0.38);
  background: rgba(255, 56, 31, 0.08);
}

.activity-type.unpaid {
  color: var(--paper);
  border-color: rgba(198, 187, 163, 0.34);
}

.activity-type.event {
  color: var(--bone);
  border-color: rgba(242, 237, 225, 0.28);
}

.activity-type.question {
  color: var(--cyan);
  border-color: rgba(0, 230, 242, 0.30);
  background: rgba(0, 230, 242, 0.055);
}

.section-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 56, 31, 0.24);
  background: rgba(255, 56, 31, 0.07);
}

.section-cta p {
  max-width: 78ch;
}

.brand-reason-section {
  padding: 46px 0;
}

.brand-reason {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  padding: 22px;
  border: 1px solid rgba(255, 56, 31, 0.24);
  background: rgba(255, 56, 31, 0.055);
}

.brand-reason h2 {
  max-width: 640px;
}

.brand-reason p {
  max-width: 74ch;
}

.transparent-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 4px auto;
  opacity: 0.78;
}

.transparent-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 187, 163, 0.20), rgba(0, 230, 242, 0.16), transparent);
}

.transparent-divider i {
  width: 74px;
  height: 18px;
  border: 1px solid rgba(198, 187, 163, 0.18);
  background:
    linear-gradient(90deg, transparent 0 26%, rgba(242, 237, 225, 0.08) 26% 28%, transparent 28% 48%, rgba(182, 154, 90, 0.16) 48% 52%, transparent 52% 72%, rgba(0, 230, 242, 0.12) 72% 74%, transparent 74%),
    rgba(10, 11, 13, 0.18);
  transform: skewX(-18deg);
}

.feed-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  perspective: 1200px;
  transform-style: preserve-3d;
}

[data-depth] {
  --depth-y: 0px;
  --depth-rotate: 0deg;
  transform: translate3d(0, var(--depth-y), 0) rotateX(var(--depth-rotate));
  transition: transform 0.16s linear;
  will-change: transform;
}

.filter-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(198, 187, 163, 0.16);
  background: var(--surface);
  min-width: 0;
}

.filter-panel .route-label {
  margin-bottom: 4px;
  color: var(--brass);
}

.filter-pill {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  text-align: left;
  color: var(--paper);
  background: rgba(10, 11, 13, 0.42);
  border: 1px solid rgba(198, 187, 163, 0.16);
  font-family: var(--mono);
  font-size: 11px;
}

.filter-pill.active,
.filter-pill:hover {
  color: var(--bone);
  border-color: rgba(255, 56, 31, 0.34);
  background: rgba(255, 56, 31, 0.08);
}

.feed-post {
  display: grid;
  grid-template-columns: minmax(170px, 200px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 18px;
  min-width: 0;
}

.network-feed,
.post-content {
  min-width: 0;
}

.feed-post.hidden,
.feed-empty {
  display: none;
}

.feed-empty.show {
  display: block;
  padding: 20px;
  border: 1px solid rgba(198, 187, 163, 0.16);
  color: var(--paper);
  background: rgba(18, 19, 22, 0.72);
  font-family: var(--mono);
  font-size: 12px;
}

.feed-identity {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-content: start;
  align-items: start;
  gap: 9px;
  min-height: 0;
  padding: 12px;
  border: 1px solid rgba(198, 187, 163, 0.16);
  background:
    linear-gradient(145deg, rgba(242, 237, 225, 0.05), transparent 46%),
    rgba(10, 11, 13, 0.68);
  overflow: hidden;
}

.feed-identity::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 34%, rgba(242, 237, 225, 0.08) 44%, transparent 56% 100%);
  transform: translateX(-130%);
  animation: signalSweep 8.5s ease-in-out infinite;
}

.creative-photo {
  position: relative;
  grid-row: 1 / span 2;
  width: 76px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 237, 225, 0.22);
  background: var(--surface-2);
}

.creative-photo::before,
.creative-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.creative-photo::before {
  inset: 10px;
  border: 1px solid rgba(242, 237, 225, 0.12);
}

.creative-photo::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(10, 11, 13, 0.58));
}

.creative-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: portraitFloat 9s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.feed-avatar {
  display: grid;
  place-items: center;
  width: 68px;
  aspect-ratio: 1;
  border: 1px solid rgba(242, 237, 225, 0.30);
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(0, 230, 242, 0.12), transparent 48%),
    linear-gradient(315deg, rgba(182, 154, 90, 0.20), transparent 52%),
    var(--surface-2);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.feed-identity.company .feed-avatar {
  color: var(--mineral);
  background: var(--brass);
}

.feed-identity.group .feed-avatar {
  color: var(--bone);
  background:
    radial-gradient(circle at 35% 38%, rgba(255, 56, 31, 0.46) 0 10px, transparent 11px),
    radial-gradient(circle at 66% 60%, rgba(0, 230, 242, 0.34) 0 10px, transparent 11px),
    var(--surface-2);
}

.feed-identity.event-page .feed-avatar {
  color: var(--bone);
  border-color: rgba(255, 56, 31, 0.40);
  background: rgba(255, 56, 31, 0.16);
}

.feed-identity strong {
  font-family: var(--display);
  font-size: 24px;
  line-height: 0.98;
}

.feed-identity > span {
  color: var(--paper);
  font-size: 13px;
  line-height: 1.35;
}

.identity-stats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.identity-stats span {
  min-height: 24px;
  padding: 3px 7px;
  border: 1px solid rgba(198, 187, 163, 0.14);
  color: var(--paper);
  background: rgba(242, 237, 225, 0.035);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.45;
}

.feed-graphic,
.post-visual {
  position: relative;
  width: 100%;
  min-height: 122px;
  overflow: hidden;
  border: 1px solid rgba(198, 187, 163, 0.16);
  margin-bottom: 14px;
  background:
    linear-gradient(rgba(242, 237, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 225, 0.035) 1px, transparent 1px),
    rgba(10, 11, 13, 0.72);
  background-size: 24px 24px;
  animation: visualGridDrift 16s linear infinite;
}

.feed-graphic::before,
.post-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198, 187, 163, 0.10);
}

.post-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 242, 0.10), transparent);
  transform: translateX(-120%);
  animation: signalSweep 6.2s ease-in-out infinite;
}

.graphic-lens {
  position: absolute;
  left: 28px;
  top: 34px;
  width: 82px;
  height: 82px;
  border: 2px solid var(--brass);
  border-radius: 50%;
}

.graphic-lens::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(182, 154, 90, 0.7);
  border-radius: 50%;
}

.graphic-body {
  position: absolute;
  right: 28px;
  bottom: 34px;
  width: 72px;
  height: 48px;
  border: 2px solid rgba(242, 237, 225, 0.45);
}

.graphic-line {
  position: absolute;
  height: 2px;
  background: var(--brass);
}

.graphic-line.one {
  left: 34px;
  right: 34px;
  bottom: 24px;
  transform-origin: left center;
  animation: linePulse 4.4s ease-in-out infinite;
}

.graphic-line.two {
  right: 32px;
  top: 28px;
  width: 74px;
  background: rgba(255, 56, 31, 0.76);
}

.graphic-rate {
  position: absolute;
  left: 24px;
  top: 28px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 56, 31, 0.58);
  color: var(--vermilion);
  font-family: var(--display);
  font-size: 42px;
  line-height: 0.9;
  animation: rateGlow 5s ease-in-out infinite;
}

.graphic-slot {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 44px;
  height: 13px;
  background: rgba(242, 237, 225, 0.18);
}

.graphic-slot.short {
  right: 70px;
  bottom: 24px;
  background: rgba(182, 154, 90, 0.45);
}

.graphic-person {
  position: absolute;
  top: 42px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--paper);
  border-radius: 50%;
}

.graphic-person::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 64px;
  height: 42px;
  border: 1px solid rgba(198, 187, 163, 0.42);
}

.graphic-person.a {
  left: 34px;
}

.graphic-person.b {
  right: 34px;
}

.graphic-bridge {
  position: absolute;
  left: 78px;
  right: 78px;
  top: 68px;
  height: 2px;
  background: var(--vermilion);
}

.graphic-date {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 70px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  color: var(--bone);
  font-family: var(--display);
  font-size: 48px;
  line-height: 0.9;
}

.graphic-stage {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 36px;
  height: 36px;
  border: 1px solid rgba(242, 237, 225, 0.34);
  background: rgba(255, 56, 31, 0.08);
}

.graphic-crowd {
  position: absolute;
  right: 24px;
  top: 34px;
  width: 62px;
  height: 34px;
  border-top: 2px dotted var(--brass);
  border-bottom: 2px dotted rgba(242, 237, 225, 0.36);
}

.answer-mark {
  position: absolute;
  left: 24px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0, 230, 242, 0.44);
  color: var(--cyan);
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
}

.answer-line {
  position: absolute;
  left: 104px;
  right: 28px;
  height: 10px;
  background: rgba(198, 187, 163, 0.16);
}

.answer-line.one {
  top: 34px;
}

.answer-line.two {
  top: 56px;
  right: 82px;
}

.answer-check {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(126, 189, 111, 0.64);
  background: rgba(126, 189, 111, 0.12);
}

.answer-check::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 15px;
  width: 20px;
  height: 9px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.post-meta > span:last-child {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
}

.feed-post p {
  margin-top: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.trust-row span,
.point-earn {
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(198, 187, 163, 0.14);
  color: var(--paper);
  background: rgba(242, 237, 225, 0.035);
  font-family: var(--mono);
  font-size: 10px;
}

.point-earn {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
  color: var(--brass);
  border-color: rgba(182, 154, 90, 0.30);
  background: rgba(182, 154, 90, 0.075);
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(198, 187, 163, 0.10);
}

.post-actions button {
  min-height: 36px;
  padding: 7px 10px;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(198, 187, 163, 0.18);
  font-family: var(--mono);
  font-size: 11px;
}

.post-actions button:hover {
  color: var(--bone);
  border-color: rgba(182, 154, 90, 0.38);
}

.agreement-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(198, 187, 163, 0.16);
  background: rgba(10, 11, 13, 0.42);
}

.agreement-box label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.agreement-box input {
  width: auto;
  margin-top: 4px;
}

.agreement-box a {
  color: var(--brass);
}

.policy-main {
  padding: 70px 0;
}

.policy-doc {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.policy-doc h1 {
  max-width: 820px;
}

.policy-doc h2 {
  margin-top: 40px;
  font-size: 34px;
}

.policy-doc p,
.policy-doc li {
  color: var(--paper);
  line-height: 1.75;
}

.policy-doc ul {
  padding-left: 20px;
}

.policy-note {
  margin: 24px 0;
  padding: 16px;
  border: 1px solid rgba(182, 154, 90, 0.28);
  color: var(--paper);
  background: rgba(182, 154, 90, 0.08);
}

.policy-note.mini {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.points-section {
  background:
    linear-gradient(180deg, rgba(182, 154, 90, 0.07), transparent 58%),
    rgba(10, 11, 13, 0.22);
}

.points-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
}

.points-card {
  min-height: 330px;
  padding: 22px;
  border: 1px solid rgba(198, 187, 163, 0.16);
  background:
    linear-gradient(135deg, rgba(0, 230, 242, 0.045), transparent 42%),
    rgba(18, 19, 22, 0.80);
}

.points-card h3 {
  margin-top: 12px;
}

.points-card p {
  margin-top: 12px;
  font-size: 15px;
}

.points-score {
  display: grid;
  place-items: center;
  width: 122px;
  aspect-ratio: 1;
  border: 1px solid rgba(182, 154, 90, 0.50);
  color: var(--brass);
  background:
    radial-gradient(circle, rgba(182, 154, 90, 0.22), transparent 68%),
    rgba(10, 11, 13, 0.50);
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  animation: pointGlow 5.5s ease-in-out infinite;
}

.point-table {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1px;
  margin-top: 16px;
  border: 1px solid rgba(198, 187, 163, 0.12);
  background: rgba(198, 187, 163, 0.10);
}

.point-table span,
.point-table strong {
  min-height: 38px;
  padding: 9px 10px;
  background: rgba(10, 11, 13, 0.68);
  font-size: 14px;
}

.point-table strong {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 12px;
}

.level-ladder {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.level-ladder span {
  position: relative;
  min-height: 34px;
  padding: 7px 10px 7px 34px;
  border: 1px solid rgba(198, 187, 163, 0.14);
  color: var(--paper);
  background: rgba(10, 11, 13, 0.48);
  font-family: var(--mono);
  font-size: 11px;
}

.level-ladder span::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(182, 154, 90, 0.70);
  transform: translateY(-50%) rotate(45deg);
}

.showcase-hero {
  min-height: 62vh;
  padding: 74px 0 34px;
}

.showcase-hero .lede {
  max-width: 66ch;
}

.feature-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.feature-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  color: var(--paper);
  text-decoration: none;
  border: 1px solid rgba(198, 187, 163, 0.18);
  background: rgba(18, 19, 22, 0.64);
  font-family: var(--mono);
  font-size: 11px;
}

.feature-nav a:hover {
  color: var(--bone);
  border-color: rgba(182, 154, 90, 0.44);
  background: rgba(182, 154, 90, 0.08);
}

.module-section {
  padding: 54px 0;
  border-top: 1px solid rgba(198, 187, 163, 0.10);
}

.module-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.module-copy {
  position: sticky;
  top: 88px;
}

.module-copy h2 {
  margin-top: 8px;
}

.module-copy p {
  max-width: 44ch;
}

.module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.dashboard-preview {
  overflow: hidden;
  border: 1px solid rgba(198, 187, 163, 0.16);
  background:
    linear-gradient(135deg, rgba(0, 230, 242, 0.045), transparent 35%),
    linear-gradient(315deg, rgba(182, 154, 90, 0.07), transparent 40%),
    rgba(18, 19, 22, 0.88);
  box-shadow: var(--shadow);
}

.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(198, 187, 163, 0.12);
}

.preview-top strong {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.preview-top span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
}

.preview-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-panel {
  min-height: 148px;
  padding: 14px;
  border: 1px solid rgba(198, 187, 163, 0.14);
  background: rgba(10, 11, 13, 0.46);
}

.preview-panel.wide {
  grid-column: 1 / -1;
}

.preview-panel h3 {
  font-size: 25px;
}

.preview-panel p {
  margin-top: 8px;
  font-size: 14px;
}

.preview-list {
  display: grid;
  gap: 8px;
}

.preview-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 10px;
  border: 1px solid rgba(198, 187, 163, 0.12);
  background: rgba(18, 19, 22, 0.58);
  font-size: 14px;
}

.preview-row span:first-child {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 11px;
}

.preview-row strong {
  color: var(--bone);
  font-weight: 600;
}

.preview-chipline,
.preview-actions,
.mini-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-chip,
.mini-filter {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid rgba(198, 187, 163, 0.16);
  color: var(--paper);
  background: rgba(242, 237, 225, 0.035);
  font-family: var(--mono);
  font-size: 10px;
}

.preview-chip.hot,
.mini-filter.active {
  color: var(--bone);
  border-color: rgba(255, 56, 31, 0.34);
  background: rgba(255, 56, 31, 0.075);
}

.preview-chip.cool {
  color: var(--cyan);
  border-color: rgba(0, 230, 242, 0.28);
  background: rgba(0, 230, 242, 0.055);
}

.stat-stack {
  display: grid;
  gap: 10px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(198, 187, 163, 0.10);
}

.stat-row span {
  color: var(--paper);
}

.stat-row strong {
  color: var(--bone);
  font-family: var(--mono);
  font-size: 13px;
}

.workflow-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.workflow-lane {
  min-height: 178px;
  padding: 12px;
  border: 1px solid rgba(198, 187, 163, 0.12);
  background: rgba(10, 11, 13, 0.38);
}

.workflow-lane h3 {
  font-size: 23px;
}

.lane-card {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(198, 187, 163, 0.12);
  background: rgba(242, 237, 225, 0.035);
  font-size: 13px;
}

.graphic-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.graphic-divider::before,
.graphic-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 154, 90, 0.22), transparent);
}

.graphic-divider span {
  height: 24px;
  border: 1px solid rgba(198, 187, 163, 0.16);
  background:
    radial-gradient(circle at 16px 50%, rgba(0, 230, 242, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 46px 50%, rgba(182, 154, 90, 0.24) 0 2px, transparent 3px),
    radial-gradient(circle at 76px 50%, rgba(255, 56, 31, 0.20) 0 2px, transparent 3px),
    rgba(10, 11, 13, 0.26);
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(198, 187, 163, 0.14);
  border: 1px solid rgba(198, 187, 163, 0.14);
}

.route-step {
  min-height: 260px;
  padding: 22px;
  background: var(--surface);
}

.route-step span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 12px;
}

.route-step p {
  margin-top: 12px;
  font-size: 15px;
}

.signup-sell {
  align-items: start;
  padding: 72px 0;
}

.signup-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  align-items: start;
}

.signup-copy .lede {
  max-width: 60ch;
}

.signup-jump {
  margin-top: 22px;
}

.value-stack {
  margin-top: 28px;
}

.value-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.value-row > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 56, 31, 0.42);
  color: var(--vermilion);
  font-family: var(--mono);
  font-size: 12px;
}

.value-row p {
  margin-top: 8px;
  font-size: 14px;
}

.signup-mini-feed {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(182, 154, 90, 0.22);
  background: rgba(18, 19, 22, 0.74);
}

.mini-feed-row {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
}

.mini-feed-row p {
  font-size: 14px;
}

.form-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.form-card-head h2 {
  font-size: 38px;
}

.auth-shell {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  padding: 56px 0;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
  gap: 34px;
  align-items: center;
}

.auth-card,
.form-card {
  background: var(--surface);
  border: 1px solid rgba(198, 187, 163, 0.18);
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
  color: var(--paper);
  font-size: 14px;
}

label span {
  color: var(--bone);
  font-family: var(--mono);
  font-size: 12px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(198, 187, 163, 0.18);
  background: var(--mineral);
  color: var(--bone);
  padding: 12px 13px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--cyan);
  outline: 2px solid rgba(0, 230, 242, 0.22);
  outline-offset: 0;
}

.form-hint {
  color: var(--dim);
  margin-top: 6px;
}

.message {
  display: none;
  padding: 12px 14px;
  margin: 0 0 16px;
  border: 1px solid rgba(198, 187, 163, 0.16);
  color: var(--paper);
  background: rgba(10, 11, 13, 0.48);
  font-family: var(--mono);
  font-size: 12px;
}

.message.show {
  display: block;
}

.message.error {
  color: var(--bad);
  border-color: rgba(240, 103, 85, 0.35);
  background: rgba(240, 103, 85, 0.08);
}

.message.success {
  color: var(--success);
  border-color: rgba(126, 189, 111, 0.35);
  background: rgba(126, 189, 111, 0.08);
}

.message.info {
  color: var(--cyan);
  border-color: rgba(0, 230, 242, 0.35);
  background: rgba(0, 230, 242, 0.08);
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: grid;
  gap: 16px;
}

.profile-step-intro {
  padding: 14px;
  border: 1px solid rgba(198, 187, 163, 0.16);
  background: rgba(10, 11, 13, 0.42);
}

.profile-step-intro h3 {
  margin-top: 4px;
  font-size: 30px;
}

.profile-step-intro p {
  margin-top: 6px;
  color: var(--paper);
  font-size: 14px;
}

.stepper {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.step-dot {
  flex: 1;
  height: 4px;
  background: var(--rule);
}

.step-dot.active {
  background: var(--vermilion);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-chip-group {
  margin-top: 10px;
}

.chip-option {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(198, 187, 163, 0.22);
  background: rgba(18, 19, 22, 0.80);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
}

.chip-option.active,
.chip-option[aria-pressed="true"] {
  color: var(--mineral);
  background: var(--cyan);
  border-color: var(--cyan);
}

.app-shell {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: calc(100vh - 64px);
}

.side-nav {
  border-right: 1px solid rgba(198, 187, 163, 0.12);
  background: rgba(18, 19, 22, 0.78);
  padding: 22px;
}

.side-nav a,
.side-nav button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  color: var(--paper);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
}

.side-nav a.active,
.side-nav a:hover,
.side-nav button:hover {
  color: var(--cyan);
  border-color: rgba(0, 230, 242, 0.26);
  background: rgba(0, 230, 242, 0.06);
}

.app-main {
  padding: 34px max(20px, 4vw) 64px;
}

.welcome-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 26px;
  background: linear-gradient(90deg, rgba(22, 42, 58, 0.80), rgba(18, 19, 22, 0.95));
  border: 1px solid rgba(0, 230, 242, 0.18);
  margin-bottom: 22px;
}

.progress-track {
  height: 8px;
  background: var(--mineral);
  border: 1px solid var(--rule);
  overflow: hidden;
  margin-top: 12px;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: var(--vermilion);
}

.leader-row,
.news-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(198, 187, 163, 0.10);
}

.leader-rank {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--mono);
  font-size: 12px;
}

.mock-screen {
  padding: 16px;
  min-height: 240px;
}

.screen-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.screen-bar span {
  width: 8px;
  height: 8px;
  background: var(--rule);
}

.screen-line {
  height: 12px;
  background: rgba(198, 187, 163, 0.12);
  margin: 10px 0;
}

.screen-line.cyan {
  background: rgba(0, 230, 242, 0.38);
}

.screen-line.red {
  background: rgba(255, 56, 31, 0.44);
}

.screen-line.brass {
  background: rgba(182, 154, 90, 0.44);
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.screen-tile {
  min-height: 72px;
  border: 1px solid var(--rule);
  background: rgba(10, 11, 13, 0.50);
}

@keyframes gridBreath {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes atmosphereDrift {
  0% {
    opacity: 0.92;
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(1.5%, 1%, 0) scale(1.03);
  }
}

@keyframes portraitFloat {
  0% {
    transform: scale(1.03) translate3d(-1.2%, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(1.2%, -1.4%, 0);
  }
}

@keyframes signalSweep {
  0%,
  58% {
    transform: translateX(-130%);
  }
  78%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes visualGridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 48px 24px, 48px 24px;
  }
}

@keyframes linePulse {
  0%,
  100% {
    transform: scaleX(0.82);
    opacity: 0.48;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes rateGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 56, 31, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 56, 31, 0.22);
  }
}

@keyframes pointGlow {
  0%,
  100% {
    box-shadow: inset 0 0 0 rgba(182, 154, 90, 0), 0 0 0 rgba(182, 154, 90, 0);
  }
  50% {
    box-shadow: inset 0 0 36px rgba(182, 154, 90, 0.16), 0 0 34px rgba(182, 154, 90, 0.12);
  }
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal[data-depth] {
  transform: translate3d(0, calc(var(--depth-y, 0px) + 22px), 0) rotateX(var(--depth-rotate, 0deg));
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.in[data-depth] {
  transform: translate3d(0, var(--depth-y, 0px), 0) rotateX(var(--depth-rotate, 0deg));
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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

  .event-visual-card {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .auth-grid,
  .section-head,
  .app-shell,
  .feed-layout,
  .signup-grid,
  .brand-reason,
  .module-layout,
  .points-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .module-copy {
    position: static;
  }

  .route-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-nav {
    border-right: 0;
    border-bottom: 1px solid rgba(198, 187, 163, 0.12);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .side-nav .route-label {
    grid-column: 1 / -1;
  }

  .grid.three,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .topbar nav {
    width: auto;
    justify-content: flex-end;
    margin-left: auto;
  }

  .topbar .nav-cta {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 10px;
  }

  .topbar nav a:not(.nav-cta):not(.keep-mobile),
  .topbar nav button:not(.nav-cta):not(.keep-mobile) {
    display: none;
  }

  section[id],
  .module-section[id] {
    scroll-margin-top: 112px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 26px;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 24px;
  }

  .focused-launch-hero h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .focused-launch-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .focused-launch-hero .button,
  .event-card .button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .hero-visual {
    min-height: 0;
    padding: 12px;
  }

  .logo-plate {
    padding: 10px;
    margin-bottom: 10px;
  }

  .route-map {
    gap: 8px;
  }

  .route-row {
    grid-template-columns: 72px 1fr;
    gap: 6px;
    padding: 9px;
  }

  .route-row .status {
    grid-column: 2;
    justify-self: start;
    min-height: 24px;
    padding: 2px 7px;
  }

  .hero .route-row:nth-child(n+3) {
    display: none;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .form-row.two,
  .screen-grid,
  .route-steps {
    grid-template-columns: 1fr;
  }

  .section-cta,
  .mini-feed-row,
  .feed-post,
  .preview-grid,
  .preview-grid.two,
  .workflow-lanes {
    grid-template-columns: 1fr;
  }

  .preview-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-cta .button {
    justify-self: start;
  }

  .feed-identity {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
    min-height: 0;
  }

  .creative-photo {
    grid-row: 1 / span 3;
    width: 72px;
  }

  .identity-stats {
    grid-column: 1 / -1;
  }

  .filter-panel {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
  }

  .filter-panel .route-label {
    flex: 0 0 auto;
    align-self: center;
    margin: 0 4px 0 0;
  }

  .filter-pill {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .welcome-band {
    grid-template-columns: 1fr;
  }

  .side-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .shell,
  .narrow {
    width: calc(100% - 32px);
  }

  .topbar {
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-link {
    gap: 7px;
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .topbar .nav-cta {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 10px;
  }

  h1 {
    font-size: 34px;
  }

  .focused-launch-hero h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 30px;
  }

  .lede {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 14px;
  }

  .hero-actions,
  .actions {
    margin-top: 18px;
  }

  .focused-launch-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .focused-launch-hero .button,
  .event-card .button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .brand-word {
    font-size: 19px;
  }

  .auth-card,
  .form-card,
  .card,
  .feature,
  .feed-post,
  .feed-card,
  .profile-block,
  .welcome-band {
    padding: 18px;
  }

  .feed-identity {
    min-height: 0;
  }

  .post-visual {
    min-height: 96px;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }
}

.focused-launch-hero {
  min-height: auto;
  align-items: start;
  padding-top: 62px;
  padding-bottom: 64px;
}

.event-card,
.dashboard-mock {
  border: 1px solid rgba(198, 187, 163, 0.16);
  background: rgba(18, 19, 22, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.event-card {
  padding: 24px;
}

.event-facts {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.event-facts div {
  border-top: 1px solid rgba(198, 187, 163, 0.14);
  padding-top: 12px;
}

.event-facts dt {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 5px 0 0;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.55;
}

.event-section .card h3 {
  max-width: 18ch;
}

.dashboard-mock {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
}

.mock-rail {
  display: grid;
  gap: 8px;
  align-content: start;
  border-right: 1px solid rgba(198, 187, 163, 0.12);
  padding: 18px;
  background: rgba(10, 11, 13, 0.54);
}

.mock-rail span {
  border: 1px solid rgba(198, 187, 163, 0.12);
  color: var(--body);
  padding: 9px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mock-rail .active {
  border-color: rgba(0, 230, 242, 0.34);
  color: var(--secondary);
  background: rgba(0, 230, 242, 0.08);
}

.mock-main {
  padding: 22px;
}

.mock-header {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(198, 187, 163, 0.12);
  padding-bottom: 18px;
}

.mock-header h3 {
  margin: 5px 0 6px;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mock-grid article {
  border: 1px solid rgba(198, 187, 163, 0.12);
  background:
    linear-gradient(rgba(242, 237, 225, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 225, 0.035) 1px, transparent 1px),
    rgba(10, 11, 13, 0.36);
  background-size: 22px 22px;
  padding: 14px;
}

.mock-grid span,
.feature-strip span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mock-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(198, 187, 163, 0.14);
  background: rgba(18, 19, 22, 0.72);
  padding: 16px;
}

.feature-strip span {
  border: 1px solid rgba(198, 187, 163, 0.14);
  padding: 8px 10px;
}

@media (max-width: 760px) {
  .event-banner-shell {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0 22px;
  }

  .event-banner-copy {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .event-banner h2 {
    max-width: 8ch;
    font-size: clamp(44px, 13vw, 56px);
  }

  .event-banner-address {
    letter-spacing: 0.04em;
    text-transform: none;
  }

  .event-banner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-banner-actions .button {
    width: 100%;
  }

  .event-visual-system {
    width: 100%;
    min-height: 468px;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .visual-community {
    left: 4%;
    top: 7%;
    width: 92%;
    height: 34%;
  }

  .visual-session {
    left: 4%;
    bottom: 20%;
    width: 42%;
    height: 28%;
  }

  .visual-crew {
    right: 4%;
    top: 43%;
    width: 40%;
    height: 27%;
  }

  .visual-camera {
    left: 30%;
    bottom: 4%;
    width: 34%;
    height: 25%;
  }

  .visual-sound {
    right: 4%;
    bottom: 4%;
    width: 30%;
    height: 25%;
  }

  .event-motion-map {
    left: 14px;
    right: 14px;
    bottom: 12px;
    gap: 6px;
  }

  .event-motion-map span {
    padding: 6px 7px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .event-visual-card figcaption {
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    padding: 5px 6px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .signup-grid .form-card {
    order: -1;
  }

  .dashboard-mock,
  .mock-header {
    grid-template-columns: 1fr;
  }

  .dashboard-mock {
    display: grid;
  }

  .mock-rail {
    border-right: 0;
    border-bottom: 1px solid rgba(198, 187, 163, 0.12);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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