/* Atlas Pulse experience: homepage launchpad plus the public daily review desk. */

body[data-site="atlas"] {
  --pulse-cyan: #52dcff;
  --pulse-mint: #39d98a;
  --pulse-amber: #f5b942;
  --pulse-coral: #ff7a73;
  --pulse-line: rgba(148, 210, 255, 0.20);
}

body[data-site="atlas"] .fc-live-launchpad {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 20px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--pulse-line);
  border-bottom: 1px solid var(--pulse-line);
}

body[data-site="atlas"] .fc-live-launchpad__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

body[data-site="atlas"] .fc-live-launchpad__status,
body[data-site="atlas"] .fc-live-launcher__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pulse-mint);
  font: 900 0.62rem/1.2 var(--mono, ui-monospace, monospace);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body[data-site="atlas"] .fc-live-launchpad__status::before,
body[data-site="atlas"] .fc-live-launcher__status::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 13%, transparent);
}

body[data-site="atlas"] .fc-live-launchpad__head h2 {
  margin: 5px 0 0;
  color: var(--text-primary, #f4fbff);
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

body[data-site="atlas"] .fc-live-launchpad__head p {
  max-width: 430px;
  margin: 0;
  color: var(--text-muted, #a7bfd2);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: right;
}

body[data-site="atlas"] .fc-live-launchpad__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-site="atlas"] .fc-live-launcher {
  --launcher-accent: var(--pulse-cyan);
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(42px, auto) auto;
  gap: 8px;
  min-width: 0;
  min-height: 192px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--launcher-accent) 30%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--launcher-accent) 10%, transparent), transparent 54%),
    rgba(5, 18, 31, 0.82);
  color: var(--text-primary, #f4fbff);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body[data-site="atlas"] .fc-live-launcher--sources { --launcher-accent: var(--pulse-amber); }
body[data-site="atlas"] .fc-live-launcher--pulse { --launcher-accent: var(--pulse-mint); }

body[data-site="atlas"] .fc-live-launcher::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 2px;
  background: var(--launcher-accent);
  opacity: 0.48;
  transform-origin: right center;
  transition: width 180ms ease, opacity 180ms ease;
}

body[data-site="atlas"] .fc-live-launcher:hover,
body[data-site="atlas"] .fc-live-launcher:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--launcher-accent) 66%, transparent);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--launcher-accent) 12%, rgba(0, 0, 0, 0.24));
  outline: none;
}

body[data-site="atlas"] .fc-live-launcher:hover::after,
body[data-site="atlas"] .fc-live-launcher:focus-visible::after {
  width: 58px;
  opacity: 0.9;
}

body[data-site="atlas"] .fc-live-launcher strong {
  color: var(--text-primary, #f4fbff);
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

body[data-site="atlas"] .fc-live-launcher small {
  color: var(--text-muted, #a7bfd2);
  font-size: 0.78rem;
  line-height: 1.5;
}

body[data-site="atlas"] .fc-live-launcher__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--launcher-accent) 22%, transparent);
  color: var(--launcher-accent);
  font: 900 0.66rem/1.2 var(--mono, ui-monospace, monospace);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body[data-site="atlas"] .fc-live-launcher__action b {
  color: inherit;
  font-size: 1rem;
}

body[data-site="atlas"] .atlas-market-pulse {
  max-width: 960px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(82, 220, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(82, 220, 255, 0.055), transparent 36%),
    rgba(4, 16, 29, 0.90);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

body[data-site="atlas"] .atlas-market-pulse__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

body[data-site="atlas"] .atlas-market-pulse__eyebrow {
  color: var(--pulse-mint);
}

body[data-site="atlas"] .atlas-market-pulse h2 {
  margin: 5px 0 0;
  color: var(--text-primary, #f4fbff);
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: 0;
}

body[data-site="atlas"] .atlas-market-pulse__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

body[data-site="atlas"] .atlas-market-pulse__open,
body[data-site="atlas"] .atlas-market-pulse__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(82, 220, 255, 0.30);
  border-radius: 6px;
  background: rgba(82, 220, 255, 0.08);
  color: #8eeeff;
  font: 900 0.66rem/1.2 var(--mono, ui-monospace, monospace);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

body[data-site="atlas"] .atlas-market-pulse__open {
  border-color: var(--pulse-mint);
  background: var(--pulse-mint);
  color: #03150e !important;
  -webkit-text-fill-color: #03150e;
}

body[data-site="atlas"] .atlas-market-pulse__meta {
  margin: 0 0 14px;
  color: var(--text-muted, #a7bfd2);
  font-size: 0.82rem;
  line-height: 1.5;
}

body[data-site="atlas"] .atlas-market-pulse__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-site="atlas"] .atlas-market-pulse__item {
  --item-accent: var(--pulse-cyan);
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(68px, auto) auto;
  gap: 9px;
  min-width: 0;
  min-height: 210px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--item-accent) 25%, transparent);
  border-radius: 8px;
  background: rgba(2, 9, 18, 0.64);
  color: var(--text-primary, #f4fbff);
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

body[data-site="atlas"] .atlas-market-pulse__item[data-ac="forex"] { --item-accent: #c4a7ff; }
body[data-site="atlas"] .atlas-market-pulse__item[data-ac="commodity"] { --item-accent: var(--pulse-amber); }
body[data-site="atlas"] .atlas-market-pulse__item[data-ac="etf"] { --item-accent: var(--pulse-mint); }
body[data-site="atlas"] .atlas-market-pulse__item[data-ac="index"],
body[data-site="atlas"] .atlas-market-pulse__item[data-ac="indices"] { --item-accent: var(--pulse-coral); }

body[data-site="atlas"] .atlas-market-pulse__item:hover,
body[data-site="atlas"] .atlas-market-pulse__item:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--item-accent) 72%, transparent);
  background: color-mix(in srgb, var(--item-accent) 7%, rgba(2, 9, 18, 0.76));
  outline: none;
}

body[data-site="atlas"] .apx-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
}

body[data-site="atlas"] .apx-rank,
body[data-site="atlas"] .apx-chip,
body[data-site="atlas"] .apx-fresh {
  font: 900 0.57rem/1 var(--mono, ui-monospace, monospace);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-site="atlas"] .apx-rank {
  color: var(--item-accent);
}

body[data-site="atlas"] .apx-chip {
  min-width: 0;
  overflow: hidden;
  color: var(--text-muted, #a7bfd2);
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-site="atlas"] .apx-fresh {
  padding: 4px 6px;
  border: 1px solid color-mix(in srgb, var(--pulse-mint) 48%, transparent);
  border-radius: 999px;
  color: var(--pulse-mint);
}

body[data-site="atlas"] .atlas-market-pulse__item strong {
  color: var(--text-primary, #f4fbff);
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 0;
}

body[data-site="atlas"] .atlas-market-pulse__item small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-muted, #a7bfd2);
  font-size: 0.75rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body[data-site="atlas"] .apx-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 9px;
  border-top: 1px solid color-mix(in srgb, var(--item-accent) 20%, transparent);
  color: var(--item-accent);
  font: 900 0.59rem/1.3 var(--mono, ui-monospace, monospace);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Dedicated Pulse page. */
body.atlas-pulse-page {
  --pulse-bg: #02070d;
  --pulse-panel: #07131f;
  --pulse-panel-strong: #0a1a29;
  --pulse-text: #f4fbff;
  --pulse-muted: #9db7ca;
  --pulse-accent: #52dcff;
  --pulse-line: rgba(148, 210, 255, 0.20);
  background:
    linear-gradient(90deg, rgba(82, 220, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #02070d 0%, #06111c 52%, #02070d 100%);
  background-size: 44px 44px, auto;
  color: var(--pulse-text);
}

html[data-theme="light"] body.atlas-pulse-page {
  --pulse-bg: #e8f1f7;
  --pulse-panel: #f8fbfe;
  --pulse-panel-strong: #edf6fa;
  --pulse-text: #061120;
  --pulse-muted: #405164;
  --pulse-accent: #075f7c;
  --pulse-line: rgba(7, 65, 90, 0.22);
  background:
    linear-gradient(90deg, rgba(7, 95, 124, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f4f9fc 0%, #e8f1f7 60%, #dceaf2 100%);
  background-size: 44px 44px, auto;
}

body.atlas-pulse-page main.pulse-page-shell {
  width: min(1120px, calc(100% - 32px));
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px 0 92px;
  overflow: visible;
}

.pulse-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.65fr);
  align-items: end;
  gap: 42px;
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--pulse-line);
}

.pulse-hero .eyebrow {
  color: var(--pulse-mint);
}

.pulse-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--pulse-text);
  font-size: 3.45rem;
  line-height: 1;
  letter-spacing: 0;
}

.pulse-hero__headline {
  margin: 12px 0 8px;
  color: var(--pulse-text);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.25;
}

.pulse-hero .lede {
  max-width: 710px;
  margin: 0;
  color: var(--pulse-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.pulse-review-console {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--pulse-line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--pulse-panel) 92%, transparent);
}

.pulse-review-console__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.pulse-review-console__top span,
.pulse-review-console small {
  color: var(--pulse-muted);
  font: 800 0.64rem/1.4 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pulse-review-console__top strong {
  color: var(--pulse-accent);
  font: 900 1.2rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0;
}

.pulse-review-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pulse-line) 72%, transparent);
}

.pulse-review-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pulse-accent), var(--pulse-mint));
  transition: width 300ms ease;
}

.pulse-radar {
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--pulse-line);
}

.pulse-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.pulse-section-head h2 {
  margin: 4px 0 0;
  color: var(--pulse-text);
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.pulse-section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--pulse-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: right;
}

.pulse-radar__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.pulse-radar__item {
  --radar-accent: var(--pulse-accent);
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(38px, auto) auto;
  gap: 7px;
  min-width: 0;
  min-height: 148px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--radar-accent) 28%, transparent);
  border-radius: 6px;
  background: color-mix(in srgb, var(--pulse-panel) 88%, transparent);
  color: var(--pulse-text);
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pulse-radar__item[data-asset="forex"] { --radar-accent: #c4a7ff; }
.pulse-radar__item[data-asset="commodity"] { --radar-accent: var(--pulse-amber); }
.pulse-radar__item[data-asset="etf"] { --radar-accent: var(--pulse-mint); }
.pulse-radar__item[data-asset="index"] { --radar-accent: var(--pulse-coral); }

.pulse-radar__item:hover,
.pulse-radar__item:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--radar-accent) 72%, transparent);
  background: color-mix(in srgb, var(--radar-accent) 7%, var(--pulse-panel));
  outline: none;
}

.pulse-radar__item.is-reviewed {
  border-color: color-mix(in srgb, var(--pulse-mint) 62%, transparent);
}

.pulse-radar__item.is-reviewed::after {
  content: "Reviewed";
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: var(--pulse-mint);
  font: 900 0.52rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pulse-radar__rank,
.pulse-radar__state,
.pulse-radar__meta {
  font: 900 0.57rem/1.35 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-radar__rank { color: var(--radar-accent); }
.pulse-radar__state { color: var(--pulse-muted); }
.pulse-radar__item strong { color: var(--pulse-text); font-size: 1.02rem; letter-spacing: 0; }
.pulse-radar__item small { overflow: hidden; color: var(--pulse-muted); font-size: 0.72rem; line-height: 1.35; text-overflow: ellipsis; }
.pulse-radar__meta { color: var(--radar-accent); }

.pulse-files {
  padding: 34px 0 0;
}

.pulse-filter-bar {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scrollbar-width: none;
}

.pulse-filter-bar::-webkit-scrollbar { display: none; }

.pulse-filter-bar button {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid var(--pulse-line);
  border-radius: 6px;
  background: transparent;
  color: var(--pulse-muted);
  cursor: pointer;
  font: 900 0.62rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-filter-bar button[aria-pressed="true"] {
  border-color: var(--pulse-accent);
  background: color-mix(in srgb, var(--pulse-accent) 12%, transparent);
  color: var(--pulse-accent);
}

.pulse-change-list {
  display: grid;
  gap: 12px;
}

.pulse-change {
  --change-accent: var(--pulse-accent);
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--change-accent) 24%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--pulse-panel) 94%, transparent);
  scroll-margin-top: 82px;
}

.pulse-change[data-asset="forex"] { --change-accent: #c4a7ff; }
.pulse-change[data-asset="commodity"] { --change-accent: var(--pulse-amber); }
.pulse-change[data-asset="etf"] { --change-accent: var(--pulse-mint); }
.pulse-change[data-asset="index"] { --change-accent: var(--pulse-coral); }
.pulse-change[hidden] { display: none !important; }

.pulse-change__rank {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  border-right: 1px solid color-mix(in srgb, var(--change-accent) 24%, transparent);
  color: var(--change-accent);
  font: 900 1.2rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0;
}

.pulse-change__body {
  min-width: 0;
  padding: 18px;
}

.pulse-change__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.pulse-change__identity {
  min-width: 0;
}

.pulse-change__symbol-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 5px;
}

.pulse-change__symbol {
  color: var(--change-accent);
  font: 900 0.76rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.pulse-change__state {
  padding: 4px 7px;
  border: 1px solid color-mix(in srgb, var(--change-accent) 38%, transparent);
  border-radius: 999px;
  color: var(--change-accent);
  font: 900 0.54rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pulse-change h3 {
  margin: 0;
  color: var(--pulse-text);
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.pulse-change__review {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid var(--pulse-line);
  border-radius: 6px;
  background: transparent;
  color: var(--pulse-muted);
  cursor: pointer;
  font: 900 0.58rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pulse-change__review[aria-pressed="true"] {
  border-color: var(--pulse-mint);
  color: var(--pulse-mint);
}

.pulse-change__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--pulse-line);
  border-bottom: 1px solid var(--pulse-line);
}

.pulse-change__signal {
  min-width: 0;
  padding: 14px 15px 14px 0;
}

.pulse-change__signal + .pulse-change__signal {
  padding-left: 15px;
  border-left: 1px solid var(--pulse-line);
}

.pulse-change__signal span {
  display: block;
  margin-bottom: 6px;
  color: var(--change-accent);
  font: 900 0.58rem/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pulse-change__signal p {
  margin: 0;
  color: var(--pulse-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.pulse-change__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.pulse-change__tags,
.pulse-change__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.pulse-change__tags span {
  color: var(--pulse-muted);
  font: 800 0.56rem/1.3 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pulse-change__tags span + span::before {
  content: "/";
  margin-right: 7px;
  color: var(--pulse-line);
}

.pulse-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid var(--pulse-line);
  border-radius: 6px;
  color: var(--pulse-accent);
  font: 900 0.59rem/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
}

.pulse-action--primary {
  border-color: var(--change-accent);
  background: var(--change-accent);
  color: #021019 !important;
  -webkit-text-fill-color: #021019;
}

.pulse-action:hover,
.pulse-action:focus-visible,
.pulse-change__review:hover,
.pulse-change__review:focus-visible,
.pulse-filter-bar button:hover,
.pulse-filter-bar button:focus-visible {
  outline: none;
  border-color: currentColor;
  filter: brightness(1.08);
}

body.atlas-pulse-page .radar-panel,
body.atlas-pulse-page .note-panel {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--pulse-line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--pulse-panel-strong) 92%, transparent);
}

body.atlas-pulse-page .radar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

body.atlas-pulse-page .radar-link {
  min-height: 112px;
  border-radius: 6px;
}

body.atlas-pulse-page .foot {
  margin-top: 28px;
  color: var(--pulse-muted);
}

body.atlas-pulse-page:not(.is-pulse-ready) .pulse-radar__item,
body.atlas-pulse-page:not(.is-pulse-ready) .pulse-change {
  opacity: 0;
  transform: translateY(10px);
}

body.atlas-pulse-page.is-pulse-ready .pulse-radar__item,
body.atlas-pulse-page.is-pulse-ready .pulse-change {
  animation: pulse-item-enter 420ms ease both;
  animation-delay: calc(var(--pulse-index, 0) * 42ms);
}

@keyframes pulse-item-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

html[data-theme="light"] body[data-site="atlas"] .fc-live-launcher,
html[data-theme="light"] body[data-site="atlas"] .atlas-market-pulse,
html[data-theme="light"] body[data-site="atlas"] .atlas-market-pulse__item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #f7fbfd);
  color: #061120;
  box-shadow: 0 14px 34px rgba(6, 17, 32, 0.08);
}

html[data-theme="light"] body[data-site="atlas"] .fc-live-launchpad__head h2,
html[data-theme="light"] body[data-site="atlas"] .fc-live-launcher strong,
html[data-theme="light"] body[data-site="atlas"] .atlas-market-pulse h2,
html[data-theme="light"] body[data-site="atlas"] .atlas-market-pulse__item strong {
  color: #061120;
}

html[data-theme="light"] body[data-site="atlas"] .fc-live-launchpad__head p,
html[data-theme="light"] body[data-site="atlas"] .fc-live-launcher small,
html[data-theme="light"] body[data-site="atlas"] .atlas-market-pulse__meta,
html[data-theme="light"] body[data-site="atlas"] .atlas-market-pulse__item small,
html[data-theme="light"] body[data-site="atlas"] .apx-chip {
  color: #405164;
}

html[data-theme="light"] body[data-site="atlas"] .atlas-market-pulse__open {
  color: #03150e;
}

@media (max-width: 900px) {
  body[data-site="atlas"] .fc-live-launchpad__grid,
  body[data-site="atlas"] .atlas-market-pulse__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pulse-change__signals {
    grid-template-columns: 1fr;
  }

  .pulse-change__signal,
  .pulse-change__signal + .pulse-change__signal {
    padding: 12px 0;
    border-left: 0;
  }

  .pulse-change__signal + .pulse-change__signal {
    border-top: 1px solid var(--pulse-line);
  }
}

@media (max-width: 700px) {
  body[data-site="atlas"] .fc-live-launchpad__head,
  body[data-site="atlas"] .atlas-market-pulse__head,
  .pulse-section-head,
  .pulse-change__footer {
    display: grid;
    align-items: start;
  }

  body[data-site="atlas"] .fc-live-launchpad__head p,
  .pulse-section-head p {
    text-align: left;
  }

  body[data-site="atlas"] .fc-live-launchpad__grid {
    grid-template-columns: 1fr;
  }

  body[data-site="atlas"] .fc-live-launcher {
    grid-template-rows: auto auto auto auto;
    min-height: 0;
  }

  body[data-site="atlas"] .atlas-market-pulse {
    padding: 16px;
  }

  body[data-site="atlas"] .atlas-market-pulse__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  body[data-site="atlas"] .atlas-market-pulse__grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(250px, 82vw);
    gap: 9px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  body.atlas-pulse-page main.pulse-page-shell {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    padding-top: 22px;
  }

  .pulse-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 0 24px;
  }

  .pulse-hero h1 {
    font-size: 2.55rem;
  }

  .pulse-hero__headline {
    font-size: 1.15rem;
  }

  .pulse-radar {
    padding: 22px 0 26px;
  }

  .pulse-radar__track {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(220px, 76vw);
    gap: 9px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .pulse-change {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .pulse-change__rank {
    padding-top: 18px;
    font-size: 0.88rem;
  }

  .pulse-change__body {
    padding: 15px;
  }

  .pulse-change__top {
    display: grid;
  }

  .pulse-change__review {
    width: 100%;
  }

  .pulse-change__actions,
  .pulse-change__actions .pulse-action {
    width: 100%;
  }

  body.atlas-pulse-page .radar-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-site="atlas"] .fc-live-launcher,
  body[data-site="atlas"] .atlas-market-pulse__item,
  .pulse-radar__item,
  .pulse-review-progress span {
    transition: none;
  }

  body.atlas-pulse-page:not(.is-pulse-ready) .pulse-radar__item,
  body.atlas-pulse-page:not(.is-pulse-ready) .pulse-change {
    opacity: 1;
    transform: none;
  }

  body.atlas-pulse-page.is-pulse-ready .pulse-radar__item,
  body.atlas-pulse-page.is-pulse-ready .pulse-change {
    animation: none;
  }
}
