/* ForecastFeed — aligned with mobile tokens (teal credibility, gold status, X-like layout) */
:root {
  --fc-bg: #040507;
  --fc-bg-mid: #0a0e12;
  --fc-surface: #080a0d;
  --fc-elevated: #12161c;
  --fc-elevated-2: #1a1f28;
  --fc-text: #f0f4f8;
  --fc-muted: #8b98a5;
  --fc-line: #2f3843;
  --fc-line-soft: rgba(255, 255, 255, 0.06);
  --fc-primary: #2ee6c0;
  --fc-on-primary: #000000;
  --fc-primary-dim: #0d9f7a;
  --fc-primary-glow: rgba(46, 230, 192, 0.12);
  --fc-gold: #f0b429;
  --fc-font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --fc-display: 'Plus Jakarta Sans', var(--fc-font);
  --fc-radius: 16px;
  --fc-radius-card: 18px;
  --fc-max: 1280px;
  /* Marketing static site + /auth: one horizontal rhythm (header, body, footer line up). */
  --fc-page-gutter-x: clamp(8px, 2.5vw, 20px);
  --fc-page-inner-max: 1280px;
  --fc-feed-col: 680px;
  --fc-app-gutter-x: clamp(10px, 3.5vw, 44px);
  /* Caps total chrome width on ultrawide; centred with symmetric side margins */
  --fc-app-max-inline: 1820px;
  --fc-app-sidebar-w: clamp(264px, 22vw, 316px);
  --fc-app-widgets-w: clamp(264px, 22vw, 316px);
  --fc-app-widgets-inner-max: 100%;
  --fc-timeline-max: 900px;
  --fc-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --fc-shadow-subtle: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --fc-lb-amber: #34d399;
  --fc-lb-amber-bg: #052e16;
  --fc-lb-amber-dim: #10b981;
  --fc-lb-amber-border: #10b981;
  --fc-lb-amber-icon-bg: #064e3b;
  /* ID verification (Twitter-style badge); distinct from mint credibility primary */
  --fc-verified: #10b981;
  /* Prediction status pills — parity with mobile/src/lib/predictionStatusPill.ts */
  --fc-status-mint: #00d4a8;
  --fc-status-mint-bg: #00d4a822;
  --fc-status-error: #f87171;
  --fc-status-error-bg: #f8717122;
  --fc-status-gold: #f4c430;
  --fc-status-gold-bg: #f4c43033;
  --fc-status-gold-bg-muted: #f4c43022;
  --fc-status-pending-fg: #e67e22;
  --fc-status-pending-bg: #3e1f0e;
  --fc-status-pending-border: rgba(230, 126, 34, 0.42);
}

@media (min-width: 1025px) {
  :root {
    --fc-page-gutter-x: clamp(12px, 3.2vw, 40px);
    --fc-app-gutter-x: clamp(28px, 5vw, 56px);
    --fc-app-max-inline: 1680px;
    --fc-app-sidebar-w: clamp(236px, 17vw, 272px);
    --fc-app-widgets-w: clamp(300px, 22.5vw, 340px);
    --fc-app-widgets-inner-max: 100%;
    --fc-app-timeline-inset-x: clamp(6px, 0.8vw, 12px);
  }
}

html {
  color-scheme: dark;
}

html.fc-light {
  color-scheme: light;
}
html.fc-light {
  --fc-bg: #f4f7f9;
  --fc-bg-mid: #ebeff3;
  --fc-surface: #ffffff;
  --fc-elevated: #ffffff;
  --fc-elevated-2: #eef2f6;
  --fc-text: #0f1419;
  --fc-muted: #536471;
  --fc-line: #d9e1e8;
  --fc-line-soft: rgba(15, 20, 25, 0.08);
  --fc-primary: #00a67e;
  --fc-on-primary: #ffffff;
  --fc-primary-dim: #007a5c;
  --fc-primary-glow: rgba(0, 166, 126, 0.14);
  --fc-shadow-card: 0 4px 24px rgba(15, 23, 42, 0.08);
  --fc-shadow-subtle: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  /* Login (/auth): full-page wash behind promo + form cards */
  --fc-auth-light-bg: color-mix(in srgb, var(--fc-primary) 11%, #f8fbfa);
  --fc-lb-amber: #065f46;
  --fc-lb-amber-bg: #ecfdf5;
  --fc-lb-amber-dim: #059669;
  --fc-lb-amber-border: #10b981;
  --fc-lb-amber-icon-bg: #047857;
  --fc-verified: var(--fc-primary);
  --fc-status-mint: #00a67e;
  --fc-status-mint-bg: #00a67e22;
  --fc-status-error: #dc2626;
  --fc-status-error-bg: #dc262622;
  --fc-status-gold: #a67c00;
  --fc-status-gold-bg: #a67c0033;
  --fc-status-gold-bg-muted: #a67c0022;
  --fc-status-pending-fg: #c2410c;
  --fc-status-pending-bg: #fff7ed;
  --fc-status-pending-border: rgba(194, 65, 12, 0.38);
}

html.fc-light .fc-app {
  background-image: none;
}

/* Left nav rail: solid white in light mode */
html.fc-light .fc-app__rail {
  background: #ffffff;
}

/* Settings / Menu page body */
html.fc-light .fc-page.fc-menu-page {
  background: #ffffff;
}

html.fc-light .fc-app__timeline {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, color-mix(in srgb, var(--fc-primary) 14%, transparent), transparent 55%),
    rgba(255, 255, 255, 0.92);
}

html.fc-light .fc-app__main-inner--feed-home .fc-app__timeline {
  background: #ffffff;
}

/* Feed home — solid white in light mode (matches menu / rail) */
html.fc-light .fc-page--feed-tellshots {
  background: #ffffff;
}

html.fc-light .fc-feed-topbar {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.fc-light .fc-feed-cat-rail {
  background: #ffffff;
  border-bottom-color: var(--fc-line);
}

html.fc-light .fc-feed-spotlight {
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
}

html.fc-light .fc-feed-spotlight__stats-line {
  color: var(--fc-text);
}

html.fc-light .fc-feed-card--elevated {
  background: var(--fc-surface);
  border-color: var(--fc-line-soft);
}

html.fc-light .fc-feed-card--outlined {
  background: var(--fc-surface);
  border-color: color-mix(in srgb, var(--fc-primary) 22%, var(--fc-line-soft));
}

html.fc-light .fc-feed-card:not(.fc-feed-card--ghost):hover {
  background: color-mix(in srgb, var(--fc-bg-mid) 50%, var(--fc-surface));
  border-color: color-mix(in srgb, var(--fc-primary) 28%, var(--fc-line));
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transform: translateY(-1px);
}

html.fc-light .fc-widget__search-hit {
  background: var(--fc-surface);
  border-color: var(--fc-line);
  color: var(--fc-muted);
}

html.fc-light .fc-widget__search-hit:hover {
  border-color: color-mix(in srgb, var(--fc-primary) 45%, var(--fc-line));
  color: var(--fc-text);
  background: color-mix(in srgb, var(--fc-primary) 8%, var(--fc-surface));
}

html.fc-light .fc-chip--static {
  background: var(--fc-elevated-2);
  color: var(--fc-muted);
}

html.fc-light .fc-feed-segment__slot--on {
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

html.fc-light .fc-btn--ghost:hover:not(:disabled) {
  background: rgba(15, 20, 25, 0.06);
}

html.fc-light .fc-app__navlink:hover:not(.fc-app__navlink--predict):not(.fc-app__navlink--active),
html.fc-light button.fc-app__navlink.fc-app__navlink--button:hover {
  background: rgba(15, 20, 25, 0.055);
}


.fc-shell {
  font-family: var(--fc-font);
  background: var(--fc-bg);
  color: var(--fc-text);
  min-height: 100%;
  display: grid;
  grid-template-columns: 260px minmax(0, 600px) 300px;
  gap: 0;
  max-width: var(--fc-max);
  margin: 0 auto;
  border-inline: 1px solid var(--fc-line);
}

@media (max-width: 1100px) {
  .fc-shell {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .fc-rail-right {
    display: none;
  }
}

@media (max-width: 700px) {
  .fc-shell {
    grid-template-columns: 1fr;
    border: none;
  }
  .fc-rail-left {
    display: none;
  }
}

.fc-rail-left {
  padding: 20px 16px;
  border-right: 1px solid var(--fc-line);
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fc-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fc-text);
  text-decoration: none;
}

.fc-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--fc-text);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.15s;
}

.fc-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.fc-rail-right {
  padding: 12px 20px;
  border-left: 1px solid var(--fc-line);
  position: sticky;
  top: 0;
  align-self: start;
}

.fc-card-aside {
  background: var(--fc-elevated);
  border-radius: var(--fc-radius);
  padding: 16px;
  border: 1px solid var(--fc-line);
}

.fc-main {
  min-width: 0;
  border-right: 1px solid var(--fc-line);
}

@media (max-width: 1100px) {
  .fc-main {
    border-right: none;
  }
}

.fc-hero {
  background: linear-gradient(135deg, var(--fc-primary) 0%, var(--fc-primary-dim) 100%);
  padding: 20px 18px 22px;
  border-bottom: 1px solid var(--fc-line);
}

.fc-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  color: #fff;
  margin-bottom: 6px;
}

.fc-hero-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 8px;
}

.fc-hero-sub {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.fc-post {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--fc-line);
  transition: background 0.12s;
}

.fc-post:hover {
  background: rgba(255, 255, 255, 0.02);
}

.fc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--fc-primary-dim) 0%, var(--fc-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #001a14;
  flex-shrink: 0;
}

.fc-post-body {
  min-width: 0;
  flex: 1;
}

.fc-post-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  font-size: 0.95rem;
}

.fc-name {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--fc-text);
}

.fc-meta {
  color: var(--fc-muted);
  font-size: 1rem;
  font-weight: 500;
}

.fc-handle-line {
  margin-top: 2px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--fc-muted);
}

.fc-handle-line .fc-cat {
  color: var(--fc-primary);
  font-weight: 600;
}

.fc-content {
  margin-top: 8px;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: -0.015em;
}

.fc-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fc-muted);
}

.fc-pill {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: 8px;
  background: var(--fc-elevated);
  font-weight: 600;
  text-transform: lowercase;
}

.fc-pill.fc-pill--cred-pos {
  border: 1px solid rgba(0, 212, 168, 0.35);
  color: var(--fc-primary);
  background: rgba(0, 212, 168, 0.12);
}

.fc-pill.fc-pill--cred-neg {
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.12);
}

.fc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--fc-primary);
  color: #001a14;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
}

.fc-cta:hover {
  filter: brightness(1.08);
}

.fc-aside-title {
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 8px;
}

.fc-aside-text {
  font-size: 0.88rem;
  color: var(--fc-muted);
  line-height: 1.45;
  margin: 0 0 12px;
}

/* ─── Marketing home (landing) — hero + grid + FAQ + CTAs ─────────────────── */
.fc-landing {
  flex: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--fc-font);
  color: var(--fc-text);
  background: var(--fc-bg);
}

.fc-landing__hero {
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  padding: clamp(40px, 8vw, 72px) var(--fc-page-gutter-x) clamp(48px, 9vw, 88px);
  background: linear-gradient(90deg, #1a996f 0%, #0f5c45 38%, #082821 72%, #05100d 100%);
}

.fc-landing__hero-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  right: -35%;
  top: -45%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.fc-landing__hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(var(--fc-page-inner-max), 100%);
  margin: 0 auto;
  width: 100%;
}

.fc-landing__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.95);
}

.fc-landing__title {
  font-family: var(--fc-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  color: #fff;
}

.fc-landing__lede {
  margin: 0 0 18px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.93);
  max-width: 40ch;
}

.fc-landing__pitch {
  margin: 0 0 28px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.fc-landing__pitch-strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #fff;
  font-family: var(--fc-display);
}

.fc-landing__pitch-quote {
  font-style: italic;
}

.fc-landing__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.fc-landing__cta-row--center {
  justify-content: center;
}

.fc-landing__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    transform 0.15s,
    filter 0.15s,
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}

.fc-landing__btn--primary {
  background: #fff;
  color: #05100d;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.fc-landing__btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.fc-landing__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.fc-landing__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.fc-landing__btn--ghost-dark {
  background: transparent;
  color: var(--fc-text);
  border-color: var(--fc-line);
}

.fc-landing__btn--ghost-dark:hover {
  border-color: var(--fc-primary);
  color: var(--fc-primary);
}

.fc-landing__micro {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .fc-landing__hero {
    padding: clamp(32px, 7vw, 56px) var(--fc-page-gutter-x) clamp(40px, 8vw, 72px);
  }

  .fc-landing__section {
    padding-top: clamp(32px, 7vw, 56px);
    padding-bottom: clamp(32px, 7vw, 56px);
  }

  .fc-landing__feature--compact {
    padding: 14px 16px;
  }
}

@media (max-width: 640px) {
  .fc-landing__hero {
    padding: clamp(24px, 8vw, 40px) var(--fc-page-gutter-x) clamp(32px, 9vw, 56px);
  }

  .fc-landing__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .fc-landing__btn {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .fc-landing__download-row {
    flex-direction: column;
    align-items: center;
  }

  .fc-landing__aud-grid,
  .fc-landing__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fc-landing__feed-card {
    border-radius: 16px;
  }
}

@media (max-width: 380px) {
  .fc-landing__title {
    font-size: clamp(1.42rem, 9vw, 1.75rem);
  }

  .fc-landing__section-head h2 {
    font-size: clamp(1.25rem, 6.5vw, 1.55rem);
  }
}

.fc-landing__strip {
  border-block: 1px solid var(--fc-line-soft);
  background: var(--fc-elevated);
  padding-inline: var(--fc-page-gutter-x);
}

.fc-landing__strip-inner {
  max-width: min(var(--fc-page-inner-max), 100%);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--fc-muted);
}

.fc-landing__strip-dot {
  opacity: 0.45;
}

.fc-landing__about-app {
  padding: clamp(40px, 7vw, 72px) var(--fc-page-gutter-x);
  background: var(--fc-bg);
  border-bottom: 1px solid var(--fc-line-soft);
  scroll-margin-top: 80px;
}

.fc-landing__about-app .fc-landing__contain {
  max-width: 720px;
}

.fc-landing__about-app-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fc-primary);
  margin: 0 0 12px;
}

.fc-landing__about-app h2 {
  font-family: var(--fc-display);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--fc-text);
}

.fc-landing__about-app-prose p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--fc-muted);
}

.fc-landing__about-app-prose p:last-child {
  margin-bottom: 0;
}

.fc-landing__about-app-prose a {
  font-weight: 700;
  color: var(--fc-primary);
  text-decoration: none;
}

.fc-landing__about-app-prose a:hover {
  text-decoration: underline;
}

.fc-landing__about-app--pitch {
  padding: clamp(28px, 5vw, 48px) var(--fc-page-gutter-x);
}

.fc-landing__about-app--pitch .fc-landing__about-app-eyebrow {
  margin-bottom: 8px;
}

.fc-landing__about-app--pitch h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.42rem);
  margin-bottom: 14px;
}

.fc-landing__about-app--pitch .fc-landing__about-app-prose p {
  font-size: 0.98rem;
  line-height: 1.52;
  margin-bottom: 12px;
}

.fc-landing__about-app--pitch .fc-landing__about-app-prose p:last-child {
  margin-bottom: 0;
}

.fc-landing__about-app-prose code {
  font-size: 0.88em;
  padding: 0.12em 0.42em;
  border-radius: 6px;
  background: var(--fc-elevated-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.fc-landing__section {
  padding: clamp(44px, 8vw, 80px) var(--fc-page-gutter-x);
  box-sizing: border-box;
}

.fc-landing__contain {
  max-width: min(var(--fc-page-inner-max), 100%);
  margin: 0 auto;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.fc-landing__contain--narrow {
  max-width: 680px;
}

.fc-landing__section-head {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.fc-landing__section-head h2 {
  font-family: var(--fc-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--fc-text);
}

.fc-landing__section-head p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--fc-muted);
}

.fc-landing__section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fc-landing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.fc-landing__feature {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--fc-line-soft);
  background: var(--fc-elevated);
  transition:
    transform 0.18s,
    border-color 0.18s,
    box-shadow 0.18s;
}

.fc-landing__feature:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--fc-primary) 35%, var(--fc-line));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

html:not(.fc-light) .fc-landing__feature:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.fc-landing__feature-icon {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 12px;
}

.fc-landing__feature h3 {
  font-family: var(--fc-display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--fc-text);
}

.fc-landing__feature p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--fc-muted);
}

.fc-landing__feature--compact {
  padding: 16px 18px;
  border-radius: 16px;
}

.fc-landing__feature--compact .fc-landing__feature-icon {
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.fc-landing__feature--compact h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.fc-landing__feature--compact p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.fc-landing__aud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.fc-landing__audiences {
  background: color-mix(in srgb, var(--fc-elevated-2) 70%, var(--fc-bg));
  border-block: 1px solid var(--fc-line-soft);
}

.fc-landing__aud-card {
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid var(--fc-line-soft);
  background: var(--fc-surface);
}

.fc-landing__aud-card h3 {
  font-family: var(--fc-display);
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--fc-primary);
}

.fc-landing__aud-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--fc-muted);
}

.fc-landing__feed-card {
  border-radius: 20px;
  border: 1px solid var(--fc-line);
  overflow: hidden;
  background: var(--fc-surface);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

html:not(.fc-light) .fc-landing__feed-card {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.fc-landing__feed-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--fc-line);
  background: var(--fc-elevated);
}

.fc-landing__feed-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-muted);
}

.fc-landing__feed-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fc-primary);
  text-decoration: none;
}

.fc-landing__feed-link:hover {
  text-decoration: underline;
}

.fc-landing__feed-list .fc-post:last-child {
  border-bottom: none;
}

.fc-landing__download {
  background: var(--fc-surface);
  border-block: 1px solid var(--fc-line-soft);
  scroll-margin-top: 80px;
}

.fc-landing__download-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 16px 28px;
}

@media (max-width: 640px) {
  .fc-landing__download-row {
    flex-direction: column;
    align-items: center;
  }
}

.fc-landing__download-btn {
  height: 54px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.fc-landing__download-btn img {
  height: 100%;
  width: auto;
  display: block;
}

.fc-landing__download-btn--play img {
  height: 135%;
}

.fc-landing__download-btn:hover:not(.fc-landing__download-btn--soon) {
  transform: translateY(-3px);
  opacity: 0.9;
}

.fc-landing__download-btn--web {
  height: 54px;
  min-width: 168px;
  padding: 0 24px;
  gap: 10px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 18px color-mix(in srgb, var(--fc-primary) 28%, transparent);
}

.fc-landing__download-btn-icon {
  flex-shrink: 0;
  display: block;
}

html.fc-light .fc-landing__download-btn--web {
  box-shadow: 0 4px 16px color-mix(in srgb, var(--fc-primary) 22%, transparent);
}

.fc-landing__download-note {
  margin: 24px auto 0;
  max-width: 520px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--fc-muted);
  line-height: 1.45;
}

.fc-landing__download-note code {
  font-size: 0.78rem;
  padding: 1px 6px;
  border-radius: 6px;
  background: var(--fc-elevated-2);
}

@media (max-width: 600px) {
  .fc-landing__download-btn {
    height: 48px;
  }

  .fc-landing__download-btn--web {
    height: 48px;
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }
}

.fc-landing__download-label {
  margin: 32px 0 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fc-muted);
}

.fc-landing__qr {
  display: flex;
  justify-content: center;
}

.fc-landing__qr-link {
  display: inline-block;
  line-height: 0;
  border-radius: 14px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fc-landing__qr-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--fc-primary) 18%, transparent);
}

.fc-landing__qr-img {
  display: block;
  width: 200px;
  height: 200px;
  max-width: 100%;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px;
  border: 1px solid var(--fc-line-soft);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

html.fc-light .fc-landing__qr-img {
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  border-color: #eceef1;
}

.fc-landing__share-link {
  margin: 32px auto 0;
  max-width: 520px;
  padding: 24px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--fc-line-soft);
  background: var(--fc-elevated);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

html.fc-light .fc-landing__share-link {
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.fc-landing__share-link-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fc-text);
}

.fc-landing__share-link-desc {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--fc-muted);
}

.fc-landing__share-link-url {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--fc-line-soft);
  background: var(--fc-elevated-2);
  color: var(--fc-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.fc-landing__share-link-url:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--fc-primary) 18%, transparent);
}

.fc-landing__share-link-actions {
  display: flex;
  justify-content: center;
}

.fc-landing__share-copy-btn {
  min-width: 160px;
}

.fc-landing__share-link-feedback {
  min-height: 1.25em;
  margin: 12px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fc-primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.fc-landing__share-link-feedback.is-visible {
  opacity: 1;
}

.fc-landing__faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-landing__faq-item {
  border-radius: 14px;
  border: 1px solid var(--fc-line-soft);
  background: var(--fc-elevated);
  overflow: hidden;
}

.fc-landing__faq-item summary {
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  color: var(--fc-text);
}

.fc-landing__faq-item summary::-webkit-details-marker {
  display: none;
}

.fc-landing__faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 800;
  color: var(--fc-muted);
}

.fc-landing__faq-item[open] summary::after {
  content: '–';
}

.fc-landing__faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--fc-muted);
}

.fc-landing__cta-band {
  padding: clamp(48px, 9vw, 88px) var(--fc-page-gutter-x);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--fc-primary) 18%, var(--fc-bg)) 0%,
    var(--fc-bg-mid) 50%,
    var(--fc-bg) 100%
  );
  border-top: 1px solid var(--fc-line-soft);
  text-align: center;
}

.fc-landing__cta-band-inner {
  max-width: 560px;
  margin: 0 auto;
}

.fc-landing__cta-band h2 {
  font-family: var(--fc-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--fc-text);
}

.fc-landing__cta-band p {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--fc-muted);
}

.fc-app-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--fc-line);
  max-width: var(--fc-max);
  margin: 0 auto;
}

@media (min-width: 701px) {
  .fc-app-h {
    display: none;
  }
}

.fc-app-h .fc-logo {
  font-size: 1.2rem;
}

.fc-app-h nav a {
  margin-left: 12px;
  font-size: 0.9rem;
  color: var(--fc-muted);
}

/* ── Full web app (parity with mobile tabs) ─────────────────── */
.fc-avatar {
  border-radius: 50%;
  background: linear-gradient(145deg, var(--fc-primary-dim) 0%, var(--fc-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.fc-avatar.fc-avatar--photo {
  padding: 0;
  background: var(--fc-elevated);
}

.fc-avatar.fc-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.fc-avatar__busy {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-avatar__busy::after {
  content: '';
  width: 22px;
  height: 22px;
  border: 2px solid rgba(248, 250, 252, 0.35);
  border-top-color: #f8fafc;
  border-radius: 50%;
  animation: fc-spin 0.7s linear infinite;
}

.fc-profile__avatar-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.fc-profile__avatar-btn:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 3px;
}

.fc-profile__avatar-btn:disabled {
  opacity: 0.75;
  cursor: wait;
}

.fc-hidden-file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.fc-profile__avatar-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.fc-profile__avatar-sheet {
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line);
  border-radius: 16px;
  padding: 18px 16px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-profile__avatar-sheet-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fc-text);
}

.fc-profile__avatar-sheet-hint {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--fc-muted);
  line-height: 1.45;
}

.fc-profile__avatar-viewer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) 16px max(12px, env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.fc-profile__avatar-viewer {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-height: 100%;
  min-height: 0;
}

.fc-profile__avatar-viewer-toolbar {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.fc-profile__avatar-viewer-frame {
  flex: 1;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fc-profile__avatar-viewer-img {
  max-width: 100%;
  max-height: min(72vh, 520px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.fc-profile__avatar-viewer-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
}

.fc-profile__avatar-viewer-remove {
  border-color: rgba(220, 38, 38, 0.45);
  color: #fca5a5;
}

.fc-profile__avatar-viewer--readonly .fc-profile__avatar-viewer-toolbar {
  justify-content: flex-end;
}

.fc-profile__avatar-viewer-close {
  appearance: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.fc-profile__avatar-viewer-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.fc-profile__avatar-viewer-close:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}

.fc-userprof__avatar-btn {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 999px;
  line-height: 0;
}

.fc-userprof__avatar-btn:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 3px;
}

.fc-userprof__avatar-btn .fc-avatar {
  pointer-events: none;
}

.fc-feed-row {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-feed-row__av {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  align-self: flex-start;
}
.fc-feed-row__open {
  display: block;
  text-align: left;
  text-decoration: none;
  color: inherit;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.fc-feed-row__body {
  min-width: 0;
  flex: 1;
}
.fc-feed-row__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
}

.fc-status--ok {
  color: var(--fc-primary);
}
.fc-status--bad {
  color: #f87171;
}
.fc-status--mid {
  color: var(--fc-gold);
}

.fc-load {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--fc-font);
  color: var(--fc-muted);
}

html:not(.fc-light) .fc-load--auth {
  min-height: min(420px, 60dvh);
  background: #020c09;
  background-color: #020c09;
}
.fc-load__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--fc-line);
  border-top-color: var(--fc-primary);
  border-radius: 50%;
  animation: fc-spin 0.8s linear infinite;
}
@keyframes fc-spin {
  to {
    transform: rotate(360deg);
  }
}

.fc-setup {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  font-family: var(--fc-font);
}
.fc-setup__brand {
  max-width: 440px;
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius);
  padding: 28px;
}
.fc-setup__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fc-primary);
}
.fc-setup__brand h1 {
  margin: 8px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.fc-setup__brand p {
  color: var(--fc-muted);
  line-height: 1.5;
  margin: 0 0 16px;
}
.fc-setup__brand code {
  color: var(--fc-primary);
  font-size: 0.9em;
}
.fc-setup__hint {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}
.fc-setup__hint a {
  color: var(--fc-primary);
}

@media (max-width: 640px) {
  .fc-setup {
    padding: 20px clamp(14px, 4vw, 20px);
    align-items: flex-start;
  }

  .fc-setup__brand {
    padding: 20px;
    max-width: none;
  }

  .fc-setup__brand h1 {
    font-size: 1.2rem;
  }
}

.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--fc-font);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s;
}
.fc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fc-btn--primary {
  background: var(--fc-primary);
  color: var(--fc-on-primary, #ffffff);
}
.fc-btn--primary:hover:not(:disabled) {
  filter: brightness(1.08);
}
.fc-btn--ghost {
  background: transparent;
  color: var(--fc-text);
  border: 1px solid var(--fc-line);
}
.fc-btn--ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
}
.fc-btn--outline {
  background: transparent;
  color: var(--fc-primary);
  border: 1px solid var(--fc-primary);
}
.fc-btn--block {
  width: 100%;
}

/* ─── Sign out confirmation (viewport-centered modal) ─────────────────────── */
.fc-signout-dialog-root {
  position: fixed;
  inset: 0;
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) 20px max(24px, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  pointer-events: none;
}

.fc-signout-dialog__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(2, 6, 12, 0.55);
  pointer-events: auto;
  cursor: default;
}

html.fc-light .fc-signout-dialog__backdrop {
  background: rgba(15, 23, 42, 0.38);
}

.fc-signout-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  pointer-events: auto;
  border-radius: 18px;
  padding: 24px 24px 20px;
  background: var(--fc-surface);
  border: 1px solid var(--fc-line-soft);
  border-top: 4px solid var(--fc-primary);
  box-shadow: 0 24px 64px rgba(2, 8, 18, 0.45);
  font-family: var(--fc-font);
}

html.fc-light .fc-signout-dialog__panel {
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

html:not(.fc-light) .fc-signout-dialog__panel {
  background: linear-gradient(180deg, #243044 0%, #1a2332 100%);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.fc-signout-dialog__title {
  margin: 0 0 12px;
  font-family: var(--fc-display);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.25;
  color: var(--fc-text);
}

html:not(.fc-light) .fc-signout-dialog__title {
  color: #f8fafc;
}

.fc-signout-dialog__body {
  margin: 0 0 24px;
  font-family: var(--fc-font);
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: color-mix(in srgb, var(--fc-text) 72%, var(--fc-muted));
}

html:not(.fc-light) .fc-signout-dialog__body {
  color: #e2e8f0;
}

html.fc-light .fc-signout-dialog__body {
  color: #475569;
}

.fc-signout-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.fc-signout-dialog__actions .fc-btn {
  min-width: 0;
  font-family: var(--fc-font);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

html:not(.fc-light) .fc-signout-dialog__actions .fc-btn--ghost {
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
}

html:not(.fc-light) .fc-signout-dialog__actions .fc-btn--ghost:hover:not(:disabled) {
  background: rgba(148, 163, 184, 0.12);
  color: #f8fafc;
}

.fc-signout-dialog__confirm {
  background: #b91c1c !important;
  color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.fc-signout-dialog__confirm:hover:not(:disabled) {
  filter: brightness(1.06);
}

.fc-signout-dialog__confirm:disabled {
  opacity: 0.72;
}

.fc-signout-dialog__panel--wide {
  width: min(480px, 100%);
}

.fc-thread-moderation-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 10px;
}

.fc-thread-moderation-link {
  border: none;
  background: none;
  padding: 6px 2px;
  font-family: var(--fc-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fc-primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fc-thread-moderation-link:hover {
  filter: brightness(1.1);
}

.fc-thread-moderation-link--danger {
  color: #e53935;
  text-decoration-color: rgba(229, 57, 53, 0.5);
}

.fc-thread-moderation-sep {
  color: var(--fc-muted);
  font-weight: 600;
  user-select: none;
}

.fc-thread-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--fc-primary);
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.fc-thread-share-btn:hover {
  background: color-mix(in srgb, var(--fc-primary) 12%, transparent);
}

.fc-thread-share-btn:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}

.fc-flag-dialog__preview {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--fc-primary);
  border-radius: 0 8px 8px 0;
  background: var(--fc-primary-glow, rgba(0, 166, 126, 0.08));
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--fc-text);
}

.fc-flag-dialog__form {
  margin: 0;
}

.fc-flag-dialog__field {
  display: block;
  margin-bottom: 14px;
}

.fc-flag-dialog__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fc-muted);
}

.fc-flag-dialog__select,
.fc-flag-dialog__textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--fc-line-soft);
  background: var(--fc-bg);
  color: var(--fc-text);
  font-family: var(--fc-font);
  font-size: 0.95rem;
}

.fc-flag-dialog__textarea {
  resize: vertical;
  min-height: 100px;
}

.fc-flag-dialog__count {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--fc-muted);
  text-align: right;
}

.fc-flag-dialog__error {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #e53935;
}

.fc-flag-dialog__actions {
  margin-top: 4px;
}

.fc-flag-dialog__disclaimer {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--fc-muted);
}

/* ─── Marketing site header (marketing routes + /auth) ───────────────────── */
.fc-marketing-header {
  display: block;
  padding: 14px var(--fc-page-gutter-x);
  border-bottom: 1px solid var(--fc-line-soft);
  background: color-mix(in srgb, var(--fc-surface) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 30;
}

html.fc-light .fc-marketing-header {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fc-marketing-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .fc-marketing-header__inner {
    max-width: min(var(--fc-page-inner-max), 100%);
    margin-inline: auto;
  }
}

@media (min-width: 769px) {
  .fc-marketing-header__inner {
    flex-wrap: nowrap;
    gap: 12px 16px;
  }
}

.fc-marketing-header__brand {
  font-family: var(--fc-display);
  font-weight: 800;
  font-size: 1.56rem;
  letter-spacing: -0.04em;
  color: var(--fc-text);
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 769px) {
  .fc-marketing-header__brand {
    flex: 0 0 auto;
  }
}

.fc-marketing-header__brand:hover {
  color: var(--fc-primary);
}

.fc-marketing-header__brand-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 6px 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.fc-marketing-header__brand-pill .fc-marketing-header__brand-img {
  height: 80px;
}

.fc-marketing-header__brand-img {
  display: block;
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: none;
}

/* Android Chrome: keep intentional light chrome from forced-dark overlays. */
html:not(.fc-light) .fc-marketing-header__brand-pill,
html:not(.fc-light) .fc-feed-topbar__brand-pill,
html:not(.fc-light) .fc-auth-page__oauth-btn--google,
html:not(.fc-light) .fc-auth-page__oauth-btn--apple {
  color-scheme: only light;
}

/* Light mode: match feed topbar — no pill chrome on solid white header */
html.fc-light .fc-marketing-header__brand-pill {
  background: transparent;
  box-shadow: none;
}

/* Legacy: img-only logo without pill wrapper (auth promos) */
html.fc-light .layout--auth-flow .fc-marketing-header__brand-img:not(.fc-marketing-header__brand-pill *) {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 7px;
  padding: 5px 12px;
}

html.fc-light .layout--auth-flow .fc-marketing-header__brand > .fc-marketing-header__brand-img,
html:not(.fc-light) .layout--auth-flow .fc-marketing-header__brand > .fc-marketing-header__brand-img,
html:not(.fc-light) .layout--auth-flow .fc-marketing-header__brand-img:not(.fc-marketing-header__brand-pill *) {
  background: transparent;
  padding: 0;
}

.layout--auth-flow .fc-marketing-header__brand-pill .fc-marketing-header__brand-img,
.layout--auth-flow .fc-marketing-header__brand-img {
  height: 64px;
}

.layout--auth-flow .fc-marketing-header__brand-pill {
  padding: 5px 12px;
}

.fc-marketing-header__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border: none;
  border-radius: 14px;
  background: var(--fc-line-soft);
  color: var(--fc-text);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  position: relative;
  z-index: 32;
}

.fc-marketing-header__menu-btn:hover {
  background: var(--fc-primary-glow);
  color: var(--fc-primary);
}

.fc-marketing-header__menu-bars {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.fc-marketing-header__menu-bars::before,
.fc-marketing-header__menu-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.2s ease,
    top 0.2s ease;
}

.fc-marketing-header__menu-bars::before {
  top: -8px;
}

.fc-marketing-header__menu-bars::after {
  top: 8px;
}

.fc-marketing-header--nav-open .fc-marketing-header__menu-bars {
  background: transparent;
}

.fc-marketing-header--nav-open .fc-marketing-header__menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.fc-marketing-header--nav-open .fc-marketing-header__menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.fc-marketing-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 28;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

html.fc-light .fc-marketing-header__backdrop {
  background: rgba(15, 20, 25, 0.35);
}

.fc-marketing-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  row-gap: 6px;
  max-width: 100%;
}

@media (min-width: 769px) {
  .fc-marketing-header__nav {
  flex: 1;
    min-width: 0;
  }
}

.fc-marketing-header__link {
  font-family: var(--fc-font);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--fc-muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 11px;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .fc-marketing-header__link {
    font-size: 1.08rem;
    padding: 11px 18px;
  }
}

.fc-marketing-header__link:hover {
  color: var(--fc-text);
  background: var(--fc-line-soft);
}

.fc-marketing-header__link--active {
  color: var(--fc-primary);
  font-weight: 700;
  background: color-mix(in srgb, var(--fc-primary) 14%, transparent);
}

.fc-marketing-header__link--active:hover {
  color: var(--fc-primary);
  background: color-mix(in srgb, var(--fc-primary) 22%, transparent);
}

/* Light mode: solid header + high-contrast mobile menu (translucent mix would show hero behind) */
html.fc-light .fc-marketing-header {
  background: var(--fc-surface);
  border-bottom-color: var(--fc-line);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.fc-light .fc-marketing-header__menu-btn {
  background: var(--fc-elevated-2);
  color: var(--fc-text);
}

html.fc-light .fc-marketing-header__menu-btn:hover {
  background: var(--fc-primary-glow);
  color: var(--fc-primary-dim);
}

.fc-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 2px;
  border: none;
  border-radius: 12px;
  background: var(--fc-line-soft);
  color: var(--fc-muted);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  flex-shrink: 0;
}

.fc-theme-toggle:hover {
  background: var(--fc-primary-glow);
  color: var(--fc-primary);
}

/* Pre-login header: small screens — larger rows; optional hamburger (React /auth) */
@media (max-width: 768px) {
  .fc-marketing-header__link {
    white-space: normal;
    text-align: left;
    font-size: 1.06rem;
    font-weight: 600;
    padding: 16px 16px;
    border-radius: 12px;
    line-height: 1.25;
  }

  /* Static marketing HTML: no toggle — full-width stacked nav */
  .fc-marketing-header:not(:has(.fc-marketing-header__menu-btn)) {
    flex-direction: column;
    align-items: stretch;
  }

  .fc-marketing-header:not(:has(.fc-marketing-header__menu-btn)) .fc-marketing-header__brand {
    flex: 0 0 auto;
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .fc-marketing-header:not(:has(.fc-marketing-header__menu-btn)) .fc-marketing-header__nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-width: none;
    gap: 4px;
    row-gap: 4px;
  }

  /* Web /auth + /setup: hamburger — closed: zero-height nav in flow */
  .fc-marketing-header:has(.fc-marketing-header__menu-btn) .fc-marketing-header__menu-btn {
    display: inline-flex;
  }

  /* Closed bar: center logo; menu stays top-right (same rhythm as feed topbar). */
  .fc-marketing-header:has(.fc-marketing-header__menu-btn):not(.fc-marketing-header--nav-open)
    .fc-marketing-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px 12px;
  }

  .fc-marketing-header:has(.fc-marketing-header__menu-btn):not(.fc-marketing-header--nav-open)
    .fc-marketing-header__brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    flex: unset;
    display: inline-flex;
    justify-content: center;
  }

  .fc-marketing-header:has(.fc-marketing-header__menu-btn):not(.fc-marketing-header--nav-open)
    .fc-marketing-header__menu-btn {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .fc-marketing-header:has(.fc-marketing-header__menu-btn):not(.fc-marketing-header--nav-open)
    .fc-marketing-header__nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .fc-marketing-header:has(.fc-marketing-header__menu-btn) .fc-marketing-header__brand {
    position: relative;
    z-index: 32;
  }

  .fc-marketing-header:has(.fc-marketing-header__menu-btn) .fc-marketing-header__nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    flex-basis: 100%;
    max-width: none;
    gap: 4px;
    row-gap: 4px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding-top: 0;
    margin: 0;
    transition:
      max-height 0.28s ease,
      opacity 0.2s ease,
      padding-top 0.2s ease;
  }

  /* Open: full-viewport overlay (does not push page content) */
  .fc-marketing-header--nav-open:has(.fc-marketing-header__menu-btn) {
    position: fixed;
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: max(10px, env(safe-area-inset-top)) var(--fc-page-gutter-x) max(16px, env(safe-area-inset-bottom));
    box-sizing: border-box;
    background: var(--fc-bg);
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .fc-marketing-header--nav-open:has(.fc-marketing-header__menu-btn) .fc-marketing-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: start;
    align-content: start;
    gap: 0;
    row-gap: 10px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  html.fc-light .fc-marketing-header--nav-open:has(.fc-marketing-header__menu-btn) {
    background: var(--fc-surface);
  }

  .fc-marketing-header--nav-open:has(.fc-marketing-header__menu-btn) .fc-marketing-header__brand {
    grid-column: 2;
    grid-row: 1;
    flex: unset;
    justify-self: center;
    align-self: center;
    display: inline-flex;
    justify-content: center;
  }

  .fc-marketing-header--nav-open:has(.fc-marketing-header__menu-btn) .fc-marketing-header__menu-btn {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .fc-marketing-header--nav-open:has(.fc-marketing-header__menu-btn) .fc-marketing-header__backdrop {
    display: none !important;
  }

  .fc-marketing-header--nav-open:has(.fc-marketing-header__menu-btn) .fc-marketing-header__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 0;
    max-height: none !important;
    height: auto;
    flex-basis: auto;
    opacity: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    padding-top: 8px;
    padding-bottom: 12px;
    margin: 0;
    position: relative;
    z-index: 32;
    transition: opacity 0.2s ease;
  }

  .fc-marketing-header:has(.fc-marketing-header__menu-btn) .fc-marketing-header__nav .fc-theme-toggle {
    width: 100%;
    max-width: none;
    height: 52px;
    margin: 6px 0 0;
    box-sizing: border-box;
  }

  html.fc-light .fc-marketing-header__link {
    color: var(--fc-text);
  }

  html.fc-light .fc-marketing-header__link:hover,
  html.fc-light .fc-marketing-header__link:focus-visible {
    color: var(--fc-text);
    background: rgba(15, 20, 25, 0.07);
  }

  html.fc-light .fc-marketing-header:has(.fc-marketing-header__menu-btn) .fc-marketing-header__nav .fc-theme-toggle {
    background: var(--fc-elevated-2);
    color: var(--fc-text);
    border: 1px solid var(--fc-line);
  }

  html.fc-light .fc-marketing-header:has(.fc-marketing-header__menu-btn) .fc-marketing-header__nav .fc-theme-toggle:hover {
    background: var(--fc-primary-glow);
    color: var(--fc-primary-dim);
    border-color: color-mix(in srgb, var(--fc-primary) 35%, var(--fc-line));
  }

  /* Reserve space when overlay takes header out of flow (close = no jump) */
  html.fc-marketing-menu-open .layout {
    padding-top: calc(4.25rem + env(safe-area-inset-top, 0px));
  }
}

@media (max-width: 380px) {
  .fc-marketing-header__link {
    font-size: 1.02rem;
    padding: 15px 14px;
  }
}

@media (min-width: 901px) {
  .fc-marketing-header__brand {
    font-size: 1.68rem;
  }
}

/* Pre-login header + landing: tight phones → large desktop */
@media (max-width: 900px) {
  .fc-marketing-header {
    padding: 12px var(--fc-page-gutter-x);
    gap: 10px 12px;
  }

  .fc-marketing-header__brand {
    font-size: 1.46rem;
  }
}

.fc-auth-shell__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--fc-line-soft);
  background: color-mix(in srgb, var(--fc-surface) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.fc-auth-shell__brand {
  font-family: var(--fc-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--fc-text);
  text-decoration: none;
}

.fc-auth-shell__brand:hover {
  color: var(--fc-primary);
}

.fc-auth-shell__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fc-auth-shell__link {
  font-family: var(--fc-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fc-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}

.fc-auth-shell__link:hover {
  color: var(--fc-text);
  background: var(--fc-line-soft);
}

.fc-auth-shell__link--emph {
  color: var(--fc-primary);
  font-weight: 700;
}

.fc-auth-shell__theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 4px;
  border: none;
  border-radius: 12px;
  background: var(--fc-line-soft);
  color: var(--fc-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.fc-auth-shell__theme:hover {
  background: var(--fc-primary-glow);
  color: var(--fc-primary);
}

/* ─── Auth page: split promo + card (product-style login) ─────────────────── */
.fc-auth-page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  font-family: var(--fc-font);
  background: linear-gradient(135deg, #082821 0%, #0a3d2e 30%, #051a14 65%, #020c09 100%);
}

.fc-auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(148, 163, 184, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
  opacity: 0.5;
}

html.fc-light .fc-auth-page::before {
  /* Grid overlay reads as grey on white — disable entirely */
  content: none;
  display: none;
}

/* Light mode: clean white auth flow */
html.fc-light .layout--auth-flow {
  background: #ffffff;
  background-color: #ffffff;
}

html.fc-light .layout--auth-flow .layout-main {
  background: #ffffff;
}

html.fc-light .fc-auth-page {
  background: #ffffff;
}

html.fc-light .layout--auth-flow .fc-auth-page__grid {
  background: #ffffff;
}

html.fc-light .layout--auth-flow .footer {
  background: #ffffff;
  border-top-color: var(--fc-line-soft);
}

html.fc-light .layout--auth-flow .fc-marketing-header {
  background: #ffffff;
}

/* Promo panel: softer shadow on white page background */
html.fc-light .fc-auth-page__promo {
  box-shadow:
    0 14px 36px rgba(18, 24, 32, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.fc-auth-page__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(min(100%, 400px), 440px);
  gap: clamp(12px, 2.5vw, 36px);
  align-items: stretch;
  width: 100%;
  max-width: min(var(--fc-page-inner-max), 100%);
  margin: 0 auto;
  padding: clamp(12px, 2dvh, 24px) var(--fc-page-gutter-x) clamp(16px, 3dvh, 28px);
  box-sizing: border-box;
}

.fc-auth-page--signup .fc-auth-page__promo-foot {
  margin-top: clamp(10px, 1.8vh, 20px);
}

/* Complete OAuth profile — single column, no promo panel */
.fc-auth-page--complete-profile .fc-auth-page__grid {
  grid-template-columns: minmax(0, 1fr);
}

/* Comfortable spacing between labels, inputs, and sections (all breakpoints) */
.fc-auth-page--complete-profile .fc-auth-page__card {
  padding: clamp(18px, 2.8dvh, 26px) clamp(18px, 3.2vw, 28px);
}

.fc-auth-page--complete-profile .fc-auth-page__back--complete {
  margin-bottom: 14px;
  padding: 4px 0;
}

.fc-auth-page--complete-profile .fc-auth-page__card-head h1 {
  margin-bottom: 8px;
}

.fc-auth-page--complete-profile .fc-auth-page__card-sub {
  margin-bottom: 18px;
  line-height: 1.45;
}

.fc-auth-page--complete-profile .fc-auth-page__form {
  gap: 16px;
}

.fc-auth-page--complete-profile .fc-auth-page__form .fc-field {
  gap: 8px;
}

.fc-auth-page--complete-profile .fc-auth-page__form-row--complete-names {
  gap: 12px;
}

.fc-auth-page--complete-profile .fc-auth-location-hint {
  margin: 4px 0 8px;
  line-height: 1.4;
}

.fc-auth-page--complete-profile .fc-auth-location-selected {
  margin-top: 6px;
}

.fc-auth-page--complete-profile .fc-auth-page__legal-agree {
  margin: 14px 0 0;
  line-height: 1.45;
}

.fc-auth-page--complete-profile .fc-auth-page__submit {
  margin-top: 10px;
}

.fc-auth-page--complete-profile .fc-auth-page__err {
  margin: 4px 0 0;
}

@media (min-width: 769px) {
  .fc-auth-page--complete-profile {
    justify-content: center;
    align-items: center;
  }

  .fc-auth-page--complete-profile .fc-auth-page__grid {
    max-width: min(440px, calc(100% - 2 * var(--fc-page-gutter-x)));
    margin-inline: auto;
    width: 100%;
    justify-items: center;
    padding-block: clamp(4px, 1dvh, 10px);
  }

  .fc-auth-page--complete-profile .fc-auth-page__main {
    justify-content: center;
    width: 100%;
    max-width: 440px;
    padding-top: 0;
  }

  .fc-auth-page--complete-profile .fc-auth-page__card {
    width: 100%;
    padding: clamp(16px, 2.2dvh, 22px) clamp(16px, 2.8vw, 24px);
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__back--complete {
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 4px 0;
    min-height: auto;
    font-size: 0.82rem;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__card-head h1 {
    font-size: clamp(1.02rem, 2.1vw, 1.18rem);
    margin-bottom: 6px;
    text-align: center;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__card-sub {
    margin-bottom: 14px;
    font-size: 0.74rem;
    line-height: 1.4;
    text-align: center;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__form {
    gap: 14px;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__form .fc-field {
    gap: 6px;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__form .fc-field span {
    font-size: 0.68rem;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__form-row--complete-names {
    gap: 12px;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__form .fc-field input,
  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__form .fc-auth-location-input {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.84rem;
    border-radius: 10px;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page .fc-phone-dial,
  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page .fc-phone-national {
    min-height: 40px;
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-location-hint {
    font-size: 0.62rem;
    margin: 4px 0 6px;
    line-height: 1.4;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__legal-agree {
    margin: 10px 0 0;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .layout--auth-flow .fc-auth-page--complete-profile .fc-auth-page__submit {
    margin-top: 8px;
    min-height: 42px !important;
    padding: 10px 14px !important;
    font-size: 0.86rem !important;
    border-radius: 11px !important;
  }
}

/* Dark auth flow: match scrollbar + page chrome to deep green (no white track) */
html:not(.fc-light) .layout--auth-flow,
html:not(.fc-light) .layout--auth-flow .layout-main,
html:not(.fc-light) .layout--auth-flow .fc-auth-page {
  background: #020c09;
  background-color: #020c09;
}

html:not(.fc-light) .layout--auth-flow .fc-auth-page__main {
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.35) transparent;
}

html:not(.fc-light) .layout--auth-flow .fc-auth-page__main::-webkit-scrollbar {
  width: 8px;
}

html:not(.fc-light) .layout--auth-flow .fc-auth-page__main::-webkit-scrollbar-track {
  background: transparent;
}

html:not(.fc-light) .layout--auth-flow .fc-auth-page__main::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 4px;
}

html.fc-light .layout--auth-flow .fc-auth-page__main {
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 116, 139, 0.35) transparent;
}

html.fc-light .layout--auth-flow .fc-auth-page__main::-webkit-scrollbar {
  width: 8px;
}

html.fc-light .layout--auth-flow .fc-auth-page__main::-webkit-scrollbar-track {
  background: transparent;
}

html.fc-light .layout--auth-flow .fc-auth-page__main::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.35);
  border-radius: 4px;
}

@media (min-width: 1025px) {
  /* Complete profile: fit in viewport; scroll inside card area only if needed */
  .layout--auth-flow:has(.fc-auth-page--complete-profile) {
    height: 100dvh;
    max-height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .layout--auth-flow:has(.fc-auth-page--complete-profile) .layout-main {
    overflow: hidden;
  }

  .fc-auth-page--complete-profile {
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-block: clamp(4px, 0.8dvh, 10px);
  }

  .fc-auth-page--complete-profile .fc-auth-page__grid {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
    padding-block: clamp(2px, 0.5dvh, 6px);
    max-width: min(440px, 100%);
  }

  .fc-auth-page--complete-profile .fc-auth-page__main {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    justify-content: flex-start;
    max-height: 100%;
  }
}

/* Large screens: side margins + centered content column (marketing-site style) */
@media (min-width: 1025px) {
  .layout--auth-flow .fc-marketing-header {
    padding-inline: var(--fc-page-gutter-x);
  }

  .layout--auth-flow .fc-marketing-header__inner {
    max-width: min(var(--fc-page-inner-max), 100%);
    margin-inline: auto;
    width: 100%;
  }

  .layout--auth-flow .fc-marketing-header__nav {
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
  }

  .layout--auth-flow .layout-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .fc-auth-page {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-inline: var(--fc-page-gutter-x);
    padding-block: clamp(2px, 0.6vh, 8px) clamp(4px, 0.8vh, 12px);
    overflow: hidden;
  }

  .fc-auth-page--signup {
    padding-block: clamp(0px, 0.4vh, 6px) clamp(2px, 0.6vh, 10px);
  }

  .fc-auth-page--complete-profile {
    overflow: hidden;
    justify-content: center;
    align-items: center;
    padding-block: clamp(4px, 0.8dvh, 10px);
  }

  .fc-auth-page--complete-profile .fc-auth-page__grid {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr);
    max-width: min(440px, 100%);
    margin-inline: auto;
    padding-block: clamp(2px, 0.5dvh, 6px);
  }

  .fc-auth-page--complete-profile .fc-auth-page__main {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    justify-content: flex-start;
    max-height: 100%;
  }

  /**
   * Sign-up only: hide dense promo illustration blocks so the form fits in one desktop viewport
   * without clipping (sign-in keeps the full track-record column).
   */
  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__oauth-btn {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.88rem;
    gap: 10px;
    border-radius: 11px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__card {
    padding: clamp(12px, 1.6dvh, 18px) clamp(16px, 2.6vw, 24px);
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__card-head h1 {
    font-size: clamp(1.02rem, 2.1vw, 1.22rem);
    margin-bottom: 6px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__card--signup .fc-auth-page__form {
    gap: 12px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__form-row--halves {
    gap: 10px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__form .fc-field span {
    font-size: 0.68rem;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__form .fc-field input,
  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__form .fc-auth-location-input {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 0.84rem;
    border-radius: 10px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page .fc-phone-dial,
  .layout--auth-flow .fc-auth-page--signup .fc-auth-page .fc-phone-national {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.86rem;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-password-toggle {
    width: 32px;
    height: 32px;
    right: 3px;
    border-radius: 8px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__form .fc-auth-password-input {
    padding-right: 40px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__submit {
    min-height: 40px !important;
    padding: 9px 12px !important;
    font-size: 0.86rem !important;
    border-radius: 11px !important;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__legal {
    margin-top: 4px;
    padding-top: 4px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-location-hint {
    font-size: 0.62rem;
    margin: 2px 0 6px;
    line-height: 1.35;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__card-sub {
    margin-bottom: 8px;
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__segmented {
    margin-bottom: 8px;
    padding: 2px;
    gap: 2px;
    border-radius: 11px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__oauth {
    margin-top: 12px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__segment {
    padding: 8px 10px;
    font-size: 0.84rem;
    border-radius: 9px;
  }

  .layout--auth-flow .fc-auth-page--signup .fc-auth-page__divider {
    margin: 14px 0 10px;
  }

  .fc-auth-page__grid {
    width: 100%;
    max-width: min(var(--fc-page-inner-max), 100%);
    margin-inline: auto;
    padding: clamp(2px, 0.5dvh, 8px) 0 clamp(4px, 0.8vh, 10px);
    gap: clamp(16px, 2.4vw, 30px);
    align-items: stretch;
    grid-template-columns: minmax(0, 1.08fr) minmax(min(100%, 380px), 440px);
    box-sizing: border-box;
    flex: 1 1 0;
    /* Floor prevents rare flex % height collapse (empty mint main) when the auth route first paints after sign-out. */
    min-height: min(420px, 70dvh);
    max-height: 100%;
    overflow: hidden;
  }

  .fc-auth-page--signup .fc-auth-page__grid {
    padding: clamp(2px, 0.5dvh, 8px) 0 clamp(2px, 0.6vh, 8px);
  }

  .fc-auth-page__grid > * {
    min-width: 0;
    min-height: 0;
  }

  .fc-auth-page__promo {
    border-radius: 20px;
    align-self: stretch;
    min-height: 0;
    overflow: hidden;
    justify-content: space-between;
    padding: clamp(4px, 0.9dvh, 12px) clamp(16px, 2.2vw, 26px) clamp(10px, 1.4dvh, 16px);
    box-sizing: border-box;
  }

  .fc-auth-page__promo-body {
    flex: 1 1 auto;
  }

  .fc-auth-page__main {
    align-self: stretch;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    padding: clamp(2px, 0.5dvh, 10px) 0 0;
    box-sizing: border-box;
    background: transparent;
  }

  /* Sign-in + sign-up: scroll inside the form column when content exceeds viewport. */
  .fc-auth-page:not(.fc-auth-page--complete-profile) .fc-auth-page__main {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  .fc-auth-page__card {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .fc-auth-page__legal {
    margin-top: clamp(8px, 1.2vh, 16px);
    padding-top: 0;
  }

  /* ── Desktop auth: modest shrink so promo + card fit above footer (no scroll) ── */
  .layout--auth-flow .fc-auth-page__promo-kicker {
    margin-bottom: 5px;
    font-size: 0.62rem;
  }

  .layout--auth-flow .fc-auth-page__promo-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    margin-bottom: 8px;
    line-height: 1.06;
  }

  .layout--auth-flow .fc-auth-page__promo-hero-tagline {
    margin-bottom: 10px;
    font-size: clamp(0.94rem, 1.55vw, 1.02rem);
  }

  .layout--auth-flow .fc-auth-page__promo-copy-block {
    gap: 10px;
  }

  .layout--auth-flow .fc-auth-page__promo-hook {
    font-size: clamp(1.02rem, 1.85vw, 1.14rem);
    line-height: 1.36;
  }

  .layout--auth-flow .fc-auth-page__promo-lede {
    font-size: clamp(0.92rem, 1.45vw, 1rem);
    line-height: 1.54;
  }

  .layout--auth-flow .fc-auth-page__promo-lede-note {
    font-size: clamp(0.86rem, 1.3vw, 0.94rem);
    line-height: 1.5;
  }

  .layout--auth-flow .fc-auth-page__promo-legal {
    margin-top: 8px;
    font-size: 0.72rem;
  }

  .layout--auth-flow .fc-auth-page__promo-title {
    min-height: 1.9em;
  }

  .layout--auth-flow .fc-auth-page__promo-scene {
    min-height: 0;
    max-height: none;
    padding: 0;
    margin: 0;
  }

  .layout--auth-flow .fc-auth-page__promo-showcase {
    height: clamp(260px, 32dvh, 320px);
    max-height: 320px;
  }

  .layout--auth-flow .fc-auth-page__promo-forecast {
    top: 52px;
    bottom: 28px;
    padding: 14px 16px 12px;
  }

  .layout--auth-flow .fc-auth-page__promo-forecast-call {
    font-size: clamp(1.65rem, 3.5vw, 2rem);
  }

  .layout--auth-flow .fc-auth-page__promo-sat--board {
    bottom: 22px;
    width: 56%;
    max-width: 180px;
  }

  .layout--auth-flow .fc-auth-page__promo--scene .fc-auth-page__promo-avatar {
    width: 32px;
    height: 32px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock {
    margin-bottom: 10px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-grid {
    gap: 8px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-card {
    padding: 10px 11px 11px;
    border-radius: 15px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-top {
    margin-bottom: 6px;
    gap: 6px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-eyebrow {
    font-size: 0.68rem;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-headline {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
  }

  .layout--auth-flow .fc-auth-page__promo-mock-meta {
    font-size: 0.72rem;
    margin-top: 2px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-meter {
    margin-top: 8px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-side-title {
    font-size: 0.72rem;
    margin-bottom: 6px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-rows {
    gap: 5px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-row {
    padding: 5px 8px;
    gap: 7px;
  }

  .layout--auth-flow .fc-auth-page__promo-profile {
    margin-bottom: 10px;
    gap: 6px;
    padding: 10px 11px 11px;
  }

  .layout--auth-flow .fc-auth-page__promo-profile-title {
    font-size: clamp(0.86rem, 1.65vw, 0.98rem);
  }

  .layout--auth-flow .fc-auth-page__promo-profile-lede {
    font-size: 0.7rem;
    line-height: 1.36;
  }

  .layout--auth-flow .fc-auth-page__promo-profile-stats {
    gap: 6px;
  }

  .layout--auth-flow .fc-auth-page__promo-profile-stat {
    padding: 7px 5px;
    border-radius: 10px;
  }

  .layout--auth-flow .fc-auth-page__promo-profile-stat strong {
    font-size: clamp(0.9rem, 1.9vw, 1.02rem);
  }

  .layout--auth-flow .fc-auth-page__promo-profile-panels {
    gap: 8px;
  }

  .layout--auth-flow .fc-auth-page__promo-profile-panel {
    padding: 8px 9px 10px;
    border-radius: 12px;
  }

  .layout--auth-flow .fc-auth-page__promo-profile-points {
    font-size: 1.15rem;
  }

  .layout--auth-flow .fc-auth-page__promo-profile-meta,
  .layout--auth-flow .fc-auth-page__promo-profile-sub {
    font-size: 0.65rem;
  }

  .layout--auth-flow .fc-auth-page__promo-hero-tagline {
    font-size: clamp(0.9rem, 1.4vw, 0.98rem);
    margin-bottom: 8px;
  }

  .layout--auth-flow .fc-auth-page__promo-mock-headline {
    font-size: 1.28rem;
  }

  .layout--auth-flow .fc-auth-page__promo-foot {
    margin-top: 8px;
    font-size: 0.76rem;
  }

  .layout--auth-flow .fc-auth-page__brand-lockup {
    margin-bottom: 22px;
    padding-top: 8px;
  }

  .layout--auth-flow .fc-auth-page__brand-logo {
    height: 46px;
  }

  .layout--auth-flow .fc-auth-page__card-head h1 {
    font-size: clamp(1.08rem, 2.3vw, 1.28rem);
  }

  .layout--auth-flow .fc-auth-page__card-sub {
    margin-bottom: 7px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .layout--auth-flow .fc-auth-page__segmented {
    margin-bottom: 8px;
    padding: 3px;
    gap: 3px;
    border-radius: 12px;
  }

  .layout--auth-flow .fc-auth-page__segment {
    padding: 10px 12px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .layout--auth-flow .fc-auth-page__oauth {
    gap: 12px;
    margin-bottom: 0;
  }

  .layout--auth-flow .fc-auth-page__oauth-btn {
    min-height: 50px;
    padding: 12px 16px;
    font-size: 0.92rem;
    gap: 11px;
    border-radius: 12px;
  }

  .layout--auth-flow .fc-auth-page__divider {
    margin: 16px 0 12px;
    font-size: 0.72rem;
  }

  .layout--auth-flow .fc-auth-page__form + .fc-auth-page__divider {
    margin-top: 18px;
  }

  .layout--auth-flow .fc-auth-page__oauth + .fc-auth-page__divider {
    margin-top: 18px;
  }

  .layout--auth-flow .fc-auth-page__form {
    gap: 16px;
  }

  .layout--auth-flow .fc-auth-page__form .fc-field {
    gap: 6px;
  }

  .layout--auth-flow .fc-auth-page__form .fc-field span {
    font-size: 0.72rem;
  }

  .layout--auth-flow .fc-auth-page__form .fc-field input,
  .layout--auth-flow .fc-auth-page__form .fc-auth-location-input {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.94rem;
    border-radius: 11px;
  }

  .layout--auth-flow .fc-auth-page__submit {
    margin-top: 8px;
    min-height: 46px;
    padding: 11px 16px !important;
    font-size: 0.94rem !important;
    border-radius: 11px !important;
  }

  .layout--auth-flow .fc-auth-page__legal {
    margin-top: 16px;
    padding-top: 12px;
    font-size: 0.72rem;
  }

  .layout--auth-flow .fc-auth-page__err {
    padding: 6px 9px;
    font-size: 0.8rem;
  }

  .layout--auth-flow .fc-auth-page__card--signup .fc-auth-page__card-sub {
    margin-bottom: 6px;
    font-size: 0.78rem;
  }

  .layout--auth-flow .fc-auth-page__card--signup .fc-auth-page__segmented {
    margin-bottom: 6px;
  }

  .layout--auth-flow .fc-auth-page__card--signup .fc-auth-page__form {
    gap: 16px;
  }

  .layout--auth-flow .fc-auth-page__card--signin .fc-auth-page__form {
    gap: 18px;
  }

  .layout--auth-flow .fc-auth-page__card--signin .fc-auth-page__form .fc-field {
    gap: 8px;
  }

  .layout--auth-flow .fc-auth-page__card--signup .fc-auth-page__form-row--halves {
    gap: 10px;
  }

  .layout--auth-flow .fc-auth-page__card--signup .fc-auth-page__form .fc-field input,
  .layout--auth-flow .fc-auth-page__card--signup .fc-auth-page__form .fc-auth-location-input {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.92rem;
  }

  .layout--auth-flow .fc-auth-page__form .fc-auth-location-input {
    padding-right: 44px;
  }

  .layout--auth-flow .fc-auth-page__form .fc-auth-password-input {
    padding-right: 44px;
  }

  .layout--auth-flow .fc-auth-password-toggle {
    width: 36px;
    height: 36px;
    right: 4px;
    border-radius: 9px;
  }

  .layout--auth-flow .fc-auth-page .fc-phone-dial,
  .layout--auth-flow .fc-auth-page .fc-phone-national {
    min-height: 44px;
    font-size: 0.94rem;
  }

  .layout--auth-flow .fc-auth-page .fc-phone-dial {
    padding: 11px 10px;
  }

  .layout--auth-flow .fc-auth-page .fc-phone-national {
    padding: 11px 14px;
  }

  .layout--auth-flow .fc-auth-page__form-row--halves {
    gap: 4px;
  }

  .layout--auth-flow .footer {
    padding: 0.35rem var(--fc-page-gutter-x);
    font-size: 0.72rem;
  }
}

@media (max-width: 1024px) {
  .layout--auth-flow {
    min-height: 100dvh;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .layout--auth-flow .layout-main {
    overflow: visible;
  }

  .fc-auth-page {
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
    overflow-y: visible;
    background: var(--fc-bg);
  }

  html.fc-light .fc-auth-page {
    background: #ffffff;
  }

  .fc-auth-page__grid {
    grid-template-columns: 1fr;
    max-width: min(600px, 100%);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    gap: clamp(20px, 3vw, 28px);
    padding: clamp(8px, 1.5dvh, 16px) var(--fc-page-gutter-x) clamp(24px, 4dvh, 36px);
    flex: none;
    min-height: auto;
    max-height: none;
    overflow: visible;
  }

  .fc-auth-page__grid > * {
    min-width: 0;
  }

  /* Login form first, promo panel below on tablet and mobile. */
  .fc-auth-page__main {
    order: -1;
    padding-top: 0;
    overflow: visible;
    width: 100%;
    min-width: 0;
  }

  .fc-auth-page:not(.fc-auth-page--complete-profile) .fc-auth-page__main {
    overflow-y: visible;
  }

  .fc-auth-page__promo {
    order: 1;
    align-self: stretch;
    min-height: auto;
    overflow: visible;
    padding: clamp(16px, 2.5vw, 22px) clamp(16px, 3vw, 24px) clamp(14px, 2vw, 20px);
  }

  .fc-auth-page__promo--scene .fc-auth-page__promo-body {
    justify-content: flex-start;
    gap: clamp(16px, 2.5vw, 20px);
  }

  .fc-promo-deco {
    display: none;
  }

  .fc-auth-page--signup .fc-auth-page__card {
    padding: 12px 14px;
  }

  .fc-auth-page--signup .fc-auth-page__oauth-btn {
    min-height: 48px;
    padding: 11px 16px;
    font-size: 0.92rem;
  }

  .fc-auth-page--signup .fc-auth-page__card--signup .fc-auth-page__form {
    gap: 10px;
  }

  .fc-auth-page--signup .fc-auth-page__segmented {
    margin-bottom: 10px;
  }

  .fc-auth-page--signup .fc-auth-page__card-sub {
    margin-bottom: 10px;
    font-size: 0.8rem;
    line-height: 1.34;
  }

  .fc-auth-page--signup .fc-auth-page__card--signup .fc-auth-page__form .fc-field input,
  .fc-auth-page--signup .fc-auth-page__form .fc-auth-location-input {
    min-height: 46px;
    padding: 11px 13px;
    font-size: 0.93rem;
  }

  .fc-auth-page--signup .fc-auth-location-hint {
    font-size: 0.65rem;
    margin-bottom: 6px;
  }

}

@media (max-width: 900px) {
  .layout--auth-flow {
    min-height: 100dvh;
  }

  .fc-auth-page__grid {
    max-width: min(560px, 100%);
    padding-inline: var(--fc-page-gutter-x);
  }

  .fc-auth-page__promo-title {
    font-size: clamp(1.45rem, 5vw, 1.85rem);
    min-height: auto;
  }

  .fc-auth-page__promo--polished .fc-auth-page__promo-title,
  .fc-auth-page__promo--scene .fc-auth-page__promo-title {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .fc-auth-page__grid {
    max-width: 100%;
    gap: clamp(16px, 4vw, 24px);
    padding-bottom: clamp(20px, 5dvh, 32px);
  }

  .fc-auth-page__promo {
    border-radius: 18px;
    padding: clamp(14px, 4vw, 18px) clamp(14px, 4vw, 18px) clamp(12px, 3vw, 16px);
  }

  .fc-auth-page__promo-title {
    font-size: clamp(1.35rem, 6.5vw, 1.65rem);
    margin-bottom: 10px;
  }

  .fc-auth-page__promo-hero-tagline {
    font-size: clamp(0.92rem, 3.6vw, 1rem);
    margin-bottom: 10px;
  }

  .fc-auth-page__promo-hook {
    font-size: clamp(1rem, 4.2vw, 1.12rem);
  }

  .fc-auth-page__promo-lede {
    font-size: clamp(0.9rem, 3.6vw, 0.98rem);
  }

  .fc-auth-page__promo-lede-note {
    font-size: clamp(0.86rem, 3.2vw, 0.92rem);
  }

  .fc-auth-page__promo-feature-text {
    font-size: clamp(0.88rem, 3.4vw, 0.94rem);
  }
}

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

  .fc-promo-right-col {
    flex-direction: row;
    gap: 8px;
  }

  .fc-promo-card-v2--lb,
  .fc-promo-card-v2--cal {
    flex: 1;
    min-width: 0;
  }
}

.fc-auth-page__promo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  padding: clamp(14px, 2dvh, 24px) clamp(18px, 2.5vw, 26px) clamp(12px, 1.5dvh, 18px);
  min-height: auto;
  color: #f8fafc;
  background:
    radial-gradient(ellipse 70% 45% at 10% 8%, rgba(46, 230, 192, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 88% 88%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #16181c 0%, #0f1115 48%, #0a0c10 100%);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  position: relative;
  overflow: hidden;
}

.fc-auth-page__promo--polished::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.fc-auth-page__promo::after {
  content: '';
  position: absolute;
  width: 160%;
  height: 160%;
  right: -45%;
  top: -55%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.fc-auth-page__promo > * {
  position: relative;
  z-index: 1;
}

.fc-auth-page__promo-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: clamp(12px, 2dvh, 22px);
  min-height: 0;
}

.fc-auth-page__promo-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: rgba(126, 240, 200, 0.88);
}

.fc-auth-page__promo-title {
  font-family: var(--fc-display);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
  text-wrap: balance;
  min-height: 2.05em;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}

.fc-auth-page__promo--polished .fc-auth-page__promo-title {
  min-height: 1.85em;
}

.fc-auth-page__promo-title--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fc-auth-page__promo-title {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.fc-auth-page__promo-hero-tagline {
  margin: -4px 0 12px;
  font-size: clamp(0.98rem, 1.85vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.82);
}

.fc-auth-page__promo-copy-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 54ch;
}

.fc-auth-page__promo-hook {
  margin: 0;
  max-width: 48ch;
  font-family: var(--fc-display);
  font-size: clamp(1.08rem, 2.2vw, 1.24rem);
  font-weight: 700;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: pretty;
}

.fc-auth-page__promo-hook-accent {
  color: #7ef0c8;
  text-shadow: 0 0 32px rgba(126, 240, 200, 0.22);
}

.fc-auth-page__promo-lede {
  margin: 0;
  font-size: clamp(0.96rem, 1.75vw, 1.06rem);
  line-height: 1.58;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
  text-wrap: pretty;
}

.fc-auth-page__promo-lede-note {
  margin: 0;
  font-size: clamp(0.9rem, 1.5vw, 0.98rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  text-wrap: pretty;
}

.fc-auth-page__promo-legal {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.fc-auth-page__promo-legal-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1px;
  transition: color 120ms ease, border-color 120ms ease;
}

.fc-auth-page__promo-legal-link:hover,
.fc-auth-page__promo-legal-link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.fc-auth-page__promo-legal-sep {
  opacity: 0.55;
}

.fc-auth-page__promo-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  flex-wrap: wrap;
}

@media (max-width: 380px) {
  .fc-auth-page__promo-social {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fc-auth-page__promo-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 2px;
}

.fc-auth-page__promo-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid rgba(4, 20, 18, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.fc-auth-page__promo-avatar:first-child {
  margin-left: 0;
}

.fc-auth-page__promo-avatar--1 {
  background: linear-gradient(145deg, color-mix(in srgb, var(--fc-primary) 45%, #ffffff), var(--fc-primary-dim));
}
.fc-auth-page__promo-avatar--2 {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--fc-primary) 35%, #ffffff),
    var(--fc-primary-dim)
  );
}
.fc-auth-page__promo-avatar--3 {
  background: linear-gradient(145deg, #fde68a, #d97706);
}
.fc-auth-page__promo-avatar--4 {
  background: linear-gradient(145deg, #93c5fd, #2563eb);
}

.fc-auth-page__promo-social-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fc-auth-page__promo-social-line {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 253, 250, 0.95);
}

.fc-auth-page__promo-social-sub {
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(226, 252, 246, 0.72);
}

/* ── Auth promo: overlapping card scene (fills promo column) ── */
.fc-auth-page__promo--scene {
  display: flex;
  flex-direction: column;
}

.fc-auth-page__promo--scene .fc-auth-page__promo-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 20px);
  min-height: 0;
  justify-content: space-between;
}

.fc-auth-page__promo--scene .fc-auth-page__promo-kicker {
  margin-bottom: 4px;
}

.fc-auth-page__promo--scene .fc-auth-page__promo-title {
  margin-bottom: 8px;
  min-height: 1.75em;
}

.fc-auth-page__promo--scene .fc-auth-page__promo-copy-block {
  gap: 8px;
}

.fc-auth-page__promo-scene {
  position: relative;
  flex: 1 1 auto;
  min-height: 260px;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 20px 8px 8px;
  margin: 0;
}

.fc-auth-page__promo-scene-orb {
  display: none;
}
.fc-auth-page__promo-scene-orb--1 { display: none; }
.fc-auth-page__promo-scene-orb--2 { display: none; }

/* ── Floating cards (Dribbble-style) ─────────────────────── */

/* Decorative rings */
.fc-promo-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.fc-promo-ring--tl {
  width: 72px;
  height: 72px;
  top: -8px;
  left: -8px;
  border: 10px solid transparent;
  background:
    linear-gradient(#040507, #040507) padding-box,
    linear-gradient(135deg, rgba(46,230,192,0.5), rgba(46,230,192,0.05)) border-box;
}
.fc-promo-ring--br {
  width: 52px;
  height: 52px;
  bottom: 4px;
  right: 0;
  border: 8px solid transparent;
  background:
    linear-gradient(#040507, #040507) padding-box,
    linear-gradient(135deg, rgba(46,230,192,0.2), rgba(46,230,192,0.5)) border-box;
}

/* Base card */
.fc-promo-card {
  position: absolute;
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

/* ── Main prediction card ── */
.fc-promo-card--main {
  top: 0;
  left: 0;
  width: 63%;
  padding: 16px 18px 14px;
  background: linear-gradient(155deg, #0e2a1e 0%, #061610 100%);
  border: 1px solid rgba(46, 230, 192, 0.18);
  transform: rotate(-2deg);
  z-index: 2;
}
.fc-promo-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.fc-promo-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(46, 230, 192, 0.85);
}
.fc-promo-card__pill {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(46, 230, 192, 0.12);
  color: rgba(46, 230, 192, 0.9);
  border: 1px solid rgba(46, 230, 192, 0.25);
}
.fc-promo-card__body {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #f0f4f8;
  line-height: 1.35;
}
.fc-promo-card__metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.fc-promo-card__metric {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.fc-promo-card__metric strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.fc-promo-card__metric span {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.45);
}
.fc-promo-card__bar {
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 6px;
}
.fc-promo-card__bar-fill {
  height: 100%;
  width: 72%;
  border-radius: 99px;
  background: linear-gradient(90deg, #2ee6c0, #10b981);
}
.fc-promo-card__caption {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── Leaderboard card ── */
.fc-promo-card--board {
  top: 24px;
  right: 0;
  width: 44%;
  padding: 14px;
  background: #0d1a14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(1.5deg);
  z-index: 3;
}
.fc-promo-board__title {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.fc-promo-board__rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fc-promo-board__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}
.fc-promo-board__rank {
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  width: 12px;
}
.fc-promo-board__name {
  flex: 1;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.fc-promo-board__stat {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2ee6c0;
}
.fc-promo-board__row--you {
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(46, 230, 192, 0.08);
  margin: 0 -7px;
}
.fc-promo-board__you-chip {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(46, 230, 192, 0.2);
  color: #2ee6c0;
  border: 1px solid rgba(46, 230, 192, 0.35);
}

/* ── Calibration card (white, top-right) ── */
.fc-promo-card--cal {
  top: -14px;
  right: 2%;
  padding: 12px 16px;
  background: #ffffff;
  color: #0f1419;
  border: none;
  transform: rotate(2.5deg);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.3);
}
.fc-promo-cal__label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #536471;
}
.fc-promo-cal__val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f1419;
  line-height: 1;
}
.fc-promo-cal__chip {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: #dcfce7;
  color: #15803d;
  width: fit-content;
}

/* ── Social proof card (green, bottom-left) ── */
.fc-promo-card--social {
  bottom: -12px;
  left: 4%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #0f9f78 0%, #059669 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(-2deg);
  z-index: 5;
  min-width: 140px;
}
.fc-promo-social__title {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.fc-promo-social__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-promo-social__avs {
  display: flex;
  align-items: center;
}
.fc-promo-social__av {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  margin-left: -8px;
  background: rgba(255, 255, 255, 0.25);
}
.fc-promo-social__av:first-child {
  margin-left: 0;
  background: rgba(255, 255, 255, 0.4);
}
.fc-promo-social__av--2 {
  background: rgba(255, 255, 255, 0.3);
}
.fc-promo-social__count {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

/* Light mode overrides for promo cards */
html.fc-light .fc-promo-card--main {
  background: linear-gradient(155deg, #0e2a1e 0%, #061610 100%);
}
html.fc-light .fc-promo-card--board {
  background: #0d1a14;
}
html.fc-light .fc-promo-card--cal {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.12);
}

/* Showcase canvas — replaced by floating cards layout */
.fc-auth-page__promo-showcase {
  display: none;
}

.fc-auth-page__promo-sat {
  position: absolute;
  z-index: 4;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.fc-auth-page__promo-sat-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fc-auth-page__promo-sat--social {
  top: 0;
  left: 0;
  width: calc(50% - 5px);
  padding: 12px 14px;
  background: linear-gradient(145deg, #2dd4bf 0%, #059669 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.fc-auth-page__promo-sat--social .fc-auth-page__promo-sat-label {
  color: rgba(255, 255, 255, 0.95);
}

.fc-auth-page__promo-sat-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-auth-page__promo-showcase .fc-auth-page__promo-avatar {
  width: 34px;
  height: 34px;
  margin-left: -9px;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fc-auth-page__promo-showcase .fc-auth-page__promo-avatar:first-child {
  margin-left: 0;
}

.fc-auth-page__promo-showcase .fc-auth-page__promo-social-badge {
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #064e3b;
  background: #fff;
  border-radius: 999px;
}

.fc-auth-page__promo-sat--cal {
  top: 0;
  right: 0;
  width: calc(50% - 5px);
  padding: 12px 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #0f172a;
}

.fc-auth-page__promo-sat--cal .fc-auth-page__promo-sat-label {
  color: #64748b;
}

.fc-auth-page__promo-sat-value {
  display: block;
  font-family: var(--fc-display);
  font-size: clamp(1.6rem, 3.2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #047857;
}

.fc-auth-page__promo-sat-chip {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
}

.fc-auth-page__promo-forecast {
  position: absolute;
  z-index: 2;
  top: 58px;
  left: 0;
  right: 0;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 16px;
  border-radius: 20px;
  background: linear-gradient(160deg, #0d3d34 0%, #062822 50%, #041a17 100%);
  border: 1px solid rgba(94, 234, 212, 0.25);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  overflow: visible;
}

.fc-auth-page__promo-forecast-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.fc-auth-page__promo-forecast-date {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(240, 253, 250, 0.75);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-auth-page__promo-forecast-cat {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.85);
}

.fc-auth-page__promo-forecast-call {
  margin: 0 0 6px;
  font-family: var(--fc-display);
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.fc-auth-page__promo-forecast-text {
  margin: 0 0 14px;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(240, 253, 250, 0.88);
  max-width: 92%;
}

.fc-auth-page__promo-forecast-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.fc-auth-page__promo-forecast-metrics > div {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-auth-page__promo-forecast-metric-val {
  display: block;
  font-family: var(--fc-display);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.fc-auth-page__promo-forecast-metric-lbl {
  display: block;
  margin-top: 2px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.65);
}

.fc-auth-page__promo-forecast-bar {
  display: block;
  height: 8px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.fc-auth-page__promo-forecast-bar-fill {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: inherit;
  background: linear-gradient(90deg, #34d399, #10b981);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.4);
}

.fc-auth-page__promo-forecast-bar-caption {
  display: block;
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.55);
}

.fc-auth-page__promo-sat--board {
  bottom: 26px;
  right: 0;
  width: 54%;
  max-width: 196px;
  padding: 12px 14px;
  z-index: 5;
  background: rgba(6, 12, 10, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fc-auth-page__promo-sat--board .fc-auth-page__promo-sat-label {
  color: rgba(167, 243, 208, 0.75);
}

.fc-auth-page__promo-board-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fc-auth-page__promo-board-list li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.fc-auth-page__promo-board-rank {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(167, 243, 208, 0.5);
}

.fc-auth-page__promo-board-name {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(240, 253, 250, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-auth-page__promo-board-stat {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--fc-primary);
}

.fc-auth-page__promo-board-stat--you {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #022c22;
  background: var(--fc-primary);
}

.fc-auth-page__promo-scene-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  z-index: 6;
  margin: 0;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.fc-auth-page__promo--scene .fc-auth-page__promo-trust,
.fc-auth-page__promo--scene .fc-auth-page__promo-pills,
.fc-auth-page__promo--scene .fc-auth-page__promo-foot,
.fc-auth-page__promo--scene > .fc-auth-page__promo-body > .fc-auth-page__promo-tagline,
.fc-auth-page__promo-tagline--in-scene,
.fc-auth-page__promo-scene-stack,
.fc-auth-page__promo-scene-top,
.fc-auth-page__promo-scene-main,
.fc-auth-page__promo-card--ghost {
  display: none;
}

/* Stats strip */
.fc-auth-page__promo-stats-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.fc-auth-page__promo-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 16px;
}
.fc-auth-page__promo-stat-item:first-child {
  padding-left: 0;
}
.fc-auth-page__promo-stat-item:last-child {
  padding-right: 0;
}
.fc-auth-page__promo-stat-item--sep {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.fc-auth-page__promo-stat-val {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fc-auth-page__promo-stat-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Feature panel — matches about page hero */
.fc-auth-page__promo-feature-panel {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.fc-auth-page__promo-features-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.fc-auth-page__promo-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .fc-auth-page__promo-feature-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
  }
}
.fc-auth-page__promo-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.fc-auth-page__promo-feature-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  line-height: 1;
}
.fc-auth-page__promo-feature-text {
  font-size: clamp(0.9rem, 1.4vw, 0.96rem);
  font-weight: 600;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.94);
  padding-top: 3px;
}

/* Top copy grouping */
.fc-auth-page__promo-top-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: start;
}

.fc-auth-page__promo-top-main {
  min-width: 0;
}

.fc-auth-page__promo-top-gfx {
  position: relative;
  width: 92px;
  height: 118px;
  flex-shrink: 0;
  margin-top: 2px;
  pointer-events: none;
}

.fc-promo-gfx {
  position: absolute;
  display: block;
}

.fc-promo-gfx--chart {
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 44px;
  height: 34px;
  padding: 5px 6px;
  border-radius: 10px;
  background: rgba(46, 230, 192, 0.1);
  border: 1px solid rgba(46, 230, 192, 0.28);
  box-shadow: 0 6px 18px rgba(46, 230, 192, 0.12);
}

.fc-promo-gfx__bar {
  flex: 1;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #7ef0c8 0%, #2ee6c0 55%, #0d9f7a 100%);
  min-width: 5px;
}

.fc-promo-gfx__bar--1 { height: 38%; opacity: 0.55; }
.fc-promo-gfx__bar--2 { height: 62%; opacity: 0.72; }
.fc-promo-gfx__bar--3 { height: 48%; opacity: 0.65; }
.fc-promo-gfx__bar--4 { height: 88%; }

.fc-promo-gfx--spark {
  top: 2px;
  right: 2px;
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(126, 240, 200, 0.75);
  text-shadow: 0 0 18px rgba(46, 230, 192, 0.35);
  transform: rotate(12deg);
}

.fc-promo-gfx--lock-chip {
  top: 38px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 0.82rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.fc-promo-gfx--diamond {
  top: 52px;
  left: 6px;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.35) 0%, rgba(139, 92, 246, 0.12) 100%);
  border: 1.5px solid rgba(167, 139, 250, 0.45);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
}

.fc-promo-gfx--cert {
  bottom: 8px;
  left: 0;
  width: 28px;
  height: 34px;
  border-radius: 6px 6px 4px 4px;
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.28) 0%, rgba(217, 119, 6, 0.14) 100%);
  border: 1px solid rgba(251, 191, 36, 0.38);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
}

.fc-promo-gfx--cert::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 6px;
  right: 6px;
  height: 2px;
  border-radius: 99px;
  background: rgba(253, 230, 138, 0.55);
  box-shadow:
    0 5px 0 rgba(253, 230, 138, 0.35),
    0 10px 0 rgba(253, 230, 138, 0.22);
}

.fc-promo-gfx--cert::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(225deg, transparent 50%, rgba(251, 191, 36, 0.45) 50%);
  border-bottom-right-radius: 4px;
}

.fc-promo-gfx--trend {
  bottom: 14px;
  right: 0;
  width: 46px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.fc-promo-gfx--trend::before {
  content: '';
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 36px;
  height: 18px;
  background: linear-gradient(90deg, #0d9f7a 0%, #2ee6c0 100%);
  clip-path: polygon(0 100%, 0 68%, 22% 58%, 48% 64%, 72% 30%, 100% 12%, 100% 100%);
  opacity: 0.9;
}

.fc-promo-gfx--trend::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #7ef0c8;
  border-right: 2px solid #7ef0c8;
  transform: rotate(-15deg);
}

@media (max-width: 640px) {
  .fc-auth-page__promo-top-gfx {
    width: 72px;
    height: 96px;
    opacity: 0.82;
  }

  .fc-promo-gfx--chart {
    width: 36px;
    height: 28px;
    padding: 4px 5px;
  }

  .fc-promo-gfx--trend {
    width: 38px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .fc-auth-page__promo-top-copy {
    grid-template-columns: 1fr;
  }

  .fc-auth-page__promo-top-gfx {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .fc-promo-gfx--spark {
    animation: fc-promo-gfx-spark 4.5s ease-in-out infinite;
  }

  .fc-promo-gfx--diamond {
    animation: fc-promo-gfx-float 5s ease-in-out infinite;
  }
}

@keyframes fc-promo-gfx-spark {
  0%, 100% { opacity: 0.65; transform: rotate(12deg) scale(1); }
  50% { opacity: 1; transform: rotate(18deg) scale(1.08); }
}

@keyframes fc-promo-gfx-float {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-3px); }
}

/* ── Card showcase grid ── */

.fc-promo-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 8px;
  align-items: stretch;
}

.fc-promo-right-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-promo-card-v2 {
  border-radius: 18px;
}

/* Prediction card — emerald green */
.fc-promo-card-v2--pred {
  padding: 14px;
  background: linear-gradient(148deg, #047857 0%, #065f46 55%, #064e3b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(4, 120, 87, 0.35), 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Leaderboard card — deep indigo */
.fc-promo-card-v2--lb {
  flex: 1;
  padding: 11px;
  background: linear-gradient(148deg, #1e1040 0%, #2d1b69 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 12px 36px rgba(30, 16, 64, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Calibration card — amber */
.fc-promo-card-v2--cal {
  padding: 11px 13px;
  background: linear-gradient(148deg, #d97706 0%, #b45309 55%, #92400e 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  box-shadow: 0 12px 36px rgba(217, 119, 6, 0.38), 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Prediction card internals */
.fc-promo-card-v2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.fc-promo-card-v2__cat {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.fc-promo-card-v2__pill {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fc-promo-card-v2__body {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f0f4f8;
  line-height: 1.35;
}

.fc-promo-card-v2__metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 7px;
}

.fc-promo-card-v2__metric {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.fc-promo-card-v2__metric strong {
  font-size: 0.84rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.fc-promo-card-v2__metric span {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.45);
}

.fc-promo-card-v2__bar {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 4px;
}

.fc-promo-card-v2__bar-fill {
  height: 100%;
  width: 72%;
  border-radius: 99px;
  background: linear-gradient(90deg, #2ee6c0, #10b981);
}

.fc-promo-card-v2__caption {
  font-size: 0.57rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Leaderboard card internals (purple card) */
.fc-promo-lb__title {
  margin: 0 0 6px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.9);
}

.fc-promo-lb__rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fc-promo-lb__row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
}

.fc-promo-lb__rank {
  font-size: 0.64rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  width: 11px;
  flex-shrink: 0;
}

.fc-promo-lb__name {
  flex: 1;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.fc-promo-lb__stat {
  font-size: 0.74rem;
  font-weight: 700;
  color: #a78bfa;
}

.fc-promo-lb__row--you {
  padding: 3px 5px;
  border-radius: 8px;
  background: rgba(167, 139, 250, 0.15);
  margin: 0 -6px;
}

.fc-promo-lb__chip {
  font-size: 0.59rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  background: rgba(167, 139, 250, 0.25);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.4);
}

/* Calibration card internals (amber card) */
.fc-promo-cal__label {
  font-size: 0.59rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(254, 243, 199, 0.75);
}

.fc-promo-cal__val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fef9c3;
  line-height: 1;
}

.fc-promo-cal__chip {
  font-size: 0.63rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(251, 191, 36, 0.25);
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.35);
  width: fit-content;
}

/* Decorative rings at bottom */
.fc-promo-deco {
  position: relative;
  height: 48px;
  flex-shrink: 0;
  pointer-events: none;
}

.fc-promo-deco__ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
}

.fc-promo-deco__ring--1 {
  width: 64px;
  height: 64px;
  bottom: -8px;
  right: 16px;
  border-width: 8px;
  border-color: transparent;
  background:
    linear-gradient(#0a0c10, #0a0c10) padding-box,
    linear-gradient(135deg, rgba(46, 230, 192, 0.45), rgba(46, 230, 192, 0.05)) border-box;
}

.fc-promo-deco__ring--2 {
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 92px;
  border-width: 5px;
  border-color: transparent;
  background:
    linear-gradient(#0a0c10, #0a0c10) padding-box,
    linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(139, 92, 246, 0.05)) border-box;
}

/* Light mode overrides — keep cards vibrant on lighter panel bg */
html.fc-light .fc-auth-page__promo {
  background:
    radial-gradient(ellipse 70% 45% at 10% 8%, rgba(46, 230, 192, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 90% 50%, rgba(46, 230, 192, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #1e2838 0%, #182030 48%, #121820 100%);
}

/* Cards stay dark/vibrant in light mode too — panel is always dark */
/* Cards are always dark/vibrant regardless of light/dark mode */

@media (max-width: 640px) {
  .fc-auth-page__promo-showcase {
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .fc-auth-page__promo-sat,
  .fc-auth-page__promo-forecast {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
  }

  .fc-auth-page__promo-sat--social,
  .fc-auth-page__promo-sat--cal {
    width: 100%;
  }

  .fc-auth-page__promo-scene-foot {
    position: relative;
    bottom: auto;
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .fc-auth-page__promo-sat--social {
    animation: fc-auth-promo-rise 0.5s ease 0.05s both;
  }

  .fc-auth-page__promo-sat--cal {
    animation: fc-auth-promo-rise 0.5s ease 0.1s both;
  }

  .fc-auth-page__promo-forecast {
    animation: fc-auth-promo-rise 0.55s ease 0.15s both;
  }

  .fc-auth-page__promo-sat--board {
    animation: fc-auth-promo-rise 0.5s ease 0.22s both;
  }
}

.fc-auth-page__promo-mock {
  margin-bottom: 10px;
}

.fc-auth-page__promo-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 253, 250, 0.9);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-auth-page__promo-trust-pulse {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--fc-primary);
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.65);
}

@media (prefers-reduced-motion: no-preference) {
  .fc-auth-page__promo-trust-pulse {
    animation: fc-auth-trust-pulse 2s ease-in-out infinite;
  }

  .fc-auth-page__promo-mock-card--hero:not(.fc-auth-page__promo-float--hero) {
    animation: fc-auth-promo-rise 0.65s ease 0.05s both;
  }

  .fc-auth-page__promo-mock-side:not(.fc-auth-page__promo-float--board) {
    animation: fc-auth-promo-rise 0.65s ease 0.18s both;
  }

  .fc-auth-page__promo-pills li {
    animation: fc-auth-promo-rise 0.5s ease both;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fc-auth-page__promo--scene .fc-auth-page__promo-scene-stack {
    animation: none;
  }
}

@keyframes fc-auth-trust-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.88);
  }
}

@keyframes fc-auth-promo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes fc-auth-promo-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fc-auth-page__promo-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-auth-page__promo-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fc-auth-page__promo-pill-ic {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--fc-primary);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(94, 234, 212, 0.25);
}

.fc-auth-page__promo-pill-ic svg {
  width: 15px;
  height: 15px;
  display: block;
}

.fc-auth-page__promo-pill-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.fc-auth-page__promo-mock-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.fc-auth-page__promo--polished .fc-auth-page__promo-mock-grid {
  gap: 12px;
}

@media (max-width: 560px) {
  .fc-auth-page__promo-mock-grid {
    grid-template-columns: 1fr;
  }
}

.fc-auth-page__promo-mock-card {
  border-radius: 18px;
  padding: 14px 16px 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 16px 40px rgba(0, 0, 0, 0.25);
}

.fc-auth-page__promo--polished .fc-auth-page__promo-mock-card,
.fc-auth-page__promo--polished .fc-auth-page__promo-mock-side {
  background: rgba(8, 28, 24, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 48px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(94, 234, 212, 0.06);
}

.fc-auth-page__promo--polished .fc-auth-page__promo-mock-card--hero {
  padding: 16px 18px 18px;
}

.fc-auth-page__promo-mock-card--hero {
  position: relative;
  overflow: hidden;
}

.fc-auth-page__promo-mock-card--hero::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto 40%;
  height: 120%;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.fc-auth-page__promo-mock-top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.fc-auth-page__promo-mock-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #022c22;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--fc-primary) 35%, #ffffff) 0%,
    var(--fc-primary) 100%
  );
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.35);
}

.fc-auth-page__promo-mock-chip {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(240, 253, 250, 0.72);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fc-auth-page__promo-mock-eyebrow {
  position: relative;
  margin: 0 0 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.75);
}

.fc-auth-page__promo-mock-headline {
  position: relative;
  margin: 0 0 6px;
  font-family: var(--fc-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.fc-auth-page__promo--polished .fc-auth-page__promo-mock-headline {
  font-size: 1.65rem;
}

.fc-auth-page__promo-mock-meta {
  position: relative;
  margin: 0 0 14px;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(226, 252, 246, 0.72);
}

.fc-auth-page__promo-mock-meter {
  position: relative;
}

.fc-auth-page__promo-mock-meter-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(240, 253, 250, 0.65);
}

.fc-auth-page__promo-mock-meter-val {
  font-family: var(--fc-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fc-primary);
}

.fc-auth-page__promo-mock-meter-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.fc-auth-page__promo-mock-meter-fill {
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--fc-primary) 35%, #ffffff) 0%,
    var(--fc-primary) 55%,
    var(--fc-primary-dim) 100%
  );
  box-shadow: 0 0 18px rgba(94, 234, 212, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  .fc-auth-page__promo-mock-meter-fill {
    animation: fc-auth-mock-meter 2.8s ease-in-out infinite alternate;
  }
}

@keyframes fc-auth-mock-meter {
  from {
    width: 62%;
    opacity: 0.92;
  }
  to {
    width: 78%;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fc-auth-page__promo-mock-meter-fill {
    animation: none;
    width: 72%;
  }
}

.fc-auth-page__promo-mock-side {
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.fc-auth-page__promo-mock-side-title {
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 253, 250, 0.55);
}

.fc-auth-page__promo-mock-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-auth-page__promo-mock-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fc-auth-page__promo-mock-rank {
  font-family: var(--fc-display);
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(167, 243, 208, 0.85);
  text-align: center;
}

.fc-auth-page__promo-mock-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.88);
}

.fc-auth-page__promo-mock-stat {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  font-variant-numeric: tabular-nums;
}

.fc-auth-page__promo-mock-stat--accent {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
  color: #022c22;
  background: linear-gradient(180deg, #a7f3d0 0%, #34d399 100%);
}

.fc-auth-page__promo-profile {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  min-height: 0;
  margin-bottom: 14px;
  gap: 10px;
  padding: 12px 14px 14px;
  box-sizing: border-box;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-auth-page__promo-profile-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fc-auth-page__promo-profile-kicker {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.75);
}

.fc-auth-page__promo-profile-title {
  font-family: var(--fc-display);
  font-size: clamp(0.92rem, 1.9vw, 1.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

.fc-auth-page__promo-profile-lede {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(226, 252, 246, 0.72);
  max-width: none;
  text-wrap: pretty;
}

.fc-auth-page__promo-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.fc-auth-page__promo-profile-stat {
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.fc-auth-page__promo-profile-stat strong {
  display: block;
  font-family: var(--fc-display);
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.fc-auth-page__promo-profile-stat:nth-child(1) strong {
  color: var(--fc-primary);
}

.fc-auth-page__promo-profile-stat:nth-child(2) strong {
  color: #fb923c;
}

.fc-auth-page__promo-profile-stat:nth-child(3) strong {
  color: #facc15;
}

.fc-auth-page__promo-profile-stat span {
  display: block;
  margin-top: 2px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(240, 253, 250, 0.55);
}

.fc-auth-page__promo-profile-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 0;
}

@media (max-width: 400px) {
  .fc-auth-page__promo-profile-panels {
    grid-template-columns: 1fr;
  }
}

.fc-auth-page__promo-profile-panel {
  padding: 12px 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-auth-page__promo-profile-panel-cap {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.7);
  margin-bottom: 8px;
}

.fc-auth-page__promo-profile-points {
  display: block;
  font-family: var(--fc-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--fc-primary);
  letter-spacing: -0.03em;
}

.fc-auth-page__promo-profile-meta {
  margin: 6px 0 0;
  font-size: 0.72rem;
  color: rgba(226, 252, 246, 0.65);
  line-height: 1.35;
}

.fc-auth-page__promo-profile-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 8px;
}

.fc-auth-page__promo-profile-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--fc-primary) 35%, #ffffff),
    var(--fc-primary)
  );
  max-width: 100%;
}

.fc-auth-page__promo-profile-cal {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--fc-primary);
  letter-spacing: -0.02em;
}

.fc-auth-page__promo-profile-sub {
  margin: 6px 0 0;
  font-size: 0.68rem;
  color: rgba(226, 252, 246, 0.6);
  line-height: 1.35;
}

.fc-auth-page__promo-points {
  list-style: none;
  margin: 0;
  padding: 10px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-auth-page__promo-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fc-auth-page__promo-point-ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--fc-primary);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(94, 234, 212, 0.22);
  box-shadow: 0 0 24px rgba(94, 234, 212, 0.1);
}

.fc-auth-page__promo-point-ic svg {
  width: 22px;
  height: 22px;
  display: block;
}

.fc-auth-page__promo-point-txt {
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(240, 253, 250, 0.92);
  padding-top: 2px;
}

.fc-auth-page__promo-point-txt strong {
  font-weight: 800;
  color: #fff;
}

.fc-auth-page__promo-foot {
  margin-top: clamp(14px, 2vh, 22px);
  padding-top: 0;
  font-family: var(--fc-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  opacity: 0.55;
  color: rgba(255, 255, 255, 0.95);
}

.fc-auth-page__main {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: clamp(6px, 1.2dvh, 18px);
  min-height: auto;
  overflow: visible;
}

.fc-auth-page__signed-out-notice {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(46, 230, 192, 0.35);
  background: color-mix(in srgb, var(--fc-primary) 12%, var(--fc-surface));
}

.fc-auth-page__signed-out-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--fc-text);
}

.fc-auth-page__signed-out-dismiss {
  align-self: flex-start;
  padding-inline: 14px;
}

.fc-auth-page__check-email-notice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(46, 230, 192, 0.35);
  background: color-mix(in srgb, var(--fc-primary) 12%, var(--fc-surface));
}

.fc-auth-page__check-email-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--fc-text);
}

.fc-auth-page__check-email-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--fc-text);
}

.fc-auth-page__check-email-dismiss {
  align-self: flex-start;
  padding-inline: 14px;
}

.fc-auth-page__card {
  width: 100%;
  flex: 0 1 auto;
  min-height: auto;
  overflow-x: hidden;
  overflow-y: visible;
  border-radius: 20px;
  padding: clamp(14px, 2.5dvh, 22px) clamp(16px, 3vw, 24px);
  background: color-mix(in srgb, var(--fc-surface) 94%, transparent);
  border: 1px solid var(--fc-line-soft);
  box-shadow: var(--fc-shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 1025px) {
  /* After base .fc-auth-page__* rules so cascade wins: align card headline with promo title row */
  .fc-auth-page__main {
    justify-content: flex-start;
    padding-top: clamp(0px, 0.45dvh, 8px);
  }

  .fc-auth-page__card {
    padding: clamp(11px, 1.65dvh, 17px) clamp(16px, 3vw, 24px);
  }
}

html.fc-light .fc-auth-page__card {
  background: #ffffff;
  border-color: rgba(15, 20, 25, 0.07);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fc-auth-page__card--signin {
  border-radius: 22px;
}

html.fc-light .fc-auth-page__card--signin {
  box-shadow:
    0 22px 52px rgba(15, 20, 25, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

html:not(.fc-light) .fc-auth-page__card--signin {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.fc-auth-page__card--signin .fc-auth-page__form .fc-field input,
.fc-auth-page__card--signin .fc-auth-page__form .fc-auth-password-input {
  min-height: 54px;
  padding: 16px 17px;
  border-radius: 14px;
}

.fc-auth-page__card--signin .fc-auth-page__submit {
  min-height: 54px;
  border-radius: 14px !important;
}

.fc-auth-page__brand-lockup {
  margin: 0 0 28px;
  padding-top: 10px;
}

.fc-auth-page__brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

html:not(.fc-light) .fc-auth-page__brand-logo {
  filter: brightness(0) invert(1);
}

.fc-auth-page__card-head h1 {
  font-family: var(--fc-display);
  font-size: clamp(1.22rem, 2.8vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 4px;
  color: var(--fc-text);
}

.fc-auth-page__card-sub {
  margin: 0 0 12px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--fc-muted);
}

.fc-auth-page__segmented {
  display: flex;
  padding: 4px;
  gap: 4px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--fc-primary) 14%, var(--fc-elevated-2));
  border: 1px solid color-mix(in srgb, var(--fc-primary) 32%, var(--fc-line));
}

html.fc-light .fc-auth-page__segmented {
  /* Avoid --fc-elevated-2 (cool grey); stay on white + mint */
  background: color-mix(in srgb, var(--fc-primary) 11%, #ffffff);
  border-color: color-mix(in srgb, var(--fc-primary) 32%, var(--fc-line));
}

.fc-auth-page__segment {
  flex: 1;
  border: none;
  border-radius: 11px;
  padding: 11px 14px;
  font-family: var(--fc-font);
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--fc-muted);
  transition:
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s;
}

.fc-auth-page__segment:hover {
  color: var(--fc-text);
}

.fc-auth-page__segment--active {
  background: var(--fc-primary);
  color: #fff;
  box-shadow: 0 2px 16px color-mix(in srgb, var(--fc-primary) 45%, transparent);
}

html:not(.fc-light) .fc-auth-page__segment--active {
  color: #021210;
  box-shadow: 0 2px 18px rgba(46, 230, 192, 0.28);
}

@media (max-width: 1024px) {
  .fc-auth-page__card {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    max-height: none;
    flex: none;
  }
}

@media (max-width: 420px) {
  .fc-auth-page .fc-phone-dial {
    min-width: 96px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.9rem;
  }
}

.fc-auth-page__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.fc-auth-page__card--signin .fc-auth-page__form {
  gap: 18px;
}

.fc-auth-page__card--signin .fc-auth-page__form .fc-field {
  gap: 8px;
}

.fc-auth-page__req {
  color: #f87171;
  font-weight: 800;
  text-decoration: none;
  margin-left: 1px;
  border: 0;
}

html.fc-light .fc-auth-page__req {
  color: #dc2626;
}

.fc-auth-page__form-row--halves {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  min-width: 0;
}

@media (max-width: 520px) {
  .fc-auth-page__form-row--halves {
    grid-template-columns: 1fr;
  }
}

.fc-auth-page__card--signup .fc-auth-page__card-sub {
  margin-bottom: 12px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.fc-auth-page__card--signup .fc-auth-page__segmented {
  margin-bottom: 12px;
}

.fc-auth-page__card--signup .fc-auth-page__oauth {
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 0;
}

.fc-auth-page__card--signup .fc-auth-page__oauth-btn {
  min-height: 56px;
  padding: 14px 20px;
  font-size: 0.98rem;
}

.fc-auth-page__card--signup .fc-auth-page__divider {
  margin: 6px 0 2px;
}

.fc-auth-page__card--signup .fc-auth-page__form {
  gap: 14px;
}

.fc-auth-page__card--signup .fc-auth-page__form .fc-field {
  gap: 8px;
}

.fc-auth-page__card--signup .fc-auth-page__form-row--halves {
  gap: 12px;
}

.fc-auth-page__card--signup .fc-auth-page__form .fc-field input,
.fc-auth-page__card--signup .fc-auth-page__form .fc-auth-location-input {
  min-height: 48px;
  padding: 14px 16px;
  font-size: 1rem;
}

.fc-auth-page__card--signup .fc-auth-page__card-head h1 {
  margin-bottom: 2px;
}

.fc-auth-page__card--signup .fc-auth-page__submit {
  margin-top: 0;
  min-height: 50px;
  padding: 14px 20px !important;
  font-size: 1rem !important;
}

.fc-auth-page__card--signup .fc-auth-page__legal {
  margin-top: 8px;
  padding-top: 8px;
}

.fc-auth-page__card--signup .fc-auth-page__err {
  padding: 8px 10px;
  font-size: 0.84rem;
}

.fc-auth-page__form .fc-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fc-muted);
}

.fc-auth-page__card--signin .fc-auth-page__form {
  gap: 18px;
}

.fc-auth-page__card--signin .fc-auth-page__form .fc-field {
  gap: 8px;
}

.fc-auth-page__form .fc-field input,
.fc-auth-page__form .fc-field textarea,
.fc-auth-page__form .fc-auth-location-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 52px;
  padding: 15px 16px;
  font-family: var(--fc-font);
  font-size: 1rem;
  line-height: 1.35;
  border-radius: 12px;
  background: var(--fc-elevated-2);
  border: 1px solid var(--fc-line);
  color: var(--fc-text);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.fc-auth-page__form .fc-field input:hover,
.fc-auth-page__form .fc-field textarea:hover,
.fc-auth-page__form .fc-auth-location-input:hover {
  border-color: color-mix(in srgb, var(--fc-primary) 35%, var(--fc-line));
}

.fc-auth-page__form .fc-field input:focus,
.fc-auth-page__form .fc-field textarea:focus,
.fc-auth-page__form .fc-auth-location-input:focus {
  outline: none;
  border-color: var(--fc-primary);
  box-shadow: 0 0 0 3px var(--fc-primary-glow);
}

html.fc-light .fc-auth-page__form .fc-field input,
html.fc-light .fc-auth-page__form .fc-field textarea,
html.fc-light .fc-auth-page__form .fc-auth-location-input {
  background: #fff;
}

.fc-auth-page .fc-phone-row:has(.fc-phone-dial-select) {
  overflow: visible;
}

.fc-auth-page .fc-phone-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid var(--fc-line);
  border-radius: 12px;
  background: var(--fc-elevated-2);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.fc-auth-page .fc-phone-row:hover {
  border-color: color-mix(in srgb, var(--fc-primary) 35%, var(--fc-line));
}

.fc-auth-page .fc-phone-row:focus-within {
  border-color: var(--fc-primary);
  box-shadow: 0 0 0 3px var(--fc-primary-glow);
}

html.fc-light .fc-auth-page .fc-phone-row {
  background: #fff;
}

/* Compound control: row owns border/radius; inner cells stay square */
.fc-auth-page__form .fc-field .fc-phone-row .fc-phone-national,
.fc-auth-page .fc-phone-row .fc-phone-national {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.fc-auth-page__form .fc-field .fc-phone-row .fc-phone-national:hover,
.fc-auth-page__form .fc-field .fc-phone-row .fc-phone-national:focus {
  border: none;
  box-shadow: none;
}

.fc-auth-page .fc-phone-row .fc-phone-dial,
.fc-auth-page .fc-phone-row .fc-phone-dial-select__trigger {
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--fc-line);
  box-shadow: none;
}

.fc-auth-page .fc-phone-row > .fc-phone-dial-select:first-child .fc-phone-dial-select__trigger,
.fc-auth-page .fc-phone-row > .fc-phone-dial:first-child {
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
}

.fc-auth-page .fc-phone-row > .fc-phone-national:last-child {
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
}

.fc-auth-page .fc-phone-dial {
  background: var(--fc-elevated);
  min-height: 48px;
  padding: 14px 12px;
  font-size: 1rem;
}

.fc-auth-page .fc-phone-national {
  min-height: 48px;
  padding: 14px 16px;
  font-size: 1rem;
}

/* Country picker (signup) */
.fc-country-select {
  position: relative;
  width: 100%;
}

.fc-country-select__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  min-height: 52px;
  padding: 15px 16px;
  font-family: var(--fc-font);
  font-size: 1rem;
  line-height: 1.35;
  border-radius: 12px;
  background: var(--fc-elevated-2);
  border: 1px solid var(--fc-line);
  color: var(--fc-text);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.fc-country-select__trigger:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--fc-primary) 45%, var(--fc-line));
}

.fc-country-select__trigger:focus-visible {
  outline: none;
  border-color: var(--fc-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--fc-primary) 22%, transparent);
}

.fc-country-select__trigger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.fc-country-select__flag {
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.fc-country-select__label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-country-select__placeholder {
  flex: 1;
  color: var(--fc-muted);
}

.fc-country-select__trigger .fc-phone-dial-select__chevron {
  margin-left: auto;
}

/* Searchable phone dial-code picker */
.fc-phone-dial-select {
  position: relative;
  flex-shrink: 0;
  min-width: 118px;
}

.fc-phone-dial-select__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  text-align: left;
}

.fc-phone-dial-select__trigger-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-phone-dial-select__chevron {
  flex-shrink: 0;
  font-size: 0.72rem;
  opacity: 0.65;
  line-height: 1;
}

.fc-phone-dial-select__panel {
  border-radius: 12px;
  border: 1px solid var(--fc-line);
  background: var(--fc-surface);
  box-shadow: var(--fc-shadow-card);
  overflow: hidden;
}

.fc-phone-dial-select__panel--floating {
  position: fixed;
}

html.fc-light .fc-phone-dial-select__panel {
  background: #ffffff;
  border-color: rgba(15, 20, 25, 0.1);
}

.fc-phone-dial-select__search {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid var(--fc-line-soft);
  background: var(--fc-elevated);
  color: var(--fc-text);
  font-family: var(--fc-font);
  font-size: 0.88rem;
}

html.fc-light .fc-phone-dial-select__search {
  background: #f8fafc;
}

.fc-phone-dial-select__search:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--fc-primary) 35%, transparent);
}

.fc-phone-dial-select__list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: min(280px, 42dvh);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.35) transparent;
}

.fc-phone-dial-select__empty {
  padding: 12px 14px;
  font-size: 0.84rem;
  color: var(--fc-muted);
}

.fc-phone-dial-select__option {
  display: grid;
  grid-template-columns: 1.4em minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--fc-text);
  font-family: var(--fc-font);
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
}

.fc-phone-dial-select__option:hover,
.fc-phone-dial-select__option--active {
  background: color-mix(in srgb, var(--fc-primary) 12%, transparent);
}

.fc-phone-dial-select__option-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-phone-dial-select__option-code {
  font-weight: 700;
  color: var(--fc-muted);
  font-variant-numeric: tabular-nums;
}

/* Sign-up city / region: typeahead + GPS (Photon API) */
.fc-auth-location-hint {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--fc-muted);
}

.fc-auth-location-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
}

.fc-auth-location-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.fc-auth-page__form .fc-auth-location-input {
  padding-right: 48px;
}

.fc-auth-location-gps {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--fc-muted);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.fc-auth-location-gps:hover:not(:disabled) {
  background: color-mix(in srgb, var(--fc-primary) 12%, transparent);
  color: var(--fc-primary);
}

.fc-auth-location-gps:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.fc-auth-location-gps-ic {
  display: block;
  flex-shrink: 0;
}

.fc-auth-location-gps-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--fc-primary) 35%, var(--fc-line));
  border-top-color: var(--fc-primary);
  border-radius: 50%;
  animation: fc-auth-loc-spin 0.65s linear infinite;
}

@keyframes fc-auth-loc-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Password fields: show / hide toggle */
.fc-auth-password-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.fc-auth-page__form .fc-auth-password-input {
  padding-right: 48px;
}

.fc-auth-password-toggle {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--fc-muted);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.fc-auth-password-toggle:hover {
  background: color-mix(in srgb, var(--fc-primary) 12%, transparent);
  color: var(--fc-primary);
}

.fc-auth-password-toggle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--fc-primary) 55%, transparent);
  outline-offset: 2px;
}

.fc-auth-password-toggle-svg {
  display: block;
  flex-shrink: 0;
}

.fc-password-reqs {
  margin: -0.35rem 0 0.75rem;
  padding: 0 0.15rem;
}

.fc-password-reqs__title {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  color: var(--fc-muted);
}

.fc-password-reqs__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fc-password-reqs__list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
}

.fc-password-reqs__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.fc-password-reqs__item--ok {
  color: var(--fc-primary);
}

.fc-password-reqs__item--ok .fc-password-reqs__icon {
  color: var(--fc-primary);
}

.fc-password-reqs__item--fail {
  color: var(--fc-muted);
}

.fc-password-reqs__item--fail .fc-password-reqs__icon {
  color: var(--fc-danger, #dc3545);
}

.fc-auth-location-status {
  margin: 6px 0 0;
  font-size: 0.76rem;
  color: var(--fc-muted);
}

.fc-auth-location-suggestions {
  list-style: none;
  margin: 6px 0 0;
  padding: 4px;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  max-height: 240px;
  overflow: auto;
  border-radius: 12px;
  background: var(--fc-surface);
  border: 1px solid var(--fc-line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

html.fc-light .fc-auth-location-suggestions {
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.fc-auth-location-suggestion {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: var(--fc-font);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: left;
  color: var(--fc-text);
  cursor: pointer;
  transition: background 0.12s;
}

.fc-auth-location-suggestion:hover {
  background: var(--fc-elevated-2);
}

.fc-auth-page__err {
  color: #f87171;
  font-size: 0.88rem;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
}
.fc-auth-page__oauth-hint {
  font-size: 0.82rem;
  color: var(--fc-muted);
  margin: 6px 0 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(46, 230, 192, 0.06);
  border: 1px solid rgba(46, 230, 192, 0.15);
  line-height: 1.45;
}
.fc-auth-page__submit {
  margin-top: 10px;
  min-height: 52px;
  padding: 15px 22px !important;
  border-radius: 13px !important;
  font-size: 1rem !important;
  box-shadow: 0 4px 18px color-mix(in srgb, var(--fc-primary) 35%, transparent);
}

html.fc-light .fc-auth-page__submit {
  color: #fff;
}

html:not(.fc-light) .fc-auth-page__submit {
  background: linear-gradient(135deg, var(--fc-primary) 0%, var(--fc-primary-dim) 100%);
  color: #021210;
  border: none;
  box-shadow: 0 4px 20px rgba(46, 230, 192, 0.32);
}

html:not(.fc-light) .fc-auth-page__submit:hover:not(:disabled) {
  filter: brightness(1.08);
  box-shadow: 0 6px 24px rgba(46, 230, 192, 0.4);
}

.fc-auth-page__submit:hover:not(:disabled) {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.fc-auth-page__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
  color: var(--fc-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.fc-auth-page__form + .fc-auth-page__divider {
  margin-top: 20px;
}

.fc-auth-page__divider + .fc-auth-page__oauth {
  margin-top: 2px;
}

.fc-auth-page__oauth + .fc-auth-page__divider {
  margin-top: 20px;
}

.fc-auth-page__divider::before,
.fc-auth-page__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--fc-line);
}

.fc-auth-page__divider--muted {
  margin: 20px 0 10px;
  opacity: 0.88;
}

.fc-auth-page__oauth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}

.fc-auth-page__oauth-btn {
  flex: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 22px;
  border-radius: 13px;
  font-family: var(--fc-font);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--fc-line);
  box-sizing: border-box;
  transition:
    filter 0.15s,
    box-shadow 0.15s,
    border-color 0.15s,
    opacity 0.15s;
}

.fc-auth-page__oauth-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.fc-auth-page__forgot-link {
  display: block;
  width: 100%;
  margin: 12px 0 0;
  padding: 4px 0;
  border: none;
  background: none;
  color: var(--fc-primary);
  font-family: var(--fc-font);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.fc-auth-page__forgot-link:hover:not(:disabled) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fc-auth-page__forgot-link:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.fc-auth-page__oauth-btn--google {
  background: #fff;
  color: #1f1f1f;
  border-color: color-mix(in srgb, var(--fc-line) 70%, transparent);
}

html:not(.fc-light) .fc-auth-page__oauth-btn--google {
  background: rgba(255, 255, 255, 0.96);
  color: #0f1419;
  border-color: rgba(255, 255, 255, 0.22);
}

.fc-auth-page__oauth-btn--google:hover:not(:disabled) {
  filter: brightness(1.03);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.fc-auth-page__oauth-btn--apple {
  background: #000;
  color: #fff;
  border-color: #1a1a1a;
}

html.fc-light .fc-auth-page__oauth-btn--apple {
  background: #000;
  color: #fff;
  border-color: #000;
}

html:not(.fc-light) .fc-auth-page__oauth-btn--apple {
  background: rgba(255, 255, 255, 0.94);
  color: #020617;
  border-color: rgba(255, 255, 255, 0.35);
}

.fc-auth-page__oauth-btn--apple:hover:not(:disabled) {
  filter: brightness(1.08);
}

.fc-auth-page__oauth-ic {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.fc-auth-page__oauth-ic svg {
  display: block;
  width: 24px;
  height: 24px;
}

.fc-auth-page__hint {
  margin: 0 0 12px;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--fc-muted);
  text-align: center;
}

.fc-auth-page__guest-btn {
  border-radius: 12px !important;
  min-height: 50px;
  padding: 14px 20px !important;
  font-size: 1rem !important;
}

.fc-auth-page__legal {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--fc-line-soft);
}

.fc-auth-page__legal-agree {
  margin: 18px 0 0;
  padding: 0 6px;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  color: var(--fc-muted);
}

.fc-auth-page__legal-agree-link {
  color: var(--fc-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fc-auth-page__legal-agree-link:hover {
  color: color-mix(in srgb, var(--fc-primary) 85%, var(--fc-text));
}

.fc-auth-page__account-switch {
  margin: 20px 0 0;
  text-align: center;
  font-family: var(--fc-font);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--fc-muted);
}

.fc-auth-page__account-switch-link {
  color: var(--fc-primary);
  font-weight: 700;
  text-decoration: none;
}

.fc-auth-page__account-switch-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fc-auth-page__legal .footer__legal,
.fc-auth-page__legal {
  font-size: 0.78rem;
}

/* Legacy class names kept as aliases for profile / other forms */
.fc-auth {
  display: contents;
}
.fc-auth__hero,
.fc-auth__modes,
.fc-auth__mode,
.fc-auth__mode--on,
.fc-auth__form,
.fc-auth__guest,
.fc-auth__footer,
.fc-auth__err {
  all: unset;
}
.fc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fc-field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fc-muted);
}
.fc-field input,
.fc-field textarea {
  font-family: var(--fc-font);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--fc-line);
  background: #0a0a0a;
  color: var(--fc-text);
}
.fc-field textarea {
  resize: vertical;
  min-height: 100px;
}

/* Create prediction — tags: Add (pill, beside input) */
.fc-tag-field-heading {
  margin: 0 0 8px;
}
.fc-tag-field .fc-tag-field-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fc-text);
}
.fc-tag-field .fc-tag-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fc-muted);
}
.fc-tag-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.fc-tag-row input[type='text'] {
  flex: 1;
  min-width: 0;
}
.fc-tag-field .fc-btn.fc-tag-add-btn {
  color: var(--fc-on-primary, #ffffff);
  flex-shrink: 0;
}
html.fc-light .fc-create-form .fc-field input,
html.fc-light .fc-create-form .fc-field textarea,
html.fc-light .fc-create-form .fc-tag-row input[type='text'] {
  background: #ffffff;
  color: var(--fc-text);
  border-color: var(--fc-line);
}
html.fc-light .fc-create-form .fc-field input::placeholder,
html.fc-light .fc-create-form .fc-field textarea::placeholder,
html.fc-light .fc-create-form .fc-tag-row input[type='text']::placeholder {
  color: color-mix(in srgb, var(--fc-muted) 88%, #ffffff 12%);
}
html.fc-light .fc-create-form .fc-field input[type='date'] {
  color-scheme: light;
}
/* Create form confidence slider — darker green when set; neutral until touched */
.fc-create-form__confidence-slider {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

.fc-create-form__confidence:not(.fc-create-form__confidence--set) .fc-create-form__confidence-slider {
  accent-color: var(--fc-muted);
}

.fc-create-form__confidence:not(.fc-create-form__confidence--set) .fc-create-form__confidence-slider::-webkit-slider-runnable-track {
  background: color-mix(in srgb, var(--fc-muted) 32%, var(--fc-line));
  height: 8px;
  border-radius: 999px;
}

.fc-create-form__confidence:not(.fc-create-form__confidence--set) .fc-create-form__confidence-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--fc-muted) 70%, var(--fc-elevated-2));
  border: 2px solid var(--fc-line);
  box-shadow: none;
}

.fc-create-form__confidence:not(.fc-create-form__confidence--set) .fc-create-form__confidence-slider::-moz-range-track {
  background: color-mix(in srgb, var(--fc-muted) 32%, var(--fc-line));
  height: 8px;
  border-radius: 999px;
}

.fc-create-form__confidence:not(.fc-create-form__confidence--set) .fc-create-form__confidence-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--fc-muted) 70%, var(--fc-elevated-2));
  border: 2px solid var(--fc-line);
  box-shadow: none;
}

.fc-create-form__confidence--set .fc-create-form__confidence-slider {
  accent-color: var(--fc-primary-dim);
}

.fc-create-form__confidence--set .fc-create-form__confidence-slider::-webkit-slider-runnable-track {
  background: color-mix(in srgb, var(--fc-primary-dim) 78%, #022c22);
  height: 8px;
  border-radius: 999px;
}

.fc-create-form__confidence--set .fc-create-form__confidence-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--fc-primary-dim);
  border: 2px solid color-mix(in srgb, var(--fc-primary-dim) 55%, #ffffff 45%);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--fc-primary-dim) 35%, transparent);
}

.fc-create-form__confidence--set .fc-create-form__confidence-slider::-moz-range-track {
  background: color-mix(in srgb, var(--fc-primary-dim) 78%, #022c22);
  height: 8px;
  border-radius: 999px;
}

.fc-create-form__confidence--set .fc-create-form__confidence-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fc-primary-dim);
  border: 2px solid color-mix(in srgb, var(--fc-primary-dim) 55%, #ffffff 45%);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--fc-primary-dim) 35%, transparent);
}

html.fc-light .fc-create-form__confidence:not(.fc-create-form__confidence--set) .fc-create-form__confidence-slider::-webkit-slider-runnable-track,
html.fc-light .fc-create-form__confidence:not(.fc-create-form__confidence--set) .fc-create-form__confidence-slider::-moz-range-track {
  background: color-mix(in srgb, var(--fc-muted) 22%, #e2e8f0);
}

html.fc-light .fc-create-form__confidence--set .fc-create-form__confidence-slider::-webkit-slider-runnable-track,
html.fc-light .fc-create-form__confidence--set .fc-create-form__confidence-slider::-moz-range-track {
  background: color-mix(in srgb, var(--fc-primary-dim) 82%, #064e3b);
}

html.fc-light .fc-create-form__confidence--set .fc-create-form__confidence-slider::-webkit-slider-thumb,
html.fc-light .fc-create-form__confidence--set .fc-create-form__confidence-slider::-moz-range-thumb {
  background: #007a5c;
  border-color: color-mix(in srgb, #007a5c 60%, #ffffff 40%);
}

.fc-phone-row:has(.fc-phone-dial-select) {
  overflow: visible;
}

.fc-phone-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 10px;
  border: 1px solid var(--fc-line);
  overflow: hidden;
  background: #0a0a0a;
}

.fc-field .fc-phone-row .fc-phone-national,
.fc-phone-row .fc-phone-national {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.fc-phone-row .fc-phone-dial,
.fc-phone-row .fc-phone-dial-select__trigger {
  border: none;
  border-radius: 0;
  border-right: 1px solid var(--fc-line);
  box-shadow: none;
}

.fc-phone-row > .fc-phone-dial-select:first-child .fc-phone-dial-select__trigger,
.fc-phone-row > .fc-phone-dial:first-child {
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
}

.fc-phone-row > .fc-phone-national:last-child {
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
}

.fc-phone-dial {
  flex-shrink: 0;
  min-width: 118px;
  padding: 12px 10px;
  border: none;
  border-right: 1px solid var(--fc-line);
  background: var(--fc-elevated);
  color: var(--fc-text);
  font-family: var(--fc-font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
.fc-phone-national {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: none;
  background: transparent;
  color: var(--fc-text);
  font-family: var(--fc-font);
  font-size: 1rem;
}
.fc-phone-national::placeholder {
  color: var(--fc-muted);
}
.fc-auth__err {
  color: #f87171;
  font-size: 0.9rem;
  margin: 0;
}
.fc-auth__guest {
  margin-top: 20px;
}
.fc-auth__footer {
  text-align: center;
  margin-top: 16px;
}
.fc-auth__footer a {
  color: var(--fc-muted);
}

.fc-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  padding-inline: var(--fc-app-gutter-x);
  font-family: var(--fc-font);
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--fc-bg);
  background-image: none;
  color: var(--fc-text);
}

/* Rail + timeline + widgets: centred block with balanced side margins when view > max width */
.fc-app__chrome {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: min(100%, var(--fc-app-max-inline));
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  margin-inline: auto;
}
.fc-app__rail {
  width: var(--fc-app-sidebar-w);
  flex-shrink: 0;
  min-height: 0;
  border-right: 1px solid var(--fc-line);
  padding: 22px clamp(16px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(8px);
  overflow-x: hidden;
}
.fc-app__nav-secondary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--fc-line-soft);
  flex-shrink: 0;
}

/* ── Rail collapse/expand ── */
.fc-app__rail {
  transition: width 0.22s ease, padding 0.22s ease;
}
.fc-app__rail--collapsed {
  width: 64px;
  padding-inline: 6px;
}
.fc-app__rail--collapsed .fc-app__navlink-label,
.fc-app__rail--collapsed .fc-app__navlink-row-text {
  display: none;
}
.fc-app__rail--collapsed .fc-app__navlink {
  justify-content: center;
  padding: 11px;
  margin: 0 2px;
}
.fc-app__rail--collapsed .fc-app__navlink--predict {
  padding: 11px;
}
.fc-app__rail--collapsed .fc-app__logo {
  justify-content: center;
}
.fc-app__rail--collapsed .fc-app__navlink.fc-app__navlink--row {
  position: relative;
  justify-content: center;
}
.fc-app__rail--collapsed .fc-app__nav-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  font-size: 0.6rem;
  padding: 0 3px;
}
.fc-app__rail-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 12px;
  margin-top: 10px;
  background: color-mix(in srgb, var(--fc-primary) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--fc-primary) 30%, transparent);
  border-radius: 10px;
  color: var(--fc-primary);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fc-app__rail-toggle:hover {
  background: color-mix(in srgb, var(--fc-primary) 18%, transparent);
  border-color: color-mix(in srgb, var(--fc-primary) 50%, transparent);
  color: var(--fc-primary);
}
.fc-app__rail-toggle-ico {
  font-size: 1rem;
  line-height: 1;
}
.fc-app__rail-toggle-label {
  font-size: 0.8rem;
  font-weight: 600;
}

.fc-app__nav .fc-app__signout {
  margin-top: 0;
}

.fc-app__nav .fc-app__signout-confirm {
  margin-top: 0;
}

.fc-app__navlink--button {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  box-shadow: none;
  font-family: var(--fc-font);
  font-size: 1.04rem;
  font-weight: inherit;
  padding: 11px 16px;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}
.fc-app__navlink--button:hover {
  background: rgba(255, 255, 255, 0.06);
}
html.fc-light .fc-app__navlink--button:hover {
  background: rgba(15, 20, 25, 0.05);
}

.fc-app__logo {
  display: flex;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 16px;
  outline-offset: 4px;
}

.fc-app__logo-img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.15s;
}

.fc-app__logo:hover .fc-app__logo-img {
  opacity: 0.85;
}
.fc-app__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.fc-app__navlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  margin: 0 8px;
  border-radius: 999px;
  color: var(--fc-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  transition: background 0.14s ease, transform 0.12s ease;
}
.fc-app__navlink-ico {
  display: inline-flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}
.fc-app__navlink-ico--avatar {
  opacity: 1;
  overflow: visible;
}
.fc-app__navlink-ico-svg {
  display: block;
  width: 20px;
  height: 20px;
}
.fc-app__navlink.fc-app__navlink--row .fc-app__navlink-row-text {
  flex: 1;
  min-width: 0;
}
.fc-app__navlink:hover {
  background: rgba(255, 255, 255, 0.06);
}
.fc-app__navlink--active {
  background: var(--fc-primary-glow);
  color: var(--fc-primary);
  box-shadow: 0 0 0 1px rgba(46, 230, 192, 0.25);
}
.fc-app__navlink--predict {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: stretch;
  box-sizing: border-box;
  text-align: center;
}
.fc-app__navlink--predict:not(.fc-app__navlink--active) {
  margin-top: 10px;
  background: var(--fc-primary);
  color: #fff;
  font-weight: 700;
}
html:not(.fc-light) .fc-app__navlink--predict:not(.fc-app__navlink--active) {
  color: #021210;
}
.fc-app__navlink--predict:not(.fc-app__navlink--active):hover {
  filter: brightness(1.06);
}
.fc-app__navlink--predict.fc-app__navlink--active {
  background: var(--fc-primary-glow);
  color: var(--fc-primary);
  box-shadow: 0 0 0 1px rgba(46, 230, 192, 0.25);
}
.fc-app__navlink.fc-app__navlink--row {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  align-self: stretch;
}
.fc-app__nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  background: var(--fc-primary);
  color: #fff;
  flex-shrink: 0;
}
html:not(.fc-light) .fc-app__nav-count {
  color: #021210;
}
.fc-app__signout {
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--fc-line);
  background: transparent;
  color: var(--fc-muted);
  font-family: var(--fc-font);
  font-weight: 600;
  cursor: pointer;
}
.fc-app__signout:hover {
  color: var(--fc-text);
}
.fc-app__signout-confirm {
  margin-top: auto;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--fc-line);
  background: var(--fc-elevated);
}
.fc-app__signout-confirm p {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--fc-muted);
  text-align: center;
}
.fc-app__main {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Timeline + widgets: flush columns (no centred max-width “moat”) */
.fc-app__main-inner {
  flex: 1;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  /* Rail alignment (--fc-app-nav-slot-count set inline per route). */
  --fc-app-rail-y: calc(22px + 1.62rem + 16px + 10px + 11px);
  --fc-app-feed-head-h: calc(env(safe-area-inset-top, 0px) + 23px + 40px);
  --fc-app-nav-row-step: calc(4px + 22px + 1.08rem);
  --fc-app-nav-slot-count: 0;
  --fc-app-chrome-head-h: 0px;
}

.fc-app__timeline {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  border: none;
  border-right: 1px solid var(--fc-line);
  background: var(--fc-bg);
  box-shadow: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 116, 139, 0.35) transparent;
}
.fc-app__timeline::-webkit-scrollbar {
  width: 6px;
}
.fc-app__timeline::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.35);
}
.fc-app__timeline::-webkit-scrollbar-track {
  background: transparent;
}

@media (min-width: 1025px) {
  /* Widgets rail owns sign-out; hide duplicate in timeline top bars (Foretold / Forecast). */
  .fc-app__timeline .fc-chrome-signout {
    display: none !important;
  }
}

.fc-app__widgets {
  flex: 1 1 264px;
  min-width: 0;
  max-width: 100%;
  padding: 14px 20px 32px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 116, 139, 0.35) transparent;
}
.fc-app__widgets::-webkit-scrollbar {
  width: 6px;
}
.fc-app__widgets::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.35);
}
.fc-app__widgets::-webkit-scrollbar-track {
  background: transparent;
}

.fc-app__widgets > * {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1025px) {
  /* Equal viewport gutters; chrome block centred as one unit */
  .fc-app {
    padding-inline: var(--fc-app-gutter-x);
    align-items: center;
  }

  .fc-app__chrome {
    width: min(100%, var(--fc-app-max-inline));
    margin-inline: auto;
  }

  .fc-app__main-inner {
    justify-content: stretch;
  }

  .fc-app__rail {
    padding-inline: clamp(14px, 1.6vw, 24px);
  }

  /* Use flex fractions + max-width (not 100vw) so the row fills centred chrome symmetrically */
  .fc-app__widgets {
    display: flex;
    flex: 0 0 var(--fc-app-widgets-w);
    min-width: 0;
    max-width: none;
    align-items: center;
    padding: 0 clamp(10px, 1.2vw, 14px) 40px;
    border-left: 1px solid var(--fc-line);
    background: color-mix(in srgb, var(--fc-elevated) 38%, var(--fc-bg));
    scrollbar-gutter: stable;
  }

  .fc-app__widgets > *,
  .fc-app__widgets-search-stack .fc-widget {
    width: 100%;
    max-width: var(--fc-app-widgets-inner-max);
    margin-inline: auto;
    box-sizing: border-box;
  }

  .fc-app__widgets .fc-widget {
    padding: 18px;
  }

  .fc-app__widgets-search-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }

  html.fc-light .fc-app__widgets {
    background: color-mix(in srgb, var(--fc-elevated) 96%, var(--fc-bg));
  }

  .fc-theme-toggle--topbar-fallback {
    display: none !important;
  }

  /* Same band as fc-feed-topbar (Foretold / Forecast): theme + label above People & search */
  .fc-app__widgets-theme-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: calc(10px + env(safe-area-inset-top, 0px)) 0 12px;
    border-bottom: 1px solid var(--fc-line-soft);
    background: color-mix(in srgb, var(--fc-bg) 82%, transparent);
    backdrop-filter: saturate(140%) blur(20px);
    -webkit-backdrop-filter: saturate(140%) blur(20px);
    box-sizing: border-box;
  }

  .fc-app__widgets-theme-row__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    width: 100%;
  }

  html.fc-light .fc-app__widgets-theme-row {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .fc-app__widgets-theme-hit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 4px 0 4px 12px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--fc-text);
    font-family: var(--fc-font);
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    cursor: pointer;
    transition:
      background 0.14s ease,
      color 0.14s ease;
  }

  .fc-app__widgets-theme-hit:hover {
    background: rgba(46, 230, 192, 0.1);
    color: var(--fc-primary);
  }

  html.fc-light .fc-app__widgets-theme-hit:hover {
    background: rgba(15, 155, 128, 0.12);
  }

  .fc-app__widgets-theme-glyphs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .fc-app__widgets-theme-hit:focus-visible {
    outline: 2px solid var(--fc-primary);
    outline-offset: 2px;
  }

  .fc-app__widgets > .fc-app__widgets-legal,
  .fc-app__widgets > .fc-legal-doc-block.fc-app__widgets-legal {
    align-items: center;
    text-align: center;
  }

  .fc-app__widgets > .fc-legal-doc-block.fc-app__widgets-legal .fc-legal-doc-links-row {
    justify-content: center;
  }

  /*
   * Widescreen alignment: spotlight / first timeline row vs sidebar “People & search”.
   * Theme strip height matches sticky top bar (--fc-app-feed-head-h intent); peel old 16px top pad.
   */
  .fc-app__main-inner .fc-app__widgets .fc-widget--find {
    margin-top: max(
      0px,
      calc(
        var(--fc-app-rail-y) - var(--fc-app-feed-head-h) - 2px +
          var(--fc-app-nav-slot-count) * var(--fc-app-nav-row-step)
      )
    );
  }

  /* Home feed spotlight stripe */
  .fc-app__main-inner--feed-home .fc-page--feed-tellshots .fc-feed-spotlight {
    margin-top: clamp(0px, calc(var(--fc-app-rail-y) - var(--fc-app-feed-head-h)), 56px);
  }

  /*
   * App pages below optional Forecast sticky bar — line up first column with active rail row + spotlight band.
   */
  .fc-app__timeline > .fc-page:not(.fc-page--feed-tellshots):not(.fc-page--center) {
    padding-top: calc(
      var(--fc-app-rail-y) - var(--fc-app-chrome-head-h, 0px) +
        var(--fc-app-nav-slot-count) * var(--fc-app-nav-row-step)
    );
    box-sizing: border-box;
  }

  .fc-app__timeline {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    width: auto;
    padding-inline: var(--fc-app-timeline-inset-x);
    box-sizing: border-box;
    border-right: 1px solid var(--fc-line-soft);
    background:
      radial-gradient(ellipse 80% 50% at 50% -20%, rgba(46, 230, 192, 0.035), transparent 55%),
      var(--fc-bg);
  }
}

@media (max-width: 1199px) {
  .fc-theme-toggle--widgets-rail-only {
    display: none !important;
  }

  .fc-theme-toggle--topbar-fallback {
    display: flex !important;
  }

  .fc-app__timeline {
    border-right: none;
  }

  .fc-app__timeline > .fc-page:not(.fc-page--feed-tellshots):not(.fc-page--center) {
    padding-top: calc(
      var(--fc-app-rail-y) - var(--fc-app-chrome-head-h, 0px) +
        var(--fc-app-nav-slot-count) * var(--fc-app-nav-row-step)
    );
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .fc-app__timeline {
    border-inline: none;
    box-shadow: none;
    background: transparent;
    overflow-y: visible;
  }

  .fc-app__main {
    align-items: stretch;
    overflow: visible;
  }

  .fc-app__main-inner {
    max-width: none;
  }
}

/* Right rail widgets (Discover sidebar — fills space like X / FB) */
.fc-widget {
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-radius-card);
  padding: 16px;
  box-shadow: none;
}
.fc-app__widgets .fc-widget {
  width: 100%;
}
.fc-widget--find {
  background: color-mix(in srgb, var(--fc-elevated) 96%, transparent);
  backdrop-filter: blur(12px);
}
.fc-widget__label {
  display: block;
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-muted);
}
.fc-widget__search-hit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid var(--fc-line);
  background: rgba(0, 0, 0, 0.25);
  color: var(--fc-muted);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.fc-widget__search-hit:hover {
  border-color: rgba(46, 230, 192, 0.4);
  color: var(--fc-text);
  background: rgba(46, 230, 192, 0.06);
}
.fc-widget__search-ico {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.fc-widget__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.fc-widget__title-row .fc-widget__title {
  margin: 0;
  flex: 1;
  min-width: 0;
}
.fc-widget__view-all {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--fc-primary);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.fc-widget__view-all:hover {
  background: rgba(46, 230, 192, 0.12);
}
html.fc-light .fc-widget__view-all:hover {
  background: rgba(13, 148, 136, 0.12);
}
.fc-widget__empty {
  margin: 0;
  color: var(--fc-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}
.fc-widget__people-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-widget__people-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-widget__person-main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
  padding: 6px 4px;
}
.fc-widget__person-main:hover {
  background: rgba(255, 255, 255, 0.04);
}
html.fc-light .fc-widget__person-main:hover {
  background: rgba(15, 23, 42, 0.04);
}
.fc-widget__person-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.fc-widget__person-name {
  min-width: 0;
}
.fc-widget__person-name strong {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}
.fc-widget__person-copy span {
  font-size: 0.76rem;
  color: var(--fc-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fc-widget__follow-btn {
  flex-shrink: 0;
  padding: 6px 12px;
  min-height: 32px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.fc-widget__title {
  margin: 0 0 14px;
  font-family: var(--fc-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.fc-widget__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-widget__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s ease;
}
.fc-widget__link:hover {
  background: rgba(255, 255, 255, 0.05);
}
.fc-widget__link strong {
  font-size: 1.08rem;
  font-weight: 700;
}
.fc-widget__link span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.42;
}

.fc-widget__link--action {
  width: 100%;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: transparent;
}

.fc-widget__link--with-icon {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.fc-widget__link__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.fc-premium-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-premium-icon--verified {
  background: rgba(5, 150, 105, 0.13);
}

.fc-premium-icon--adfree {
  background: rgba(124, 58, 237, 0.13);
  color: #7c3aed;
}

.fc-menu-page__glyph--custom-icon {
  padding: 0;
  background: transparent !important;
  color: inherit;
}

.fc-widget__trend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-widget__trend-chip {
  flex-shrink: 1;
  text-decoration: none;
}

.fc-legal-doc-link {
  color: var(--fc-muted);
  text-decoration: none;
  font-weight: 650;
}
.fc-legal-doc-link:hover {
  color: var(--fc-primary);
}
.fc-legal-doc-link:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.fc-legal-doc-link__ext {
  font-size: 0.78em;
  opacity: 0.55;
}
.fc-legal-doc-sep {
  color: var(--fc-muted);
  opacity: 0.55;
  font-weight: 500;
}

/* Magnifier used in feed / widget / global search — vector, larger than text glyph */
.fc-search-field-glyph {
  display: block;
  flex-shrink: 0;
  color: var(--fc-muted);
}
.fc-feed-search__link:hover .fc-search-field-glyph,
.fc-widget__search-hit:hover .fc-search-field-glyph {
  color: var(--fc-primary);
}

.fc-legal-doc-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.fc-legal-doc-links-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.fc-legal-doc-copy {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.45;
}

/* Below “This week” card (wide rail) and below main content (mobile) */
.fc-app__widgets-legal {
  font-size: 0.8125rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 10px 4px 0;
  color: var(--fc-muted);
}
.fc-legal-doc-block.fc-app__widgets-legal {
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
}

/* Mobile: sidebar legal hidden — show same docs after page content */
.fc-app__timeline-legal {
  display: none;
}
@media (max-width: 1024px) {
  .fc-app__timeline-legal {
    display: block;
    padding: 12px clamp(14px, 4vw, 28px) calc(28px + env(safe-area-inset-bottom));
    margin-top: 4px;
    border-top: 1px solid var(--fc-line-soft);
  }
  .fc-app__timeline-legal .fc-app__widgets-legal {
    padding-top: 0;
  }
}

.fc-app__tabbar {
  display: none;
}

@media (max-width: 1024px) {
  .fc-app {
    padding-inline: clamp(12px, 4vw, 28px);
  }
  .fc-app__rail {
    display: none;
  }
  .fc-app__main {
    padding-bottom: 64px;
  }
  .fc-app__tabbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid var(--fc-line);
    backdrop-filter: blur(12px);
    z-index: 20;
    justify-content: space-between;
    gap: 4px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  }
  .fc-app__tab {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--fc-muted);
    text-decoration: none;
    padding: 6px 8px;
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
    white-space: normal;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 10px;
    line-height: 1.08;
  }
  .fc-app__tab-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .fc-app__tab-ico-svg {
    width: 18px;
    height: 18px;
    display: block;
  }
  .fc-app__tab-label {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .fc-app__tab--active {
    color: var(--fc-primary);
    background: color-mix(in srgb, var(--fc-primary) 12%, transparent);
  }

  html.fc-light .fc-app__tabbar {
    background: #ffffff;
    border-top-color: var(--fc-line);
  }
}

@media (max-width: 1024px) {
  .fc-page--feed-tellshots .fc-feed-spotlight {
    display: none;
  }

  .fc-feed-topbar {
    padding: calc(10px + env(safe-area-inset-top, 0px)) 12px 10px;
    grid-template-columns: minmax(36px, 1fr) auto minmax(36px, 1fr);
  }

  /* Match login (marketing) header logo size at this breakpoint. */
  .fc-feed-topbar__brand-pill .fc-feed-topbar__brand-img,
  .fc-feed-topbar__brand-img {
    height: 52px;
  }

  .fc-marketing-header__brand-pill .fc-marketing-header__brand-img,
  .fc-marketing-header__brand-img {
    height: 52px;
  }

  .layout--auth-flow .fc-marketing-header__brand-pill .fc-marketing-header__brand-img,
  .layout--auth-flow .fc-marketing-header__brand-img {
    height: 44px;
  }

  .fc-feed-topbar__desktop-tools {
    display: none;
  }

  /* Compact search bar at medium breakpoint */
  .fc-global-search__input-shell {
    padding: 9px 12px;
    gap: 8px;
  }
  .fc-global-search__input {
    font-size: 0.9rem;
  }
  .fc-feed-search-wrap {
    padding: 8px 12px 10px;
  }
  .fc-feed-search__link-text {
    font-size: 0.9rem;
  }

  /* Compact Feed / Trends segmented control */
  .fc-feed-segment__slot {
    padding: 9px 10px;
    font-size: 0.85rem;
  }

  /* Logo pill: compact padding to match smaller logo height */
  .fc-feed-topbar__brand-pill {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.96);
  }


  .fc-feed-topbar__mobile-only {
    display: inline-flex;
  }

  /* Consistent mobile-like gutters + type scale across app pages. */
  .fc-app {
    padding-inline: 12px;
  }

  .fc-page {
    font-size: 0.95rem;
  }

  .fc-page__title {
    font-size: 1.22rem;
    margin-left: 12px;
    margin-right: 12px;
  }

  .fc-page__hint {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 0.95rem;
  }

  .fc-menu-page {
    padding-inline: 12px;
  }

  .fc-feed-predictions-head {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fc-feed-control-heading {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fc-feed-list.fc-feed-list--cards,
  .fc-feed-predictions-block > .fc-feed-list.fc-feed-list--cards {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Home feed only: hide tags on cards at responsive breakpoints. */
  .fc-page--feed-tellshots .fc-feed-card__tag-row {
    display: none;
  }

  /* Home feed only: a touch denser type than the rest of the app at this breakpoint. */
  .fc-page--feed-tellshots {
    font-size: 0.9rem;
  }

  .fc-page--feed-tellshots .fc-feed-segment__slot {
    font-size: 0.82rem;
  }

  .fc-page--feed-tellshots .fc-feed-card__body {
    font-size: 0.94rem;
    line-height: 1.45;
  }
}

@media (max-width: 768px) {
  /* Small-and-below: match mobile rhythm more closely. */
  .fc-app {
    padding-inline: 10px;
  }

  .fc-page {
    font-size: 0.92rem;
  }

  .fc-page__title {
    font-size: 1.12rem;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .fc-page__hint {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .fc-menu-page {
    padding-inline: 10px;
  }

  .fc-feed-topbar {
    padding: calc(8px + env(safe-area-inset-top, 0px)) 10px 8px;
  }

  /* Match login (marketing) header logo size at this breakpoint. */
  .fc-feed-topbar__brand-pill .fc-feed-topbar__brand-img,
  .fc-feed-topbar__brand-img {
    height: 46px;
  }

  .fc-marketing-header__brand-pill .fc-marketing-header__brand-img,
  .fc-marketing-header__brand-img {
    height: 46px;
  }

  .layout--auth-flow .fc-marketing-header__brand-pill .fc-marketing-header__brand-img,
  .layout--auth-flow .fc-marketing-header__brand-img {
    height: 40px;
  }

  /* Smaller search bar on small screens */
  .fc-global-search__input-shell {
    padding: 8px 10px;
    gap: 6px;
  }
  .fc-global-search__input {
    font-size: 0.85rem;
  }
  .fc-feed-search-wrap {
    padding: 6px 10px 8px;
  }
  .fc-feed-search__link-text {
    font-size: 0.85rem;
  }

  /* Smaller Feed / Trends tabs on small screens */
  .fc-feed-segment__slot {
    padding: 8px 8px;
    font-size: 0.8rem;
  }

  /* Logo pill: tighter padding for 34px logo */
  .fc-feed-topbar__brand-pill {
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.96);
  }

  .fc-feed-search-wrap,
  .fc-feed-scope-wrap,
  .fc-feed-predictions-head {
    margin-left: 0;
    margin-right: 0;
  }

  .fc-feed-control-heading {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.7rem;
  }

  .fc-feed-list.fc-feed-list--cards,
  .fc-feed-predictions-block > .fc-feed-list.fc-feed-list--cards {
    padding-left: 10px;
    padding-right: 10px;
    gap: 16px;
  }

  .fc-feed-card__body {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  /* Home feed only: a touch denser type than the rest of the app at this breakpoint. */
  .fc-page--feed-tellshots {
    font-size: 0.86rem;
  }

  .fc-page--feed-tellshots .fc-feed-segment__slot {
    font-size: 0.78rem;
  }

  .fc-page--feed-tellshots .fc-feed-card__body {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .fc-page--feed-tellshots .fc-feed-control-heading {
    font-size: 0.66rem;
  }
}

.fc-page {
  padding: 0 0 32px;
  max-width: 100%;
  font-size: 1rem;
  font-weight: 500;
}
.fc-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.fc-label-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .fc-label-desktop {
    display: none;
  }

  .fc-label-mobile {
    display: inline;
  }
}
.fc-page__hint {
  color: var(--fc-muted);
  line-height: 1.55;
  padding: 16px 16px 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
.fc-page__title {
  font-family: var(--fc-display);
  font-size: 1.38rem;
  font-weight: 800;
  margin: 20px 16px 12px;
  letter-spacing: -0.035em;
}
.fc-page__title--tight-top {
  margin-top: 6px;
}
.fc-page__head--thread {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.fc-thread__head-toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 8px;
  box-sizing: border-box;
}
.fc-thread__head-toolbar .fc-thread-back-btn {
  margin-top: 10px;
}
.fc-thread-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0 12px;
  padding: 5px 12px 5px 8px;
  border: none;
  background: none;
  border-radius: 20px;
  font-family: var(--fc-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fc-primary);
  cursor: pointer;
  transition: background 0.12s;
}
.fc-thread-back-btn:hover {
  background: var(--fc-primary-glow);
}
.fc-lb-gl-head .fc-page__title {
  margin-bottom: 6px;
}
.fc-hero--inapp {
  margin: 0;
}

.fc-chips {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  border-bottom: 1px solid var(--fc-line);
  background: var(--fc-bg);
}
.fc-chips--wrap {
  flex-wrap: wrap;
  overflow: visible;
}
.fc-chip {
  flex-shrink: 0;
  padding: 10px 17px;
  border-radius: 999px;
  border: 1px solid var(--fc-line);
  background: var(--fc-elevated);
  color: var(--fc-muted);
  font-family: var(--fc-font);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}
.fc-chip--on {
  border-color: var(--fc-primary);
  color: var(--fc-primary);
  background: rgba(0, 212, 168, 0.1);
}
.fc-chip--static {
  cursor: default;
  background: rgba(255, 255, 255, 0.06);
  border-color: transparent;
  color: var(--fc-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

/* —— Foretold home / feed —— */
.fc-page--feed-tellshots {
  padding-inline: 0;
  position: relative;
  min-width: 0;
  max-width: 100%;
  background:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(46, 230, 192, 0.07), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 40%, rgba(240, 180, 41, 0.05), transparent 45%),
    var(--fc-bg);
}

/* Feed top bar: inbox → notifications page */
.fc-feed-search-wrap {
  padding: 10px 18px 14px;
}
.fc-feed-search-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.fc-feed-search-row .fc-global-search__input-shell {
  flex: 1;
  min-width: 0;
}
.fc-feed-search-row .fc-feed-sort-pill--search {
  width: 50px;
  min-width: 50px;
  flex-shrink: 0;
  height: auto;
  align-self: stretch;
  min-height: 48px;
  border-radius: 999px;
  padding: 0;
}
/* Home feed: faux search links to /app/search — shell matches .fc-global-search__input-shell */
.fc-feed-search__link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.fc-feed-search__link:hover {
  border-color: var(--fc-primary);
  box-shadow: 0 0 0 3px rgba(46, 230, 192, 0.12);
}
html.fc-light .fc-feed-search__link:hover {
  border-color: color-mix(in srgb, var(--fc-primary) 50%, var(--fc-line));
  box-shadow: 0 0 0 3px var(--fc-primary-glow);
}
.fc-feed-search__link-text {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--fc-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Spotlight (replaces mock Avery panel) */
.fc-feed-spotlight {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 16px 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--fc-primary) 14%, var(--fc-elevated)) 0%, color-mix(in srgb, var(--fc-primary) 6%, var(--fc-elevated)) 100%);
  border: 1px solid color-mix(in srgb, var(--fc-primary) 30%, transparent);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18), 0 0 0 0px var(--fc-primary);
  backdrop-filter: blur(12px);
}
.fc-feed-spotlight__main {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  margin: -4px;
  padding: 4px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  transition: background 0.14s ease;
}
.fc-feed-spotlight__main:hover {
  background: color-mix(in srgb, var(--fc-primary) 07%, transparent);
}
.fc-feed-spotlight__main:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-feed-spotlight__avatar {
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(46, 230, 192, 0.15);
}
.fc-feed-spotlight__body {
  flex: 1;
  min-width: 0;
}
.fc-feed-spotlight__title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fc-feed-spotlight__name {
  font-family: var(--fc-display);
  font-weight: 800;
  font-size: 1.14rem;
  color: var(--fc-text);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.fc-feed-spotlight__main:hover .fc-feed-spotlight__name {
  color: var(--fc-primary);
}
/* ID verified badge next to spotlight name — use .fc-verified-badge */

.fc-verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 0;
}
.fc-verified-badge svg {
  display: block;
}
.fc-verified-badge--sm svg {
  width: 16px;
  height: 16px;
}
.fc-verified-badge--md svg {
  width: 18px;
  height: 18px;
}
.fc-premium-icon__verified-badge svg {
  width: 26px;
  height: 26px;
}
.fc-feed-spotlight__handle {
  margin: 2px 0 0;
  font-size: 0.95rem;
  color: var(--fc-muted);
  font-weight: 600;
}
.fc-feed-spotlight__stats-line {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: rgba(240, 244, 248, 0.82);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.fc-feed-spotlight__dot {
  color: var(--fc-muted);
  font-weight: 400;
}
.fc-feed-spotlight__rank-pill {
  flex-shrink: 0;
  min-width: 56px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.35);
  font-family: var(--fc-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--fc-gold);
  text-decoration: none;
  text-align: center;
  line-height: 1;
}
.fc-feed-spotlight__main:hover .fc-feed-spotlight__rank-pill {
  background: rgba(240, 180, 41, 0.2);
}
.fc-feed-spotlight__rank-hash {
  opacity: 0.75;
  font-size: 0.85rem;
}
.fc-feed-spotlight__muted {
  margin: 0;
  padding: 8px 4px;
  font-size: 0.88rem;
  color: var(--fc-muted);
  width: 100%;
  text-align: center;
}
.fc-feed-spotlight__guest-msg {
  flex: 1;
}
.fc-feed-spotlight__guest-title {
  margin: 0;
  font-family: var(--fc-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.fc-feed-spotlight__guest-sub {
  margin: 6px 0 0;
  font-size: 0.86rem;
  color: var(--fc-muted);
  line-height: 1.45;
}
.fc-feed-spotlight__guest-cta {
  flex-shrink: 0;
  white-space: nowrap;
}
.fc-feed-spotlight__shimmer {
  width: 100%;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: fc-feed-shimmer 1.2s ease-in-out infinite;
}
@keyframes fc-feed-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Visible headings above category rail & feed scope (web home) */
.fc-feed-control-heading {
  margin: 0;
  padding: 12px 18px 0;
  font-family: var(--fc-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-text);
}
.fc-feed-scope-wrap .fc-feed-control-heading {
  padding-bottom: 2px;
}

/* Category icon rail — scroll area must stay width-bound inside flex timelines (overflow + min-width chain) */
.fc-feed-cat-rail {
  border-bottom: 1px solid var(--fc-line);
  background: rgba(8, 10, 14, 0.5);
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
}
.fc-feed-cat-rail__scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.fc-feed-cat-rail__scroll--grabbing {
  cursor: grabbing;
  user-select: none;
}
.fc-feed-cat-rail__scroll--grabbing .fc-feed-cat {
  user-select: none;
}
.fc-feed-cat-rail__track {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 14px 16px;
  box-sizing: border-box;
}
@media (pointer: fine) {
  .fc-feed-cat-rail__scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.45) transparent;
  }
  .fc-feed-cat-rail__scroll::-webkit-scrollbar {
    height: 6px;
  }
  .fc-feed-cat-rail__scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.35);
  }
  .fc-feed-cat-rail__scroll::-webkit-scrollbar-track {
    background: transparent;
  }
}
@media (pointer: coarse) {
  .fc-feed-cat-rail__scroll {
    scrollbar-width: none;
  }
  .fc-feed-cat-rail__scroll::-webkit-scrollbar {
    display: none;
  }
}
.fc-feed-cat {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 80px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--fc-muted);
}
.fc-feed-cat__orb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cat-inactive-fill, #1e293b);
  border: 2px solid transparent;
  transition: transform 0.15s, border-color 0.15s, background 0.15s, color 0.15s;
}
.fc-feed-cat__glyph {
  display: block;
  flex-shrink: 0;
}
.fc-feed-cat:not(.fc-feed-cat--on) .fc-feed-cat__orb {
  color: #ffffff;
}
.fc-feed-cat--on .fc-feed-cat__orb {
  background: #ffffff;
  border-color: var(--fc-primary);
  color: var(--cat-accent, var(--fc-primary));
  transform: scale(1.04);
}
.fc-feed-cat--on.fc-feed-cat--all .fc-feed-cat__orb {
  color: #000000;
}
.fc-feed-cat__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fc-feed-cat--on .fc-feed-cat__label {
  color: var(--fc-primary);
}
.fc-feed-cat:not(.fc-feed-cat--on) .fc-feed-cat__label {
  color: var(--cat-accent);
}
.fc-feed-cat:not(.fc-feed-cat--on):hover .fc-feed-cat__orb {
  filter: brightness(1.08);
}

/* Scope segmented control */
.fc-feed-scope-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 10px 18px 14px;
}
.fc-feed-scope-wrap .fc-feed-segment {
  flex: 1;
  width: 100%;
}
.fc-feed-sort-pill {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--fc-line-soft);
  background: var(--fc-elevated);
  color: var(--fc-muted);
  cursor: pointer;
}
.fc-feed-sort-pill:hover {
  color: var(--fc-primary);
  border-color: rgba(46, 230, 192, 0.25);
}
.fc-feed-segment {
  flex: 1;
  display: flex;
  border-radius: 14px;
  padding: 4px;
  gap: 3px;
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line-soft);
}
.fc-feed-segment__slot {
  flex: 1;
  border: none;
  border-radius: 11px;
  padding: 12px 12px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--fc-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.fc-feed-segment__slot:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}
.fc-feed-segment__slot:not(:disabled):not(.fc-feed-segment__slot--on):hover {
  color: var(--fc-text);
}
.fc-feed-segment__slot--on {
  color: var(--fc-on-primary, #ffffff);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.fc-quick-tags.fc-quick-tags--v2 {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0 0 12px;
  border-top: none;
  border-bottom: 1px solid var(--fc-line-soft);
}
.fc-quick-tags--v2 {
  border-top: none;
  padding-top: 0;
  margin-bottom: 4px;
}
.fc-quick-tags__trend-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px 4px;
  min-width: 0;
}
.fc-quick-tags__trend-lead {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.fc-quick-tags__trend-lead .fc-quick-tags__fire {
  font-size: 1.1rem;
  line-height: 1;
}
.fc-quick-tags__trend-lead .fc-quick-tags__label {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-text);
}
.fc-quick-tags__hash {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px 6px;
  margin-right: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fc-muted);
  white-space: nowrap;
}
.fc-quick-tags__hash--on {
  color: var(--fc-primary);
}

/* Trending chips (home) — pill style aligned with feed card tags */
.fc-trend-chip {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--fc-primary) 22%, var(--fc-line));
  background: color-mix(in srgb, var(--fc-primary) 6%, var(--fc-elevated));
  color: var(--fc-muted);
  cursor: pointer;
  margin-right: 0;
  white-space: nowrap;
  transition:
    border-color 0.14s ease,
    background 0.14s ease,
    color 0.14s ease;
}
.fc-trend-chip:hover {
  border-color: color-mix(in srgb, var(--fc-primary) 42%, var(--fc-line));
  color: var(--fc-text);
  background: color-mix(in srgb, var(--fc-primary) 10%, var(--fc-elevated));
}
.fc-trend-chip--on {
  border-color: color-mix(in srgb, var(--fc-primary) 52%, transparent);
  background: color-mix(in srgb, var(--fc-primary) 16%, var(--fc-elevated));
  color: var(--fc-primary);
}
.fc-trend-chip--hot:not(.fc-trend-chip--on) {
  border-color: color-mix(in srgb, var(--fc-gold) 50%, var(--fc-line));
  background: color-mix(in srgb, var(--fc-gold) 14%, var(--fc-elevated));
  color: color-mix(in srgb, var(--fc-gold) 80%, #fff);
}
html.fc-light .fc-trend-chip--hot:not(.fc-trend-chip--on) {
  border-color: color-mix(in srgb, #d97706 30%, var(--fc-line));
  background: color-mix(in srgb, var(--fc-gold) 22%, #fffbeb);
  color: #92400e;
}
.fc-quick-tags.fc-quick-tags--v2 .fc-quick-tags__scroll--trend {
  display: flex;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px;
  scrollbar-width: thin;
}
.fc-feed-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
}
.fc-feed-more__label {
  font-size: 0.82rem;
  color: var(--fc-muted);
  font-weight: 600;
}
.fc-empty--feed-end {
  text-align: center;
  opacity: 0.85;
  padding-bottom: 12px !important;
}
.fc-feed-back-top {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}
.fc-feed-back-top--floating {
  position: fixed;
  z-index: 25;
  left: var(--fc-feed-back-top-x, 50%);
  bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.fc-feed-back-top--floating.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.fc-feed-back-top--floating .fc-feed-back-top-btn {
  pointer-events: auto;
  box-shadow: 0 8px 24px rgba(46, 230, 192, 0.35);
}
html.fc-light .fc-feed-back-top--floating .fc-feed-back-top-btn {
  box-shadow: 0 8px 22px rgba(0, 166, 126, 0.32);
}
@media (min-width: 1025px) {
  .fc-feed-back-top--floating {
    bottom: 28px;
  }
}
.fc-feed-back-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border: none;
  background: var(--fc-primary);
  border-radius: 24px;
  font-family: var(--fc-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fc-on-primary);
  cursor: pointer;
  transition: background 0.14s ease, box-shadow 0.14s ease, transform 0.14s ease;
}
.fc-feed-back-top-btn svg {
  stroke: var(--fc-on-primary);
}
.fc-feed-back-top-btn:hover {
  background: var(--fc-primary-dim);
  box-shadow: 0 6px 20px rgba(46, 230, 192, 0.35);
}
html.fc-light .fc-feed-back-top-btn:hover {
  background: var(--fc-primary-dim);
}

/* FAB — hidden on desktop where sidebar has Predict */
.fc-feed-fab {
  display: none;
  position: fixed;
  bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  right: max(16px, env(safe-area-inset-right, 16px));
  width: 56px;
  height: 56px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--fc-primary), #17b897);
  color: #04221c;
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  box-shadow:
    0 8px 28px rgba(46, 230, 192, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  z-index: 24;
  transition: transform 0.15s, box-shadow 0.15s;
}
.fc-feed-fab:hover {
  transform: scale(1.06);
  box-shadow:
    0 12px 36px rgba(46, 230, 192, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
@media (max-width: 1024px) {
  .fc-feed-fab {
  display: flex;
  }
}
.fc-feed-topbar {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  column-gap: 8px;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 14px 12px;
  border-bottom: 1px solid var(--fc-line-soft);
  background: color-mix(in srgb, var(--fc-bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.fc-feed-topbar__lead {
  grid-column: 1;
  min-width: 40px;
  min-height: 40px;
  justify-self: start;
}
.fc-feed-topbar__brand {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}
.fc-feed-topbar__brand--link {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.fc-feed-topbar__brand-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 6px 14px;
  transition: opacity 0.15s;
}
.fc-feed-topbar__brand--link:hover .fc-feed-topbar__brand-pill {
  opacity: 0.85;
}
.fc-feed-topbar__brand-img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}
.fc-feed-topbar__end {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.fc-feed-topbar__desktop-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fc-feed-topbar__mobile-only {
  display: none;
}
@media (min-width: 1025px) {
  .fc-feed-topbar__mobile-only {
    display: none !important;
  }

  .fc-feed-topbar__desktop-tools {
    display: inline-flex !important;
  }
}
@media (max-width: 1024px) {
  .fc-feed-topbar__desktop-tools {
    display: none !important;
  }

  .fc-feed-topbar__mobile-only {
    display: inline-flex;
  }
}
.fc-feed-topbar__notif-btn {
  position: relative;
  color: #c9a227;
}
.fc-feed-topbar__notif-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--fc-primary);
  color: #000;
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 0 0 2px var(--fc-surface);
}
.fc-feed-topbar__toolbar {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.fc-feed-topbar__toolbar--end {
  justify-content: flex-end;
}
.fc-feed-topbar__tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--fc-text);
  cursor: pointer;
  font-size: 1.08rem;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.14s ease,
    color 0.14s ease;
}
.fc-feed-topbar__tool:hover {
  background: rgba(46, 230, 192, 0.1);
}
html.fc-light .fc-feed-topbar__tool:hover {
  background: rgba(15, 155, 128, 0.12);
}
.fc-feed-topbar__tool-glyph {
  display: inline-block;
}
.fc-theme-glyph {
  display: block;
  flex-shrink: 0;
}
.fc-feed-topbar__tool:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-feed-topbar__icon {
  background: transparent;
  border: none;
  color: var(--fc-text);
  cursor: pointer;
  padding: 4px;
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: none;
}
.fc-feed-topbar__icon:hover {
  opacity: 0.85;
}
.fc-feed-topbar__text-link {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--fc-primary);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 10px;
  letter-spacing: 0.02em;
}
.fc-feed-topbar__text-link:hover {
  background: rgba(46, 230, 192, 0.12);
}

/* Notification inbox (bundled next to header search — full screen destination) */
.fc-feed-notif {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fc-feed-notif__inbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  margin: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--fc-text);
  text-decoration: none;
  font-size: 1.12rem;
  line-height: 1;
  transition:
    background 0.14s ease,
    color 0.14s ease;
}
.fc-feed-notif__inbox:hover {
  background: rgba(46, 230, 192, 0.1);
  color: var(--fc-primary);
}
html.fc-light .fc-feed-notif__inbox:hover {
  background: rgba(15, 155, 128, 0.12);
}
.fc-feed-notif__inbox--muted {
  opacity: 0.72;
}
.fc-feed-notif__inbox--muted:hover {
  opacity: 1;
}
.fc-feed-notif__inbox:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-feed-notif__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--fc-primary);
  color: #041f1b;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
  border: 1.5px solid var(--fc-bg);
  box-sizing: border-box;
}

.fc-chips.fc-chips--tellshots {
  border-bottom: none;
}
.fc-chip.fc-chip--tellshots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}
.fc-chip.fc-chip--tellshots-off {
  background: var(--fc-elevated);
  color: var(--fc-muted);
  border-color: transparent;
}
.fc-chip.fc-chip--tellshots-on {
  background: var(--fc-primary);
  color: #000;
  border-color: var(--fc-primary);
}
.fc-chip__glyph {
  font-size: 1.05rem;
}

.fc-scope-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 16px 10px;
}
.fc-scope-row__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fc-muted);
}
.fc-scope-row__pill {
  border: none;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--fc-elevated);
  color: var(--fc-muted);
}
.fc-scope-row__pill:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.fc-scope-row__pill--on {
  background: var(--fc-primary);
  color: #000;
}

.fc-scope-row .fc-sort-toggle {
  margin-left: 0;
}

.fc-banner {
  margin: 0 16px 10px;
  font-size: 0.85rem;
}
.fc-banner--error {
  color: #f87171;
  font-weight: 600;
}

.fc-quick-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-quick-tags__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fc-muted);
  flex-shrink: 0;
}
.fc-quick-tags__scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.fc-quick-tags__pill {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 16px;
  background: var(--fc-elevated);
  color: var(--fc-muted);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.fc-quick-tags__pill--on {
  background: var(--fc-primary);
  color: #000;
}
.fc-sort-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  padding: 10px 12px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 14px;
  border: none;
  background: var(--fc-elevated);
  color: var(--fc-muted);
  cursor: pointer;
  font-family: inherit;
}
.fc-sort-toggle__svg {
  flex-shrink: 0;
  opacity: 0.92;
}

.fc-feed-predictions-head-wrap {
  position: relative;
}
.fc-feed-predictions-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px 4px;
}
.fc-feed-predictions-head__actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.fc-feed-predictions-head__title {
  margin: 0;
  font-family: var(--fc-display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fc-text);
}
.fc-feed-predictions-head__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--fc-text);
  cursor: pointer;
  transition:
    background 0.14s ease,
    color 0.14s ease;
}
.fc-feed-predictions-head__action-btn {
  position: relative;
  width: auto;
  min-height: 40px;
  padding: 0 12px;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: color-mix(in srgb, var(--fc-elevated) 75%, transparent);
}
.fc-feed-predictions-head__btn-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.fc-feed-predictions-head__btn-state {
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #042f2e;
  background: var(--fc-primary);
}
.fc-feed-predictions-head__icon-btn:hover {
  background: rgba(46, 230, 192, 0.1);
  color: var(--fc-primary);
}
html.fc-light .fc-feed-predictions-head__icon-btn:hover {
  background: rgba(15, 155, 128, 0.12);
}
.fc-feed-predictions-head__icon-btn:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-feed-predictions-head__icon-btn--on {
  background: rgba(46, 230, 192, 0.14);
  color: var(--fc-primary);
  border-color: color-mix(in srgb, var(--fc-primary) 55%, rgba(148, 163, 184, 0.35));
}
html.fc-light .fc-feed-predictions-head__icon-btn--on {
  background: rgba(15, 155, 128, 0.16);
}
.fc-feed-predictions-head__icon-btn--active:not(.fc-feed-predictions-head__icon-btn--on) {
  box-shadow: 0 0 0 2px rgba(46, 230, 192, 0.35);
  border-color: color-mix(in srgb, var(--fc-primary) 50%, rgba(148, 163, 184, 0.35));
}
.fc-feed-predictions-head__applied-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--fc-primary);
}
html.fc-light .fc-feed-predictions-head__action-btn {
  background: color-mix(in srgb, var(--fc-elevated) 92%, #ffffff 8%);
  border-color: rgba(15, 23, 42, 0.14);
}

.fc-feed-predictions-filters {
  position: absolute;
  right: 18px;
  top: calc(100% + 8px);
  width: min(420px, calc(100vw - 36px));
  z-index: 12;
  padding: 14px 16px 16px;
  border-radius: 14px;
  border: 1px solid var(--fc-stroke, rgba(148, 163, 184, 0.22));
  background: #000;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.42);
}
.fc-feed-predictions-filters-backdrop {
  display: none;
}
.fc-feed-predictions-filters__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.fc-feed-predictions-filters__topbar-title {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--fc-text);
}
.fc-feed-predictions-filters__close {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: transparent;
  color: var(--fc-text-muted, #94a3b8);
  border-radius: 999px;
  padding: 5px 10px;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}
.fc-feed-predictions-filters__close:hover {
  border-color: var(--fc-primary);
  color: var(--fc-primary);
}
html.fc-light .fc-feed-predictions-filters {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
}
.fc-feed-predictions-filters__section + .fc-feed-predictions-filters__section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}
.fc-feed-predictions-filters__label {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-text-muted, #94a3b8);
}
.fc-feed-predictions-filters__hint {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--fc-text-muted, #94a3b8);
}
.fc-feed-predictions-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fc-feed-status-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: transparent;
  color: var(--fc-text);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease;
}
.fc-feed-status-chip:hover {
  border-color: var(--fc-primary);
  color: var(--fc-primary);
}
.fc-feed-status-chip--on {
  border-color: var(--fc-primary);
  background: rgba(46, 230, 192, 0.12);
  color: var(--fc-primary);
}
html.fc-light .fc-feed-status-chip--on {
  background: rgba(15, 155, 128, 0.12);
}
.fc-feed-status-chip:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-feed-predictions-filters__date-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.fc-feed-predictions-filters__date-field {
  display: grid;
  gap: 6px;
  min-width: 170px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fc-text-muted, #94a3b8);
}
.fc-feed-predictions-filters__date-input {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: var(--fc-surface, transparent);
  color: var(--fc-text);
  font-family: inherit;
  font-size: 0.92rem;
}
.fc-feed-predictions-filters__date-input:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-feed-predictions-filters__clear-date {
  padding: 7px 12px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.16);
  color: var(--fc-text);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.fc-feed-predictions-filters__clear-date:hover {
  background: rgba(46, 230, 192, 0.14);
  color: var(--fc-primary);
}
.fc-feed-predictions-filters__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}
.fc-feed-predictions-filters__clear-all {
  padding: 0;
  border: none;
  background: none;
  color: var(--fc-primary);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fc-feed-predictions-filters__clear-all:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: none;
}
.fc-feed-predictions-filters__clear-all:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-feed-predictions-filters__apply {
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  background: var(--fc-primary);
  color: #042f2e;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}
.fc-feed-predictions-filters__apply:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.fc-feed-predictions-filters__apply:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .fc-feed-predictions-filters-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 64;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(2, 6, 23, 0.52);
    cursor: pointer;
  }

  .fc-feed-predictions-filters {
    position: fixed;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: min(760px, calc(100vw - 20px));
    max-width: none;
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    z-index: 65;
    padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    border-left: 1px solid var(--fc-stroke, rgba(148, 163, 184, 0.22));
    border-right: 1px solid var(--fc-stroke, rgba(148, 163, 184, 0.22));
    border-bottom: none;
    box-shadow: 0 -16px 40px rgba(2, 6, 23, 0.5);
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  .fc-feed-predictions-filters {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-height: calc(100dvh - 8px);
    border-left: none;
    border-right: none;
  }
}

.fc-feed-predictions-block {
  margin: 0;
}
.fc-feed-list.fc-feed-list--cards {
  padding: 16px 18px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.fc-feed-predictions-block > .fc-feed-list.fc-feed-list--cards {
  padding: 10px 18px 32px;
}

.fc-feed-ad-shell {
  flex: 0 0 auto;
  margin: 0;
  min-height: 100px;
  border-radius: 16px;
  border: 1px solid var(--fc-line-soft);
  overflow: hidden;
  background: var(--fc-surface-elevated, rgba(15, 23, 42, 0.45));
  display: flex;
  align-items: center;
  justify-content: center;
}

html.fc-light .fc-feed-ad-shell {
  background: rgba(248, 250, 252, 0.98);
  border-color: rgba(15, 23, 42, 0.12);
}

.fc-adsense-infeed {
  width: 100%;
  min-height: 90px;
}

.fc-adsense-infeed--probe {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 0;
}

.fc-adsense-infeed--probe .fc-adsense-infeed {
  min-height: 0;
}

li.fc-adsense-infeed--probe-li {
  padding: 0;
  margin: 0;
  border: 0;
  min-height: 0;
  height: 0;
  overflow: hidden;
  list-style: none;
}

.fc-adsense-bottom {
  margin-top: 24px;
  padding: 12px 0 8px;
  border-top: 1px solid var(--fc-line-soft);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-adsense-bottom--probe {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 0;
}

.fc-adsense-bottom--probe .fc-adsense-bottom__unit {
  min-height: 0;
}

.fc-adsense-bottom__unit {
  display: block;
  width: 100%;
  min-height: 50px;
  text-align: center;
}

.fc-lb-page .fc-adsense-bottom {
  margin-top: 16px;
}

.fc-notifications .fc-adsense-bottom {
  margin-top: 20px;
}

.fc-profile-v2 .fc-adsense-bottom,
.fc-page.fc-profile-v2 .fc-adsense-bottom {
  margin-top: 28px;
}

.fc-menu-page .fc-adsense-bottom {
  margin-top: 20px;
  padding-bottom: 16px;
}

.fc-discover-row--ad {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 20px;
  border-bottom: 1px solid var(--fc-line-soft);
}

.fc-discover-row--ad .fc-adsense-infeed {
  width: 100%;
}

.fc-feed-card:not(.fc-feed-card--ghost) {
  position: relative;
  cursor: pointer;
}

.fc-feed-card__hit {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: auto;
  color: transparent;
  font-size: 0;
  text-decoration: none;
}

.fc-feed-card:not(.fc-feed-card--ghost) .fc-feed-card__inner {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.fc-feed-card__elevated-hit {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.fc-feed-card__hit:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 3px;
}

.fc-feed-card {
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--fc-primary) 16%, var(--fc-line-soft));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.15s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.fc-feed-card:not(.fc-feed-card--ghost):hover {
  border-color: rgba(46, 230, 192, 0.22);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(46, 230, 192, 0.07);
  transform: translateY(-1px);
}
.fc-feed-card--elevated {
  background: color-mix(in srgb, var(--fc-elevated) 88%, transparent);
}
.fc-feed-card--outlined {
  background: linear-gradient(165deg, rgba(28, 36, 48, 0.82), rgba(14, 16, 22, 0.55));
  border-color: color-mix(in srgb, var(--fc-primary) 18%, var(--fc-line-soft));
}
.fc-feed-card--ghost {
  pointer-events: none;
}
.fc-feed-card__inner {
  padding: 17px;
}
.fc-skeleton-row-inner__top {
  display: flex;
  gap: 12px;
}
.fc-skeleton-col {
  flex: 1;
  min-width: 0;
}

.fc-feed-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fc-feed-card__av-wrap {
  flex-shrink: 0;
}
.fc-feed-card__head-main {
  flex: 1;
  min-width: 0;
}
.fc-feed-card__head-status {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.fc-feed-card__name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.fc-feed-card__name {
  font-weight: 700;
  color: var(--fc-text);
  text-decoration: none;
  font-size: 1.12rem;
}
.fc-feed-card__name:hover {
  text-decoration: underline;
}
/* Feed card: verified badge uses .fc-verified-badge next to author name */
.fc-feed-meta.fc-feed-card__time {
  margin-left: auto;
}
.fc-feed-handle {
  margin: 2px 0 0;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--fc-muted);
}
.fc-feed-card__body-block {
  display: block;
  margin-top: 10px;
}
.fc-feed-card__body {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.53;
  color: var(--fc-text);
  letter-spacing: -0.019em;
}

.fc-feed-card__tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.fc-feed-card__tag-pill {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 168, 0.45);
  color: var(--fc-primary);
}
.fc-feed-card__engage {
  display: flex;
  gap: 22px;
  margin-top: 14px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--fc-muted);
}
.fc-feed-card__engage-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.fc-feed-card__react-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: default;
}
.fc-feed-card__react-btn:disabled {
  opacity: 0.75;
}
.fc-feed-card__react-btn:not(:disabled) {
  cursor: pointer;
}
.fc-feed-card__react-btn:not(:disabled):hover {
  color: var(--fc-text);
}
.fc-feed-card__react-btn--on-up {
  color: var(--fc-primary);
}
.fc-feed-card__react-btn--on-down {
  color: #fca5a5;
}
.fc-feed-card__ico {
  font-size: 1.02rem;
  opacity: 0.92;
}

.fc-feed-card__foot {
  margin-top: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.fc-feed-card__meta-chips {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.fc-feed-card__confidence {
  font-weight: 800;
  font-size: 0.89rem;
  padding: 7px 13px;
  border-radius: 18px;
  background: rgba(0, 212, 168, 0.12);
  color: var(--fc-primary);
}
.fc-feed-card__meta-chip {
  font-weight: 700;
  font-size: 0.84rem;
  padding: 7px 12px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--fc-primary) 32%, var(--fc-line-soft));
  background: color-mix(in srgb, var(--fc-primary) 10%, transparent);
  color: var(--fc-primary);
}
.fc-feed-card__meta-label {
  font-weight: 500;
  opacity: 0.7;
}
.fc-feed-card__status-inline {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}
.fc-feed-card__pts--penalty {
  margin-top: 0;
  margin-left: 0;
  color: var(--fc-status-error);
  font-size: 11px;
  font-weight: 700;
}
.fc-feed-card__status-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.fc-feed-card__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 16px;
  white-space: nowrap;
}
.fc-feed-card__status-icon {
  font-size: 14px;
  line-height: 1;
}
.fc-feed-card__status--pending {
  background: var(--fc-status-pending-bg);
  color: var(--fc-status-pending-fg);
  border: 1px solid var(--fc-status-pending-border);
}
.fc-feed-card__res-date {
  font-size: 0.79rem;
  color: var(--fc-muted);
  margin-top: 4px;
  font-weight: 600;
}
.fc-feed-card__status--ok {
  background: var(--fc-status-mint-bg);
  color: var(--fc-status-mint);
}
.fc-feed-card__pts {
  font-size: 11px;
  font-weight: 700;
  color: var(--fc-status-mint);
  margin-top: 4px;
}
.fc-feed-card__status--bad {
  background: var(--fc-status-error-bg);
  color: var(--fc-status-error);
}
.fc-feed-card__status--queued {
  background: var(--fc-status-gold-bg);
  color: var(--fc-status-gold);
}
.fc-feed-card__status--uq {
  background: var(--fc-status-gold-bg-muted);
  color: var(--fc-status-gold);
}

.fc-feed-list {
  padding-bottom: 24px;
}
.fc-feed-more {
  text-align: center;
  padding: 16px;
}

.fc-room-list {
  list-style: none;
  margin: 0;
  padding: 8px 16px 32px;
}
.fc-room-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: var(--fc-radius);
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line);
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}
.fc-room-card:hover {
  background: rgba(255, 255, 255, 0.04);
}
.fc-room-card__icon {
  font-size: 1.75rem;
  width: 48px;
  text-align: center;
}
.fc-room-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fc-room-card__title {
  font-weight: 700;
}
.fc-room-card__sub {
  font-size: 0.85rem;
  color: var(--fc-muted);
}
.fc-room-card__cred {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fc-primary);
}
.fc-room-card__chev {
  color: var(--fc-muted);
  font-size: 1.2rem;
}

.fc-discover-search {
  padding: 16px;
  border-bottom: 1px solid var(--fc-line);
}

/* My Activity page */
.fc-activity-page__tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--fc-line);
  margin: 0 0 4px;
}
.fc-activity-page__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 8px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fc-muted);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.fc-activity-page__tab:hover {
  color: var(--fc-text);
}
.fc-activity-page__tab.is-active {
  color: var(--fc-primary);
  border-bottom-color: var(--fc-primary);
}
.fc-activity-page__tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--fc-elevated);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--fc-muted);
}
.fc-activity-page__tab.is-active .fc-activity-page__tab-count {
  background: color-mix(in srgb, var(--fc-primary) 18%, transparent);
  color: var(--fc-primary);
}
.fc-activity-page__section {
  padding: 12px 0 48px;
}
.fc-activity-page__search {
  margin: 0 0 14px;
}

/* My Certificates — toolbar + feed-style cards (matches My Activity) */
.fc-certificates-page__head {
  padding-bottom: 4px;
}
.fc-certificates-page__subtitle {
  margin: 0 16px 0;
  padding: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--fc-muted);
  font-weight: 500;
}
.fc-certificates-page__toolbar {
  padding: 0 18px 8px;
  border-bottom: 1px solid var(--fc-line-soft);
  margin-bottom: 0;
}
.fc-certificates-page__toolbar .fc-activity-page__tabs {
  margin-left: -18px;
  margin-right: -18px;
  width: calc(100% + 36px);
}
.fc-certificates-page__search {
  margin: 14px 0 10px;
  display: block;
}
.fc-certificates-page__hint {
  margin: 0 0 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fc-muted);
}
.fc-certificates-page__list {
  padding-top: 18px;
  gap: 18px;
}
.fc-certificates-page__card {
  margin: 0;
}
.fc-certificates-page__card--clickable {
  cursor: pointer;
}
.fc-certificates-page__card--clickable:hover .fc-certificates-page__body,
.fc-certificates-page__card--clickable:focus-visible .fc-certificates-page__body {
  color: var(--fc-primary);
}
.fc-certificates-page__card--clickable:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-certificates-page__card-nav {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fc-certificates-page__card-nav-text {
  flex: 1;
  min-width: 0;
}
.fc-certificates-page__card-chevron {
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  color: var(--fc-primary);
}
.fc-certificates-page__body {
  margin: 0 0 8px;
}
.fc-certificates-page__meta {
  margin: 0;
  font-size: 0.82rem;
}
.fc-certificates-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--fc-line-soft);
}
.fc-certificates-page__actions .fc-pill,
.fc-certificates-page__actions .fc-certificates-page__status-pill {
  flex-shrink: 0;
  margin-left: 0;
}
.fc-certificates-page__actions .fc-certificates-page__status-pill {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: lowercase;
}
.fc-certificates-page__actions .fc-share-btn--cert-prominent-compact {
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 6px rgba(79, 70, 229, 0.28);
  line-height: 1.2;
}
.fc-certificates-page__share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--fc-primary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.fc-certificates-page__share-icon:hover {
  background: color-mix(in srgb, var(--fc-primary) 12%, transparent);
  color: var(--fc-primary);
}
.fc-certificates-page__share-icon:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-certificates-page__empty {
  padding: 40px 18px 48px;
  text-align: center;
}
html.fc-light .fc-certificates-page__card.fc-feed-card--outlined {
  background: var(--fc-surface);
  border-color: color-mix(in srgb, var(--fc-primary) 18%, var(--fc-line));
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.fc-discover-search .fc-feed-cat-rail {
  margin-top: 6px;
  margin-bottom: 4px;
}
.fc-discover-search .fc-discover-browse-scope {
  padding: 8px 0 6px;
  gap: 0;
}
.fc-discover-search .fc-feed-segment__slot {
  font-size: 0.95rem;
  padding: 14px 16px;
}

.fc-discover-input {
  font-family: var(--fc-font);
}
.fc-discover-search__input-shell {
  margin-bottom: 12px;
}
.fc-discover-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-discover-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-discover-main {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.fc-discover-name {
  font-weight: 700;
}
.fc-discover-name--with-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-weight: 700;
}
.fc-discover-handle {
  font-size: 0.88rem;
  color: var(--fc-muted);
}
.fc-discover-bio {
  font-size: 0.88rem;
  color: var(--fc-muted);
  margin: 6px 0 4px;
  line-height: 1.4;
}
.fc-discover-meta {
  font-size: 0.8rem;
  color: var(--fc-primary);
  font-weight: 600;
}

.fc-create-form {
  padding: 0 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fc-create-form .fc-field {
  gap: 10px;
}
.fc-create-form .fc-field > div > span:first-child,
.fc-create-form .fc-field > span:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fc-text);
  letter-spacing: -0.01em;
}
.fc-create-form textarea.fc-create-claim {
  min-height: 180px;
}
.fc-verify-strip {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.fc-verify-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
}
.fc-verify-strip--api {
  border: 1px solid rgba(0, 212, 168, 0.35);
  background: rgba(0, 212, 168, 0.08);
  color: var(--fc-text);
}
.fc-verify-strip--search {
  border: 1px solid rgba(0, 212, 168, 0.35);
  background: rgba(0, 212, 168, 0.08);
  color: var(--fc-text);
}
.fc-verify-strip--scheduled {
  border: 1px solid color-mix(in srgb, var(--fc-primary) 38%, var(--fc-line));
  background: color-mix(in srgb, var(--fc-primary) 10%, var(--fc-elevated));
  color: var(--fc-text);
  font-weight: 600;
}
.fc-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.fc-fieldset legend {
  font-weight: 700;
  margin-bottom: 8px;
}

.fc-page--center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}
.fc-success {
  text-align: center;
  padding: 32px;
  max-width: 360px;
}
.fc-success h2 {
  margin: 0 0 8px;
}

.fc-profile__page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 0;
}
.fc-profile__page-head .fc-page__title {
  margin: 0;
}
.fc-profile__page-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.fc-profile__page-actions .fc-btn {
  padding: 8px 12px;
  font-size: 0.82rem;
}
.fc-profile__about {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--fc-line);
}
.fc-profile__about-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-muted);
}
.fc-profile__about-text {
  margin: 0;
  line-height: 1.5;
  color: var(--fc-text);
  white-space: pre-wrap;
}
.fc-profile__about-placeholder {
  margin: 0;
  color: var(--fc-muted);
  font-style: italic;
}
.fc-profile__about-input {
  width: 100%;
  min-height: 96px;
  padding: 12px;
  border: 1px solid var(--fc-line);
  border-radius: 10px;
  background: var(--fc-elevated);
  color: var(--fc-text);
  font: inherit;
  line-height: 1.45;
  resize: vertical;
  box-sizing: border-box;
}
.fc-profile__about-input:focus {
  outline: none;
  border-color: var(--fc-primary);
}
.fc-profile__about-foot {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: var(--fc-muted);
  text-align: right;
}
.fc-profile__about-error {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: #dc2626;
}
.fc-profile__about-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}
.fc-profile__about-actions .fc-btn {
  flex: 1;
  max-width: 160px;
}

.fc-profile__hero {
  padding: 20px 16px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-profile__top {
  display: flex;
  gap: 16px;
  align-items: center;
}
.fc-profile__name {
  margin: 0;
  font-size: 1.25rem;
}
.fc-profile__handle {
  margin: 4px 0 0;
  color: var(--fc-muted);
}
.fc-profile__bio {
  margin: 14px 0 0;
  line-height: 1.45;
  color: var(--fc-muted);
}
.fc-profile__follows {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--fc-muted);
}
.fc-profile__follows strong {
  color: var(--fc-text);
}
.fc-profile__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
}
.fc-stat {
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.fc-stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--fc-primary);
}
.fc-stat span {
  font-size: 0.75rem;
  color: var(--fc-muted);
}
.fc-profile__badges {
  padding: 0 16px 20px;
}
.fc-profile__badges ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-profile__badges li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--fc-line);
}
.fc-badge-emoji {
  font-size: 1.5rem;
}
.fc-profile__cta {
  padding: 16px;
}

.fc-room-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px 16px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-room-head__icon {
  font-size: 2rem;
}
.fc-room-head__title {
  margin: 0;
  font-size: 1.2rem;
}
.fc-room-head__sub {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--fc-muted);
}
.fc-tabs {
  display: flex;
  gap: 24px;
  padding: 0 16px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-tab {
  padding: 14px 0;
  background: none;
  border: none;
  font-family: var(--fc-font);
  font-weight: 600;
  color: var(--fc-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.fc-tab--on {
  color: var(--fc-primary);
  border-bottom-color: var(--fc-primary);
}
.fc-leaderboard {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.fc-leaderboard li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-lb-rank {
  width: 32px;
  font-weight: 800;
  color: var(--fc-muted);
}
.fc-lb-user {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.fc-lb-name {
  font-weight: 700;
}
.fc-lb-handle {
  font-size: 0.82rem;
  color: var(--fc-muted);
}
.fc-lb-cred {
  font-weight: 800;
  color: var(--fc-primary);
}

.fc-userprof__banner {
  height: 100px;
  background: linear-gradient(90deg, var(--fc-primary-dim), var(--fc-primary));
  opacity: 0.35;
}
.fc-userprof__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 16px;
  margin-top: -36px;
}
.fc-userprof--other .fc-userprof__row {
  margin-top: 0;
  padding-top: 16px;
  align-items: center;
}
.fc-userprof__bio {
  padding: 16px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-userprof__bio h1.fc-userprof__name-with-badge,
.fc-userprof__bio h1 {
  margin: 0;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.3;
}
.fc-userprof__bio h1 .fc-verified-badge {
  position: relative;
  top: 1px;
}
.fc-userprof__handle {
  color: var(--fc-muted);
  margin: 4px 0 12px;
}

.fc-thread__root {
  padding: 20px 16px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-thread__head {
  display: flex;
  gap: 12px;
}
.fc-thread__head a {
  text-decoration: none;
}
.fc-thread__names {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}
.fc-thread__tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.fc-thread__tag-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.756rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--fc-primary) 45%, transparent);
  color: var(--fc-primary);
  background: color-mix(in srgb, var(--fc-primary) 10%, var(--fc-elevated));
}
button.fc-thread__tag-pill,
a.fc-thread__tag-pill {
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}
button.fc-thread__tag-pill:hover,
a.fc-thread__tag-pill:hover {
  background: color-mix(in srgb, var(--fc-primary) 18%, var(--fc-elevated));
}
.fc-thread__meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}
.fc-thread__meta-chips .fc-pill {
  margin-left: 0;
}
.fc-thread__pill {
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.813rem;
  font-weight: 700;
  background: var(--fc-elevated);
  color: var(--fc-muted);
}
.fc-thread__pill--topic {
  color: var(--fc-primary);
}
.fc-thread__pill--status {
  font-weight: 600;
  text-transform: lowercase;
}
.fc-thread__pill--status.fc-thread__pill--pending {
  background: #3e1f0e;
  color: #e67e22;
  border: 1px solid rgba(230, 126, 34, 0.42);
  font-weight: 700;
}
.fc-post-actions--thread {
  margin-top: 14px;
}
.fc-thread__head--top {
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.fc-thread__head-main {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 0;
  align-items: flex-start;
}
.fc-thread__hit {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 0;
  align-items: flex-start;
}
.fc-thread__follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 0.78rem !important;
  font-weight: 700;
}
.fc-thread__locked-chip {
  flex-shrink: 0;
  align-self: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fc-primary) 18%, transparent);
  color: var(--fc-primary);
  border: 1px solid color-mix(in srgb, var(--fc-primary) 35%, transparent);
}
.fc-thread__head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.fc-thread__head-right > .fc-feed-card__status,
.fc-thread__head-right > .fc-feed-card__status-group {
  align-self: flex-start;
}
.fc-thread__text {
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 16px 0 0;
}
.fc-thread__meta-strip {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--fc-elevated);
  border-radius: 14px;
  border: 1px solid var(--fc-line-soft);
  flex-wrap: wrap;
  gap: 12px 0;
}
.fc-thread__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 160px;
}
.fc-thread__meta-item--shrink {
  flex: 0 0 auto;
}
.fc-thread__meta-sep {
  width: 1px;
  background: var(--fc-line);
  align-self: stretch;
  margin: 0 20px;
  flex-shrink: 0;
}
.fc-thread__category-grid {
  display: grid;
  gap: 16px 24px;
  margin-top: 14px;
  align-items: flex-start;
}
.fc-thread__category-grid--tri {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
.fc-thread__category-grid--dual {
  grid-template-columns: minmax(0, 1fr) auto;
}
.fc-thread__category-col--mid {
  min-width: 7.5rem;
}
.fc-thread__category-col--end {
  justify-self: end;
  text-align: right;
}
.fc-thread__category-col--mid .fc-thread__confidence-pill {
  font-size: 0.8125rem;
  padding: 7px 12px;
  white-space: nowrap;
}
.fc-thread__overline {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fc-muted);
  margin-bottom: 5px;
}
.fc-thread__category-value {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}
.fc-thread__category-sub {
  margin: 2px 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.3;
}
.fc-thread__resolve-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.813rem;
  font-weight: 700;
  color: var(--fc-primary-dim);
  background: rgba(46, 230, 192, 0.12);
  border: 1px solid color-mix(in srgb, var(--fc-primary) 40%, transparent);
}
.fc-thread__tag-card {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background: var(--fc-elevated);
  border-radius: 14px;
  border: 1px solid var(--fc-line-soft);
}
.fc-thread__tag-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fc-thread__tag-card-head .fc-thread__overline {
  margin-bottom: 0;
}
.fc-thread__tag-edit-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fc-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
}
.fc-thread__tag-edit-btn:hover {
  background: var(--fc-primary-glow);
}
.fc-thread__tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fc-thread__resolved-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.fc-thread__resolved-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.fc-resolution-share-camera {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--fc-primary);
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.fc-resolution-share-camera:hover {
  background: color-mix(in srgb, var(--fc-primary) 12%, transparent);
}
.fc-resolution-share-camera:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-thread-consensus-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.fc-thread-consensus__kicker {
  margin: 0;
  font-size: 0.75rem;
  color: var(--fc-muted);
}
.fc-thread-consensus {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--fc-line-soft);
  background: var(--fc-elevated);
}
.fc-thread-consensus__track {
  display: flex;
  height: 12px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--fc-line);
}
.fc-thread-consensus__yes {
  background: var(--fc-primary);
  min-width: 2px;
}
.fc-thread-consensus__no {
  background: var(--fc-danger, #f87171);
  min-width: 2px;
}
.fc-thread-consensus__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 12px;
}
.fc-thread-consensus__lbl {
  font-size: 0.813rem;
  font-weight: 700;
}
.fc-thread-consensus__lbl--yes {
  color: var(--fc-primary);
}
.fc-thread-consensus__lbl--no {
  color: var(--fc-danger, #f87171);
}
.fc-thread-consensus__sub {
  font-size: 0.688rem;
  color: var(--fc-muted);
  margin-top: 2px;
}
.fc-thread-consensus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fc-thread-consensus-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--fc-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fc-muted);
}
.fc-thread__metrics-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 14px;
}
.fc-thread__metrics-row--live {
  row-gap: 10px;
}
.fc-thread__metrics-grow {
  flex: 1 1 12px;
  min-width: 8px;
}
.fc-thread-live__rx--inline {
  margin-left: 0;
}
.fc-thread__confidence-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fc-primary);
  border: 1px solid color-mix(in srgb, var(--fc-primary) 45%, transparent);
  background: color-mix(in srgb, var(--fc-primary) 12%, transparent);
}
.fc-thread__metric {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
}
.fc-thread__metric strong {
  color: var(--fc-primary);
  font-weight: 700;
}
.fc-thread__metric-label {
  color: var(--fc-muted);
  font-weight: 500;
}
.fc-thread__metric-svg {
  color: var(--fc-muted);
  flex-shrink: 0;
}
.fc-thread__metric-svg--accent {
  color: var(--fc-primary);
}
.fc-thread__mock-like {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--fc-line);
  background: transparent;
  color: var(--fc-muted);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.875rem;
  cursor: default;
}

.fc-thread-v2__row-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--fc-line);
}
.fc-thread-v2__row-actions--hero {
  margin-top: 12px;
  padding-bottom: 2px;
  border-top: none;
  padding-top: 2px;
}
.fc-thread-v2__row-actions-spacer {
  flex: 1;
  min-width: 8px;
}
.fc-thread-v2__stake-pair {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.fc-thread-v2__stake-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px !important;
  border-radius: 12px !important;
  border-width: 1.5px !important;
  font-size: 0.813rem !important;
  font-weight: 700 !important;
}
.fc-thread-v2__stake-btn--back {
  color: var(--fc-primary);
  border-color: var(--fc-primary);
  background: color-mix(in srgb, var(--fc-primary) 10%, transparent);
}
.fc-thread-v2__stake-btn--counter {
  color: #d97706;
  border-color: color-mix(in srgb, #d97706 62%, transparent);
  background: color-mix(in srgb, #d97706 10%, transparent);
}
.fc-thread-v2__stake-btn--reply {
  color: #2563eb;
  border-color: color-mix(in srgb, #2563eb 62%, transparent);
  background: color-mix(in srgb, #2563eb 10%, transparent);
}
.fc-thread-v2__stake-btn--backing-this {
  background: color-mix(in srgb, var(--fc-primary) 18%, transparent);
}

.fc-thread-live__rx-btn--down.fc-thread-live__rx-btn--on {
  border-color: var(--fc-danger, #f87171);
  color: var(--fc-danger, #f87171);
}

.fc-thread__attach-hint {
  padding: 8px 16px 12px;
  border-bottom: 1px solid var(--fc-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fc-thread__attach-hint-label {
  font-size: 0.75rem;
  color: var(--fc-muted);
  line-height: 1.4;
}
.fc-thread__attach-hint-warn {
  font-size: 0.75rem;
  color: var(--fc-danger, #f87171);
  line-height: 1.4;
}
.fc-thread__attach-hint-sub {
  font-size: 0.75rem;
  color: var(--fc-muted);
}

.fc-thread__peek-split {
  display: flex;
  gap: 10px;
  width: 100%;
}
.fc-thread__peek-half {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: none;
  border-radius: 14px;
  font-family: var(--fc-font);
  font-size: 0.813rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--fc-text);
  background: rgba(255, 255, 255, 0.06);
}
.fc-thread__peek-half:hover {
  background: rgba(255, 255, 255, 0.1);
}
.fc-thread__peek-hint {
  margin: 0;
  text-align: center;
  padding: 10px 0;
}

.fc-thread-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-thread-section__head-main {
  flex: 1;
  min-width: 0;
}
.fc-thread-section__kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--fc-muted);
  text-transform: uppercase;
}
.fc-thread-section__inherit {
  display: block;
  margin-top: 4px;
  font-size: 0.813rem;
  font-weight: 700;
  color: var(--fc-primary-dim);
}
.fc-thread-section__inherit--banner {
  margin-top: 0;
  align-self: center;
}
.fc-thread-section__shown {
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 2px;
}

.fc-thread-live-row {
  margin-bottom: 4px;
}
.fc-thread-live-row__card {
  border: 1px solid var(--fc-line-soft);
  border-left-width: 4px;
  border-left-color: color-mix(in srgb, var(--fc-gold, #f0b429) 88%, var(--fc-danger, #f87171) 12%);
  border-radius: 0 12px 12px 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
}
.fc-thread-live-row__hit {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.fc-thread-live-row__main {
  flex: 1;
  min-width: 0;
}
.fc-thread-live-row__top {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
}
.fc-thread-live-row__titles {
  flex: 1;
  min-width: 0;
}
.fc-thread-live-row__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}
.fc-thread-live-row__name {
  font-size: 0.95rem;
}
.fc-thread-live-row__meta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 4px;
}
.fc-thread-live-row__role-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}
.fc-thread-live-row__conf {
  flex-shrink: 0;
  font-size: 0.813rem;
  font-weight: 700;
  color: var(--fc-gold, #dcb456);
}
.fc-thread-live-row__back-badge {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--fc-primary) 55%, transparent);
  background: color-mix(in srgb, var(--fc-primary) 20%, transparent);
  color: var(--fc-primary);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.fc-thread-live-row__counter-badge {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid #f9731666;
  background: #f9731618;
  color: #f97316;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.fc-thread-live-row__role-badges .fc-feed-card__status {
  padding: 3px 9px;
  font-size: 0.625rem;
  line-height: 1;
  border-radius: 999px;
  gap: 3px;
}
.fc-thread-live-row__body {
  margin: 6px 0 0;
  font-size: 0.938rem;
  line-height: 1.45;
}

html.fc-light .fc-thread-live-row__card {
  background: rgba(0, 0, 0, 0.02);
}

.fc-thread__compose-peek {
  padding: 12px 16px max(28px, env(safe-area-inset-bottom));
  border-bottom: 1px solid var(--fc-line);
}
.fc-thread__compose-peek--inline-open {
  padding-bottom: 8px;
  border-bottom: none;
}
.fc-thread__compose-peek-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border: none;
  border-radius: 14px;
  font-family: var(--fc-font);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--fc-primary);
  background: rgba(0, 212, 168, 0.14);
}
.fc-thread__compose-peek-btn:hover {
  background: rgba(0, 212, 168, 0.22);
}
.fc-compose-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.fc-compose-inline-wrap {
  padding: 0 16px 16px;
  border-bottom: none;
}
.fc-compose-inline-wrap--flush {
  padding-top: 0;
}
.fc-compose-inline {
  width: 100%;
  border: 1px solid var(--fc-line);
  border-radius: 12px;
  background: var(--fc-bg);
  overflow: hidden;
}
.fc-compose-inline__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--fc-line);
  background: color-mix(in srgb, var(--fc-primary) 5%, var(--fc-elevated));
}
.fc-compose-inline__title-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--fc-text);
  font-family: var(--fc-font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0;
  margin: 0;
  text-align: left;
}
.fc-compose-inline__collapse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, #0b6b53 70%, #ffffff 30%);
  background: color-mix(in srgb, #0b6b53 30%, #ffffff 70%);
  color: #0b6b53;
  padding: 0;
}
.fc-compose-inline__collapse-btn:hover {
  background: color-mix(in srgb, #0b6b53 42%, #ffffff 58%);
}
.fc-compose-inline__body {
  padding: 12px 14px 18px;
}
.fc-compose-sheet {
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--fc-bg);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border: 1px solid var(--fc-line);
  border-bottom: none;
  padding: 0 18px calc(22px + env(safe-area-inset-bottom));
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.55);
}
.fc-compose-sheet__grabber {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px auto 8px;
}
.fc-compose-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.fc-compose-sheet__close {
  border: none;
  background: transparent;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--fc-muted);
  cursor: pointer;
  padding: 4px;
}
.fc-compose-sheet__title {
  flex: 1;
  margin: 0;
  font-size: 1rem;
}
.fc-compose-sheet__counter-ref {
  margin-bottom: 12px;
  border: 1px solid color-mix(in srgb, var(--fc-primary) 28%, var(--fc-line));
  background: color-mix(in srgb, var(--fc-primary) 8%, var(--fc-elevated));
  border-radius: 12px;
  padding: 10px 12px;
}
.fc-compose-sheet__counter-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: var(--fc-primary);
  margin-bottom: 6px;
}
.fc-compose-sheet__counter-text {
  margin: 0;
  color: var(--fc-text);
  font-style: italic;
  line-height: 1.35;
}
.fc-compose-sheet__inherit {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--fc-primary) 32%, var(--fc-line));
  background: color-mix(in srgb, var(--fc-primary) 10%, var(--fc-elevated));
  color: var(--fc-text-muted);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
}
.fc-compose-sheet__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fc-muted);
  margin-bottom: 6px;
}
.fc-compose-sheet__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.fc-compose-sheet__char-counter {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--fc-text-muted);
  margin-bottom: 6px;
}
.fc-compose-sheet__confidence-slider {
  width: 100%;
  margin: 0 0 12px;
  accent-color: #0b6b53;
}
.fc-compose-sheet__confidence-slider::-webkit-slider-runnable-track {
  background: color-mix(in srgb, #0b6b53 58%, var(--fc-line));
  height: 6px;
  border-radius: 999px;
}
.fc-compose-sheet__confidence-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border-radius: 50%;
  background: #0b6b53;
  border: 2px solid color-mix(in srgb, #0b6b53 62%, #ffffff 38%);
  box-shadow: 0 0 0 2px color-mix(in srgb, #0b6b53 28%, transparent);
}
.fc-compose-sheet__confidence-slider::-moz-range-track {
  background: color-mix(in srgb, #0b6b53 58%, var(--fc-line));
  height: 6px;
  border-radius: 999px;
}
.fc-compose-sheet__confidence-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0b6b53;
  border: 2px solid color-mix(in srgb, #0b6b53 62%, #ffffff 38%);
  box-shadow: 0 0 0 2px color-mix(in srgb, #0b6b53 28%, transparent);
}
html.fc-light .fc-compose-sheet__confidence-slider::-webkit-slider-runnable-track,
html.fc-light .fc-compose-sheet__confidence-slider::-moz-range-track {
  background: color-mix(in srgb, #0b6b53 68%, #dbe6e2 32%);
}
.fc-compose-sheet .fc-thread__compose {
  display: block;
  padding: 0;
  border: none;
  margin-bottom: 12px;
}
.fc-compose-inline .fc-thread__compose {
  display: block;
  padding: 0;
  border: none;
  margin-bottom: 12px;
}
.fc-compose-sheet .fc-thread__compose textarea {
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}
.fc-compose-inline .fc-thread__compose textarea {
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}
.fc-compose-sheet__post-btn {
  margin-bottom: 8px;
}
@media (max-width: 1023px) {
  .fc-compose-inline-wrap {
    display: none;
  }
}
.fc-thread__compose {
  padding: 20px 16px;
  border-bottom: 1px solid var(--fc-line);
}
.fc-thread__compose h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.fc-thread__compose textarea {
  width: 100%;
  font-family: var(--fc-font);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--fc-line);
  background: var(--fc-elevated);
  color: var(--fc-text);
  margin-bottom: 10px;
}
.fc-thread__agree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--fc-muted);
  margin-bottom: 12px;
}

.fc-counter {
  margin-bottom: 8px;
}
.fc-counter__card {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--fc-line);
  background: var(--fc-elevated);
}
.fc-counter__card--agree {
  border-left: 3px solid var(--fc-primary);
}
.fc-counter__card--counter {
  border-left: 3px solid #f87171;
}
.fc-counter__top {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}
.fc-counter__agree {
  color: var(--fc-primary);
  font-weight: 600;
  font-size: 0.82rem;
}
.fc-counter__dis {
  color: #f87171;
  font-weight: 600;
  font-size: 0.82rem;
}
.fc-counter__body p {
  margin: 6px 0 0;
  line-height: 1.4;
}
.fc-counter__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.fc-counter__like {
  background: none;
  border: none;
  color: var(--fc-muted);
  cursor: pointer;
  font-family: var(--fc-font);
  font-size: 0.85rem;
}

.fc-empty {
  padding: 24px 16px;
  color: var(--fc-muted);
  text-align: center;
}

/* ── Skeleton loaders ─────────────────────────────────────────── */
@keyframes fc-shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.fc-skeleton {
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    var(--fc-elevated) 25%,
    rgba(255, 255, 255, 0.06) 50%,
    var(--fc-elevated) 75%
  );
  background-size: 800px 100%;
  animation: fc-shimmer 1.4s ease-in-out infinite;
}

.fc-skeleton--avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fc-skeleton--line {
  height: 14px;
}

.fc-skeleton-row {
  pointer-events: none;
}

/* ── Focus indicators ─────────────────────────────────────────── */
.fc-btn:focus-visible,
.fc-chip:focus-visible,
.fc-app__navlink:focus-visible,
.fc-app__tab:focus-visible,
.fc-feed-row__av:focus-visible,
.fc-feed-row__open:focus-visible,
.fc-tab:focus-visible,
.fc-app__signout:focus-visible,
.fc-widget__link:focus-visible,
.fc-widget__search-hit:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}

.fc-field input:focus-visible,
.fc-field textarea:focus-visible,
.fc-discover-input:focus-visible,
.fc-thread__compose textarea:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 0;
  border-color: var(--fc-primary);
}

/* ── Leaderboards (parity with mobile) ──────────────────────────── */
.fc-lb-page .fc-page__hint {
  padding-top: 0;
}
.fc-lb-loading {
  color: var(--fc-muted);
  padding: 0 16px 12px;
  margin: 0;
  font-size: 0.9rem;
}
.fc-lb-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px 24px;
}
.fc-lb-global-card {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid var(--fc-lb-amber-border);
  background: var(--fc-lb-amber-bg);
  color: inherit;
  font: inherit;
  overflow: hidden;
  margin-bottom: 4px;
}
.fc-lb-global-card:focus-visible {
  outline: 2px solid var(--fc-lb-amber);
  outline-offset: 2px;
}
.fc-lb-global-card__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}
.fc-lb-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 168, 0.12);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.fc-lb-icon-wrap--global {
  background: var(--fc-lb-amber-icon-bg);
  font-size: 1.6rem;
}
.fc-lb-card-text {
  flex: 1;
  min-width: 0;
}
.fc-lb-global-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fc-lb-amber);
}
.fc-lb-cat-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fc-text);
}
.fc-lb-card-sub {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
  color: var(--fc-muted);
  line-height: 1.35;
}
.fc-lb-chevron {
  color: var(--fc-primary);
  font-size: 1.25rem;
  font-weight: 300;
}
.fc-lb-global-card .fc-lb-chevron {
  color: var(--fc-lb-amber-dim);
}
.fc-lb-global-card .fc-lb-card-sub {
  color: var(--fc-lb-amber-dim);
}
.fc-lb-oracle-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--fc-lb-amber-border);
}
.fc-lb-oracle-text--with-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.fc-lb-card-sub .fc-lb-card-sub-badge,
.fc-lb-oracle-text--with-badge .fc-verified-badge {
  vertical-align: middle;
}
.fc-lb-oracle-reset {
  font-size: 0.78rem;
  color: var(--fc-lb-amber-border);
}
.fc-lb-section-label {
  margin: 8px 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fc-muted);
}
.fc-lb-cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line);
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}
.fc-lb-cat-card:hover {
  background: rgba(255, 255, 255, 0.04);
}
.fc-lb-cat-card:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-lb-card-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-lb-acc-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0, 212, 168, 0.12);
}
.fc-lb-acc-num {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fc-primary);
}
.fc-lb-acc-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--fc-primary);
}

/* Global standings */
.fc-lb-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 16px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fc-muted);
  text-decoration: none;
}
.fc-lb-back:hover {
  color: var(--fc-primary);
}
.fc-lb-tabs-row {
  display: flex;
  align-items: stretch;
  margin: 0 16px;
  border-bottom: 1px solid var(--fc-line);
  gap: 8px;
}
.fc-lb-tabs-row .fc-lb-tabs {
  flex: 1;
  border-bottom: none;
  margin: 0;
}
.fc-lb-local-toggle {
  flex-shrink: 0;
  padding: 6px 12px;
  border: 1.5px solid var(--fc-line);
  border-radius: 999px;
  background: transparent;
  color: var(--fc-muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  align-self: center;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.fc-lb-local-toggle--on {
  border-color: var(--fc-primary);
  color: var(--fc-primary);
  background: color-mix(in srgb, var(--fc-primary) 10%, transparent);
}
.fc-lb-local-toggle:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-lb-tabs {
  display: flex;
  border-bottom: 1px solid var(--fc-line);
  margin: 0 16px;
}
.fc-lb-tab {
  flex: 1;
  padding: 12px 8px;
  border: none;
  background: none;
  color: var(--fc-muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  position: relative;
}
.fc-lb-tab--on {
  color: var(--fc-lb-amber);
}
.fc-lb-tab--on::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  border-radius: 1px;
  background: var(--fc-lb-amber);
}
.fc-lb-tab:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-lb-gl-body {
  position: relative;
  padding-bottom: 120px;
}
.fc-lb-hero-card {
  margin: 12px 16px;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--fc-lb-amber-dim);
  background: var(--fc-lb-amber-bg);
}
.fc-lb-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc-lb-hero-label {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--fc-lb-amber);
}
.fc-lb-hero-countdown {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--fc-lb-amber-dim);
}
.fc-lb-hero-body {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.fc-lb-hero-avatar {
  position: relative;
}
.fc-lb-crown-overlay {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
}
.fc-lb-hero-meta {
  flex: 1;
  min-width: 0;
}
.fc-lb-hero-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.fc-lb-hero-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.fc-lb-hero-handle {
  font-size: 0.82rem;
  color: var(--fc-lb-amber-dim);
  margin-top: 2px;
}
.fc-lb-hero-acc {
  text-align: right;
}
.fc-lb-hero-pct {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--fc-lb-amber);
}
.fc-lb-hero-pct-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--fc-lb-amber-dim);
}
.fc-lb-demo-note {
  font-size: 0.78rem;
  color: var(--fc-muted);
  margin: 0 16px 8px;
}
.fc-lb-row-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 16px;
}
.fc-lb-g-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line);
}
a.fc-lb-row--link {
  text-decoration: none;
  color: inherit;
  display: flex;
  transition: background 0.13s ease, border-color 0.13s ease;
}
a.fc-lb-row--link:hover {
  background: color-mix(in srgb, var(--fc-primary) 6%, var(--fc-elevated));
  border-color: color-mix(in srgb, var(--fc-primary) 25%, var(--fc-line));
}
.fc-lb-g-rank {
  font-size: 0.94rem;
  font-weight: 700;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
  color: var(--fc-muted);
}
.fc-lb-g-rank--gold {
  color: var(--fc-lb-amber);
}
.fc-lb-g-rank--top {
  color: var(--fc-primary);
}
.fc-lb-g-av {
  position: relative;
  flex-shrink: 0;
}
.fc-lb-g-crown-sm {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
}
.fc-lb-g-info {
  flex: 1;
  min-width: 0;
}
.fc-lb-g-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.fc-lb-g-name {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--fc-text);
}
.fc-lb-g-handle {
  font-size: 0.75rem;
  color: var(--fc-muted);
  margin-top: 2px;
}
.fc-lb-g-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.fc-lb-g-chip {
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0, 212, 168, 0.1);
  color: var(--fc-text);
}
.fc-lb-g-oracle-pill {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--fc-lb-amber);
  color: var(--fc-lb-amber-bg);
}
.fc-lb-g-stats {
  text-align: right;
  flex-shrink: 0;
}
.fc-lb-g-pts {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fc-primary);
}
.fc-lb-g-pts--gold {
  color: var(--fc-lb-amber);
}
.fc-lb-g-pts-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--fc-muted);
}
.fc-lb-g-streak {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fc-primary);
  margin-top: 2px;
}
.fc-lb-g-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--fc-muted);
  font-size: 0.88rem;
}
.fc-lb-own-wrap {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 16px calc(12px + env(safe-area-inset-bottom));
  margin-top: 16px;
  background: linear-gradient(to top, var(--fc-bg) 70%, transparent);
}
.fc-lb-own-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fc-muted);
  margin-bottom: 6px;
}
.fc-lb-own-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 212, 168, 0.12);
  border: 1px solid var(--fc-line);
}

/* Category leaderboard */
.fc-lb-cat-head {
  padding: 12px 16px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-lb-champion-card {
  border-radius: 16px;
  padding: 14px;
  background: rgba(0, 212, 168, 0.08);
  border: 1px solid var(--fc-line);
}
.fc-lb-champion-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--fc-text);
}
.fc-lb-champion-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fc-lb-champion-info {
  flex: 1;
  min-width: 0;
}
.fc-lb-champion-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.fc-lb-champion-name {
  font-size: 1rem;
  font-weight: 700;
}
.fc-lb-champion-meta {
  font-size: 0.72rem;
  color: var(--fc-muted);
  margin-top: 4px;
  line-height: 1.35;
}
.fc-lb-champion-pct {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fc-primary);
}
.fc-lb-tag-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.fc-lb-tag-btn {
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--fc-line);
  background: var(--fc-elevated);
  color: var(--fc-muted);
  cursor: pointer;
}
.fc-lb-tag-btn--on {
  background: rgba(0, 212, 168, 0.15);
  border-color: var(--fc-primary);
  color: var(--fc-primary);
}
.fc-lb-tag-btn:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-lb-cat-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 16px 32px;
}
.fc-lb-cat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line);
}
.fc-lb-cat-rank {
  width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--fc-muted);
  flex-shrink: 0;
}
.fc-lb-cat-rank--top {
  color: var(--fc-primary);
}
.fc-lb-cat-info {
  flex: 1;
  min-width: 0;
}
.fc-lb-cat-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.fc-lb-cat-row-name {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--fc-text);
}
.fc-lb-cat-handle {
  font-size: 0.8rem;
  color: var(--fc-muted);
  margin-top: 1px;
}
.fc-lb-cat-live-meta {
  font-size: 0.75rem;
  color: var(--fc-muted);
  margin-top: 4px;
}
.fc-lb-cat-stat-box {
  text-align: center;
  flex-shrink: 0;
}
.fc-lb-cat-cred {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fc-primary);
}
.fc-lb-cat-cred-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--fc-muted);
}

/* Global search (web parity with mobile) */
.fc-global-search {
  width: 100%;
  box-sizing: border-box;
}
.fc-global-search__field {
  display: block;
  margin-bottom: 20px;
}
.fc-global-search__input-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: 999px;
  border: 2px solid rgba(46, 230, 192, 0.45);
  background: var(--fc-elevated);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.fc-global-search__input-shell:focus-within {
  border-color: var(--fc-primary);
  box-shadow: 0 0 0 3px rgba(46, 230, 192, 0.12);
}
html.fc-light .fc-global-search__input-shell:focus-within {
  border-color: color-mix(in srgb, var(--fc-primary) 50%, var(--fc-line));
  box-shadow: 0 0 0 3px var(--fc-primary-glow);
}
.fc-global-search__input-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.fc-global-search__input-shell .fc-search-field-glyph {
  color: var(--fc-primary);
}
.fc-global-search__input-shell:focus-within .fc-search-field-glyph {
  color: var(--fc-primary);
}
.fc-global-search__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--fc-text);
  font-size: 1rem;
}
.fc-global-search__input:focus {
  outline: none;
}
.fc-global-search__input::placeholder {
  color: var(--fc-muted);
}
.fc-global-search__hint {
  padding-left: 0;
  padding-right: 0;
}
.fc-global-search__load-more {
  margin-top: 12px;
}
.fc-global-search__section {
  margin-top: 20px;
}
.fc-global-search__section-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fc-muted);
  margin: 0 0 10px;
}
.fc-global-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fc-global-search__tag {
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.35;
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--fc-primary) 48%, transparent);
  background: color-mix(in srgb, var(--fc-primary) 14%, var(--fc-elevated));
  color: var(--fc-primary);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.fc-global-search__tag:hover {
  background: color-mix(in srgb, var(--fc-primary) 22%, var(--fc-elevated));
}
.fc-global-search__tag:focus-visible {
  outline: 2px solid var(--fc-primary);
  outline-offset: 2px;
}
.fc-global-search__tag .fc-meta {
  color: color-mix(in srgb, var(--fc-primary) 40%, var(--fc-muted));
  font-weight: 600;
}
.fc-global-search__page-title {
  display: block;
  text-align: center;
  margin-top: 0 !important;
  margin-bottom: 16px;
  width: 100%;
}
.fc-global-search__body {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: clamp(14px, 3vw, 22px);
  box-sizing: border-box;
}

.fc-global-search__card {
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid var(--fc-line);
  background: color-mix(in srgb, var(--fc-elevated) 94%, transparent);
  overflow: hidden;
}
.fc-global-search__card-error {
  padding: 12px 16px;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fc-danger, #f87171);
}
.fc-global-search__loader-msg {
  text-align: center;
  font-size: 0.875rem;
  color: var(--fc-muted);
  padding: 12px 16px;
  margin: 0;
}
.fc-global-search__section-cap {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fc-muted);
  margin: 0;
  padding: 10px 16px 6px;
}
.fc-global-search__section-cap--spaced {
  margin-top: 6px;
  border-top: 1px solid var(--fc-line);
  padding-top: 14px;
}
.fc-global-search__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-global-search__hit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid var(--fc-line);
  background: transparent;
  color: var(--fc-text);
  font-family: inherit;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
}
.fc-global-search__hit-row:hover {
  background: color-mix(in srgb, var(--fc-text) 5%, transparent);
}
.fc-global-search__hit-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fc-global-search__hit-title-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.fc-global-search__hit-title {
  font-size: 0.9375rem;
  font-weight: 700;
}
.fc-global-search__pred-text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.fc-global-search__hit-meta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fc-muted);
}
.fc-global-search__hit-chevron {
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--fc-muted);
  line-height: 1;
}
.fc-global-search__tag-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--fc-text) 8%, transparent);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--fc-primary);
}
.fc-global-search__trend-hint {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fc-muted);
  flex-shrink: 0;
}
.fc-global-search__pred-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--fc-text) 8%, transparent);
  font-weight: 800;
  color: var(--fc-primary);
  font-size: 0.9rem;
}
.fc-global-search__pred-block .fc-global-search__hit-row:last-of-type {
  border-bottom-color: transparent;
}
.fc-global-search__pred-empty {
  margin: 0;
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--fc-muted);
}
.fc-global-search__pred-empty--card {
  padding-top: 20px;
  padding-bottom: 20px;
}
.fc-global-search__load-more-pred {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-top: 1px solid var(--fc-line);
  background: transparent;
  color: var(--fc-primary);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}
.fc-global-search__load-more-pred:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.fc-global-search__pred-end-note {
  margin: 0;
  padding: 12px 16px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--fc-muted);
  border-bottom: 1px solid var(--fc-line);
}

html.fc-light .fc-global-search__tag-ico {
  background: rgba(0, 0, 0, 0.06);
}

.fc-global-search__profile-hit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 10px;
  border: 1px solid var(--fc-line);
  background: transparent;
  color: var(--fc-text);
  cursor: pointer;
}
.fc-global-search__profile-hit-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.fc-global-search__profile-hit:hover {
  background: color-mix(in srgb, var(--fc-text) 6%, transparent);
}
html.fc-light .fc-global-search__profile-hit:hover {
  background: color-mix(in srgb, var(--fc-text) 4%, transparent);
}
.fc-global-search__profile-name {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-weight: 600;
}
.fc-global-search__profile-name-text {
  display: inline;
}
.fc-global-search__profile-badge {
  flex-shrink: 0;
}
.fc-global-search__pred-wrap {
  margin-bottom: 8px;
}
.fc-global-search__pred-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 4px 8px;
}

/* Live thread reactions (prediction detail) */
.fc-thread-live__rx {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.fc-thread-live__rx-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--fc-line);
  color: var(--fc-text);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 0.78rem;
  cursor: pointer;
}
.fc-thread-live__rx-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.fc-thread-live__rx-btn--on {
  border-color: var(--fc-primary);
  color: var(--fc-primary);
}
.fc-thread-live__row-actions {
  flex-wrap: wrap;
  gap: 8px;
}
.fc-thread-live__counter-btn {
  font-size: 0.78rem;
  padding: 4px 10px;
}
.fc-thread-live__commentary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  padding: 12px 14px 14px;
  border-radius: 10px;
  border-left: 3px solid color-mix(in srgb, var(--fc-primary) 46%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--fc-primary) 22%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--fc-primary) 16%, transparent);
  background: color-mix(in srgb, var(--fc-primary) 7%, transparent);
}

/* —— Profile v2 (parity + modern layout) —— */
.fc-profile-v2 {
  padding-inline: 0;
  background:
    radial-gradient(ellipse 100% 60% at 0% -10%, rgba(46, 230, 192, 0.06), transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(168, 85, 247, 0.05), transparent 45%);
}
.fc-profile-v2__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 4px;
}
.fc-profile-v2__title {
  font-family: var(--fc-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.04em;
}
.fc-profile-v2__edit {
  border: none;
  background: transparent;
  color: var(--fc-primary);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 10px;
}
.fc-profile-v2__edit:hover {
  background: rgba(46, 230, 192, 0.1);
}
.fc-profile-v2__hero {
  margin: 8px 16px 14px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(46, 230, 192, 0.1);
  background: linear-gradient(165deg, rgba(22, 28, 36, 0.95), rgba(12, 14, 18, 0.88));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}
.fc-profile-v2__hero-top {
  display: flex;
  align-items: center;
  gap: 18px;
}
.fc-profile-v2__hero-text {
  flex: 1;
  min-width: 0;
}
.fc-profile-v2__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-profile-v2__display {
  margin: 0;
  font-family: var(--fc-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.fc-profile-v2__name-row .fc-verified-badge {
  position: relative;
  top: 2px;
}
.fc-profile-v2__spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(46, 230, 192, 0.25);
  border-top-color: var(--fc-primary);
  animation: fc-spin 0.7s linear infinite;
}
.fc-profile-v2__handle {
  margin: 4px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fc-muted);
}
.fc-profile-v2__location {
  margin: 6px 0 0;
  font-size: 0.84rem;
  color: rgba(139, 152, 165, 0.95);
}
.fc-profile-v2__idv-expiry {
  margin: 8px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fc-muted);
}
.fc-profile-v2__idv-expiry time {
  color: var(--fc-verified);
  font-weight: 700;
}
.fc-profile-v2__guest-hint {
  margin: 14px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--fc-muted);
}

.fc-profile-v2__idv-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16, 185, 129, 0.38);
  background: rgba(16, 185, 129, 0.12);
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.fc-profile-v2__idv-banner:hover {
  opacity: 0.92;
  border-color: rgba(16, 185, 129, 0.5);
}
.fc-profile-v2__idv-banner:focus-visible {
  outline: 2px solid var(--fc-verified);
  outline-offset: 2px;
}
.fc-profile-v2__idv-banner-badge {
  width: 28px;
  height: 28px;
}
.fc-profile-v2__idv-banner-badge svg {
  width: 28px;
  height: 28px;
}
.fc-profile-v2__idv-banner-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fc-profile-v2__idv-banner-title {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--fc-text);
}
.fc-profile-v2__idv-banner-sub {
  display: block;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--fc-muted);
}
.fc-profile-v2__idv-banner-chevron {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 300;
  color: var(--fc-muted);
}
html.fc-light .fc-profile-v2__idv-banner {
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(16, 185, 129, 0.08);
}

.fc-profile-v2__follow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--fc-line-soft);
}
.fc-profile-v2__follow-row strong {
  font-weight: 800;
  font-size: 1rem;
  color: var(--fc-text);
}
.fc-profile-v2__follow-label {
  font-weight: 500;
  color: var(--fc-muted);
  font-size: 0.9rem;
}
.fc-profile-v2__pending-num {
  color: var(--fc-gold) !important;
}
.fc-profile-v2__about {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--fc-line-soft);
}
.fc-profile-v2__section-cap {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fc-muted);
}
.fc-profile-v2__about-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.fc-profile-v2__about-placeholder {
  margin: 0;
  font-size: 0.92rem;
  color: var(--fc-muted);
  font-style: italic;
  line-height: 1.5;
}
.fc-profile-v2__about-input {
  margin-top: 4px !important;
}
.fc-profile-v2__stat-cards {
  display: flex;
  gap: 10px;
  padding: 0 16px 14px;
  margin-top: 8px;
}
.fc-profile-v2__stat-card {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  border-radius: 16px;
  background: rgba(18, 22, 30, 0.85);
  border: 1px solid var(--fc-line-soft);
}
.fc-profile-v2__stat-val {
  font-family: var(--fc-display);
  font-size: 1.35rem;
  font-weight: 900;
  display: block;
  line-height: 1.15;
}
.fc-profile-v2__stat-lab {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--fc-muted);
  letter-spacing: 0.04em;
}
.fc-profile-v2__cred-grid {
  display: flex;
  gap: 10px;
  padding: 0 16px 14px;
}
.fc-profile-v2__cred-panel {
  flex: 1.4;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--fc-line-soft);
  background: rgba(24, 30, 42, 0.75);
}
.fc-profile-v2__cred-panel--cal {
  flex: 1;
}
.fc-profile-v2__cred-points {
  font-family: var(--fc-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.fc-profile-v2__cred-cap {
  display: block;
  margin-top: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--fc-muted);
}
.fc-profile-v2__cred-meta {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: rgba(139, 152, 165, 0.95);
}
.fc-profile-v2__cred-week {
  margin: 10px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}
.fc-profile-v2__cred-week--pos {
  color: var(--fc-primary);
}
.fc-profile-v2__cred-week--neg {
  color: #f87171;
}
.fc-profile-v2__cal-score {
  display: block;
  font-family: var(--fc-display);
  font-size: 1.25rem;
  font-weight: 800;
}
.fc-profile-v2__cal-muted {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--fc-muted);
}
.fc-profile-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 8px;
}
.fc-profile-bar__fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.35s ease;
}
.fc-profile-v2__domain-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fc-profile-v2__domain-row {
  display: grid;
  grid-template-columns: 22px 72px minmax(0, 1fr) 42px 40px;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}
.fc-profile-v2__domain-row--divider {
  border-top: 1px solid var(--fc-line-soft);
  margin-top: 4px;
  padding-top: 14px;
}
.fc-profile-v2__domain-emoji {
  font-size: 1rem;
}
.fc-profile-v2__domain-name {
  font-weight: 800;
  font-size: 0.82rem;
}
.fc-profile-v2__domain-row .fc-profile-bar {
  margin-top: 0;
}
.fc-profile-v2__domain-pct {
  font-weight: 900;
  font-size: 0.85rem;
  text-align: right;
}
.fc-profile-v2__domain-rank {
  font-size: 0.75rem;
  color: var(--fc-muted);
  text-align: right;
}
.fc-profile-v2__card {
  margin: 0 16px 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 14, 18, 0.65);
}
.fc-profile-v2__rank-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 12px;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.fc-profile-v2__rank-scroll::-webkit-scrollbar {
  display: none;
}
.fc-profile-v2__rank-mini {
  flex-shrink: 0;
  min-width: 108px;
  padding: 14px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--fc-line-soft);
  background: rgba(22, 28, 36, 0.9);
}
.fc-profile-v2__rank-mini-lab {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-muted);
  margin-bottom: 6px;
}
.fc-profile-v2__rank-mini-val {
  font-family: var(--fc-display);
  font-size: 1.55rem;
  font-weight: 900;
}
.fc-profile-v2__rank-mini-of {
  font-size: 0.72rem;
  color: var(--fc-muted);
  margin-top: 4px;
  display: block;
}
.fc-profile-v2__badge-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 12px;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.fc-profile-v2__badge-scroll::-webkit-scrollbar {
  display: none;
}
.fc-profile-v2__badge-mini {
  flex-shrink: 0;
  width: 112px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--fc-line-soft);
  background: rgba(22, 28, 36, 0.88);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.fc-profile-v2__badge-emoji {
  font-size: 1.6rem;
  line-height: 1;
}
.fc-profile-v2__badge-title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}
.fc-profile-v2__badge-chip {
  font-size: 0.62rem;
  font-weight: 800;
  border: 1px solid;
  border-radius: 8px;
  padding: 2px 8px;
}
.fc-profile-v2__badge-chip--muted {
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--fc-muted);
}
.fc-profile-v2__badge-exp {
  font-size: 0.62rem;
  color: var(--fc-muted);
}
.fc-profile-v2__activity-link {
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-profile-v2__activity-btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
}
.fc-profile-v2__activity-toggle {
  margin: 14px 16px 2px;
  padding: 4px;
  border-radius: 999px;
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}
.fc-profile-v2__activity-pill {
  border: none;
  border-radius: 999px;
  padding: 9px 8px;
  background: transparent;
  color: var(--fc-muted);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fc-profile-v2__activity-pill.is-active {
  background: var(--fc-primary);
  color: var(--fc-on-primary, #ffffff);
}
.fc-profile-v2__pred-section {
  padding: 8px 0 48px;
}
.fc-profile-v2__pred-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px 10px;
}
.fc-profile-v2__pred-title {
  margin: 0;
  font-family: var(--fc-display);
  font-size: 1.08rem;
  font-weight: 800;
}
.fc-profile-v2__pred-meta {
  font-size: 0.78rem;
  color: var(--fc-muted);
  font-weight: 600;
}
.fc-profile-v2__pred-list {
  padding-inline: 12px;
}
.fc-load-more-btn {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-top: 1px solid var(--fc-line);
  background: transparent;
  color: var(--fc-primary);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.fc-load-more-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.04);
}
.fc-load-more-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.fc-profile-v2__status-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}
.fc-profile-v2__status-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--fc-border, rgba(255,255,255,0.12));
  background: transparent;
  color: var(--fc-muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.fc-profile-v2__status-chip.is-active {
  background: var(--fc-primary);
  color: var(--fc-on-primary, #ffffff);
  border-color: var(--fc-primary);
}
.fc-profile-v2__status-chip:not(.is-active):hover {
  background: rgba(255,255,255,0.06);
  color: var(--fc-text);
}
/* Per-status colour accents on inactive chips */
.fc-profile-v2__status-chip.fc-feed-card__status--ok {
  border-color: var(--fc-status-ok, #22c55e);
  color: var(--fc-status-ok, #22c55e);
}
.fc-profile-v2__status-chip.fc-feed-card__status--ok.is-active {
  background: var(--fc-status-ok, #22c55e);
  color: #fff;
}
.fc-profile-v2__status-chip.fc-feed-card__status--bad {
  border-color: var(--fc-status-bad, #ef4444);
  color: var(--fc-status-bad, #ef4444);
}
.fc-profile-v2__status-chip.fc-feed-card__status--bad.is-active {
  background: var(--fc-status-bad, #ef4444);
  color: #fff;
}
.fc-profile-v2__status-chip.fc-feed-card__status--pending {
  border-color: var(--fc-status-pending, #94a3b8);
  color: var(--fc-status-pending, #94a3b8);
}
.fc-profile-v2__status-chip.fc-feed-card__status--queued {
  border-color: var(--fc-status-queued, #f59e0b);
  color: var(--fc-status-queued, #f59e0b);
}
.fc-profile-v2__status-chip.fc-feed-card__status--queued.is-active {
  background: var(--fc-status-queued, #f59e0b);
  color: #fff;
}
.fc-profile-v2__status-chip.fc-feed-card__status--uq {
  border-color: var(--fc-muted);
  color: var(--fc-muted);
}
.fc-profile-v2__pred-item {
  display: flex;
  flex-direction: column;
}
.fc-profile-v2__pred-cert-row {
  padding: 4px 12px 8px;
}
.fc-profile-v2__empty {
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--fc-muted);
}
@media (max-width: 520px) {
  .fc-profile-v2__domain-row {
    grid-template-columns: 22px minmax(0, 72px) minmax(0, 1fr) 38px 36px;
  }
}

/* Profile v2 — readable light surfaces (avoid dark slabs + low-contrast type) */
html.fc-light .fc-profile-v2 {
  background: #ffffff;
}

html.fc-light .fc-profile-v2__edit:hover {
  background: rgba(15, 155, 128, 0.09);
}

html.fc-light .fc-profile-v2__hero {
  background: linear-gradient(165deg, var(--fc-surface), color-mix(in srgb, var(--fc-bg-mid) 48%, var(--fc-surface)));
  border-color: color-mix(in srgb, var(--fc-primary) 24%, var(--fc-line));
  box-shadow: var(--fc-shadow-card);
}

html.fc-light .fc-profile-v2__display,
html.fc-light .fc-profile-v2__about-body {
  color: var(--fc-text);
}

html.fc-light .fc-profile-v2__location,
html.fc-light .fc-profile-v2__cred-meta {
  color: var(--fc-muted);
}

html.fc-light .fc-profile-v2__stat-card {
  background: var(--fc-surface);
  border-color: var(--fc-line-soft);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

html.fc-light .fc-profile-v2__cred-panel {
  background: var(--fc-surface);
  border-color: var(--fc-line-soft);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

html.fc-light .fc-profile-v2__card {
  background: var(--fc-surface);
  border-color: var(--fc-line-soft);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

html.fc-light .fc-profile-v2__rank-mini,
html.fc-light .fc-profile-v2__badge-mini {
  background: color-mix(in srgb, var(--fc-bg-mid) 42%, var(--fc-surface));
  border-color: var(--fc-line-soft);
}

html.fc-light .fc-profile-bar {
  background: color-mix(in srgb, var(--fc-text) 09%, var(--fc-line));
}

html.fc-light .fc-profile-v2__badge-chip--muted {
  border-color: var(--fc-line);
  color: var(--fc-muted);
}

/* —— Notifications page (full screen) —— */
.fc-notifications {
  padding-inline: 0;
}
.fc-notifications__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--fc-line-soft);
}
.fc-notifications__title {
  margin: 0;
  font-family: var(--fc-display);
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.fc-notifications__mark-all {
  border: none;
  background: transparent;
  color: var(--fc-primary);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 0;
}
.fc-notifications__mark-all:hover {
  text-decoration: underline;
}
.fc-notifications__gate {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  max-width: 100%;
  box-sizing: border-box;
}
.fc-notifications__gate-lead {
  margin: 0;
  font-size: 1.03rem;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.55;
  text-align: center;
}
.fc-notifications__segment {
  display: flex;
  margin: 0 16px 12px;
  padding: 4px;
  border-radius: 14px;
  background: var(--fc-elevated);
  border: 1px solid var(--fc-line-soft);
  gap: 4px;
}
.fc-notifications__seg {
  flex: 1;
  border: none;
  border-radius: 11px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  background: transparent;
  color: var(--fc-muted);
  font-family: var(--fc-font);
  transition:
    background 0.14s ease,
    color 0.14s ease;
}
.fc-notifications__seg--on {
  background: var(--fc-primary-glow);
  color: var(--fc-primary);
  box-shadow: 0 0 0 1px rgba(46, 230, 192, 0.2);
}
html.fc-light .fc-notifications__seg--on {
  box-shadow: 0 0 0 1px rgba(15, 155, 128, 0.22);
}
.fc-notifications__center {
  padding: 48px 24px;
  display: flex;
  justify-content: center;
}
.fc-notifications__empty {
  margin: 0;
  padding: 40px 20px;
  text-align: center;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--fc-muted);
}
.fc-notifications__list {
  list-style: none;
  margin: 0;
  padding: 0 0 80px;
}
.fc-notifications__ad {
  padding: 12px 0 20px;
  border-bottom: 1px solid var(--fc-line-soft);
}
.fc-notifications__ad .fc-adsense-infeed {
  width: 100%;
  min-height: 90px;
}
.fc-notifications__row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  border: none;
  border-bottom: 1px solid var(--fc-line-soft);
  background: transparent;
  color: var(--fc-text);
  text-align: left;
  cursor: pointer;
  font-family: var(--fc-font);
  transition: background 0.12s ease;
}
.fc-notifications__row:hover {
  background: rgba(46, 230, 192, 0.06);
}
html.fc-light .fc-notifications__row:hover {
  background: rgba(15, 155, 128, 0.08);
}
.fc-notifications__row--unread {
  border-left: 3px solid var(--fc-primary);
  padding-left: 13px;
}
.fc-notifications__row-title {
  font-weight: 700;
  font-size: 1.03rem;
}
.fc-notifications__row-body {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}
.fc-notifications__row-time {
  font-size: 0.85rem;
  color: var(--fc-muted);
  font-weight: 600;
}
.fc-notifications__hint {
  margin: 12px 16px 28px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.45;
}

html:not(.fc-light) .fc-notifications__head {
  border-bottom-color: rgba(148, 163, 184, 0.28);
}

html:not(.fc-light) .fc-notifications__segment {
  border-color: rgba(148, 163, 184, 0.24);
}

html:not(.fc-light) .fc-notifications__ad,
html:not(.fc-light) .fc-notifications__row {
  border-bottom-color: rgba(148, 163, 184, 0.28);
}

/* —— Menu page (parity with mobile Home menu) —— */
.fc-menu-page {
  padding-inline: 16px;
  padding-bottom: 48px;
}
.fc-menu-page__head {
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--fc-line-soft);
  margin-bottom: 20px;
}
.fc-menu-page__back {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fc-primary);
  text-decoration: none;
}
.fc-menu-page__back:hover {
  text-decoration: underline;
}
.fc-menu-page__title {
  margin: 0;
  font-family: var(--fc-display);
  font-size: 1.42rem;
  font-weight: 800;
}
.fc-menu-page__body {
  max-width: 100%;
  width: 100%;
  margin-inline: 0;
  box-sizing: border-box;
}
.fc-menu-page__section-label {
  margin: 8px 0 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-text);
  opacity: 0.85;
}
.fc-menu-page__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .fc-menu-page__row2 {
    grid-template-columns: 1fr;
  }
}
.fc-menu-page__half {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  border-radius: var(--fc-radius-card);
  border: 1px solid var(--fc-line-soft);
  background: var(--fc-elevated);
  color: var(--fc-text);
  cursor: pointer;
  text-align: left;
  font-family: var(--fc-font);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.fc-menu-page__half:hover {
  border-color: rgba(46, 230, 192, 0.28);
  box-shadow: 0 0 0 3px var(--fc-primary-glow);
}
.fc-menu-page__half--switch {
  cursor: default;
}
.fc-menu-page__half--switch:hover {
  border-color: var(--fc-line-soft);
  box-shadow: none;
}
.fc-menu-page__glyph {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.fc-menu-page__tile-title {
  font-weight: 800;
  font-size: 1.03rem;
}
.fc-menu-page__tile-sub {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.35;
}
.fc-menu-page__switch-label {
  position: absolute;
  top: 14px;
  right: 14px;
  cursor: pointer;
}
.fc-menu-page__half--switch {
  position: relative;
  padding-right: 56px;
}
.fc-menu-page__switch {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.fc-menu-page__switch-ui {
  display: block;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--fc-line-soft);
  position: relative;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}
.fc-menu-page__switch-ui::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--fc-muted);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.fc-menu-page__switch:checked + .fc-menu-page__switch-ui {
  background: var(--fc-primary-glow);
  border-color: rgba(46, 230, 192, 0.45);
}
.fc-menu-page__switch:checked + .fc-menu-page__switch-ui::after {
  transform: translate(18px, -50%);
  background: var(--fc-primary);
}
html.fc-light .fc-menu-page__switch-ui {
  background: rgba(15, 20, 25, 0.06);
}
.fc-menu-page__rule {
  border: none;
  border-top: 1px solid var(--fc-line-soft);
  margin: 20px 0;
}
.fc-menu-page__full {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--fc-line-soft);
  border-radius: var(--fc-radius-card);
  background: var(--fc-elevated);
  cursor: pointer;
  text-align: left;
  font-family: var(--fc-font);
  color: inherit;
  margin-bottom: 12px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.fc-menu-page__full:hover {
  border-color: rgba(46, 230, 192, 0.28);
}
.fc-menu-page__full-glyph {
  flex-shrink: 0;
  font-size: 1.35rem;
}
.fc-menu-page__full-mid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-menu-page__full-title {
  font-weight: 800;
  font-size: 1.05rem;
}
.fc-menu-page__full-sub {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--fc-muted);
}
.fc-menu-page__chev {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--fc-muted);
  font-weight: 300;
}
.fc-menu-page__signout {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #ef444466;
  background: transparent;
  color: #f87171;
  font-family: var(--fc-font);
  font-weight: 800;
  font-size: 1.02rem;
  cursor: pointer;
}
.fc-menu-page__signout:hover {
  background: rgba(248, 113, 113, 0.08);
}
.fc-menu-page__guest-note {
  margin: 24px 0 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.45;
  text-align: center;
}
.fc-menu-page__guest-note a {
  color: var(--fc-primary);
  font-weight: 700;
}

/* Help hub, login security, app tour (web parity with mobile) */
.fc-help-intro {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--fc-muted);
  margin: 0 0 16px;
}
.fc-help-hub__link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--fc-border, rgba(255, 255, 255, 0.12));
  background: transparent;
  text-align: left;
  text-decoration: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.15s;
}
a.fc-help-hub__link:hover {
  background: rgba(255, 255, 255, 0.05);
}
html.fc-light a.fc-help-hub__link:hover {
  background: rgba(0, 0, 0, 0.04);
}
.fc-help-hub__glyph {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.fc-help-hub__mid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-help-hub__link-title {
  font-weight: 700;
  font-size: 1rem;
}
.fc-help-hub__link-sub {
  font-size: 0.88rem;
  color: var(--fc-muted);
  line-height: 1.35;
}

.fc-login-sec__danger {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.06);
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #f87171;
}
.fc-login-sec__danger--outline {
  background: transparent;
  border-style: dashed;
}
.fc-login-sec__danger-title {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}
.fc-login-sec__danger-sub {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.4;
}

.fc-change-pw__hint {
  color: var(--fc-muted);
  line-height: 1.45;
  margin-bottom: 16px;
}
.fc-change-pw__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.fc-change-pw__field span {
  font-size: 0.86rem;
  font-weight: 600;
}
.fc-change-pw__field input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--fc-border, rgba(255, 255, 255, 0.15));
  background: var(--fc-input-bg, rgba(0, 0, 0, 0.25));
  color: inherit;
  font: inherit;
}
html.fc-light .fc-change-pw__field input {
  background: #fff;
  border-color: #e0e0e0;
}

/* Forgot / reset password — aligned with auth card */
.fc-auth-reset-page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  padding: clamp(28px, 6vh, 56px) var(--fc-page-gutter-x) clamp(40px, 8vh, 72px);
  font-family: var(--fc-font);
  background: #ffffff;
}

html:not(.fc-light) .fc-auth-reset-page {
  background: linear-gradient(160deg, #051a14 0%, #0f172a 48%, #082821 100%);
}

.fc-auth-reset-shell {
  width: 100%;
  max-width: min(560px, 100%);
  margin: 0 auto;
}

.fc-auth-reset-card {
  width: 100%;
  margin: 0;
  padding: clamp(28px, 4vw, 36px) clamp(28px, 4.5vw, 40px) clamp(32px, 5vw, 40px);
}

.fc-pw-reset-page__verifying {
  font-size: 0.88rem;
  color: var(--fc-muted);
  margin-bottom: 16px;
  text-align: center;
}

.fc-pw-reset-page__err-block {
  margin-bottom: 16px;
}

.fc-pw-reset-page__err-hint {
  margin: 6px 0 0;
  font-size: 0.86rem;
  text-align: center;
}

.fc-pw-reset-page__err-hint a {
  color: var(--fc-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fc-auth-page__back,
.fc-auth-reset-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 4px 2px;
  color: var(--fc-primary);
  font-family: var(--fc-font);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.12s;
}

.fc-auth-page__back:hover,
.fc-auth-reset-back:hover {
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fc-auth-page__back svg,
.fc-auth-reset-back svg {
  flex-shrink: 0;
}

.fc-auth-page__card--signup .fc-auth-page__back {
  margin-bottom: 16px;
}

.fc-auth-reset-card-head {
  margin-bottom: 24px;
}

.fc-auth-reset-title {
  margin: 0 0 10px;
  font-family: var(--fc-display);
  font-size: clamp(1.42rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--fc-text);
}

.fc-auth-reset-subtitle {
  margin: 0;
  font-family: var(--fc-font);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--fc-muted);
}

.fc-auth-reset-success {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-family: var(--fc-font);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--fc-primary);
  background: color-mix(in srgb, var(--fc-primary) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--fc-primary) 28%, transparent);
}

.fc-auth-reset-form {
  gap: 18px;
}

.fc-auth-reset-form .fc-auth-page__submit {
  margin-top: 4px;
}

html.fc-light .fc-auth-reset-page {
  background: #ffffff;
}

html.fc-light .layout--auth-flow .fc-auth-reset-page {
  background: #ffffff;
}

@media (min-width: 1025px) {
  .layout--auth-flow .fc-auth-reset-page {
    padding-top: clamp(36px, 5vh, 64px);
  }

  .layout--auth-flow .fc-auth-reset-shell {
    max-width: 560px;
  }
}

.fc-faq__search {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid var(--fc-border, rgba(255, 255, 255, 0.12));
  background: var(--fc-input-bg, rgba(0, 0, 0, 0.2));
  color: inherit;
  font: inherit;
}
html.fc-light .fc-faq__search {
  background: #fff;
  border-color: #e0e0e0;
}
.fc-faq__empty {
  color: var(--fc-muted);
}
.fc-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-faq__item {
  margin-bottom: 10px;
  border: 1px solid var(--fc-border, rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  overflow: hidden;
}
.fc-faq__q {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.fc-faq__cat {
  width: 100%;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-primary);
}
.fc-faq__qtext {
  flex: 1;
  font-weight: 700;
  min-width: 0;
}
.fc-faq__chev {
  flex-shrink: 0;
  opacity: 0.7;
}
.fc-faq__a {
  padding: 0 12px 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--fc-muted);
  white-space: pre-wrap;
}

.fc-guide__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-guide__card {
  border-radius: 12px;
  border: 1px solid var(--fc-border, rgba(255, 255, 255, 0.12));
  overflow: hidden;
}
.fc-guide__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.fc-guide__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-guide__emoji {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.fc-guide__title {
  flex: 1;
  font-weight: 800;
  font-size: 1rem;
}
.fc-guide__chev {
  opacity: 0.7;
}
.fc-guide__body {
  padding: 0 14px 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--fc-muted);
}
.fc-guide__body ul {
  margin: 0;
  padding-left: 1.1rem;
}
.fc-guide__tips {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0, 212, 168, 0.08);
}
.fc-guide__tips ul {
  margin: 8px 0 0;
}

.fc-payments-help p {
  margin: 0;
  line-height: 1.55;
  color: var(--fc-muted);
}
.fc-payments-help__section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--fc-border, rgba(255, 255, 255, 0.1));
}
.fc-payments-help__section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.fc-payments-help__section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.fc-payments-help__section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-payments-help__section-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
}
.fc-payments-help__lead {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--fc-muted);
}
.fc-payments-help__subtitle {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--fc-text, inherit);
}
.fc-payments-help__subtitle--section {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.fc-payments-help__card {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--fc-border, rgba(255, 255, 255, 0.12));
  margin-bottom: 12px;
  background: var(--fc-surface, rgba(255, 255, 255, 0.03));
}
.fc-payments-help__card p {
  margin: 0;
}
.fc-payments-help__card-title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--fc-text, inherit);
}
.fc-payments-help__provider-row {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .fc-payments-help__provider-row {
    grid-template-columns: 1fr 1fr;
  }
}
.fc-payments-help__provider-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.fc-payments-help__card--provider p {
  font-size: 0.92rem;
}
.fc-payments-help__steps {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-payments-help__step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--fc-muted);
}
.fc-payments-help__step span {
  flex: 1;
  min-width: 0;
}
.fc-payments-help__note {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 188, 212, 0.25);
  background: rgba(0, 188, 212, 0.08);
  margin-bottom: 4px;
}
.fc-payments-help__note p {
  margin: 0;
  font-size: 0.92rem;
}
.fc-payments-help__issues {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-payments-help__issue {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--fc-border, rgba(255, 255, 255, 0.12));
  background: var(--fc-surface, rgba(255, 255, 255, 0.03));
}
.fc-payments-help__issue p {
  margin: 0;
  font-size: 0.92rem;
}
.fc-payments-help__issue-title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fc-text, inherit);
}
.fc-payments-help__cta {
  margin-top: 28px;
  padding-top: 8px;
}
.fc-payments-help__cta .fc-btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 480px) {
  .fc-payments-help__cta .fc-btn {
    width: auto;
  }
}

.fc-app-tour {
  display: flex;
  flex-direction: column;
  min-height: 70vh;
}
.fc-app-tour__chrome {
  display: flex;
  justify-content: flex-end;
  padding: 4px 4px 0;
}
.fc-app-tour__skip {
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--fc-font);
}
.fc-app-tour__slide {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 12px 20px;
}
.fc-app-tour__hero {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.fc-app-tour__hero-icon {
  display: block;
  flex-shrink: 0;
}
.fc-app-tour__title {
  margin: 0 0 6px;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.2;
}
.fc-app-tour__subtitle {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 700;
}
.fc-app-tour__desc {
  max-width: 100%;
  width: 100%;
  padding-inline: clamp(0px, 2vw, 12px);
  box-sizing: border-box;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--fc-muted);
}
.fc-app-tour__desc p {
  margin: 0 0 10px;
}
.fc-app-tour__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.fc-app-tour__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 600;
}
.fc-app-tour__badge-icon {
  display: block;
  flex-shrink: 0;
}
.fc-app-tour__footer {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--fc-border, rgba(255, 255, 255, 0.1));
}
.fc-app-tour__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.fc-app-tour__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--fc-line);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.fc-app-tour__dot--on {
  transform: scale(1.15);
}
html.fc-light .fc-app-tour__dot:not(.fc-app-tour__dot--on) {
  background: color-mix(in srgb, var(--fc-muted) 35%, var(--fc-line));
}
.fc-app-tour__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.fc-app-tour__btns--solo {
  justify-content: center;
}
.fc-app-tour__next {
  min-width: 128px;
  font-weight: 700 !important;
}
.fc-app-tour__backlink {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: var(--fc-primary);
  font-weight: 600;
}
html.fc-light .fc-app-tour__footer,
html.fc-light .fc-page.fc-app-tour {
  background: #ffffff;
}

.fc-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid var(--fc-border, rgba(255,255,255,0.12));
  background: transparent;
  color: var(--fc-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.fc-share-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fc-primary);
}
.fc-share-btn--cert {
  padding: 6px 16px;
  font-size: 0.9rem;
  border-color: var(--fc-primary);
  color: var(--fc-primary);
}
.fc-share-btn--cert:hover {
  background: rgba(0, 212, 168, 0.1);
}
.fc-share-btn--cert-prominent {
  padding: 9px 18px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: none;
  color: #eef2ff;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}
.fc-share-btn--cert-prominent:hover {
  color: #fff;
  background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
}
.fc-share-btn--cert-prominent:disabled {
  opacity: 0.85;
  cursor: wait;
}

.fc-stake-card {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--fc-primary) 16%, var(--fc-line-soft));
  box-shadow: 0 10px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
html.fc-light .fc-stake-card {
  background: var(--fc-surface);
  border-color: var(--fc-line-soft);
}
.fc-stake-card:hover {
  border-color: rgba(46,230,192,0.22);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 14px 40px rgba(0,0,0,0.26), 0 0 0 1px rgba(46,230,192,0.07);
  transform: translateY(-1px);
}
html.fc-light .fc-stake-card:hover {
  background: color-mix(in srgb, var(--fc-bg-mid) 50%, var(--fc-surface));
  border-color: color-mix(in srgb, var(--fc-primary) 28%, var(--fc-line));
}
.fc-stake-card__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.fc-stake-card__role {
  font-size: 0.75rem;
  color: var(--fc-muted);
  font-weight: 600;
}
.fc-stake-card__body {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 6px;
}
.fc-stake-card__thread {
  font-size: 0.82rem;
  color: var(--fc-muted);
  line-height: 1.35;
  margin: 0 0 10px;
}
.fc-thread-consensus__counts {
  font-size: 0.82rem;
  color: var(--fc-muted);
  margin: 0 0 10px;
  line-height: 1.4;
}
