:root {
  color-scheme: dark;
  --bg: #061019;
  --bg-2: #091722;
  --panel: rgba(17, 29, 39, .74);
  --panel-strong: rgba(20, 34, 45, .92);
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #f7fbff;
  --soft: #dce7ef;
  --muted: #9aa9b5;
  --dim: #6f7d88;
  --green: #3fe47d;
  --green-2: #2dd5a2;
  --cyan: #26d9e8;
  --blue: #46a4ff;
  --red: #ff4f57;
  --yellow: #ffd23f;
  --orange: #ffb237;
  --shadow: 0 28px 80px rgba(0, 0, 0, .36);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(45, 213, 162, .18), transparent 22rem),
    radial-gradient(circle at 78% 18%, rgba(70, 164, 255, .13), transparent 26rem),
    radial-gradient(circle at 60% 86%, rgba(63, 228, 125, .08), transparent 24rem),
    linear-gradient(145deg, #061019 0%, #091822 56%, #061019 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.48), transparent 78%);
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.desktop-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.desktop-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 100px;
  padding: 20px clamp(24px, 3.4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 25, .78);
  backdrop-filter: blur(18px);
}

.desktop-header.compact {
  min-height: 86px;
  padding-block: 15px;
}

.brand-lockup {
  display: inline-grid;
  grid-template-columns: 64px minmax(0, max-content);
  align-items: center;
  gap: 14px;
  justify-self: start;
  min-width: 0;
}

.brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(63, 228, 125, .09);
  border: 1px solid rgba(63, 228, 125, .20);
  box-shadow: 0 18px 42px rgba(63, 228, 125, .12);
  overflow: hidden;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-lockup strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 920;
}

.brand-lockup strong span {
  color: var(--green);
}

.brand-lockup em {
  display: block;
  margin-top: 9px;
  color: #b6c4ce;
  font-style: normal;
  font-size: 16px;
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 42px;
}

.desktop-nav a,
.desktop-nav button {
  position: relative;
  min-height: 42px;
  border: 0;
  padding: 0 4px;
  background: transparent;
  color: #c4d0d8;
  cursor: pointer;
  font-size: 17px;
  font-weight: 760;
}

.desktop-nav a::after,
.desktop-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  opacity: 0;
  transform: scaleX(.58);
  transition: opacity .2s ease, transform .2s ease;
}

.desktop-nav .active,
.desktop-nav a:hover,
.desktop-nav button:hover {
  color: var(--text);
}

.desktop-nav .active::after,
.desktop-nav a:hover::after,
.desktop-nav button:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.safe-chip {
  justify-self: end;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(13, 22, 31, .72);
  color: #e8f1f7;
  font-size: 17px;
  font-weight: 740;
  white-space: nowrap;
}

.safe-chip i,
.safe-chip svg {
  color: var(--yellow);
}

.overview-main,
.dashboard-main {
  width: min(100%, 1580px);
  margin: 0 auto;
  padding: 26px clamp(24px, 3.2vw, 48px) 44px;
}

.hero-panel {
  position: relative;
  min-height: 675px;
  display: grid;
  grid-template-columns: minmax(430px, .95fr) minmax(620px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 4vw, 70px);
  padding-top: 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.signal-pill {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(12, 24, 34, .70);
  color: #c8d4dc;
  font-size: 17px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 24px rgba(63, 228, 125, .72);
  flex: 0 0 auto;
}

.hero-copy h1 {
  max-width: 740px;
  margin: 34px 0 22px;
  font-size: clamp(56px, 5.1vw, 86px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--green);
  text-shadow: 0 0 36px rgba(63, 228, 125, .22);
}

.hero-copy p {
  max-width: 640px;
  margin: 0;
  color: #aebbc5;
  font-size: 23px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 52px;
}

.primary-action,
.secondary-action,
.icon-button {
  border: 0;
  cursor: pointer;
}

.primary-action,
.secondary-action {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: var(--radius);
  padding: 0 34px;
  font-size: 25px;
  font-weight: 860;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.primary-action {
  min-width: 330px;
  background: linear-gradient(135deg, #35d973, #20b96d);
  color: #ecfff3;
  box-shadow: 0 20px 55px rgba(32, 185, 109, .24);
}

.secondary-action {
  min-width: 300px;
  border: 1px solid rgba(70, 164, 255, .70);
  background: rgba(10, 20, 31, .58);
  color: #b8e0ff;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 62px rgba(0, 0, 0, .28);
}

.primary-action.small,
.secondary-action.small {
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  font-size: 15px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 38px;
  color: #9caab5;
  font-size: 17px;
  font-weight: 720;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-row i,
.trust-row svg {
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 210px;
  align-items: center;
  gap: 28px;
}

.phone-mock {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(100%, 490px);
  min-height: 640px;
  padding: 30px 24px;
  border: 8px solid rgba(255,255,255,.20);
  border-radius: 54px;
  background:
    linear-gradient(rgba(255,255,255,.04), transparent 24%),
    linear-gradient(160deg, #071018, #101d28);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.08),
    0 40px 90px rgba(0,0,0,.48);
  overflow: hidden;
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 156px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,.14);
  transform: translateX(-50%);
}

.phone-top,
.phone-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top {
  color: white;
  font-size: 16px;
  font-weight: 850;
}

.phone-status {
  display: inline-flex;
  align-items: end;
  gap: 4px;
}

.phone-status i {
  width: 5px;
  border-radius: 9px;
  background: white;
}

.phone-status i:nth-child(1) { height: 10px; }
.phone-status i:nth-child(2) { height: 15px; }
.phone-status i:nth-child(3) { height: 20px; }

.phone-brand {
  gap: 12px;
  margin-top: 30px;
}

.phone-brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex: 0 0 auto;
}

.phone-brand div {
  flex: 1;
  min-width: 0;
}

.phone-brand strong,
.phone-brand span {
  display: block;
}

.phone-brand strong {
  font-size: 23px;
  font-weight: 900;
}

.phone-brand span {
  margin-top: 4px;
  color: #aab7c1;
  font-size: 14px;
}

.phone-brand em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 780;
  white-space: nowrap;
}

.phone-brand em span {
  width: 6px;
  height: 6px;
  margin: 0;
  border-radius: 999px;
  background: var(--green);
}

.phone-card {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(18, 30, 41, .82);
  overflow: hidden;
}

.phone-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.phone-list div {
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.scan-tile {
  align-self: center;
  min-height: 410px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(17, 29, 39, .70);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow);
}

.scan-tile i,
.scan-tile svg {
  width: 44px;
  height: 44px;
  color: var(--blue);
}

.scan-tile strong {
  font-size: 22px;
}

.scan-tile span,
.scan-tile em {
  color: #aab7c1;
  font-style: normal;
  line-height: 1.65;
}

.scan-tile em {
  width: fit-content;
  margin-top: 6px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: #c9d6de;
}

.feature-band,
.overview-data-strip,
.desktop-panel,
.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 27, 37, .76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -72px;
  overflow: hidden;
}

.feature-band article {
  min-height: 190px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 26px;
  align-items: center;
  padding: 28px 48px;
  border-right: 1px solid var(--line);
}

.feature-band article:last-of-type {
  border-right: 0;
}

.feature-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  color: var(--green);
}

.feature-icon i,
.feature-icon svg {
  width: 44px;
  height: 44px;
}

.feature-band h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.feature-band p {
  margin: 0;
  color: #a7b4be;
  font-size: 17px;
  line-height: 1.72;
}

.feature-band footer {
  grid-column: 1 / -1;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .6fr);
  align-items: center;
  gap: 18px;
  padding: 0 44px;
  border-top: 1px solid var(--line);
  color: #9daab5;
  font-size: 16px;
}

.feature-band footer span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.feature-band footer span + span {
  justify-content: center;
  border-left: 1px solid var(--line);
}

.feature-band footer i,
.feature-band footer svg {
  color: var(--yellow);
}

.overview-data-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
}

.overview-data-strip div,
.metric-card {
  padding: 24px 28px;
}

.overview-data-strip div + div {
  border-left: 1px solid var(--line);
}

.overview-data-strip label,
.metric-card label {
  display: block;
  color: #9aa9b5;
  font-size: 14px;
  font-weight: 760;
}

.overview-data-strip strong,
.metric-card strong {
  display: block;
  margin-top: 9px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.1;
}

.dashboard-main {
  padding-top: 30px;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.dashboard-hero h1 {
  margin: 18px 0 10px;
  font-size: 48px;
  line-height: 1.06;
}

.dashboard-hero p {
  max-width: 760px;
  margin: 0;
  color: #a9b6c1;
  font-size: 18px;
  line-height: 1.7;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: #80909d;
  font-size: 13px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.45fr) minmax(360px, .8fr);
  gap: 16px;
  align-items: start;
}

.dashboard-column {
  display: grid;
  gap: 16px;
}

.desktop-panel {
  padding: 18px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
  margin-bottom: 14px;
}

.panel-title span,
.panel-title button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.panel-title span {
  font-size: 20px;
  font-weight: 850;
}

.panel-title em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.panel-title button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
}

.panel-empty {
  min-height: 92px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: var(--radius);
  color: #91a1ad;
  text-align: center;
}

.desktop-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(63, 228, 125, .18), transparent 18rem),
    radial-gradient(circle at 62% 62%, rgba(70, 164, 255, .12), transparent 20rem),
    #061019;
  transition: opacity .25s ease, visibility .25s ease;
}

body.is-ready .desktop-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.desktop-loader-card {
  width: min(320px, calc(100vw - 40px));
  display: grid;
  justify-items: center;
  gap: 13px;
  padding: 30px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 24, 34, .84);
  box-shadow: var(--shadow);
}

.desktop-loader-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(63, 228, 125, .18);
}

.desktop-loader-card strong {
  font-size: 27px;
  font-weight: 920;
}

.desktop-loader-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.desktop-loader-bar {
  width: 170px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
}

.desktop-loader-bar span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
  animation: loaderMove 1.1s ease-in-out infinite;
}

.motion-line {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  height: 1px;
  width: 42vw;
  opacity: .62;
  background: linear-gradient(90deg, transparent, rgba(38, 217, 232, .05), rgba(38, 217, 232, .85), transparent);
  filter: drop-shadow(0 0 12px rgba(38, 217, 232, .46));
}

.line-a {
  top: 30%;
  left: -48vw;
  animation: sweepA 8s linear infinite;
}

.line-b {
  top: 63%;
  right: -48vw;
  animation: sweepB 9s linear infinite;
}

.phone-orbit {
  position: absolute;
  inset: 7% 14% 5% 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(63,228,125,.10) 53%, transparent 68%),
    radial-gradient(circle at 56% 45%, rgba(38,217,232,.16), transparent 30%);
  filter: blur(.2px);
  opacity: .8;
}

.phone-mock {
  animation: floatPhone 6s ease-in-out infinite;
}

.phone-card::after,
.scan-tile::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.phone-card::after {
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.07) 45%, transparent 68%);
  transform: translateX(-120%);
  animation: cardSheen 4s ease-in-out infinite;
}

.scan-tile {
  position: relative;
  overflow: hidden;
}

.scan-tile::after {
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(70,164,255,.16), transparent);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.scan-tile:hover::after {
  transform: translateX(120%);
}

.skeleton-line {
  height: 18px;
  margin: 22px 22px 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.skeleton-line.wide {
  width: 66%;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 30px 22px 24px;
}

.skeleton-grid span {
  height: 74px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.preview-alert {
  padding: 22px;
}

.preview-alert-head,
.alert-head,
.alert-meta,
.alert-raw-toggle,
.history-row,
.desktop-links a {
  display: flex;
  align-items: center;
}

.preview-alert-head,
.alert-head {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.preview-alert-symbol,
.alert-symbol {
  min-width: 0;
}

.preview-alert-symbol strong,
.alert-symbol strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.preview-alert-symbol span,
.alert-symbol span {
  display: block;
  margin-top: 7px;
  color: #9eadb8;
  font-size: 14px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.trade-badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  padding: 0 9px;
  background: rgba(255,255,255,.10);
  color: #eaf2f8;
  font-size: 14px;
  font-weight: 850;
}

.trade-badge.long {
  background: rgba(63,228,125,.22);
  color: #8effb3;
}

.trade-badge.short {
  background: rgba(255,79,87,.20);
  color: #ff8b91;
}

.trade-badge.test {
  background: rgba(255,210,63,.18);
  color: #ffe17d;
}

.alert-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}

.preview-grid {
  grid-template-columns: repeat(2, 1fr);
}

.alert-grid div,
.preview-grid div {
  padding: 18px;
  background: rgba(8, 17, 25, .54);
}

.alert-grid label,
.preview-grid label {
  display: block;
  color: #95a5b1;
  font-size: 13px;
  font-weight: 760;
}

.alert-grid strong,
.preview-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

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

.compact-alert .alert-grid .wide,
.compact-alert .preview-grid .wide {
  grid-column: 1 / -1;
}

.compact-alert .alert-grid strong,
.compact-alert .preview-grid strong {
  font-size: 20px;
  line-height: 1.25;
}

.green {
  color: var(--green);
}

.red {
  color: var(--red);
}

.yellow {
  color: var(--yellow);
}

.alert-meta {
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.alert-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.alert-raw-toggle {
  width: 100%;
  justify-content: space-between;
  min-height: 56px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  background: rgba(255,255,255,.035);
  color: #d8e3ea;
  cursor: pointer;
}

.raw-text {
  display: none;
  max-height: 270px;
  overflow: auto;
  margin: 12px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(4, 10, 16, .7);
  color: #ccd8df;
  white-space: pre-wrap;
  line-height: 1.65;
}

.raw-text.open {
  display: block;
}

.history-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.history-row {
  width: 100%;
  min-height: 72px;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  background: rgba(255,255,255,.02);
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.history-row:last-child {
  border-bottom: 0;
}

.history-row:hover {
  background: rgba(255,255,255,.045);
}

.history-main {
  min-width: 0;
}

.history-symbol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-weight: 840;
}

.history-time {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.history-price {
  margin-left: auto;
  font-size: 20px;
  font-weight: 880;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,.035);
}

.status-card strong {
  font-size: 18px;
  line-height: 1.45;
}

.status-card p {
  margin: 0;
  color: #a6b4bf;
  line-height: 1.7;
}

.status-fields,
.learning-chips,
.note-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-fields span,
.learning-chips span,
.note-stack span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(255,255,255,.035);
  color: #becbd3;
  font-size: 13px;
}

.note-stack {
  display: grid;
}

.note-stack span {
  min-height: 0;
  align-items: flex-start;
  border-radius: var(--radius);
  padding: 10px 12px;
  line-height: 1.55;
}

.growth-desktop {
  display: grid;
  gap: 12px;
}

.prediction-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px;
  background: rgba(255,255,255,.035);
}

.prediction-row strong,
.prediction-row span {
  display: block;
}

.prediction-row span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.prediction-row em {
  color: var(--green);
  font-style: normal;
  font-size: 20px;
  font-weight: 900;
}


.options-desktop {
  display: grid;
  gap: 12px;
}

.option-desktop-family {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px;
  background: rgba(255,255,255,.035);
}

.option-desktop-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.option-desktop-head strong,
.option-pick strong {
  display: block;
  color: var(--text);
}

.option-desktop-head span,
.option-pick span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.option-bias-chip {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(63, 228, 125, .1);
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.option-picks {
  display: grid;
  gap: 8px;
}

.option-pick {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 10px 11px;
  background: rgba(8, 18, 27, .42);
}

.option-pick.put {
  border-color: rgba(255, 79, 87, .18);
}

.option-pick em {
  color: var(--green);
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
}

.option-pick.put em {
  color: var(--red);
}

.desktop-links {
  display: grid;
  gap: 10px;
}

.desktop-links a {
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255,255,255,.035);
}

.desktop-links a:hover {
  border-color: rgba(63, 228, 125, .38);
  background: rgba(63, 228, 125, .06);
}

.desktop-links a span {
  flex: 1;
  min-width: 0;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.qr-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.qr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.64);
  backdrop-filter: blur(14px);
}

.qr-dialog {
  position: relative;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 34px;
  background: linear-gradient(155deg, rgba(15, 28, 39, .96), rgba(8, 18, 27, .96));
  box-shadow: 0 30px 100px rgba(0,0,0,.56);
  transform: translateY(10px) scale(.98);
  transition: transform .2s ease;
}

.qr-modal.open .qr-dialog {
  transform: translateY(0) scale(1);
}

.qr-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.qr-close svg {
  transform: rotate(45deg);
}

.qr-copy span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-weight: 820;
}

.qr-copy h2 {
  margin: 18px 0 12px;
  font-size: 40px;
  line-height: 1.1;
}

.qr-copy p {
  margin: 0;
  color: #aebbc5;
  font-size: 17px;
  line-height: 1.75;
}

.qr-frame {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.qr-frame img {
  display: block;
  width: 260px;
  height: 260px;
}

.qr-link {
  grid-column: 2;
  justify-self: center;
  color: #9fd7ff;
}

@keyframes loaderMove {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(220%); }
}

@keyframes sweepA {
  0% { transform: translateX(0); opacity: 0; }
  12% { opacity: .64; }
  58% { opacity: .64; }
  100% { transform: translateX(158vw); opacity: 0; }
}

@keyframes sweepB {
  0% { transform: translateX(0); opacity: 0; }
  18% { opacity: .45; }
  72% { opacity: .45; }
  100% { transform: translateX(-158vw); opacity: 0; }
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes cardSheen {
  0%, 45% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

@media (max-width: 1280px) {
  .desktop-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: start;
    gap: 26px;
  }

  .safe-chip {
    grid-column: 2;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    grid-template-columns: minmax(420px, 560px) 260px;
    justify-content: center;
  }

  .feature-band {
    margin-top: 22px;
  }

  .feature-band article {
    grid-template-columns: 70px 1fr;
    padding: 24px 26px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-band footer {
    grid-template-columns: 1fr 1fr;
    min-height: 92px;
  }

  .dashboard-hero,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .desktop-header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .safe-chip,
  .desktop-nav,
  .brand-lockup {
    justify-self: start;
  }

  .desktop-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .safe-chip {
    min-height: 44px;
    font-size: 14px;
  }

  .overview-main,
  .dashboard-main {
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    font-size: 20px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .phone-mock {
    width: min(100%, 430px);
    min-height: 570px;
  }

  .scan-tile {
    min-height: 210px;
  }

  .feature-band,
  .overview-data-strip,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .feature-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-band footer {
    grid-template-columns: 1fr;
    padding: 18px 24px;
  }

  .feature-band footer span + span {
    justify-content: flex-start;
    border-left: 0;
  }

  .overview-data-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .alert-grid,
  .preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .qr-dialog {
    grid-template-columns: 1fr;
  }

  .qr-link {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .brand-lockup {
    grid-template-columns: 52px 1fr;
  }

  .brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .brand-lockup strong {
    font-size: 24px;
  }

  .brand-lockup em {
    font-size: 13px;
  }

  .dashboard-actions {
    grid-template-columns: 1fr;
  }

  .alert-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .phone-brand em {
    display: none;
  }

  .qr-dialog {
    padding: 28px 18px;
  }

  .qr-copy h2 {
    font-size: 30px;
  }

  .qr-frame {
    width: 250px;
    height: 250px;
  }

  .qr-frame img {
    width: 220px;
    height: 220px;
  }
}

/* EntryBeacon visual refresh, 2026-07 */
:root {
  --bg: #060907;
  --bg-2: #0b1110;
  --panel: rgba(13, 20, 20, .82);
  --panel-strong: rgba(15, 24, 24, .94);
  --line: rgba(208, 232, 223, .12);
  --line-strong: rgba(208, 232, 223, .20);
  --text: #f5fbf7;
  --soft: #dce8e1;
  --muted: #a5b5ae;
  --dim: #768780;
  --green: #69dd78;
  --green-2: #29c980;
  --cyan: #55d6d1;
  --blue: #76a8ff;
  --red: #ff656c;
  --yellow: #f3c95c;
  --orange: #eaa94a;
  --shadow: 0 22px 64px rgba(0, 0, 0, .38);
  --radius: 8px;
}

html,
body {
  background: var(--bg);
}

body {
  background:
    linear-gradient(115deg, rgba(33, 118, 77, .18) 0%, rgba(33, 118, 77, 0) 34%),
    linear-gradient(245deg, rgba(52, 97, 135, .16) 0%, rgba(52, 97, 135, 0) 34%),
    linear-gradient(180deg, #070b09 0%, #0a1110 48%, #050806 100%);
}

body::before {
  background:
    linear-gradient(rgba(218, 242, 231, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 242, 231, .022) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 47%, rgba(105, 221, 120, .04) 48% 52%, transparent 53% 100%);
  background-size: 48px 48px, 48px 48px, 240px 240px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.52), transparent 82%);
}

.desktop-shell {
  overflow-x: clip;
}

.desktop-header {
  grid-template-columns: minmax(218px, 1fr) auto minmax(184px, 1fr);
  gap: clamp(16px, 2vw, 28px);
  min-height: 78px;
  padding: 13px clamp(22px, 3vw, 42px);
  background: rgba(6, 10, 9, .78);
}

.desktop-header.compact {
  min-height: 72px;
  padding-block: 10px;
}

.brand-lockup {
  grid-template-columns: 50px minmax(0, max-content);
  gap: 12px;
}

.brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(105, 221, 120, .08);
  box-shadow: 0 14px 34px rgba(41, 201, 128, .10);
}

.brand-lockup strong {
  font-size: 24px;
  letter-spacing: 0;
}

.brand-lockup em {
  margin-top: 6px;
  font-size: 13px;
  color: #9fb0a9;
}

.desktop-nav {
  gap: clamp(22px, 3vw, 36px);
}

.desktop-nav a,
.desktop-nav button {
  min-height: 36px;
  font-size: 15px;
  font-weight: 780;
  color: #c4d0ca;
}

.safe-chip {
  min-height: 38px;
  gap: 8px;
  padding: 0 13px;
  border-radius: var(--radius);
  background: rgba(12, 18, 17, .72);
  color: #dfe9e3;
  font-size: 13px;
  font-weight: 780;
}

.overview-main,
.dashboard-main {
  width: min(100%, 1368px);
  padding: 22px clamp(18px, 2.4vw, 34px) 34px;
}

.hero-panel {
  min-height: calc(100vh - 118px);
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.08fr);
  gap: clamp(28px, 3.4vw, 56px);
  padding-top: 8px;
}

.signal-pill {
  min-height: 36px;
  gap: 9px;
  padding: 0 13px;
  border-radius: var(--radius);
  background: rgba(14, 23, 22, .70);
  color: #c5d5cf;
  font-size: 13px;
  font-weight: 760;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 18px rgba(105, 221, 120, .70);
}

.hero-copy h1 {
  max-width: 600px;
  margin: 26px 0 18px;
  font-size: clamp(44px, 4.1vw, 66px);
  line-height: 1.04;
}

.hero-copy h1 span {
  color: var(--green);
  text-shadow: none;
}

.hero-copy p {
  max-width: 560px;
  color: #b6c4bf;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  min-height: 58px;
  gap: 10px;
  padding: 0 24px;
  font-size: 17px;
  font-weight: 850;
}

.primary-action {
  min-width: 248px;
  background: linear-gradient(135deg, #72de79, #2ebd74);
  color: #061009;
  box-shadow: 0 18px 46px rgba(46, 189, 116, .22);
}

.secondary-action {
  min-width: 230px;
  border-color: rgba(85, 214, 209, .38);
  background: rgba(12, 20, 20, .58);
  color: #c5efec;
}

.primary-action.small,
.secondary-action.small {
  min-height: 44px;
  padding: 0 13px;
  font-size: 13px;
  white-space: nowrap;
}

.trust-row {
  display: grid;
  gap: 13px;
  margin-top: 34px;
  color: #aebeb7;
  font-size: 14px;
  font-weight: 740;
}

.hero-visual {
  min-height: 560px;
  grid-template-columns: minmax(300px, 390px) minmax(180px, 220px);
  justify-content: end;
  gap: 18px;
}

.phone-orbit {
  display: none;
}

.phone-mock {
  width: min(100%, 386px);
  min-height: 540px;
  padding: 24px 18px;
  border-width: 5px;
  border-color: rgba(221, 239, 230, .18);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 28%),
    linear-gradient(160deg, #08100f, #111b1b);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 28px 70px rgba(0,0,0,.46);
}

.phone-mock::before {
  width: 104px;
  height: 4px;
}

.phone-brand {
  margin-top: 24px;
}

.phone-brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.phone-brand strong {
  font-size: 19px;
}

.phone-brand span {
  font-size: 12px;
}

.phone-card {
  margin-top: 20px;
  border-color: rgba(208, 232, 223, .16);
  border-radius: var(--radius);
}

.phone-list {
  gap: 8px;
}

.phone-list div {
  height: 46px;
  border-radius: var(--radius);
}

.scan-tile {
  min-height: 286px;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(17, 29, 28, .82), rgba(9, 16, 15, .76));
}

.scan-tile i,
.scan-tile svg {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.scan-tile strong {
  font-size: 18px;
}

.scan-tile span,
.scan-tile em {
  font-size: 13px;
  line-height: 1.6;
}

.feature-band,
.overview-data-strip,
.desktop-panel,
.metric-card {
  background: linear-gradient(180deg, rgba(17, 27, 27, .86), rgba(9, 15, 15, .82));
  border-color: rgba(208, 232, 223, .12);
}

.feature-band {
  margin-top: 12px;
}

.feature-band article {
  min-height: 142px;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 28px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
}

.feature-icon i,
.feature-icon svg {
  width: 27px;
  height: 27px;
}

.feature-band h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.feature-band p {
  font-size: 14px;
  line-height: 1.62;
}

.feature-band footer {
  min-height: 58px;
  padding: 0 26px;
  font-size: 13px;
}

.overview-data-strip div,
.metric-card {
  padding: 18px 20px;
}

.overview-data-strip label,
.metric-card label {
  font-size: 12px;
}

.overview-data-strip strong,
.metric-card strong {
  font-size: 24px;
}

.dashboard-main {
  padding-top: 22px;
}

.dashboard-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  align-items: start;
  margin-bottom: 18px;
}

.dashboard-hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(34px, 3.5vw, 48px);
}

.dashboard-hero p {
  max-width: 660px;
  font-size: 15px;
  line-height: 1.65;
}

.dashboard-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
  gap: 9px;
  width: min(100%, 500px);
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.metric-card,
.desktop-panel {
  min-width: 0;
}

.metric-card span {
  margin-top: 8px;
  font-size: 12px;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(318px, .72fr);
  gap: 12px;
}

.dashboard-column {
  min-width: 0;
  gap: 12px;
}

.desktop-panel {
  padding: 16px;
}

.panel-title {
  min-height: 30px;
  margin-bottom: 12px;
}

.panel-title span {
  font-size: 17px;
}

.panel-title em,
.panel-title button {
  font-size: 12px;
}

.panel-empty {
  min-height: 82px;
  padding: 18px;
  line-height: 1.55;
}

.desktop-loader {
  background: linear-gradient(145deg, #060907, #0d1716 58%, #050806);
}

.motion-line {
  opacity: .34;
}

.preview-alert {
  padding: 18px;
}

.preview-alert-head,
.alert-head {
  gap: 12px;
  padding-bottom: 14px;
}

.preview-alert-symbol strong,
.alert-symbol strong {
  font-size: 20px;
  overflow-wrap: anywhere;
}

.preview-alert-symbol span,
.alert-symbol span {
  font-size: 12px;
  line-height: 1.45;
}

.trade-badge {
  min-height: 23px;
  border-radius: 6px;
  padding: 0 8px;
  font-size: 12px;
}

.alert-grid,
.preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

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

.alert-grid div,
.preview-grid div {
  min-width: 0;
  padding: 14px;
}

.alert-grid label,
.preview-grid label {
  font-size: 12px;
}

.alert-grid strong,
.preview-grid strong {
  font-size: 21px;
}

.history-row {
  min-height: 62px;
  padding: 0 13px;
}

.history-price {
  max-width: 132px;
  font-size: 16px;
}

.status-card,
.option-desktop-family,
.prediction-row,
.option-pick,
.desktop-links a {
  border-radius: var(--radius);
}

.status-card strong {
  font-size: 16px;
}

.status-card p {
  font-size: 13px;
}

.learning-chips span,
.status-fields span,
.note-stack span {
  font-size: 12px;
}

.option-pick {
  grid-template-columns: minmax(0, 1fr) auto;
}

.option-pick strong,
.option-pick span {
  overflow-wrap: anywhere;
}

@media (max-width: 1280px) {
  .desktop-header {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .desktop-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: start;
    gap: 24px;
  }

  .safe-chip {
    grid-column: 2;
  }

  .hero-panel,
  .dashboard-hero,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: minmax(320px, 420px) minmax(190px, 240px);
    justify-content: start;
  }

  .dashboard-actions {
    width: min(100%, 620px);
  }
}

@media (max-width: 900px) {
  .desktop-header {
    position: relative;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .safe-chip,
  .desktop-nav,
  .brand-lockup {
    justify-self: start;
  }

  .desktop-nav {
    width: 100%;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .safe-chip {
    grid-column: 1;
    min-height: 36px;
    white-space: normal;
  }

  .overview-main,
  .dashboard-main {
    padding: 16px;
  }

  .hero-panel {
    min-height: 0;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 16px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    min-height: 0;
    justify-content: stretch;
  }

  .phone-mock {
    width: min(100%, 410px);
    min-height: 520px;
  }

  .scan-tile {
    min-height: 160px;
  }

  .feature-band,
  .overview-data-strip,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .feature-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-band footer {
    grid-template-columns: 1fr;
    padding: 16px 20px;
  }

  .feature-band footer span + span {
    justify-content: flex-start;
    border-left: 0;
  }

  .overview-data-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .alert-grid,
  .preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-actions {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}

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

  .brand-icon {
    width: 46px;
    height: 46px;
  }

  .brand-lockup strong {
    font-size: 22px;
  }

  .dashboard-actions,
  .alert-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .phone-brand em {
    display: none;
  }
}

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