:root {
  --bg-top: #07131f;
  --bg-mid: #10273a;
  --bg-bottom: #091723;
  --panel: rgba(10, 26, 40, 0.68);
  --panel-strong: rgba(9, 23, 36, 0.82);
  --border: rgba(148, 184, 214, 0.16);
  --text: #e7f1f7;
  --muted: #93a8ba;
  --sky: #5ec8ff;
  --cyan: #7ef0ff;
  --amber: #ffbf57;
  --emerald: #4de0a8;
  --rose: #ff7d92;
  --violet: #9d8cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(94, 200, 255, 0.17), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 191, 87, 0.14), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(77, 224, 168, 0.12), transparent 30%),
    linear-gradient(180deg, var(--bg-top), var(--bg-mid) 42%, var(--bg-bottom));
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.06), transparent 40%),
    radial-gradient(ellipse at 60% 0%, rgba(126, 240, 255, 0.08), transparent 30%);
  animation: haze 10s ease-in-out infinite alternate;
}

body::after {
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.07) 50%, transparent 100%);
  background-size: 2px 18px;
  opacity: 0.12;
  mask-image: linear-gradient(180deg, transparent, black 25%, black 75%, transparent);
  animation: rainfall 14s linear infinite;
}

@keyframes haze {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, 8px, 0) scale(1.02); }
}

@keyframes rainfall {
  from { transform: translateY(-18px); }
  to { transform: translateY(18px); }
}

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

.shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  backdrop-filter: blur(18px);
  background: rgba(5, 15, 24, 0.52);
  border-bottom: 1px solid rgba(148, 184, 214, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2ea8ff, #1f5dff);
  box-shadow: 0 10px 30px rgba(46, 168, 255, 0.35);
}

.brand-mark::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #d8efff 70%);
  box-shadow:
    -10px 7px 0 1px rgba(255, 255, 255, 0.92),
    10px 6px 0 1px rgba(255, 255, 255, 0.92),
    0 17px 0 2px rgba(255, 191, 87, 0.95);
}

.brand-copy small,
.eyebrow,
.kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 11px;
}

.brand-copy strong {
  display: block;
  font-size: 17px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 14px;
  color: #cbdbe7;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sky);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(94, 200, 255, 0.36);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(46, 168, 255, 0.95), rgba(33, 117, 255, 0.95));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(33, 117, 255, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  padding: 56px 0 28px;
}

.home-page {
  padding-top: 24px;
}

.home-page .hero {
  padding: 16px 0 12px;
}

.home-page .hero-panel,
.home-page .signal-card {
  border-radius: 12px;
}

.home-page .hero-panel {
  padding: 24px;
}

.home-page .hero-copy h1 {
  margin: 6px 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.22;
  letter-spacing: 0;
}

.home-page .hero-copy p,
.home-page .list-copy,
.home-page .section-head p {
  font-size: 13px;
  line-height: 1.55;
}

.home-page .pill-row {
  margin: 16px 0 20px;
}

.home-page .pill {
  padding: 8px 11px;
  font-size: 12px;
}

.home-page .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.card,
.hero-panel,
.stats-strip,
.signal-card,
.section-card,
.table-shell,
.pricing-card,
.account-shell,
.account-card,
.register-card,
.metric-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-panel,
.section-card,
.account-shell,
.register-card {
  padding: 30px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p,
.section-card p,
.faq p,
.list-copy {
  color: #c1d2df;
  font-size: 16px;
  line-height: 1.7;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 184, 214, 0.12);
  color: #d4e4ee;
  font-size: 13px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(77, 224, 168, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(77, 224, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(77, 224, 168, 0); }
}

.hero-grid,
.stats-grid,
.three-grid,
.pricing-grid,
.mini-grid,
.dashboard-grid,
.flow-grid,
.account-grid {
  display: grid;
  gap: 18px;
}

.stats-strip {
  padding: 18px;
}

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

.metric-card {
  padding: 18px;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.04em;
}

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

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

.hero-grid .metric-card strong {
  font-size: 24px;
}

.signal-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.home-page .signal-card {
  padding: 20px;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 200, 255, 0.18), transparent 68%);
}

.signal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.signal-badge,
.freshness,
.status-chip,
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(148, 184, 214, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.freshness {
  color: var(--cyan);
}

.status-live {
  color: var(--emerald);
}

.status-delay {
  color: var(--amber);
}

.status-risk {
  color: var(--rose);
}

.signal-city {
  margin: 18px 0 8px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-page .signal-city {
  margin: 14px 0 6px;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.2;
  letter-spacing: 0;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.signal-grid div,
.source-list li,
.flow-step,
.faq,
.market-list li,
.delivery-row,
.account-card li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 184, 214, 0.08);
  border-radius: 18px;
}

.signal-grid div {
  padding: 14px;
}

.signal-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.signal-grid strong {
  font-size: 20px;
}

.home-page .signal-grid {
  gap: 10px;
  margin: 14px 0;
}

.home-page .signal-grid div {
  border-radius: 12px;
  padding: 11px 12px;
}

.home-page .signal-grid strong {
  font-size: 16px;
}

.section {
  padding: 26px 0;
}

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

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 560px;
  margin: 0;
}

.home-page .section {
  padding: 12px 0;
}

.home-page .section-head {
  align-items: end;
  margin-bottom: 10px;
}

.home-page .section-head h2 {
  margin-top: 4px;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.25;
  letter-spacing: 0;
}

.home-page .stats-strip {
  padding: 12px;
}

.home-page .stats-grid {
  gap: 12px;
}

.home-page .metric-card {
  padding: 12px 14px;
  border-radius: 12px;
}

.home-page .metric-card strong {
  margin-top: 5px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.home-page .metric-card span {
  font-size: 12px;
}

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

.city-roller {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(148, 184, 214, 0.12);
  border-bottom: 1px solid rgba(148, 184, 214, 0.12);
}

.city-universe {
  margin: 2px 0 12px;
  padding: 14px 16px;
  border: 1px solid rgba(94, 200, 255, 0.18);
  border-radius: 12px;
  background: rgba(10, 26, 40, 0.54);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.city-universe .city-roller {
  margin: 0 -16px;
  padding: 13px 16px;
  border-color: rgba(94, 200, 255, 0.22);
  background: rgba(255, 255, 255, 0.025);
}

.city-roller-track {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: max-content;
  animation: city-roll 52s linear infinite;
}

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

.city-roller span {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 214px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 184, 214, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.city-universe .city-roller span {
  width: 230px;
  min-height: 68px;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(148, 184, 214, 0.2);
}

.city-roller span.tier-two {
  border-color: rgba(147, 197, 253, 0.32);
  background: rgba(59, 130, 246, 0.09);
}

.city-roller strong {
  display: grid;
  gap: 3px;
  font-size: 15px;
}

.city-universe .city-roller strong {
  font-size: 16px;
}

.city-roller small {
  width: max-content;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.16);
  color: #bfdbfe;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.city-roller em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.city-universe .city-roller em {
  font-size: 15px;
}

.city-roller-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

@keyframes city-roll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 12px)); }
}

@media (prefers-reduced-motion: reduce) {
  .city-roller {
    overflow-x: auto;
  }

  .city-roller-track {
    animation: none;
  }

  .city-roller-track[aria-hidden="true"] {
    display: none;
  }
}

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

.faq-grid {
  align-items: start;
}

.method-faq-grid {
  gap: 12px;
}

.dashboard-grid {
  grid-template-columns: 1.35fr 0.65fr;
}

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

.flow-step,
.faq,
.account-card {
  padding: 18px;
}

.flow-step strong,
.account-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 18px;
  font-weight: 800;
  background: rgba(94, 200, 255, 0.14);
  color: var(--sky);
}

.method-flow-step {
  min-height: 248px;
  border: 1px solid rgba(148, 184, 214, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.method-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 98px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px dashed rgba(148, 184, 214, 0.16);
  background:
    radial-gradient(circle at 22% 20%, rgba(94, 200, 255, 0.16), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045) 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
}

.art-chip {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(126, 240, 255, 0.14);
  border: 1px solid rgba(126, 240, 255, 0.24);
  color: #dff6ff;
  font-size: 12px;
  font-weight: 800;
}

.art-bars {
  display: grid;
  grid-template-columns: repeat(6, 10px);
  gap: 8px;
  align-items: end;
  height: 52px;
}

.art-bars i {
  display: block;
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(126, 240, 255, 0.95), rgba(94, 200, 255, 0.22));
}

.art-bars i:nth-child(1) { height: 18px; }
.art-bars i:nth-child(2) { height: 36px; }
.art-bars i:nth-child(3) { height: 28px; }
.art-bars i:nth-child(4) { height: 46px; }
.art-bars i:nth-child(5) { height: 24px; }
.art-bars i:nth-child(6) { height: 40px; }

.art-city-scene {
  position: relative;
  width: 116px;
  height: 70px;
}

.art-sun {
  position: absolute;
  top: 2px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff2b8, #ffbf57 72%);
  box-shadow: 0 0 18px rgba(255, 191, 87, 0.32);
}

.art-cloud {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 42px;
  height: 16px;
  border-radius: 999px;
  background: rgba(231, 241, 247, 0.76);
}

.art-cloud::before,
.art-cloud::after {
  content: "";
  position: absolute;
  bottom: 5px;
  border-radius: 999px;
  background: inherit;
}

.art-cloud::before {
  left: 3px;
  width: 16px;
  height: 16px;
}

.art-cloud::after {
  right: 4px;
  width: 18px;
  height: 18px;
}

.art-skyline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  gap: 6px;
  height: 44px;
}

.art-skyline i {
  display: block;
  flex: 1 1 0;
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(148, 184, 214, 0.18);
  background: linear-gradient(180deg, rgba(126, 240, 255, 0.24), rgba(94, 200, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.art-skyline i:nth-child(1) { height: 18px; }
.art-skyline i:nth-child(2) { height: 28px; }
.art-skyline i:nth-child(3) { height: 36px; }
.art-skyline i:nth-child(4) { height: 24px; }
.art-skyline i:nth-child(5) { height: 32px; }

.art-vs {
  display: inline-grid;
  grid-template-columns: auto 22px auto;
  gap: 10px;
  align-items: center;
}

.art-vs b {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 184, 214, 0.18);
  font-size: 18px;
}

.art-vs i {
  position: relative;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 191, 87, 0.9);
}

.art-vs i::before,
.art-vs i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -1px;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: inherit;
  transform: rotate(45deg);
}

.art-vs i::after {
  top: 4px;
  transform: rotate(-45deg);
}

.art-filter-card {
  display: flex;
  gap: 8px;
}

.art-filter-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(77, 224, 168, 0.12);
  border: 1px solid rgba(77, 224, 168, 0.22);
  color: #d8fff0;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.source-list,
.market-list,
.account-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.source-list li,
.market-list li,
.account-card li {
  padding: 14px 16px;
  margin-bottom: 10px;
}

.chart-shell {
  padding: 20px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 210px;
  margin-top: 16px;
}

.bar {
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, rgba(126, 240, 255, 0.95), rgba(94, 200, 255, 0.18));
  position: relative;
}

.bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--muted);
}

.table-shell {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: rgba(255, 255, 255, 0.04);
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(148, 184, 214, 0.08);
  font-size: 14px;
  white-space: nowrap;
}

th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.tag-win { background: rgba(77, 224, 168, 0.14); color: var(--emerald); }
.tag-loss { background: rgba(255, 125, 146, 0.14); color: var(--rose); }
.tag-open { background: rgba(255, 191, 87, 0.14); color: var(--amber); }
.tag-status { background: rgba(148, 184, 214, 0.12); color: #cbdbe7; }

.compact-head {
  align-items: end;
  margin-bottom: 18px;
}

.compact-head h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.signal-table-shell table {
  min-width: 1180px;
}

.signal-table-shell th,
.signal-table-shell td {
  padding: 13px 14px;
  font-size: 13px;
}

.track-page {
  padding-top: 24px;
}

.track-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 10px;
}

.track-header h1 {
  margin: 4px 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.track-header p {
  margin: 0;
  color: #c1d2df;
  font-size: 13px;
  line-height: 1.5;
}

.track-page .stats-strip {
  padding: 12px;
}

.track-page .stats-grid {
  gap: 12px;
}

.track-page .metric-card {
  padding: 11px 13px;
  border-radius: 12px;
}

.track-page .metric-card strong {
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0;
}

.track-page .metric-card span {
  font-size: 12px;
}

.track-page .section {
  padding: 12px 0;
}

.table-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.table-caption strong {
  font-size: 15px;
}

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

.track-page .table-shell {
  border-radius: 12px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

.track-page th,
.track-page td {
  padding: 9px 11px;
  font-size: 12px;
}

.track-page th {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.track-page .tag {
  padding: 4px 8px;
  font-size: 11px;
}

.track-page .compact-head {
  margin-bottom: 10px;
}

.track-page .compact-head h2 {
  margin-top: 4px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0;
}

.track-page .compact-head p {
  font-size: 13px;
  line-height: 1.45;
}

.track-page .notice,
.track-page .footer {
  font-size: 12px;
}

.faq-page {
  padding-top: 22px;
}

.method-faq-grid .faq {
  padding: 14px 16px;
  border-radius: 12px;
}

.method-faq-grid .faq strong {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.25;
}

.method-faq-grid .faq p {
  font-size: 12px;
  line-height: 1.4;
  text-wrap: pretty;
}

.page-hero {
  padding: 22px 0 10px;
}

.page-hero h1 {
  margin: 4px 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.page-hero p,
.pricing-card p,
.faq p,
.comic-step p,
.account-top p,
.notice,
.footer {
  font-size: 13px;
  line-height: 1.55;
}

.page-hero p {
  margin: 0;
  color: #c1d2df;
}

.method-page {
  padding-top: 22px;
}

.method-header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: end;
  padding: 18px 0 10px;
}

.method-header h1,
.method-panel h2 {
  margin: 5px 0 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.method-header p,
.method-panel p,
.stack-node small {
  margin: 0;
  color: #c1d2df;
  font-size: 13px;
  line-height: 1.55;
}

.method-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

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

.method-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.method-kpi {
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 184, 214, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.method-kpi span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.method-kpi strong {
  font-size: 15px;
}

.stack-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.1fr;
  gap: 10px;
  align-items: stretch;
}

.stack-node {
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(148, 184, 214, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.stack-node span,
.ev-row span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stack-node strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 17px;
}

.stack-output {
  border-color: rgba(77, 224, 168, 0.28);
}

.stack-plus,
.stack-arrow {
  display: grid;
  place-items: center;
  color: var(--sky);
  font-weight: 800;
}

.station-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.station-grid span {
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(148, 184, 214, 0.10);
  color: #d7e6f0;
  font-size: 11px;
  font-weight: 700;
}

.calibration-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(148, 184, 214, 0.06);
  border-left: 3px solid rgba(148, 184, 214, 0.35);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  line-height: 1.65;
  color: #94b8d6;
}
.calibration-note strong {
  color: #d7e6f0;
}

.method-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.ev-example {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.ev-bars {
  display: grid;
  gap: 10px;
}

.ev-row {
  display: grid;
  grid-template-columns: 90px 1fr 72px;
  gap: 10px;
  align-items: center;
}

.ev-row strong {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.ev-row.is-best strong {
  color: var(--emerald);
}

.ev-bar-track {
  position: relative;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.ev-bar-track i,
.ev-bar-track b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
}

.ev-bar-track i {
  background: rgba(94, 200, 255, 0.58);
}

.ev-bar-track b {
  background: repeating-linear-gradient(45deg, rgba(255, 191, 87, 0.72), rgba(255, 191, 87, 0.72) 6px, rgba(255, 191, 87, 0.42) 6px, rgba(255, 191, 87, 0.42) 12px);
}

.ev-legend {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.ev-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.model-dot,
.market-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.model-dot { background: rgba(94, 200, 255, 0.8); }
.market-dot { background: rgba(255, 191, 87, 0.8); }

.mini-edge-table th,
.mini-edge-table td {
  padding: 9px 10px;
  font-size: 12px;
}

.method-footnote {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 191, 87, 0.07);
  border: 1px solid rgba(255, 191, 87, 0.16);
  color: #f5ddb1;
}

.edge-case {
  display: grid;
  gap: 14px;
}

.edge-intro {
  color: #d7e6f0;
  font-size: 14px;
  line-height: 1.65;
}

.edge-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.edge-kpi {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 184, 214, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.edge-kpi-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.edge-kpi strong {
  font-size: 18px;
}

.edge-callout {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(77, 224, 168, 0.18);
  background: rgba(77, 224, 168, 0.08);
  color: #d8fff0;
  font-size: 13px;
  line-height: 1.6;
}

.framing-list {
  display: grid;
  gap: 10px;
}

.framing-list div {
  padding: 13px;
  border: 1px solid rgba(148, 184, 214, 0.10);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.framing-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

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

.pricing-card {
  padding: 26px;
  position: relative;
}

.pricing-card p {
  color: #c1d2df;
}

.pricing-card.featured {
  border-color: rgba(94, 200, 255, 0.4);
  box-shadow: 0 24px 80px rgba(11, 47, 82, 0.42);
}

.price {
  margin: 14px 0 8px;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price small {
  font-size: 14px;
  color: var(--muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0 24px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  color: #d1dfeb;
}

.checklist li::before {
  content: "•";
  color: var(--sky);
  font-weight: 900;
}

.register-grid,
.account-grid {
  grid-template-columns: 1fr 1fr;
}

.register-grid {
  align-items: start;
}

.register-card form,
.account-card form {
  display: grid;
  gap: 14px;
}

.register-card > strong {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.qr-card-lead {
  align-content: start;
}

.telegram-qr {
  width: min(100%, 320px);
  aspect-ratio: 1;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(148, 184, 214, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.qr-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.qr-actions strong {
  font-size: 22px;
}

.comic-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.comic-step {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 280px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 184, 214, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(7, 21, 33, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.comic-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(94, 200, 255, 0.3);
  background: rgba(94, 200, 255, 0.12);
  color: #dff6ff;
  font-size: 13px;
  font-weight: 800;
}

.comic-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 128px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px dashed rgba(148, 184, 214, 0.16);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045) 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
}

.comic-art::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  background: radial-gradient(circle at 25% 20%, rgba(94, 200, 255, 0.16), transparent 40%);
  pointer-events: none;
}

.comic-art > * {
  position: relative;
  z-index: 1;
}

.art-phone {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 104px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(220, 240, 250, 0.16), rgba(90, 129, 154, 0.18));
  border: 1px solid rgba(148, 184, 214, 0.28);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.art-phone-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 24px;
  height: 5px;
  border-radius: 999px;
  background: rgba(7, 21, 33, 0.8);
  transform: translateX(-50%);
}

.art-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(6, 17, 27, 0.98), rgba(10, 30, 44, 0.94));
  overflow: hidden;
}

.art-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 10px);
  gap: 4px;
}

.art-qr-grid i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(231, 241, 247, 0.9);
}

.art-qr-grid i:nth-child(2n) {
  background: rgba(94, 200, 255, 0.92);
}

.art-scan-line {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 240, 255, 1), transparent);
  box-shadow: 0 0 10px rgba(126, 240, 255, 0.85);
}

.comic-art-open .art-chat-stack {
  position: relative;
  width: 116px;
  height: 90px;
}

.art-chat-card {
  position: absolute;
  inset: 10px 10px 18px 10px;
  display: grid;
  place-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(94, 200, 255, 0.24);
  background: linear-gradient(180deg, rgba(14, 42, 61, 0.9), rgba(9, 23, 36, 0.92));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.art-plane {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 28px solid #7ef0ff;
  transform: rotate(-22deg) translateX(4px);
  filter: drop-shadow(0 0 10px rgba(126, 240, 255, 0.35));
}

.art-chat-lines {
  display: grid;
  gap: 6px;
}

.art-chat-lines i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(231, 241, 247, 0.62);
}

.art-chat-lines i:nth-child(1) { width: 54px; }
.art-chat-lines i:nth-child(2) { width: 42px; }
.art-chat-lines i:nth-child(3) { width: 34px; }

.art-chat-bubble {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 30px;
  height: 24px;
  border-radius: 10px;
  background: rgba(77, 224, 168, 0.92);
  box-shadow: 0 8px 20px rgba(77, 224, 168, 0.2);
}

.art-chat-bubble::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.art-signal-card {
  width: 118px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(148, 184, 214, 0.22);
  background: linear-gradient(180deg, rgba(10, 29, 42, 0.96), rgba(6, 18, 29, 0.96));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.art-signal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.art-signal-top b {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(77, 224, 168, 0.96);
  box-shadow: 0 0 0 5px rgba(77, 224, 168, 0.12);
}

.art-signal-top i {
  width: 30px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 191, 87, 0.9);
}

.art-signal-line {
  display: block;
  height: 6px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(231, 241, 247, 0.22);
}

.art-signal-line.is-wide {
  width: 82px;
  background: rgba(126, 240, 255, 0.4);
}

.art-plan-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 191, 87, 0.16);
  color: #ffd992;
  border: 1px solid rgba(255, 191, 87, 0.26);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.comic-art-upgrade {
  grid-template-columns: auto auto;
  gap: 12px;
}

.art-ladder {
  display: grid;
  gap: 8px;
}

.art-tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 184, 214, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #d6e7f1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tier-free {
  color: #ffd992;
  border-color: rgba(255, 191, 87, 0.24);
}

.tier-starter {
  color: #dff6ff;
  border-color: rgba(94, 200, 255, 0.28);
}

.tier-pro {
  color: #d8fff0;
  border-color: rgba(77, 224, 168, 0.28);
}

.art-up-arrow {
  position: relative;
  width: 22px;
  height: 78px;
  align-self: end;
}

.art-up-arrow::before {
  content: "";
  position: absolute;
  left: 9px;
  bottom: 0;
  width: 4px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(77, 224, 168, 0.12), rgba(77, 224, 168, 0.96));
}

.art-up-arrow::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 16px;
  height: 16px;
  border-top: 4px solid rgba(77, 224, 168, 0.96);
  border-right: 4px solid rgba(77, 224, 168, 0.96);
  transform: rotate(-45deg);
}

.comic-step strong {
  font-size: 16px;
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(148, 184, 214, 0.18);
  background: rgba(4, 14, 22, 0.65);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
}

.account-shell {
  display: grid;
  gap: 18px;
}

.account-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.account-heading {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.account-subcopy {
  margin: 0;
  color: #c1d2df;
}

.faq strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.delivery-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.delivery-row {
  padding: 14px 16px;
}

.footer {
  padding: 34px 0 48px;
  color: var(--muted);
}

.notice {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 191, 87, 0.18);
  background: rgba(255, 191, 87, 0.06);
  color: #f5ddb1;
}

@media (max-width: 980px) {
  .hero,
  .dashboard-grid,
  .method-header,
  .method-two-col,
  .register-grid,
  .account-grid,
  .pricing-grid,
  .flow-grid,
  .three-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .nav {
    padding: 10px 0 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head,
  .account-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .stack-flow {
    grid-template-columns: 1fr;
  }

  .stack-plus,
  .stack-arrow {
    min-height: 18px;
  }

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

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

@media (max-width: 720px) {
  .shell {
    width: min(100% - 20px, 1180px);
  }

  .hero-panel,
  .section-card,
  .account-shell,
  .register-card,
  .pricing-card {
    padding: 22px;
  }

  .signal-grid,
  .hero-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .comic-flow {
    grid-template-columns: 1fr;
  }

  .edge-kpis {
    grid-template-columns: 1fr;
  }

  .city-roller span {
    width: 194px;
    min-height: 58px;
  }

  th,
  td {
    padding: 12px 14px;
    font-size: 13px;
  }
}
