/* ============================================================
   EnergyMeets — editorial design system
   Ink + acid "volt" + sector accents · Bricolage / Space Grotesk / Plex Mono
   ============================================================ */

:root {
  /* Palette from the EnergyMeets logo: deep navy, white, gold, cyan + orbit accents */
  --ink: #081426;
  --ink-1: #0c1b31;
  --ink-2: #12233f;
  --ink-3: #1a2f52;
  --paper: #eef3fa;
  --paper-2: #dde7f3;
  --line: rgba(186, 210, 242, 0.14);
  --line-strong: rgba(186, 210, 242, 0.3);
  --text: #f2f6fc;
  --muted: #8fa5c2;
  --muted-2: #5f7592;

  --volt: #ffb612;
  --volt-deep: #e09d00;
  --electric: #5b7cff;
  --flame: #f07818;
  --violet: #c34fe0;
  --aqua: #29c4f5;
  --green: #57e08a;
  --gold: #ffc93c;

  --r: 4px;
  --maxw: 1320px;
  --pad: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Space Grotesk", system-ui, sans-serif;
  --display: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

/* ---- scrollbars (navy track, steel thumb, gold on hover) ---- */
html {
  scrollbar-color: #24395e #081426;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #081426;
}

::-webkit-scrollbar-thumb {
  background: #24395e;
  border-radius: 999px;
  border: 2px solid #081426;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--volt-deep);
}

::-webkit-scrollbar-corner {
  background: #081426;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* ---- texture & cursor ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 460px;
  height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(circle, rgba(255, 182, 18, 0.10), transparent 60%);
}

body.cursor-on .cursor-glow {
  opacity: 1;
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}

[hidden] {
  display: none !important;
}

.app-hidden {
  display: none !important;
}

.public-hidden {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

/* ---- reveals ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease) var(--d, 0s), transform 0.8s var(--ease) var(--d, 0s);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- shared atoms ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.tag .ping {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 0 0 rgba(255, 182, 18, 0.6);
  animation: ping 2.4s infinite;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 182, 18, 0.55);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(255, 182, 18, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 182, 18, 0);
  }
}

.btn-volt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--volt);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.18s var(--ease), background 0.2s, box-shadow 0.3s;
  will-change: transform;
}

.btn-volt:hover {
  background: #ffc93c;
  box-shadow: 0 14px 40px rgba(255, 182, 18, 0.22);
}

.btn-volt:active {
  transform: scale(0.97);
}

.btn-volt.large {
  padding: 17px 30px;
  font-size: 16px;
}

.btn-volt span {
  transition: transform 0.25s var(--ease);
}

.btn-volt:hover span {
  transform: translateX(4px);
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 4px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.btn-line::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 8px;
  height: 1px;
  background: var(--line-strong);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.4s var(--ease), background 0.2s;
}

.btn-line:hover::after {
  transform-origin: left;
  background: var(--volt);
}

.ghost {
  padding: 11px 16px;
  color: var(--text);
  font-weight: 500;
  opacity: 0.78;
  transition: opacity 0.2s;
}

.ghost:hover {
  opacity: 1;
}

/* ============================== NAV ============================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  height: 84px;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, height 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 20, 38, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  height: 68px;
}

/* ---- brand logo: animated globe + stacked wordmark ---- */
.logotype {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  color: var(--text);
}

.logotype .globe {
  width: 59px;
  height: 59px;
  flex-shrink: 0;
  overflow: visible;
}

.logotype .lt-text {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.logotype .lt-text b {
  color: var(--text);
  font-weight: 800;
  padding-bottom: 3px;
  margin-bottom: 3px;
  background: linear-gradient(90deg, transparent, var(--volt-deep) 85%, var(--gold)) bottom / 100% 1px no-repeat;
}

.logotype .lt-text i {
  color: var(--volt);
  font-style: normal;
  font-weight: 800;
}

.logotype .lt-text small {
  margin-top: 5px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: lowercase;
  color: var(--muted);
  white-space: nowrap;
}

.nav .logotype .lt-text small,
.sidebar .logotype .lt-text small {
  display: none;
}

.logotype.lg .globe {
  width: 80px;
  height: 80px;
  overflow: visible;
}

.logotype.lg .lt-text {
  font-size: 27px;
}

.logotype.lg .lt-text small {
  font-size: 11.5px;
}

.nav-logo {
  display: inline-flex;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  transition: color 0.2s;
}

.nav-links a span {
  font-size: 10px;
  color: var(--volt-deep);
  opacity: 0.7;
}

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

/* The Join CTA stays hidden until the visitor scrolls past the rolling banner. */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav.show-cta .nav-cta {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.nav-burger i {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================== HERO ============================== */
/* Text and the "Next up" card share one flex row: the card gets real layout
   space (wrapping below the text when narrow), so it can never overlap copy. */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  column-gap: clamp(28px, 5vw, 70px);
  row-gap: 44px;
  padding: 130px var(--pad) 110px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 70% 30%, transparent 30%, rgba(8, 20, 38, 0.55) 75%, var(--ink) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1 1 560px;
  min-width: 0;
  max-width: 1100px;
}

.hero-side {
  position: relative;
  z-index: 2;
  flex: 0 1 340px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag-hero {
  margin-bottom: 28px;
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-size: clamp(40.5px, 8.25vw, 126px);
  text-transform: uppercase;
}

.hero-title .hl {
  display: block;
}

.hero-title .serif {
  text-transform: none;
}

.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--volt);
  letter-spacing: -0.01em;
}

.hero-lead {
  max-width: 540px;
  margin: 30px 0 0;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-ticker {
  width: 100%;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(12, 27, 49, 0.6);
  backdrop-filter: blur(10px);
}

.hero-ticker .ticker-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--volt);
}

.hero-ticker .ticker-title {
  display: block;
  margin: 8px 0 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.1;
}

.hero-ticker .ticker-meta {
  font-size: 13px;
  color: var(--muted);
}

.hero-ticker .ticker-progress {
  display: block;
  height: 2px;
  margin-top: 10px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.hero-ticker .ticker-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--volt);
  transition: width 0.5s var(--ease);
}

.hero-ticker .ticker-body {
  display: block;
}

.hero-ticker .ticker-body.swap {
  animation: tickSwap 0.5s var(--ease);
}

@keyframes tickSwap {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.hero-counter {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
}

.hero-counter b {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.9;
  color: var(--text);
}

.hero-counter span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue i {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--volt), transparent);
  animation: cue 1.8s infinite;
}

@keyframes cue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  45% {
    transform: scaleY(1);
    transform-origin: top;
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================== MARQUEE ============================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--ink-1);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 34s linear infinite;
}

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

.marquee-track span {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(14px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.marquee-track span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================== SECTIONS ============================== */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-head .tag {
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  font-size: clamp(38px, 6vw, 88px);
  text-transform: uppercase;
}

.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--volt);
}

.section-sub {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 460px;
}

.section-head.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head.light .section-title,
.section-head.light .tag {
  color: var(--ink);
}

.section-head.light .section-title em {
  color: var(--flame);
}

/* ============================== FEED ============================== */
.feed {
  padding: clamp(70px, 11vh, 150px) 0 90px;
}

.feed-controls {
  max-width: var(--maxw);
  margin: 38px auto 0;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted);
  transition: all 0.2s;
}

.pill:hover {
  border-color: var(--line-strong);
  color: var(--text);
}

.pill.active {
  background: var(--volt);
  border-color: var(--volt);
  color: var(--ink);
  font-weight: 600;
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-width: 220px;
  color: var(--muted);
  transition: border-color 0.2s;
}

.search:focus-within {
  border-color: var(--line-strong);
}

.search input {
  background: none;
  border: none;
  outline: none;
  flex: 1;
  color: var(--text);
}

.feed-head-row,
.feed-row {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: grid;
  grid-template-columns: 54px 130px 1fr 200px 40px;
  align-items: center;
  gap: 20px;
}

.feed-divider {
  max-width: var(--maxw);
  margin: 36px auto 4px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.feed-divider::before,
.feed-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}

.feed-head-row {
  margin-top: 30px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.feed-row {
  position: relative;
  padding-top: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.35s var(--ease);
}

.feed-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent, var(--volt));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}

.feed-row:hover,
.feed-row:focus-visible {
  background: var(--ink-1);
  outline: none;
}

.feed-row:hover::before,
.feed-row:focus-visible::before {
  transform: scaleY(1);
  transform-origin: top;
}

.feed-row .row-index {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
}

.feed-row .row-date {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.feed-row .row-date b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 0.9;
}

.feed-row .row-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  transition: transform 0.35s var(--ease), color 0.2s;
}

.feed-row:hover .row-title {
  transform: translateX(8px);
}

.feed-row .row-meta {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--muted);
}

.feed-row:hover .row-meta {
  transform: translateX(8px);
  transition: transform 0.4s var(--ease);
}

.row-sector {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.row-sector .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent, var(--volt));
  flex-shrink: 0;
}

.row-att {
  font-size: 13px;
  color: var(--muted);
}

.row-att b {
  color: var(--text);
}

.row-att .row-match {
  color: var(--volt);
  font-family: var(--mono);
}

.feed-row .row-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text);
  transition: all 0.25s var(--ease);
}

.feed-row:hover .row-go {
  background: var(--volt);
  border-color: var(--volt);
  color: var(--ink);
  transform: scale(1.05);
}

.row-status {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text);
  white-space: nowrap;
  transition: all 0.2s;
}

.row-status:hover {
  border-color: var(--volt);
  color: var(--volt);
}

.row-status.going {
  background: var(--volt);
  border-color: var(--volt);
  color: var(--ink);
}

.feed-scroll.expanded {
  max-height: 620px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.feed-scroll.expanded::-webkit-scrollbar {
  width: 8px;
}

.feed-scroll.expanded::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 8px;
}

.feed-expand-row {
  max-width: var(--maxw);
  margin: 18px auto 0;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.feed-expand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: all 0.2s;
}

.feed-expand:hover {
  border-color: var(--volt);
  color: var(--volt);
}

.feed-expand b {
  color: var(--volt);
}

.feed-expand span {
  transition: transform 0.25s var(--ease);
}

.feed-expand:hover span {
  transform: translateY(2px);
}

.feed-foot {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(87, 224, 138, 0.6);
  animation: ping 2.2s infinite;
}

.empty {
  max-width: var(--maxw);
  margin: 40px auto;
  padding: 0 var(--pad);
  color: var(--muted);
  font-family: var(--mono);
}

/* ============================== SPOTLIGHT (light) ============================== */
.spotlight {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(70px, 11vh, 140px) 0;
}

.spotlight .section-head {
  margin-bottom: 46px;
}

.spotlight-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 26px;
}

.spotlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: var(--r);
  background: var(--ink);
  color: var(--text);
  overflow: hidden;
  min-height: 340px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(8, 20, 38, 0.3);
}

.spotlight-card .sc-glow {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: radial-gradient(120% 80% at 80% 0%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 60%);
  pointer-events: none;
}

.spotlight-card .sc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spotlight-card .sc-badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.spotlight-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.spotlight-card .sc-meta {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.spotlight-card .sc-desc {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight-card .sc-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* "Show off your event here" promo slot */
.spotlight-card.spotlight-promo {
  --accent: var(--volt-deep);
  background: transparent;
  color: var(--ink);
  border: 2px dashed rgba(8, 20, 38, 0.3);
}

.spotlight-card.spotlight-promo:hover {
  box-shadow: 0 30px 70px rgba(8, 20, 38, 0.12);
  border-color: rgba(8, 20, 38, 0.55);
}

.spotlight-card.spotlight-promo .sc-meta,
.spotlight-card.spotlight-promo .sc-desc {
  color: rgba(8, 20, 38, 0.62);
}

.spotlight-card.spotlight-promo .sc-desc {
  display: block;
}

/* ============================== CALENDAR ============================== */
.cal {
  padding: clamp(70px, 11vh, 140px) 0 110px;
}

.cal-grid {
  max-width: var(--maxw);
  margin: 50px auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cal-month {
  background: var(--ink);
  padding: 22px 20px;
  min-height: 150px;
  transition: background 0.3s;
}

.cal-month:hover {
  background: var(--ink-1);
}

.cal-month.quiet {
  opacity: 0.4;
}

.cal-month header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.cal-month header span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
}

.cal-month header strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.cal-month header em {
  margin-left: auto;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--volt);
  padding: 2px 8px;
  border-radius: 999px;
}

.cal-month .none {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
}

.cal-event {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  transition: padding 0.25s var(--ease);
}

.cal-event:first-of-type {
  border-top: none;
}

.cal-event:hover {
  padding-left: 8px;
}

.cal-event b {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent, var(--volt));
  display: block;
}

.cal-event span {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.cal-event small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.cal-legend {
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding: 0 var(--pad);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.cal-legend span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c);
}

.year-switch {
  display: flex;
  gap: 6px;
}

.year-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  transition: all 0.2s;
}

.year-pill.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--ink);
}

/* ============================== JOIN ============================== */
.join {
  position: relative;
  padding: clamp(90px, 16vh, 200px) var(--pad);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.join-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
}

.join-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
}

.join-title {
  margin: 22px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.join-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--volt);
}

.join-lead {
  max-width: 480px;
  margin: 26px 0 38px;
  color: var(--muted);
  font-size: 17px;
}

/* ============================== FOOTER ============================== */
.foot {
  border-top: 1px solid var(--line);
  padding: 80px var(--pad) 30px;
  overflow: hidden;
}

.foot-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.foot-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.foot-brand p {
  max-width: 260px;
  color: var(--muted);
  font-size: 14px;
}

.foot-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.foot-cols>div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-cols span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}

.foot-cols a,
.foot-cols .link-btn {
  color: var(--muted);
  font-size: 14.5px;
  text-align: left;
  transition: color 0.2s;
}

.foot-cols a:hover,
.foot-cols .link-btn:hover {
  color: var(--volt);
}

.foot .marquee {
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
  margin-top: 50px;
  margin-bottom: 30px;
  border-left: none;
  border-right: none;
}

.foot-base {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-base small {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.03em;
}

/* ============================== RESPONSIVE (public) ============================== */
@media (max-width: 1080px) {
  .cal-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feed-head-row,
  .feed-row {
    grid-template-columns: 40px 96px 1fr 150px 40px;
  }
}

@media (max-width: 860px) {

  .nav-links,
  .nav-cta .ghost {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav.menu-open .nav-burger i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav.menu-open .nav-burger i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-counter {
    justify-content: flex-start;
    text-align: left;
  }

  .scroll-cue {
    display: none;
  }

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

@media (max-width: 560px) {

  .feed-head-row,
  .feed-row {
    grid-template-columns: 30px 70px 1fr 36px;
    gap: 12px;
  }

  .feed-head-row span:nth-child(4),
  .feed-row .row-sector {
    display: none;
  }

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

/* ============================================================
   DASHBOARD (restyled to editorial language)
   ============================================================ */
.app-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
  background: var(--ink);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 26px 20px;
  border-right: 1px solid var(--line);
  background: var(--ink-1);
}

.sidebar .brand {
  display: inline-flex;
  margin: 4px 4px 26px;
}

.sidebar .brand .logotype {
  font-size: 21px;
}

/* nav scrolls when cramped; the profile/logout row below stays pinned and visible */
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.nav-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 6px 12px 8px;
}

.nav-label-spaced {
  margin-top: 22px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r);
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  transition: background 0.2s, color 0.2s;
}

.nav-item .nav-icon {
  font-size: 15px;
  width: 18px;
  text-align: center;
}

.nav-item:hover {
  background: var(--ink-2);
  color: var(--text);
}

.nav-item.active {
  background: var(--ink-3);
  color: var(--text);
}

.nav-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 3px;
  border-radius: 3px;
  background: var(--volt);
}

.nav-badge {
  margin-left: auto;
  min-width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--volt);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

.side-create {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--r);
  background: var(--volt);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.18s var(--ease), background 0.2s;
}

.side-create:hover {
  background: #ffc93c;
}

.side-create:active {
  transform: scale(0.98);
}

.sidebar-profile {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.profile-meta {
  flex: 1;
  min-width: 0;
  cursor: pointer;
}

.profile-meta strong {
  display: block;
  font-size: 14px;
  transition: color 0.2s;
}

.profile-meta:hover strong {
  color: var(--volt);
}

.profile-meta span {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--volt);
  flex-shrink: 0;
}

.avatar.avatar-gold {
  background: var(--gold);
}

.avatar.avatar-cyan {
  background: var(--aqua);
}

.avatar.avatar-blue {
  background: var(--electric);
  color: var(--text);
}

.avatar.avatar-purple {
  background: var(--violet);
  color: var(--text);
}

.icon-button {
  width: 38px;
  height: 38px;
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}

.icon-button:hover {
  background: var(--ink-2);
  color: var(--text);
}

.main-content {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 20, 38, 0.8);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
}

.search-wrap {
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.search-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
}

.search-wrap kbd {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 6px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.notification-button {
  position: relative;
  font-size: 16px;
}

.notification-button span {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flame);
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px var(--pad) 80px;
}

.welcome-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.welcome-row h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1;
}

.subhead {
  margin: 10px 0 0;
  color: var(--muted);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--volt);
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.18s var(--ease), background 0.2s;
}

.primary-button:hover {
  background: #ffc93c;
}

.primary-button:active {
  transform: scale(0.98);
}

.primary-button.full-width {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  animation: ping 2s infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 34px;
}

.stat-card {
  background: var(--ink);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.3s;
  position: relative;
}

.stat-card:hover {
  background: var(--ink-1);
}

.stat-card.stat-featured {
  background: var(--ink-2);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: rgba(255, 182, 18, 0.12);
  color: var(--volt);
  flex-shrink: 0;
}

.stat-icon.cyan {
  background: rgba(52, 229, 200, 0.12);
  color: var(--aqua);
}

.stat-icon.violet {
  background: rgba(180, 123, 255, 0.14);
  color: var(--violet);
}

.stat-icon.flame {
  background: rgba(255, 91, 53, 0.14);
  color: var(--flame);
}

.stat-card span {
  font-size: 12.5px;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  margin: 4px 0;
}

.stat-card small {
  font-size: 11.5px;
  color: var(--muted-2);
}

.stat-card small b {
  color: var(--volt-deep);
}

.mini-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  margin-left: auto;
  height: 30px;
}

.mini-bars i {
  width: 4px;
  background: var(--volt);
  opacity: 0.5;
  border-radius: 2px;
}

.mini-bars i:nth-child(1) {
  height: 40%;
}

.mini-bars i:nth-child(2) {
  height: 65%;
}

.mini-bars i:nth-child(3) {
  height: 50%;
}

.mini-bars i:nth-child(4) {
  height: 85%;
}

.mini-bars i:nth-child(5) {
  height: 100%;
  opacity: 1;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  align-items: start;
}

.panel {
  background: var(--ink-1);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.panel-heading.compact h2 {
  font-size: 18px;
}

.view-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  gap: 6px;
  transition: color 0.2s;
}

.view-link:hover {
  color: var(--volt);
}

.filter-bar {
  margin-bottom: 16px;
}

/* dashboard event rows reuse .feed-row but tighter */
.event-list.feed-list .feed-row,
.feed-list.compact .feed-row {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  margin: 0;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.event-list.feed-list .feed-row .row-index,
.event-list.feed-list .feed-row .row-sector,
.feed-list.compact .feed-row .row-index,
.feed-list.compact .feed-row .row-sector {
  display: none;
}

.event-list .feed-row .row-title,
.feed-list.compact .feed-row .row-title {
  font-size: 19px;
}

.event-list .feed-row .row-date b {
  font-size: 22px;
}

.event-list.feed-list .feed-row::before,
.feed-list.compact .feed-row::before {
  left: -12px;
  border-radius: 3px;
}

.event-list.feed-list .feed-divider,
.feed-list.compact .feed-divider {
  padding: 0;
  margin: 24px 0 12px;
}

.community-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.next-event .event-context {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.event-context-date {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 0.9;
  text-align: center;
  color: var(--volt);
}

.event-context-date b {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  display: block;
}

.event-context strong {
  display: block;
}

.event-context span {
  font-size: 13px;
  color: var(--muted);
}

.people-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.person {
  display: flex;
  gap: 11px;
  align-items: center;
}

.person strong {
  display: block;
  font-size: 14px;
}

.person span {
  font-size: 12px;
  color: var(--muted);
}

.connect-button {
  margin-left: auto;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.2s;
}

.connect-button:hover {
  border-color: var(--volt);
  color: var(--volt);
}

.connect-button.sent {
  background: var(--ink-3);
  color: var(--muted);
  border-color: transparent;
}

.insight-card {
  position: relative;
  overflow: hidden;
}

.insight-card h3 {
  margin: 10px 0 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.15;
}

.insight-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 16px;
}

.insight-orbit {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  opacity: 0.5;
}

.insight-orbit i {
  position: absolute;
  inset: 0;
  border: 1px solid var(--volt);
  border-radius: 50%;
  opacity: 0.25;
}

.insight-orbit i:nth-child(2) {
  inset: 18px;
}

.insight-orbit i:nth-child(3) {
  inset: 36px;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  background: rgba(245, 243, 236, 0.07);
  color: var(--muted);
}

.event-tag.gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.empty-state {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  padding: 20px 0;
}

@media (max-width: 1080px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 80;
    width: 270px;
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
  }

  .sidebar.open {
    transform: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

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

/* ============================== MOBILE POLISH ============================== */
@media (max-width: 860px) {
  .nav {
    height: 72px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav.menu-open {
    background: var(--ink);
  }

  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px var(--pad) 22px;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .nav.menu-open .nav-links a {
    padding: 13px 0;
    font-size: 15px;
  }

  .logotype .globe {
    width: 51px;
    height: 51px;
    overflow: visible;
  }

  .logotype .lt-text {
    font-size: 16px;
  }
}

@media (max-width: 560px) {

  .auth-backdrop,
  .modal-backdrop {
    padding: 10px;
  }

  .modal,
  .auth-modal {
    padding: 26px 20px;
    max-height: 94vh;
  }

  .event-drawer {
    width: 100vw;
    border-left: none;
  }

  .drawer-body {
    padding: 22px 18px 44px;
  }

  .filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .pill {
    white-space: nowrap;
  }

  .search-wrap kbd {
    display: none;
  }

  .page {
    padding-top: 22px;
  }

  .panel {
    padding: 16px;
  }

  .topbar {
    padding: 10px 14px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-actions .btn-volt.large {
    width: 100%;
    justify-content: center;
  }

  .foot-top {
    flex-direction: column;
    gap: 30px;
  }
}