/* Core site tokens, base layout, navigation, forms, and shared surfaces. */
/* BloqBot Market Radar - Session 7 full frontend redesign
   Palette: obsidian, graphite, signal green, icy blue, warm amber
   Fonts: Manrope for headings, Inter for body, IBM Plex Mono for data
*/

:root {
  --bg: #061116;
  --bg-2: #081822;
  --panel: #0d1a24;
  --panel-2: #102230;
  --panel-3: #162b3a;
  --line: rgba(207, 224, 255, 0.1);
  --line-strong: rgba(207, 224, 255, 0.18);
  --text: #eef4ff;
  --muted: #9aa8ba;
  --dim: #5f6d80;
  --blue: #73c7ff;
  --blue-2: #2f8cff;
  --green: #23d18b;
  --green-soft: rgba(35, 209, 139, 0.12);
  --red: #ff6370;
  --red-soft: rgba(255, 99, 112, 0.12);
  --amber: #f5bd4f;
  --amber-soft: rgba(245, 189, 79, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --radius-lg: 14px;
  --head: 'Manrope', sans-serif;
  --mono: 'Inter', 'Manrope', system-ui, sans-serif;
  --ease: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  /* Fluid base: at 1280px → 14.4px; at 1920px+ → 16px (cap).
     All rem values scale proportionally on laptop vs ultrawide. */
  font-size: clamp(14px, calc(8px + 0.5vw), 16px);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(115, 199, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 199, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 15% 8%, rgba(35, 209, 139, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(115, 199, 255, 0.11), transparent 30rem),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(245, 189, 79, 0.06), transparent 34rem);
}

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

button,
input,
textarea {
  font: inherit;
}

/* Interactive controls keep one cursor across their full hit area, including
   nested labels and icons. Disabled controls remain visually non-interactive. */
a[href],
button:not(:disabled),
summary,
label[for],
[role='button']:not([aria-disabled='true']) {
  cursor: pointer;
}

button:disabled,
[aria-disabled='true'] {
  cursor: not-allowed;
}

button,
.btn,
summary,
[role='button'] {
  user-select: none;
}

a[href] *,
button *,
summary *,
[role='button'] * {
  cursor: inherit;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--panel-3);
  border-radius: 999px;
  border: 2px solid var(--bg);
}

.container,
.nav-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.text-accent {
  color: var(--blue);
  text-shadow: 0 0 32px rgba(115, 199, 255, 0.26);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease), color var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #03100b;
  background: linear-gradient(135deg, var(--green), #88f5cc);
  border-color: rgba(136, 245, 204, 0.25);
  box-shadow: 0 18px 40px rgba(35, 209, 139, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 22px 54px rgba(35, 209, 139, 0.28);
}

.btn-ghost,
.btn-outline {
  color: var(--text);
  background: rgba(238, 244, 255, 0.035);
  border-color: var(--line);
}

.btn-ghost:hover,
.btn-outline:hover {
  background: rgba(115, 199, 255, 0.08);
  border-color: rgba(115, 199, 255, 0.35);
}

.btn-nav {
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.btn-nav-primary {
  color: #03100b;
  background: var(--green);
  border-color: rgba(136, 245, 204, 0.3);
  box-shadow: 0 16px 34px rgba(35, 209, 139, 0.18);
}

.btn-nav-primary:hover {
  color: #03100b;
  background: #5be4ad;
  box-shadow: 0 18px 42px rgba(35, 209, 139, 0.26);
}

.btn-nav-secondary {
  color: var(--text);
  background: rgba(238, 244, 255, 0.055);
  border-color: var(--line);
}

.btn-nav-secondary:hover {
  background: rgba(115, 199, 255, 0.08);
  border-color: rgba(115, 199, 255, 0.28);
}

.btn-lg {
  min-height: 48px;
  padding: 13px 24px;
}

.btn-full {
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  /* Include backdrop-filter in the transition so the blur fades in over
     180ms instead of snapping on instantly — eliminates the compositor
     layer-creation spike that causes a frame drop on first scroll. */
  transition: padding var(--ease), background var(--ease), border-color var(--ease),
              backdrop-filter var(--ease), -webkit-backdrop-filter var(--ease);
}

.navbar.scrolled {
  padding: 11px 0;
  background: rgba(6, 17, 22, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  display: grid;
  /* minmax(0, 1fr) on the side tracks (not bare 1fr = minmax(auto, 1fr)) so
     they split the free space equally regardless of content width. Otherwise
     the wider right-side buttons grow their track past the logo's track and
     shove the centered nav links off true center on mid-width desktops. */
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.nav-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.logo-mark,
.auth-logo {
  font-family: var(--head);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-mark {
  font-size: 1.25rem;
}

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

.logo-bot {
  color: var(--green);
}

.logo-product,
.auth-logo-sub {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-logo .logo-product {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* SVG wordmark in the navbar / dashboard topbar / mobile drawer. The SVG
   aspect ratio is ~4.5:1 (viewBox 554x123), so a fixed height is enough
   to scale it; width follows automatically.
   Coefficient 1.67vw reaches the 24px cap at ~1440px (MacBook/1080p),
   so the logo is the same size on any modern monitor. */
.nav-logo-img {
  display: block;
  height: clamp(20px, 1.67vw, 24px);
  width: auto;
  max-width: 100%;
}

.brand-wordmark-img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-wordmark-img {
  width: 112px;
}

.auth-logo-img {
  width: clamp(118px, 36vw, 150px);
  margin: 0 auto;
  filter: drop-shadow(0 0 18px rgba(35, 209, 139, 0.16));
}

.nav-drawer-brand .nav-logo-img {
  height: 28px;
}

.dash-brand .nav-logo-img {
  height: 24px;
}

.nav-center,
.nav-right,
.footer-nav {
  display: flex;
  align-items: center;
}

.nav-center {
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 26, 36, 0.64);
  padding: 4px;
  justify-self: center;
}

.nav-right {
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
  white-space: nowrap;
}

.nav-link {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  padding: 8px 10px;
  transition: color var(--ease), background var(--ease);
}

.nav-link-secondary {
  color: #bcc8d6;
}

.nav-label-short {
  display: none;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(238, 244, 255, 0.04);
}

.flash-wrap {
  position: fixed;
  top: 78px;
  left: 50%;
  z-index: 200;
  display: grid;
  gap: 8px;
  width: min(460px, calc(100% - 32px));
  transform: translateX(-50%);
}

.flash {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(13, 26, 36, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flash-error {
  color: #ffc2c7;
  border-color: rgba(255, 99, 112, 0.35);
}

.flash-success {
  color: #b7f7dc;
  border-color: rgba(35, 209, 139, 0.35);
}

.hero {
  position: relative;
  min-height: min(760px, 100svh);
  padding: clamp(104px, 12svh, 128px) 0 clamp(36px, 7svh, 56px);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 199, 255, 0.28), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.hero-left {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.hero-eyebrow,
.section-label,
.cta-badge,
.pricing-plan-name {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.hero-eyebrow,
.cta-badge {
  padding: 7px 10px;
  border: 1px solid rgba(35, 209, 139, 0.26);
  border-radius: 999px;
  background: var(--green-soft);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero-headline {
  max-width: 720px;
  font-family: var(--head);
  font-size: clamp(3.25rem, 7vw, 6.35rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-body {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-right {
  position: relative;
  min-width: 0;
}

.hero-right::before {
  content: 'MARKET SCAN';
  position: absolute;
  top: -36px;
  right: 12px;
  color: rgba(238, 244, 255, 0.09);
  font-family: var(--mono);
  font-size: 4rem;
  letter-spacing: 0.06em;
  line-height: 1;
  pointer-events: none;
}

.signal-feed-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 26%),
    rgba(13, 26, 36, 0.8);
  box-shadow: var(--shadow), 0 0 0 8px rgba(115, 199, 255, 0.018);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.signal-feed-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(115, 199, 255, 0.08), transparent);
  transform: translateX(-100%);
  animation: sweep 7s ease-in-out infinite;
}

@keyframes sweep {
  0%,
  40% {
    transform: translateX(-100%);
  }
  60%,
  100% {
    transform: translateX(100%);
  }
}

.feed-topbar,
.feed-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: var(--line);
  background: rgba(6, 17, 22, 0.42);
}

.feed-topbar {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.feed-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
}

.feed-title,
.feed-live,
.feed-footer-text,
.feed-footer-refresh,
.sc-direction,
.sc-pair,
.sc-conf-label,
.sc-conf-val,
.sc-levels,
.sc-time,
.radar-status,
.radar-toolbar,
.radar-step-num,
.command-kicker,
.trust-point span,
.price-period,
.footer-copy {
  font-family: var(--mono);
}

.feed-title,
.feed-live {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feed-live {
  color: var(--green);
}

.feed-live .live-dot {
  display: inline-block;
  margin-right: 6px;
}

.feed-body {
  position: relative;
  z-index: 1;
  height: clamp(350px, calc(100svh - 250px), 450px);
  overflow: hidden;
  padding: 14px;
}

.feed-list {
  display: grid;
  gap: 10px;
  will-change: transform;
}

.feed-list.is-shifting {
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.signal-card {
  position: relative;
  display: grid;
  grid-template-columns: 94px 1fr auto;
  gap: 14px;
  align-items: start;
  min-height: 98px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 40%),
    rgba(6, 17, 22, 0.48);
}

.signal-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
}

.signal-long::before {
  background: var(--green);
}

.signal-short::before {
  background: var(--red);
}

.sc-left,
.sc-right {
  display: grid;
  gap: 8px;
}

.sc-direction {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.sc-direction.long {
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(35, 209, 139, 0.22);
}

.sc-direction.short {
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(255, 99, 112, 0.22);
}

.sc-pair {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}

.sc-conf-row,
.sc-levels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sc-conf-label,
.sc-levels,
.sc-time,
.feed-footer-text,
.feed-footer-refresh {
  color: var(--dim);
  font-size: 0.66rem;
}

.sc-conf-val,
.sc-levels strong {
  color: var(--text);
  font-weight: 700;
}

.sc-bar {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(238, 244, 255, 0.08);
}

.sc-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #9cf8d2);
}

.sc-fill.short-fill {
  background: linear-gradient(90deg, var(--red), #ffadb4);
}

.sc-time {
  white-space: nowrap;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
  animation: slide-in 520ms ease forwards;
  animation-delay: var(--delay, 0s);
}

.signal-card.signal-new {
  animation: signal-pop 420ms ease both;
}

@keyframes slide-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signal-pop {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-section,
.trust-section,
.about-section,
.pricing-section,
.cta-section {
  position: relative;
  padding: 104px 0;
  border-bottom: 1px solid var(--line);
}

.section-label {
  margin-bottom: 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: var(--head);
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-sub {
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.features-section {
  overflow: hidden;
}

.features-section::before,
.trust-section::before,
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(115, 199, 255, 0.055), transparent 42%);
}

.pricing-section {
  overflow: hidden;
}

.pricing-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(115, 199, 255, 0.08) 48%, transparent 58%),
    linear-gradient(rgba(35, 209, 139, 0.045) 1px, transparent 1px);
  background-size: 52% 100%, 100% 42px;
  opacity: 0.52;
  transform: translateX(-56%);
  animation: pricing-field-sweep 8.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes pricing-field-sweep {
  0%,
  24% {
    transform: translateX(-56%);
  }
  58%,
  100% {
    transform: translateX(112%);
  }
}

.section-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.7;
}

.section-orb-1 {
  top: 80px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(115, 199, 255, 0.12);
}

.section-orb-2 {
  bottom: 80px;
  left: -130px;
  width: 340px;
  height: 340px;
  background: rgba(35, 209, 139, 0.1);
}

.features-section .container,
.pricing-section .container {
  position: relative;
  z-index: 1;
}

.features-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.features-header .section-heading {
  max-width: 920px;
  margin-bottom: 0;
}

.radar-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 12px 9px 11px;
  border: 1px solid rgba(35, 209, 139, 0.26);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(35, 209, 139, 0.055);
  box-shadow: 0 0 34px rgba(35, 209, 139, 0.08);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.radar-status strong {
  color: var(--green);
  font-weight: 800;
}

.status-pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(35, 209, 139, 0.72);
}

.status-pulse::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(35, 209, 139, 0.42);
  border-radius: inherit;
  animation: status-pulse 1.8s ease-out infinite;
}

.market-radar-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 14px;
  align-items: stretch;
}

.radar-stage {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 76% 22%, rgba(35, 209, 139, 0.18), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(115, 199, 255, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(8, 12, 19, 0.88);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.radar-stage::before,
.radar-stage::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.radar-stage::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(115, 199, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 199, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 42px, 48px 100%;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.58;
}

.radar-stage::after {
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(35, 209, 139, 0.1), rgba(115, 199, 255, 0.08), transparent 42%);
  opacity: 0.55;
  animation: radar-field-rotate 16s linear infinite;
}

.radar-stage > * {
  position: relative;
  z-index: 1;
}

.radar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.radar-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.radar-toolbar-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(115, 199, 255, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(115, 199, 255, 0.06);
}

.radar-chart-shell {
  position: relative;
  min-height: 474px;
  overflow: hidden;
}

.radar-chart {
  position: absolute;
  inset: 26px 18px 42px;
  width: calc(100% - 36px);
  height: calc(100% - 68px);
  overflow: visible;
}

.chart-grid path {
  fill: none;
  stroke: rgba(238, 244, 255, 0.075);
  stroke-width: 1;
}

.price-levels text,
.price-axis text {
  fill: rgba(154, 168, 186, 0.76);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-level {
  fill: none;
  stroke-width: 1.2;
  stroke-dasharray: 6 7;
}

.price-level.target {
  stroke: rgba(35, 209, 139, 0.36);
}

.price-level.entry {
  stroke: rgba(115, 199, 255, 0.34);
}

.price-level.stop {
  stroke: rgba(255, 99, 112, 0.28);
}

.volume-bars rect {
  fill: url(#volumeGradient);
  opacity: 0.58;
  transform-box: fill-box;
  transform-origin: bottom;
  animation: volume-pulse 4.2s ease-in-out infinite;
}

.ma-line {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 980;
  stroke-dashoffset: 980;
  animation: chart-draw 2.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ma-fast {
  stroke: var(--green);
  filter: url(#chartGlow);
}

.ma-slow {
  stroke: rgba(115, 199, 255, 0.62);
  stroke-width: 2;
  opacity: 0.9;
}

.candle {
  animation: candle-live 3.2s ease-in-out infinite;
  animation-delay: var(--delay);
  transform-box: fill-box;
  transform-origin: center;
}

.candle line {
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.candle rect {
  fill: currentColor;
  opacity: 0.92;
}

.candle-up {
  color: rgba(35, 209, 139, 0.88);
}

.candle-down {
  color: rgba(255, 191, 112, 0.82);
}

.signal-marker circle:first-child {
  fill: none;
  stroke: rgba(35, 209, 139, 0.55);
  stroke-width: 2;
  animation: signal-ping 2s ease-out infinite;
}

.signal-marker circle {
  transform-box: fill-box;
  transform-origin: center;
}

.signal-marker circle:last-child {
  fill: var(--green);
  filter: url(#chartGlow);
}

.radar-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(115, 199, 255, 0.13), rgba(35, 209, 139, 0.12), transparent);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  animation: radar-scan 4.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.signal-brief {
  position: absolute;
  top: 82px;
  right: 26px;
  width: min(240px, calc(100% - 52px));
  padding: 18px;
  border: 1px solid rgba(35, 209, 139, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(35, 209, 139, 0.12), transparent 45%),
    rgba(5, 8, 13, 0.72);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(35, 209, 139, 0.12);
  backdrop-filter: blur(16px);
  animation: signal-float 5s ease-in-out infinite;
}

.signal-brief-kicker,
.radar-console-header span,
.command-kicker,
.radar-step-num,
.signal-brief dt {
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-brief-kicker {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 700;
}

.signal-brief strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--head);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.signal-brief dl {
  display: grid;
  gap: 10px;
}

.signal-brief dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 9px;
  border-top: 1px solid rgba(238, 244, 255, 0.09);
}

.signal-brief dt {
  color: var(--muted);
  font-size: 0.62rem;
}

.signal-brief dd {
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 800;
}

.signal-brief dd.is-ticking,
.signal-brief strong.is-ticking,
.radar-status strong.is-ticking {
  animation: value-tick 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.radar-console {
  display: grid;
  align-content: stretch;
  gap: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(115, 199, 255, 0.08), transparent 45%),
    rgba(13, 26, 36, 0.78);
}

.radar-console-header {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
}

.radar-console-header span {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
}

.radar-console-header strong {
  font-family: var(--head);
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.radar-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.radar-step::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 44px;
  bottom: -1px;
  width: 1px;
  background: linear-gradient(180deg, rgba(35, 209, 139, 0.46), transparent);
}

.radar-step:last-child::before {
  display: none;
}

.radar-step-num {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(35, 209, 139, 0.28);
  border-radius: 50%;
  color: var(--green);
  background: rgba(35, 209, 139, 0.08);
  font-size: 0.62rem;
  font-weight: 800;
}

.radar-step strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.radar-step p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.62;
}

.radar-step.is-active .radar-step-num {
  box-shadow: 0 0 28px rgba(35, 209, 139, 0.22);
}

.feature-command-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 26, 36, 0.48);
}

.feature-command {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 152px;
  padding: 22px;
  overflow: hidden;
  transition: background var(--ease), transform var(--ease);
}

.feature-command::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(115, 199, 255, 0.12), transparent 210px);
  opacity: 0;
  transition: opacity var(--ease);
}

.feature-command:hover::before {
  opacity: 1;
}

.feature-command:hover {
  background: rgba(17, 26, 39, 0.42);
  transform: translateY(-2px);
}

.feature-command:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 22px;
  width: 1px;
  background: var(--line);
}

.feature-command > * {
  position: relative;
  z-index: 1;
}

.command-kicker {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 800;
}

.feature-command strong {
  font-family: var(--head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.feature-command p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

@keyframes status-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

@keyframes radar-field-rotate {
  to {
    transform: rotate(1turn);
  }
}

@keyframes chart-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes candle-live {
  0%,
  100% {
    opacity: 0.64;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

@keyframes volume-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleY(0.86);
  }
  50% {
    opacity: 0.72;
    transform: scaleY(1);
  }
}

@keyframes signal-ping {
  0% {
    opacity: 0.88;
    transform: scale(0.52);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes radar-scan {
  0%,
  18% {
    transform: translateX(-125%);
  }
  62%,
  100% {
    transform: translateX(520%);
  }
}

@keyframes signal-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes value-tick {
  0% {
    color: var(--green);
    transform: translateY(0);
  }
  50% {
    color: var(--blue);
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

.trust-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 17, 22, 0.18), rgba(13, 26, 36, 0.22)),
    rgba(6, 17, 22, 0.28);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: start;
}

.trust-copy .section-heading {
  max-width: 640px;
}

.trust-points {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-point {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 8px;
  padding: 22px 0;
  background: rgba(6, 17, 22, 0.72);
}

.trust-point span {
  grid-row: span 2;
  width: 34px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.trust-point strong {
  font-family: var(--head);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.trust-point p,
.trust-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.trust-note {
  grid-column: 2;
  max-width: 760px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.about-inner,
.founder-profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 0;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(35, 209, 139, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(115, 199, 255, 0.06), transparent 42%),
    rgba(13, 26, 36, 0.78);
  box-shadow: var(--shadow);
}

.founder-profile::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(115, 199, 255, 0.08);
  border-radius: 10px;
  pointer-events: none;
}

.founder-media {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 20px;
  min-height: 430px;
  padding: 40px 34px;
  border-left: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(35, 209, 139, 0.12), transparent 50%),
    rgba(6, 17, 22, 0.18);
}

.founder-photo {
  position: relative;
  display: grid;
  width: clamp(190px, 22vw, 252px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(35, 209, 139, 0.36);
  border-radius: 50%;
  color: var(--green);
  background:
    radial-gradient(circle at 50% 18%, rgba(35, 209, 139, 0.22), transparent 46%),
    var(--panel-2);
  box-shadow:
    0 0 0 10px rgba(35, 209, 139, 0.035),
    0 28px 70px rgba(0, 0, 0, 0.36),
    0 0 58px rgba(35, 209, 139, 0.14);
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
}

.founder-photo::after {
  content: '';
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(238, 244, 255, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.avatar-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.25);
  transform-origin: center;
}

.avatar-fallback {
  position: relative;
  z-index: 0;
}

.founder-meta {
  display: grid;
  gap: 5px;
  justify-items: center;
}

.founder-name {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.founder-role {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(42px, 5vw, 64px);
}

.founder-content .section-heading {
  max-width: 780px;
}

.founder-copy {
  display: grid;
  gap: 14px;
}

.about-para {
  max-width: 760px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.84;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 44px;
  perspective: 1400px;
}

.pricing-card,
.auth-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 32%),
    rgba(13, 26, 36, 0.82);
  box-shadow: var(--shadow);
}

.pricing-tier {
  --tier-lift: 0px;
  --tier-tilt-x: 0deg;
  --tier-tilt-y: 0deg;
  --px: 50%;
  --py: 0%;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(var(--tier-lift)) rotateX(var(--tier-tilt-x)) rotateY(var(--tier-tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms ease;
}

.pricing-tier::before,
.pricing-tier::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.pricing-tier::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at var(--px) var(--py), rgba(115, 199, 255, 0.24), transparent 28%),
    conic-gradient(from 180deg at 50% 50%, transparent, rgba(35, 209, 139, 0.36), rgba(115, 199, 255, 0.38), transparent 34%);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: screen;
}

.pricing-tier::after {
  top: 16px;
  left: 16px;
  z-index: 4;
  content: 'Selected';
  padding: 5px 8px;
  border: 1px solid rgba(115, 199, 255, 0.3);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(115, 199, 255, 0.1);
  box-shadow: 0 0 22px rgba(115, 199, 255, 0.18);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-tier > * {
  position: relative;
  z-index: 2;
}

.pricing-tier:hover,
.pricing-tier:focus-within,
.pricing-tier.is-pricing-selected {
  --tier-lift: -14px;
  border-color: rgba(115, 199, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(115, 199, 255, 0.085), transparent 32%),
    linear-gradient(315deg, rgba(35, 209, 139, 0.075), transparent 38%),
    rgba(17, 26, 39, 0.94);
  box-shadow:
    0 32px 84px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(115, 199, 255, 0.15),
    0 0 58px rgba(115, 199, 255, 0.14),
    0 0 92px rgba(35, 209, 139, 0.1);
  animation: pricing-selected-breathe 2.5s ease-in-out infinite;
}

.pricing-tier:hover::before,
.pricing-tier:focus-within::before,
.pricing-tier.is-pricing-selected::before {
  opacity: 1;
  transform: scale(1);
}

.pricing-tier:hover::after,
.pricing-tier:focus-within::after,
.pricing-tier.is-pricing-selected::after {
  opacity: 1;
  transform: translateY(0);
}

.pricing-tier:hover .price-amount,
.pricing-tier:focus-within .price-amount,
.pricing-tier.is-pricing-selected .price-amount {
  text-shadow:
    0 0 26px rgba(115, 199, 255, 0.24),
    0 0 44px rgba(35, 209, 139, 0.12);
}

.pricing-tier:hover .pricing-features li::before,
.pricing-tier:focus-within .pricing-features li::before,
.pricing-tier.is-pricing-selected .pricing-features li::before {
  animation: pricing-dot-pulse 1.4s ease-in-out infinite;
}

.pricing-tier-featured {
  border-color: rgba(35, 209, 139, 0.36);
  background:
    linear-gradient(145deg, rgba(35, 209, 139, 0.08), transparent 38%),
    rgba(13, 26, 36, 0.9);
  --tier-lift: -8px;
}

.pricing-tier-featured:hover,
.pricing-tier-featured:focus-within,
.pricing-tier-featured.is-pricing-selected {
  --tier-lift: -20px;
  border-color: rgba(35, 209, 139, 0.58);
}

.pricing-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 5px 8px;
  border: 1px solid rgba(35, 209, 139, 0.24);
  border-radius: 999px;
  color: var(--green);
  background: rgba(35, 209, 139, 0.1);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-header,
.pricing-features,
.pricing-footer {
  padding: 26px;
}

.pricing-header {
  display: grid;
  gap: 14px;
}

.pricing-plan-name {
  color: var(--amber);
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}

.price-currency,
.price-amount,
.price-cents {
  font-family: var(--head);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.price-currency {
  padding-top: 10px;
  color: var(--muted);
  font-size: 1.35rem;
}

.price-amount {
  color: var(--text);
  font-size: clamp(3.25rem, 6vw, 4.7rem);
}

.price-cents {
  padding-top: 12px;
  font-size: 1.6rem;
}

.price-period {
  padding-top: 32px;
  padding-left: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.pricing-tagline {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-features {
  display: grid;
  gap: 12px;
  list-style: none;
}

.pricing-features li {
  position: relative;
  display: block;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(35, 209, 139, 0.45);
}

@keyframes pricing-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 16px rgba(35, 209, 139, 0.45);
  }
  50% {
    transform: scale(1.55);
    box-shadow: 0 0 26px rgba(35, 209, 139, 0.74);
  }
}

@keyframes pricing-selected-breathe {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.18);
  }
}

.pricing-footer {
  display: grid;
  gap: 14px;
}

.cta-section {
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(35, 209, 139, 0.13), transparent 24rem),
    var(--bg-2);
}

.cta-inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 76px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(115, 199, 255, 0.08), transparent 42%),
    rgba(13, 26, 36, 0.62);
}

.cta-heading {
  font-family: var(--head);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.cta-sub {
  max-width: 590px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.cta-actions {
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   TRANSITION SYSTEM — scroll progress, word reveal, scan line
══════════════════════════════════════════════════════════ */

/* Scroll progress bar — thin gradient line fixed to top of viewport */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 10000;
  pointer-events: none;
  will-change: transform;
}

/* Word reveal — outer clip container + inner animated span */
.wrev {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  line-height: inherit;
  padding: 0.05em 0.055em 0.16em;
  margin: -0.05em -0.055em -0.16em;
}

.wrev-i {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.wrev-i.revealed {
  transform: translateY(0);
}

/* Section label clip-path wipe (left → right reveal) */
[data-sl] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-sl].sl-revealed {
  clip-path: inset(0 0% 0 0);
}

/* Scan line — neon horizontal sweep that fires when a section enters */
@keyframes scan-sweep {
  0%   { top: -2px; opacity: 0; }
  4%   { opacity: 1; }
  88%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 1.5px;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(35, 209, 139, 0.9) 20%,
    rgba(115, 199, 255, 0.85) 50%,
    rgba(35, 209, 139, 0.9) 80%,
    transparent 100%
  );
  box-shadow:
    0 0 8px  2px rgba(35, 209, 139, 0.55),
    0 0 24px 4px rgba(115, 199, 255, 0.22);
  animation: scan-sweep 0.88s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.site-footer {
  background: var(--bg);
  padding: 38px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 7px;
}

.footer-tagline {
  color: var(--dim);
  font-size: 0.78rem;
}

.footer-nav {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.8rem;
  padding: 6px 8px;
}

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

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.72rem;
  text-align: center;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 112px 20px 42px;
}

.auth-card {
  width: min(430px, 100%);
  display: grid;
  gap: 20px;
  padding: 34px;
}

.auth-logo {
  font-size: 1.55rem;
  text-align: center;
}

.auth-logo-sub {
  margin-top: -12px;
  text-align: center;
}

.auth-title {
  font-family: var(--head);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-align: center;
}

.auth-sub {
  margin-top: -10px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: center;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Label + helper link share a row (e.g. "Password" + "Forgot password?"). */
.form-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.form-helper-link {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.form-helper-link:hover,
.form-helper-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  color: var(--text);
  background: rgba(6, 17, 22, 0.44);
  padding: 12px 13px;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--dim);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(35, 209, 139, 0.5);
  background: rgba(6, 17, 22, 0.65);
  box-shadow: 0 0 0 4px rgba(35, 209, 139, 0.1);
}

.form-textarea {
  min-height: 104px;
  resize: vertical;
}

.auth-footer-note {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.link-accent {
  color: var(--green);
  font-weight: 700;
}

.invite-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.invite-success-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(35, 209, 139, 0.28);
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
}

.invite-success h2 {
  font-family: var(--head);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.invite-success p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

@media (max-width: 1060px) {
  .hero-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    max-width: 660px;
  }

  .features-header,
  .market-radar-experience {
    grid-template-columns: 1fr;
  }

  .radar-status {
    justify-self: start;
  }

  .radar-console {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .radar-console-header {
    grid-column: 1 / -1;
  }

  .radar-step {
    padding-right: 18px;
  }

  .radar-step::before {
    display: none;
  }

  .feature-command-strip {
    grid-template-columns: 1fr;
  }

  .feature-command {
    min-height: auto;
  }

  .feature-command:not(:last-child)::after {
    top: auto;
    right: 22px;
    bottom: 0;
    left: 22px;
    width: auto;
    height: 1px;
  }

  .trust-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-note {
    grid-column: 1;
  }

  .founder-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    min-height: auto;
    padding: 34px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .founder-photo {
    width: clamp(190px, 32vw, 248px);
    min-height: 0;
  }

  .founder-meta {
    padding: 0;
    border: 0;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .nav-center {
    display: none;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .pricing-tier-featured {
    --tier-lift: 0px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-inner,
  .footer-inner,
  .hero-inner {
    width: calc(100vw - 28px);
    max-width: 1180px;
  }

  .navbar {
    padding: 12px 0;
  }

  .nav-right .nav-link {
    display: none;
  }

  .nav-right {
    gap: 8px;
  }

  .btn-nav {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .nav-label-full {
    display: none;
  }

  .nav-label-short {
    display: inline;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 44px;
  }

  .hero-headline {
    font-size: clamp(2.85rem, 13vw, 3.35rem);
    letter-spacing: -0.055em;
  }

  .hero-body,
  .hero-left,
  .signal-feed-frame {
    width: 100%;
    max-width: 100%;
  }

  .hero-body {
    max-width: 340px;
  }

  .hero-right::before {
    display: none;
  }

  .signal-card {
    grid-template-columns: 1fr;
  }

  .sc-time {
    justify-self: start;
  }

  .features-section,
  .trust-section,
  .about-section,
  .pricing-section,
  .cta-section {
    padding: 72px 0;
  }

  .radar-status {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }

  .radar-toolbar {
    display: grid;
    gap: 12px;
  }

  .radar-toolbar-actions {
    justify-content: flex-start;
  }

  .radar-chart-shell {
    min-height: 520px;
  }

  .radar-chart {
    inset: 24px -84px 120px -34px;
    width: calc(100% + 118px);
    height: calc(100% - 144px);
  }

  .signal-brief {
    top: auto;
    right: 18px;
    bottom: 78px;
    left: 18px;
    width: auto;
  }

  .radar-console {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .radar-step {
    padding-right: 0;
  }

  .radar-step::before {
    display: block;
  }

  .radar-step:last-child::before {
    display: none;
  }

  .trust-point {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-point span {
    grid-row: auto;
  }

  .founder-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    min-height: auto;
    padding: 28px 18px;
  }

  .founder-photo {
    width: clamp(176px, 64vw, 224px);
    min-height: 0;
  }

  .founder-meta {
    padding: 0;
    border: 0;
  }

  .founder-content {
    gap: 16px;
    padding: 26px;
  }

  .pricing-header,
  .pricing-features,
  .pricing-footer,
  .auth-card {
    padding: 24px;
  }

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

@media (max-width: 420px) {
  .logo-product {
    display: none;
  }

  .nav-inner {
    width: calc(100vw - 20px);
    gap: 10px;
  }

  .btn-nav {
    padding-inline: 8px;
    font-size: 0.69rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-section::after,
  .status-pulse::after,
  .radar-stage::after,
  .ma-line,
  .candle,
  .volume-bars rect,
  .signal-marker circle:first-child,
  .radar-scan,
  .signal-brief,
  .signal-brief dd.is-ticking,
  .signal-brief strong.is-ticking,
  .radar-status strong.is-ticking,
  .pricing-tier:hover,
  .pricing-tier:focus-within,
  .pricing-tier.is-pricing-selected,
  .pricing-tier:hover .pricing-features li::before,
  .pricing-tier:focus-within .pricing-features li::before,
  .pricing-tier.is-pricing-selected .pricing-features li::before {
    animation: none;
  }

  .pricing-tier {
    --tier-tilt-x: 0deg;
    --tier-tilt-y: 0deg;
  }

  .ma-line {
    stroke-dashoffset: 0;
  }
}

/* Depth scrolling landing experience */
body.is-depth-site {
  --depth-progress: 0;
  --depth-exact: 0;
  --scene-scale: 1;
  --scene-density: 1;
  background-attachment: fixed;
  overflow-x: hidden;
}

body.is-depth-site .site-footer {
  display: none;
}

.depth-scroll {
  position: relative;
  min-height: 640svh;
}

.depth-viewport {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  perspective: 1500px;
  perspective-origin: 50% 46%;
  background:
    radial-gradient(circle at 50% 48%, rgba(35, 209, 139, 0.13), transparent 28rem),
    radial-gradient(circle at 78% 24%, rgba(115, 199, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(6, 17, 22, 0.12), rgba(6, 17, 22, 0.78));
}

.depth-viewport::before,
.depth-viewport::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.depth-viewport::before {
  z-index: 0;
  background:
    linear-gradient(rgba(115, 199, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 199, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.42;
  transform: translateZ(-900px) scale(1.75) rotateX(62deg);
  transform-origin: center bottom;
}

.depth-viewport::after {
  z-index: 9;
  box-shadow:
    inset 0 0 110px rgba(0, 0, 0, 0.62),
    inset 0 0 260px rgba(0, 0, 0, 0.36);
}

.depth-atmosphere,
.depth-tunnel,
.depth-grid-plane,
.depth-halo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.depth-atmosphere {
  z-index: 1;
  transform-style: preserve-3d;
}

.depth-light {
  position: absolute;
  width: 34vw;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: var(--light-opacity, 0.55);
  filter: blur(54px);
  transform: translate3d(var(--light-x, 0px), var(--light-y, 0px), 0) scale(var(--light-scale, 1));
  will-change: transform, opacity;
}

.depth-light-a {
  top: 8%;
  left: 8%;
  background: rgba(35, 209, 139, 0.14);
}

.depth-light-b {
  right: 7%;
  bottom: 10%;
  background: rgba(115, 199, 255, 0.12);
}

.depth-orbit {
  position: absolute;
  inset: 18% 17%;
  border: 1px solid rgba(115, 199, 255, 0.08);
  border-radius: 50%;
  opacity: 0.72;
  transform: translateZ(-360px) rotateX(66deg) rotateZ(var(--orbit-rotate, 0deg)) scale(var(--orbit-scale, 1));
  box-shadow:
    0 0 60px rgba(115, 199, 255, 0.06),
    inset 0 0 48px rgba(35, 209, 139, 0.035);
  will-change: transform;
}

.depth-orbit-b {
  inset: 24% 26%;
  border-color: rgba(35, 209, 139, 0.09);
  transform: translateZ(-270px) rotateX(66deg) rotateZ(var(--orbit-rotate-rev, 0deg)) scale(var(--orbit-scale, 1));
}

.depth-tunnel {
  opacity: 0.52;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      transparent 0 54px,
      rgba(115, 199, 255, 0.055) 55px 57px,
      transparent 58px 112px),
    conic-gradient(from 180deg at 50% 50%,
      transparent,
      rgba(35, 209, 139, 0.11),
      rgba(115, 199, 255, 0.12),
      transparent 34%);
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 68%);
  transform: translateZ(-620px) scale(1.38) rotate(var(--depth-tunnel-rotate, 0deg));
}

.depth-grid-plane {
  top: auto;
  height: 70%;
  opacity: 0.52;
  background:
    linear-gradient(rgba(35, 209, 139, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 199, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 42px;
  transform: rotateX(72deg) translate3d(0, 18%, -240px);
  transform-origin: center bottom;
  mask-image: linear-gradient(180deg, transparent, #000 22%, transparent 96%);
}

.depth-halo {
  inset: 14% 8%;
  border: 1px solid rgba(115, 199, 255, 0.08);
  border-radius: 50%;
  opacity: 0.6;
  box-shadow:
    0 0 80px rgba(115, 199, 255, 0.09),
    inset 0 0 72px rgba(35, 209, 139, 0.055);
  transform: translateZ(-460px) rotateX(64deg) scale(1.1);
}

.depth-panel {
  --depth-z: -900px;
  --depth-scale: 0.82;
  --depth-rotate-x: 0deg;
  --depth-rotate-y: 0deg;
  --depth-opacity: 0;
  --depth-blur: 0px;
  --depth-pop: 0px;
  --panel-activation: 0;
  --panel-light: 0.28;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(86px, 11svh, 118px) 0 clamp(28px, 6svh, 54px);
  overflow: hidden;
  border-bottom: 0;
  opacity: var(--depth-opacity);
  pointer-events: none;
  transform:
    translate3d(0, 0, var(--depth-z))
    rotateX(var(--depth-rotate-x))
    rotateY(var(--depth-rotate-y))
    scale(var(--depth-scale));
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  will-change: transform, opacity;
}

.depth-panel.is-active {
  z-index: 5;
  pointer-events: auto;
}

.depth-panel > .container,
.depth-panel .hero-inner {
  transform: translateZ(var(--depth-pop)) scale(var(--scene-scale));
  transition: transform 90ms linear;
  will-change: transform;
}

.depth-anim {
  --part-x: 0px;
  --part-y: 0px;
  --part-z: 0px;
  --part-scale: 1;
  --part-rotate-x: 0deg;
  --part-rotate-y: 0deg;
  --part-blur: 0px;
  --part-opacity: 1;
  opacity: var(--part-opacity);
  transform:
    translate3d(var(--part-x), var(--part-y), var(--part-z))
    rotateX(var(--part-rotate-x))
    rotateY(var(--part-rotate-y))
    scale(var(--part-scale));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.pricing-tier.depth-anim {
  transform:
    translate3d(var(--part-x), calc(var(--tier-lift) + var(--part-y)), var(--part-z))
    rotateX(calc(var(--tier-tilt-x) + var(--part-rotate-x)))
    rotateY(calc(var(--tier-tilt-y) + var(--part-rotate-y)))
    scale(var(--part-scale));
}

.signal-brief.depth-anim {
  animation: none;
}

.depth-panel.is-active .depth-anim {
  pointer-events: auto;
}

.depth-panel .section-heading,
.depth-panel .hero-headline,
.depth-panel .cta-heading {
  text-wrap: balance;
}

.is-depth-site .hero,
.is-depth-site .features-section,
.is-depth-site .trust-section,
.is-depth-site .about-section,
.is-depth-site .pricing-section,
.is-depth-site .cta-section {
  background: transparent;
}

.is-depth-site .features-section::before,
.is-depth-site .trust-section::before,
.is-depth-site .pricing-section::before,
.is-depth-site .pricing-section::after,
.is-depth-site .hero::after {
  opacity: var(--panel-light);
}

.is-depth-site .container,
.is-depth-site .hero-inner {
  width: min(1180px, calc(100% - 48px));
}

.is-depth-site .hero-inner {
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.08fr);
  gap: clamp(26px, 4vw, 50px);
}

.is-depth-site .hero-headline {
  font-size: clamp(3rem, 6.2vw, 5.95rem);
  letter-spacing: -0.056em;
  line-height: 0.96;
}

.is-depth-site .hero-body {
  max-width: 540px;
  line-height: 1.72;
}

.has-hero-radar::before {
  content: 'LIVE RADAR';
  top: -30px;
  right: 10px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  opacity: 0.78;
}

.hero-radar-stage {
  border-color: rgba(115, 199, 255, 0.18);
  background:
    radial-gradient(circle at 72% 18%, rgba(35, 209, 139, 0.18), transparent 32%),
    radial-gradient(circle at 24% 84%, rgba(115, 199, 255, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 48%),
    rgba(6, 17, 22, 0.58);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(115, 199, 255, 0.08),
    0 0 110px rgba(35, 209, 139, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-radar-stage::before {
  opacity: 0.46;
}

.hero-radar-stage::after {
  opacity: 0.28;
}

.hero-radar-stage .radar-toolbar {
  min-height: 50px;
  padding: 13px 15px;
  background: rgba(6, 17, 22, 0.26);
}

.hero-radar-stage .radar-chart-shell {
  min-height: clamp(330px, calc(54svh * var(--scene-density)), 540px);
}

.hero-radar-stage .radar-chart {
  inset: 20px 14px 34px;
  width: calc(100% - 28px);
  height: calc(100% - 54px);
}

.radar-pair {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(35, 209, 139, 0.24);
  border-radius: 999px;
  color: var(--green);
  background: rgba(35, 209, 139, 0.09);
  box-shadow: 0 0 26px rgba(35, 209, 139, 0.08);
}

.radar-pair.is-ticking {
  animation: value-tick 380ms ease;
}

.is-depth-site .features-header {
  align-items: start;
  margin-bottom: 18px;
}

.is-depth-site .features-header .section-heading {
  max-width: 790px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.is-depth-site .market-radar-experience.signal-experience {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.is-depth-site .feature-command-strip {
  display: none;
}

.feature-signal-sequence {
  min-width: 0;
}

.feature-signal-feed {
  height: 100%;
}

.feature-signal-feed .feed-topbar,
.feature-signal-feed .feed-footer {
  padding-inline: 16px;
}

.feature-signal-feed .feed-body {
  height: clamp(250px, calc(39svh * var(--scene-density)), 380px);
  padding: 14px;
}

.feature-signal-feed .feed-list {
  display: flex;
  gap: 12px;
  height: 100%;
}

.feature-signal-feed .feed-list.is-shifting {
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-signal-feed .signal-card {
  flex: 0 0 clamp(252px, 28vw, 330px);
  grid-template-columns: 1fr;
  min-height: 100%;
  align-content: start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 38%),
    radial-gradient(circle at 72% 18%, rgba(35, 209, 139, 0.08), transparent 34%),
    rgba(6, 17, 22, 0.52);
}

.feature-signal-feed .signal-card.signal-short {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), transparent 38%),
    radial-gradient(circle at 72% 18%, rgba(255, 99, 112, 0.09), transparent 34%),
    rgba(6, 17, 22, 0.52);
}

.feature-signal-feed .sc-time {
  justify-self: start;
}

.is-depth-site .radar-console {
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(13, 26, 36, 0.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.is-depth-site .trust-panel,
.is-depth-site .founder-profile,
.is-depth-site .cta-inner,
.is-depth-site .pricing-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 38%),
    rgba(13, 26, 36, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.is-depth-site .pricing-tiers {
  margin-top: 28px;
  transform-style: preserve-3d;
}

.is-depth-site .trust-panel,
.is-depth-site .founder-profile,
.is-depth-site .pricing-tiers,
.is-depth-site .cta-inner,
.is-depth-site .market-radar-experience {
  transform-style: preserve-3d;
}

.depth-progress {
  position: fixed;
  top: 50%;
  left: clamp(14px, 2vw, 28px);
  z-index: 120;
  display: grid;
  justify-items: center;
  gap: 11px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateY(-50%);
  pointer-events: auto;
}

.depth-rail {
  position: relative;
  display: grid;
  width: 28px;
  height: min(46svh, 340px);
  place-items: center;
}

.depth-track {
  position: relative;
  width: 1px;
  height: 100%;
  overflow: hidden;
  background: rgba(207, 224, 255, 0.14);
}

.depth-track i {
  position: absolute;
  inset: 0 0 auto;
  display: block;
  height: 100%;
  background: linear-gradient(180deg, var(--green), var(--blue));
  box-shadow: 0 0 18px rgba(35, 209, 139, 0.55);
  transform: scaleY(0);
  transform-origin: top center;
}

.depth-progress strong {
  color: var(--text);
  font-size: 0.72rem;
}

.depth-dots {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.depth-dot {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(207, 224, 255, 0.28);
  border-radius: 50%;
  color: inherit;
  background: rgba(6, 17, 22, 0.9);
  box-shadow:
    0 0 0 5px rgba(6, 17, 22, 0.8),
    0 0 20px rgba(115, 199, 255, 0.08);
  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease;
}

.depth-dot::after {
  content: attr(aria-label);
  position: absolute;
  top: 50%;
  left: 18px;
  min-width: max-content;
  padding: 5px 8px;
  border: 1px solid rgba(115, 199, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(6, 17, 22, 0.78);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-6px, -50%, 0);
  transition: opacity 180ms ease, transform 220ms ease;
}

.depth-dot:hover::after,
.depth-dot:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.depth-dot.is-active {
  border-color: rgba(35, 209, 139, 0.88);
  background: var(--green);
  box-shadow:
    0 0 0 5px rgba(35, 209, 139, 0.1),
    0 0 28px rgba(35, 209, 139, 0.56);
  transform: scale(1.45);
}

body.is-depth-snapping .depth-dot.is-active {
  animation: depth-dot-lock 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-depth-snapping .depth-track i {
  box-shadow:
    0 0 18px rgba(35, 209, 139, 0.72),
    0 0 38px rgba(115, 199, 255, 0.24);
}

.depth-dot.is-near {
  border-color: rgba(115, 199, 255, 0.5);
    box-shadow:
    0 0 0 5px rgba(6, 17, 22, 0.78),
    0 0 20px rgba(115, 199, 255, 0.22);
}

@keyframes depth-dot-lock {
  0% {
    transform: scale(1.1);
  }
  48% {
    transform: scale(1.85);
  }
  100% {
    transform: scale(1.45);
  }
}

@media (max-height: 780px) {
  .depth-panel {
    padding-top: 78px;
    padding-bottom: 22px;
  }

  .is-depth-site .section-heading {
    font-size: clamp(1.85rem, 3.55vw, 3.2rem);
    margin-bottom: 10px;
  }

  .is-depth-site .section-sub,
  .is-depth-site .hero-body,
  .is-depth-site .about-para {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .hero-radar-stage .radar-chart-shell {
    min-height: clamp(300px, 46svh, 430px);
  }

  .feature-signal-feed .feed-body {
    height: clamp(240px, 34svh, 310px);
  }

  .pricing-header,
  .pricing-features,
  .pricing-footer {
    padding: 20px;
  }

  .trust-panel,
  .founder-profile {
    max-height: calc(100svh - 118px);
  }
}

@media (max-width: 1060px) {
  .is-depth-site .hero-inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  }

  .is-depth-site .market-radar-experience.signal-experience {
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  }

  .is-depth-site .radar-console {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .depth-scroll {
    min-height: 620svh;
  }

  .depth-viewport {
    perspective: 1050px;
  }

  .depth-panel {
    padding: 78px 0 18px;
  }

  .is-depth-site .container,
  .is-depth-site .hero-inner {
    width: calc(100vw - 28px);
  }

  .is-depth-site .hero-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .is-depth-site .hero-left {
    gap: 14px;
  }

  .is-depth-site .hero-headline {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .is-depth-site .hero-body {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .hero-radar-stage .radar-toolbar {
    min-height: 42px;
    padding: 10px 12px;
  }

  .hero-radar-stage .radar-toolbar-actions {
    display: none;
  }

  .hero-radar-stage .radar-chart-shell {
    min-height: 250px;
  }

  .hero-radar-stage .radar-chart {
    inset: 14px -50px 68px -24px;
    width: calc(100% + 74px);
    height: calc(100% - 82px);
  }

  .hero-radar-stage .signal-brief {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 12px;
  }

  .is-depth-site .features-header {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }

  .is-depth-site .features-header .section-heading,
  .is-depth-site .section-heading,
  .is-depth-site .cta-heading {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .is-depth-site .radar-status {
    display: none;
  }

  .is-depth-site .market-radar-experience.signal-experience {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .is-depth-site .radar-console {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 12px;
  }

  .is-depth-site .radar-console-header {
    grid-column: 1 / -1;
  }

  .is-depth-site .radar-step {
    gap: 7px;
    padding: 10px 8px 0 0;
  }

  .is-depth-site .radar-step p {
    display: none;
  }

  .is-depth-site .radar-step strong {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .feature-signal-feed .feed-body {
    height: 202px;
    padding: 10px;
  }

  .feature-signal-feed .signal-card {
    flex-basis: 76vw;
    padding: 12px;
  }

  .feature-signal-feed .feed-footer {
    display: none;
  }

  .is-depth-site .trust-panel {
    gap: 14px;
    padding: 22px;
  }

  .is-depth-site .trust-points {
    gap: 8px;
  }

  .is-depth-site .trust-point {
    padding: 12px;
  }

  .is-depth-site .trust-point p,
  .is-depth-site .trust-note,
  .is-depth-site .section-sub {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .is-depth-site .pricing-tiers {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    overflow: hidden;
  }

  .is-depth-site .pricing-tier {
    flex: 0 0 78vw;
  }

  .is-depth-site .pricing-header,
  .is-depth-site .pricing-features,
  .is-depth-site .pricing-footer {
    padding: 16px;
  }

  .is-depth-site .pricing-features {
    gap: 8px;
  }

  .is-depth-site .pricing-features li {
    font-size: 0.78rem;
  }

  .is-depth-site .price-amount {
    font-size: 2.55rem;
  }

  .is-depth-site .founder-profile {
    grid-template-columns: 1fr;
  }

  .is-depth-site .founder-content {
    padding: 22px;
  }

  .is-depth-site .founder-media {
    grid-template-columns: auto 1fr;
    justify-items: start;
    min-height: 0;
    padding: 18px 22px;
  }

  .is-depth-site .founder-photo {
    width: 118px;
  }

  .is-depth-site .about-para {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .is-depth-site .cta-inner {
    gap: 12px;
    padding: 28px 16px;
  }

  .depth-progress {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .depth-scroll {
    min-height: auto;
  }

  .depth-viewport,
  .depth-panel {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
    perspective: none;
    transform: none;
    opacity: 1;
    filter: none;
  }

  .depth-atmosphere,
  .depth-progress {
    display: none;
  }

  .depth-panel {
    pointer-events: auto;
  }
}

/* Performance depth mode: crisp snap scenes, no continuous scroll transforms */
body.performance-depth-mode {
  overflow: hidden;
  overscroll-behavior: none;
}

body.performance-depth-mode .depth-scroll {
  height: 100svh;
  min-height: 100svh;
}

body.performance-depth-mode .depth-viewport {
  position: fixed;
  inset: 0;
  height: auto;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  background:
    radial-gradient(circle at 52% 50%, rgba(35, 209, 139, 0.11), transparent 27rem),
    radial-gradient(circle at 78% 28%, rgba(115, 199, 255, 0.1), transparent 30rem),
    linear-gradient(180deg, rgba(6, 17, 22, 0.04), rgba(6, 17, 22, 0.82));
}

body.performance-depth-mode .depth-viewport::before {
  opacity: 0.24;
  transform: none;
}

body.performance-depth-mode .depth-viewport::after {
  box-shadow:
    inset 0 0 90px rgba(0, 0, 0, 0.48),
    inset 0 0 190px rgba(0, 0, 0, 0.26);
}

body.performance-depth-mode .depth-light {
  filter: none;
  opacity: 0.18;
  background: radial-gradient(circle, currentColor, transparent 68%);
}

body.performance-depth-mode .depth-light-a {
  color: rgba(35, 209, 139, 0.2);
}

body.performance-depth-mode .depth-light-b {
  color: rgba(115, 199, 255, 0.16);
}

body.performance-depth-mode .depth-tunnel {
  opacity: 0.2;
  transform: rotate(var(--depth-tunnel-rotate, 0deg));
}

body.performance-depth-mode .depth-grid-plane {
  opacity: 0.2;
  transform: none;
}

body.performance-depth-mode .depth-orbit,
body.performance-depth-mode .depth-halo {
  opacity: 0.28;
  transform: rotate(var(--orbit-rotate, 0deg));
}

body.performance-depth-mode .depth-orbit-b {
  transform: rotate(var(--orbit-rotate-rev, 0deg));
}

body.performance-depth-mode .depth-panel {
  --depth-opacity: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 38px, -260px) scale(0.965);
  filter: none;
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  contain: layout paint;
}

body.performance-depth-mode .depth-panel.is-prev {
  opacity: 0;
  transform: translate3d(0, -34px, 180px) scale(1.025);
}

body.performance-depth-mode .depth-panel.is-next {
  opacity: 0;
  transform: translate3d(0, 34px, -240px) scale(0.965);
}

body.performance-depth-mode .depth-panel.is-far {
  visibility: hidden;
}

body.performance-depth-mode .depth-panel.is-active {
  z-index: 8;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

body.performance-depth-mode .depth-panel > .container,
body.performance-depth-mode .depth-panel .hero-inner {
  transform: none;
  transition: none;
  will-change: auto;
}

body.performance-depth-mode .depth-anim {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 480ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

body.performance-depth-mode .depth-panel.is-active .depth-anim {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.performance-depth-mode .hero-radar-stage,
body.performance-depth-mode .signal-feed-frame,
body.performance-depth-mode .radar-console,
body.performance-depth-mode .trust-panel,
body.performance-depth-mode .founder-profile,
body.performance-depth-mode .cta-inner,
body.performance-depth-mode .pricing-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.performance-depth-mode .hero-radar-stage {
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(115, 199, 255, 0.1),
    0 0 72px rgba(35, 209, 139, 0.07);
}

body.performance-depth-mode .hero-radar-stage .radar-chart-shell {
  min-height: clamp(320px, 50svh, 500px);
}

body.performance-depth-mode .signal-brief {
  animation: none;
}

body.performance-depth-mode .radar-scan {
  animation-duration: 6.4s;
}

body.performance-depth-mode .features-header.depth-anim {
  transition-delay: 60ms;
}

body.performance-depth-mode .radar-console.depth-anim,
body.performance-depth-mode .trust-panel.depth-anim,
body.performance-depth-mode .founder-profile.depth-anim {
  transition-delay: 130ms;
}

body.performance-depth-mode .feature-signal-feed.depth-anim,
body.performance-depth-mode .hero-radar-stage.depth-anim,
body.performance-depth-mode .cta-inner.depth-anim {
  transition-delay: 190ms;
}

body.performance-depth-mode .depth-panel:not(.is-active) .pricing-tier {
  opacity: 0;
  transform: translateY(20px) !important;
}

body.performance-depth-mode .depth-panel.is-active .pricing-tier {
  opacity: 1;
  transition:
    opacity 520ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms ease;
}

body.performance-depth-mode .depth-panel.is-active .pricing-tier:nth-child(1) {
  transition-delay: 100ms;
}

body.performance-depth-mode .depth-panel.is-active .pricing-tier:nth-child(2) {
  transition-delay: 170ms;
}

body.performance-depth-mode .depth-panel.is-active .pricing-tier:nth-child(3) {
  transition-delay: 240ms;
}

body.performance-depth-mode .radar-step,
body.performance-depth-mode .trust-point,
body.performance-depth-mode .about-para {
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.performance-depth-mode .depth-panel:not(.is-active) .radar-step,
body.performance-depth-mode .depth-panel:not(.is-active) .trust-point,
body.performance-depth-mode .depth-panel:not(.is-active) .about-para {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

body.performance-depth-mode .depth-panel.is-active .radar-step,
body.performance-depth-mode .depth-panel.is-active .trust-point,
body.performance-depth-mode .depth-panel.is-active .about-para {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.performance-depth-mode .depth-panel.is-active .radar-step:nth-child(2),
body.performance-depth-mode .depth-panel.is-active .trust-point:nth-child(1) {
  transition-delay: 170ms;
}

body.performance-depth-mode .depth-panel.is-active .radar-step:nth-child(3),
body.performance-depth-mode .depth-panel.is-active .trust-point:nth-child(2) {
  transition-delay: 230ms;
}

body.performance-depth-mode .depth-panel.is-active .radar-step:nth-child(4),
body.performance-depth-mode .depth-panel.is-active .trust-point:nth-child(3) {
  transition-delay: 290ms;
}

body.performance-depth-mode #scroll-progress {
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 760px) {
  body.performance-depth-mode {
    overflow: hidden;
  }

  body.performance-depth-mode .depth-panel {
    transform: translate3d(0, 24px, -140px) scale(0.98);
  }

  body.performance-depth-mode .depth-panel.is-active {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Performance pass: keep the 3D journey crisp by avoiding text rasterization and idle animation load */
body.performance-depth-mode .navbar.scrolled {
  background: rgba(6, 17, 22, 0.92);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.performance-depth-mode .depth-viewport {
  perspective: none;
}

body.performance-depth-mode .depth-panel {
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 300ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: auto;
}

body.performance-depth-mode .depth-panel.is-prev {
  transform: translate3d(0, -34px, 0);
}

body.performance-depth-mode .depth-panel.is-next {
  transform: translate3d(0, 34px, 0);
}

body.performance-depth-mode .depth-panel.is-active {
  transform: translate3d(0, 0, 0);
}

body.performance-depth-mode .depth-anim {
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: auto;
}

body.performance-depth-mode .depth-tunnel,
body.performance-depth-mode .depth-grid-plane {
  mask-image: none;
  -webkit-mask-image: none;
}

body.performance-depth-mode .depth-light,
body.performance-depth-mode .depth-orbit,
body.performance-depth-mode .depth-halo {
  will-change: auto;
}

body.performance-depth-mode .section-orb {
  display: none;
}

body.performance-depth-mode .hero-headline,
body.performance-depth-mode .section-heading,
body.performance-depth-mode .cta-heading {
  letter-spacing: -0.032em;
  line-height: 1.02;
  text-rendering: geometricPrecision;
}

body.performance-depth-mode .hero-radar-stage::after,
body.performance-depth-mode .signal-feed-frame::before,
body.performance-depth-mode .volume-bars rect,
body.performance-depth-mode .candle,
body.performance-depth-mode .signal-marker circle:first-child,
body.performance-depth-mode .signal-brief,
body.performance-depth-mode .pricing-tier:hover,
body.performance-depth-mode .pricing-tier:focus-within,
body.performance-depth-mode .pricing-tier.is-pricing-selected,
body.performance-depth-mode .pricing-tier:hover .pricing-features li::before,
body.performance-depth-mode .pricing-tier:focus-within .pricing-features li::before,
body.performance-depth-mode .pricing-tier.is-pricing-selected .pricing-features li::before {
  animation: none !important;
}

body.performance-depth-mode .radar-scan {
  opacity: 0.72;
  mix-blend-mode: normal;
  animation: radar-scan 6.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: transform;
}

body.performance-depth-mode .ma-line {
  animation-duration: 1.25s;
}

body.performance-depth-mode .ma-fast,
body.performance-depth-mode .signal-marker circle:last-child {
  filter: none;
}

body.performance-depth-mode .signal-brief {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

