:root {
  color-scheme: dark;
  --background: #181e28;
  --background-deep: #11161f;
  --surface: #212835;
  --surface-soft: #252d3b;
  --surface-muted: #2c3442;
  --border: #343d4d;
  --border-soft: rgba(153, 163, 183, 0.16);
  --foreground: #f4f6fa;
  --text: #d7dae0;
  --muted: #99a3b7;
  --accent: #528bff;
  --accent-bright: #79a6ff;
  --positive: #70f49c;
  --negative: #e56674;
  --warning: #e9b684;
  --violet: #bb8cff;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}
.line-two {
	clip-path: inherit !important;
}
@font-face {
  font-family: "Stratefont";
  src: url("strat.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
#brand_name {
	display: block;
	font-family: "Stratefont", sans-serif !important;
	font-size: 26px;
	color: #fff;
}
#lower_brand small{
	letter-spacing: 2px !important;
	display: block;
}
#freehand {
	font-family: "Caramel", cursive;
	color: #79a6ff;
	font-style: italic;
}
* {
  box-sizing: border-box;
}
.footer-grid {
	align-items: center !important;
}
#footer_disclaimer {
	display: grid;
	justify-content: center;
	justify-items: center;
	margin-top: 30px;
	text-align: center;
}
#footer_legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
#footer_legal a {
	display: block;
	font-size: 11px; 
	color: #737e91;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% -10%, rgba(82, 139, 255, 0.1), transparent 28rem),
    var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--foreground);
  color: var(--background-deep);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(153, 163, 183, 0.14);
  background: rgba(17, 22, 31, 0.82);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  color: var(--foreground);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: -1px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav a {
  position: relative;
  color: #b8c0ce;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--foreground);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 12px;
}

.button-large {
  min-height: 54px;
  padding: 0 21px;
  font-size: 13px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--accent);
  box-shadow: 0 13px 32px rgba(82, 139, 255, 0.22);
  color: #fff;
}

.button-primary:hover {
  background: #6397ff;
  box-shadow: 0 17px 38px rgba(82, 139, 255, 0.3);
}

.button-outline {
  border-color: var(--accent);
  background: transparent;
  box-shadow: none;
  color: var(--accent);
}

.button-outline:hover {
  border-color: #6397ff;
  background: rgba(82, 139, 255, 0.08);
  box-shadow: none;
  color: #6397ff;
}

.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--foreground);
}

.button-ghost:hover {
  border-color: #526078;
  background: rgba(255, 255, 255, 0.065);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 176px 0 80px;
  background:
    linear-gradient(180deg, rgba(17, 22, 31, 0.94), rgba(24, 30, 40, 0.98)),
    var(--background);
}

.hero-grid,
.statement-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--background-deep), transparent 13%, transparent 87%, var(--background-deep)),
    linear-gradient(180deg, var(--background-deep), transparent 25%);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(14px);
}

.hero-glow-one {
  top: 160px;
  left: -220px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(82, 139, 255, 0.14), transparent 65%);
}

.hero-glow-two {
  right: -170px;
  bottom: 50px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(112, 244, 156, 0.07), transparent 65%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 58px;
}

.eyebrow,
.section-index,
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 14px rgba(112, 244, 156, 0.65);
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(112, 244, 156, 0.35);
  border-radius: inherit;
  content: "";
}

.hero-title {
  max-width: 680px;
  margin: 23px 0 0;
  color: var(--foreground);
  font-size: clamp(58px, 5.6vw, 86px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-title span {
  display: block;
  color: var(--muted);
}

.hero-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: #aeb7c7;
  font-size: 17px;
  line-height: 1.8;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 31px;
}

.hero-note p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid var(--background-deep);
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--foreground);
  font-size: 8px;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: #344567;
}

.avatar-stack span:nth-child(2) {
  background: #3a4f48;
}

.avatar-stack span:nth-child(3) {
  background: #513e55;
}

.hero-product {
  position: relative;
  min-width: 0;
  perspective: 1600px;
}

.product-window {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.2);
  border-radius: 21px;
  background: #151b25;
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(255, 255, 255, 0.018);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

.hero-video-trigger {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(66px, 7vw, 92px);
  height: clamp(66px, 7vw, 92px);
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111722;
  cursor: pointer;
  isolation: isolate;
  overflow: visible;
  transform: translate(-50%, -50%);
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.hero-video-wave {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: clamp(132px, 13vw, 178px);
  height: clamp(132px, 13vw, 178px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(121, 166, 255, 0.13) 42%, rgba(112, 244, 156, 0.05) 68%, transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.22);
  animation: hero-video-waves 3.2s ease-in-out infinite;
  pointer-events: none;
}

.hero-video-wave-two {
  animation-delay: 1.05s;
}

.hero-video-wave-three {
  animation-delay: 2.1s;
}

.hero-video-core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.36),
    0 0 0 12px rgba(255, 255, 255, 0.08);
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.hero-video-icon {
  position: relative;
  left: 3px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid currentColor;
}

.hero-video-trigger:hover,
.hero-video-trigger:focus-visible {
  filter: saturate(1.05);
  transform: translate(-50%, -50%) scale(1.04);
}

.hero-video-trigger:hover .hero-video-core,
.hero-video-trigger:focus-visible .hero-video-core {
  background: #ffffff;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 0 0 14px rgba(255, 255, 255, 0.11);
}

.hero-video-trigger:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 6px;
}

@keyframes hero-video-waves {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.22);
  }

  42% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.video-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 10, 16, 0.78);
  cursor: pointer;
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: 80vw;
  max-width: calc(100vw - 36px);
  overflow: hidden;
  border: 1px solid rgba(190, 202, 224, 0.2);
  border-radius: 22px;
  background: #03060a;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.58);
}

.video-modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(17, 22, 31, 0.78);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.video-modal-close svg {
  width: 18px;
  height: 18px;
}

.video-modal-close path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.video-modal-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

body.video-modal-open {
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.12);
  background: #1a202b;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--foreground);
  font-size: 11px;
  font-weight: 750;
}

.window-brand img {
  width: 24px;
  height: 24px;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b4351;
}

.window-controls span:first-child {
  background: #e56674;
}

.window-controls span:nth-child(2) {
  background: #e9b684;
}

.window-controls span:last-child {
  background: #70f49c;
}

.product-body {
  display: grid;
  grid-template-columns: 55px 1fr;
  min-height: 500px;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding-top: 14px;
  border-right: 1px solid rgba(153, 163, 183, 0.1);
  background: #171d27;
}

.sidebar-mark {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  place-items: center;
}

.sidebar-mark img {
  width: 28px;
  height: 28px;
}

.side-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #788397;
}

.side-icon.active {
  background: rgba(82, 139, 255, 0.14);
  color: var(--accent-bright);
}

.side-icon svg {
  width: 15px;
  height: 15px;
}

.product-main {
  min-width: 0;
  padding: 21px;
}

.product-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-heading div,
.card-heading div {
  display: grid;
}

.product-heading small,
.card-heading small,
.setup-card small,
.context-stats small,
.process-card small,
.journal-dashboard small,
.access-copy small {
  color: #7f8a9e;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.product-heading h2 {
  margin: 3px 0 0;
  color: var(--foreground);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.demo-pill,
.quality-pill {
  padding: 6px 8px;
  border: 1px solid rgba(82, 139, 255, 0.25);
  border-radius: 6px;
  background: rgba(82, 139, 255, 0.11);
  color: var(--accent-bright);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 17px;
}

.market-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 8px;
  padding: 10px;
  border: 1px solid rgba(153, 163, 183, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}

.market-strip span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--foreground);
  font-size: 9px;
  font-weight: 800;
}

.market-strip strong {
  color: #adb6c6;
  font-size: 7px;
}

.market-strip small {
  font-size: 7px;
  font-weight: 750;
}

.positive {
  color: var(--positive) !important;
}

.negative {
  color: var(--negative) !important;
}

.warning {
  color: var(--warning) !important;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  gap: 10px;
  margin-top: 10px;
}

.chart-card,
.setup-card {
  min-width: 0;
  border: 1px solid rgba(153, 163, 183, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.022);
}

.chart-card {
  padding: 14px;
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.card-heading strong {
  margin-top: 3px;
  color: var(--foreground);
  font-size: 11px;
}

.price-block {
  align-items: end;
}

.price-block strong {
  font-size: 12px;
}

.price-block span {
  color: var(--positive);
  font-size: 8px;
  font-weight: 800;
}

.chart-area {
  position: relative;
  height: 206px;
  margin-top: 12px;
  overflow: hidden;
}

.chart-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.07) 1px, transparent 1px);
  background-size: 100% 25%, 25% 100%;
}

.price-chart {
  position: absolute;
  inset: 8px 0 0;
  width: 100%;
  height: calc(100% - 8px);
  overflow: visible;
}

.chart-fill {
  fill: url("#chartFill");
  stroke: none;
}

.chart-stroke {
  fill: none;
  stroke: var(--accent-bright);
  stroke-width: 2.5;
}

.chart-point {
  fill: var(--accent-bright);
  stroke: rgba(121, 166, 255, 0.3);
  stroke-width: 8;
}

.chart-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.chart-meta span {
  display: grid;
  gap: 2px;
  padding: 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: #778397;
  font-size: 6px;
  text-transform: uppercase;
}

.chart-meta strong {
  color: #cdd3dd;
  font-size: 8px;
  text-transform: none;
}

.setup-card {
  padding: 14px;
}

.setup-score {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 8px;
  background: rgba(112, 244, 156, 0.11);
  color: var(--positive);
  font-size: 11px;
  font-weight: 850;
}

.signal-list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.signal-list > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.08);
}

.signal-icon {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
}

.signal-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.2;
}

.positive-bg {
  background: rgba(112, 244, 156, 0.1);
  color: var(--positive);
}

.warning-bg {
  background: rgba(233, 182, 132, 0.1);
  color: var(--warning);
}

.signal-list p {
  display: grid;
  gap: 1px;
  margin: 0;
}

.signal-list strong {
  color: #cbd1dc;
  font-size: 8px;
}

.signal-list small {
  color: #758096;
  font-size: 6px;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 12px;
}

.plan-row div {
  display: grid;
  gap: 3px;
  padding: 8px;
  border-radius: 7px;
  background: rgba(82, 139, 255, 0.07);
}

.plan-row strong {
  color: #d1d6df;
  font-size: 7px;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(153, 163, 183, 0.18);
  border-radius: 10px;
  background: rgba(33, 40, 53, 0.92);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
  color: #d7dce5;
  font-size: 9px;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.chip-one {
  top: -26px;
  right: 36px;
}

.chip-two {
  right: -25px;
  bottom: 52px;
}

.chip-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: rgba(82, 139, 255, 0.13);
  color: var(--accent-bright);
}

.chip-icon svg {
  width: 13px;
  height: 13px;
}

.floating-chip .status-dot {
  width: 6px;
  height: 6px;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(82, 139, 255, 0.1);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(82, 139, 255, 0.9);
  content: "";
}

.orbit-one {
  top: -55px;
  right: -35px;
  width: 270px;
  height: 270px;
}

.orbit-two {
  right: 110px;
  bottom: -70px;
  width: 340px;
  height: 340px;
}

.capability-rail {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(153, 163, 183, 0.12);
  border-bottom: 1px solid rgba(153, 163, 183, 0.12);
  background: rgba(17, 22, 31, 0.7);
}

.capability-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 64px;
  animation: capability-scroll 48s linear infinite;
}

.capability-track span {
  color: #a5aec0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-track i {
  width: 4px;
  height: 4px;
  margin: 0 28px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(82, 139, 255, 0.7);
}

@keyframes capability-scroll {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-heading h2,
.platform-copy h2,
.access-copy h2,
.mobile-app-copy h2,
.contact-copy h2,
.faq-heading h2 {
  margin: 16px 0 0;
  color: var(--foreground);
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading h2 span {
  color: var(--muted);
}

.section-heading > p,
.platform-copy > p,
.access-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.workflow-section {
  background: var(--background);
}

@property --workflow-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes workflow-border-spin {
  to {
    --workflow-border-angle: 1turn;
  }
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}

.workflow-card {
  --workflow-border-delay: 0s;
  position: relative;
  min-height: 390px;
  padding: 38px;
  overflow: visible;
  border: 2px solid transparent;
  border-radius: 20px;
  background:
    linear-gradient(#181e28, #181e28) padding-box,
    conic-gradient(
      from var(--workflow-border-angle),
      rgba(82, 139, 255, 0.32),
      rgba(43, 232, 255, 0.86),
      rgba(112, 244, 156, 0.8),
      rgba(57, 245, 211, 0.76),
      rgba(187, 140, 255, 0.82),
      rgba(121, 166, 255, 0.86),
      rgba(82, 139, 255, 0.32)
    ) border-box;
  background-color: #181e28;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  animation: workflow-border-spin 9s linear infinite;
  animation-delay: var(--workflow-border-delay);
}

.workflow-card::after {
  position: absolute;
  z-index: -1;
  inset: -2px;
  border-radius: inherit;
/*
  background:
    conic-gradient(
      from var(--workflow-border-angle),
      rgba(82, 139, 255, 0.22),
      rgba(43, 232, 255, 0.64),
      rgba(112, 244, 156, 0.54),
      rgba(57, 245, 211, 0.5),
      rgba(187, 140, 255, 0.58),
      rgba(121, 166, 255, 0.62),
      rgba(82, 139, 255, 0.22)
    );
*/
background: #181E28;
  content: "";
  filter: blur(20px);
  opacity: 0.46;
  pointer-events: none;
  animation: workflow-border-spin 9s linear infinite;
  animation-delay: var(--workflow-border-delay);
  transition: opacity 0.24s ease, filter 0.24s ease;
}

.workflow-card:hover::after {
  opacity: 0.74;
  filter: blur(24px);
}

.workflow-card[data-step="02"] {
  --workflow-border-delay: -2.25s;
}

.workflow-card[data-step="03"] {
  --workflow-border-delay: -4.5s;
}

.workflow-card[data-step="04"] {
  --workflow-border-delay: -6.75s;
}

.workflow-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(82, 139, 255, 0.22);
  border-radius: 13px;
  background: rgba(82, 139, 255, 0.08);
  color: var(--accent-bright);
}

.workflow-icon svg {
  width: 21px;
  height: 21px;
}

.step-number {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #4a5568;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.workflow-card h3 {
  margin: 17px 0 0;
  color: var(--foreground);
  font-size: 23px;
  letter-spacing: -0.035em;
}

.workflow-card > p {
  max-width: 455px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.mini-interface {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  height: 95px;
  border: 1px solid rgba(153, 163, 183, 0.12);
  border-radius: 12px;
  background: rgba(17, 22, 31, 0.6);
}

.scanner-interface {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 11px;
}

.scanner-interface div {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 0 13px;
  border-right: 1px solid rgba(153, 163, 183, 0.1);
}

.scanner-interface div:last-child {
  border-right: 0;
}

.scanner-interface span {
  color: #828da0;
  font-size: 8px;
}

.scanner-interface strong {
  color: var(--foreground);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.workflow-card[data-step="02"] .mini-interface {
  height: 126px;
}

.analysis-interface {
  display: grid;
  grid-template-rows: 30px 1fr 27px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(82, 139, 255, 0.06), transparent 60%),
    rgba(17, 22, 31, 0.7);
}

.analysis-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 8px 6px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.1);
}

.analysis-tabs b {
  padding: 4px 6px;
  border-radius: 5px;
  color: #7f8a9e;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.analysis-tabs b:first-child {
  background: rgba(82, 139, 255, 0.12);
  color: var(--accent-bright);
}

.analysis-chart {
  position: relative;
  min-height: 0;
  margin: 0 8px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.055) 1px, transparent 1px);
  background-size: 100% 33.333%, 16.666% 100%;
}

.analysis-chart svg {
  position: absolute;
  inset: 4px 0 0;
  width: 100%;
  height: calc(100% - 4px);
}

.analysis-zone {
  fill: rgba(82, 139, 255, 0.09);
  stroke: none;
}

.analysis-price {
  fill: none;
  stroke: var(--accent-bright);
  stroke-width: 2.3;
}

.analysis-vwap {
  fill: none;
  stroke: rgba(112, 244, 156, 0.7);
  stroke-dasharray: 5 5;
  stroke-width: 1.3;
}

.analysis-candle {
  position: absolute;
  bottom: 7px;
  z-index: 2;
  width: 4px;
  border-radius: 2px 2px 1px 1px;
  background: linear-gradient(to top, rgba(112, 244, 156, 0.15), var(--positive));
}

.analysis-chart .candle-one { left: 9%; height: 17px; }
.analysis-chart .candle-two { left: 18%; height: 28px; }
.analysis-chart .candle-three { left: 31%; height: 21px; background: linear-gradient(to top, rgba(229, 102, 116, 0.12), var(--negative)); }
.analysis-chart .candle-four { left: 55%; height: 36px; }
.analysis-chart .candle-five { left: 74%; height: 30px; }
.analysis-chart .candle-six { left: 88%; height: 45px; }

.analysis-marker {
  position: absolute;
  z-index: 3;
  padding: 3px 5px;
  border: 1px solid rgba(153, 163, 183, 0.13);
  border-radius: 4px;
  background: rgba(23, 29, 39, 0.88);
  color: #cbd2dd;
  font-size: 6px;
  font-weight: 800;
}

.marker-one {
  top: 18px;
  left: 42%;
  color: var(--positive);
}

.marker-two {
  top: 7px;
  right: 4px;
  color: var(--accent-bright);
}

.analysis-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 5px 8px 8px;
}

.analysis-metrics strong {
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.025);
  color: #aeb7c5;
  font-size: 6px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plan-interface {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
}

.plan-interface div {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(82, 139, 255, 0.06);
}

.plan-interface small {
  color: #758096;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.plan-interface strong {
  color: #d5d9e1;
  font-size: 10px;
}

.journal-interface {
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: center;
  gap: 18px;
  padding: 13px;
}

.journal-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 60px;
}

.journal-bars span {
  flex: 1;
  min-width: 12px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(to top, rgba(82, 139, 255, 0.35), var(--accent));
}

.journal-bars span:nth-child(1) { height: 32%; }
.journal-bars span:nth-child(2) { height: 53%; }
.journal-bars span:nth-child(3) { height: 42%; }
.journal-bars span:nth-child(4) { height: 78%; }
.journal-bars span:nth-child(5) { height: 92%; }

.journal-interface > div:last-child {
  display: grid;
  gap: 4px;
}

.journal-interface small {
  color: #758096;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journal-interface strong {
  color: var(--positive);
  font-size: 25px;
}

.workflow-card {
  min-height: 470px;
  isolation: isolate;
}

.workflow-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: none;
  background:
    linear-gradient(135deg, rgba(82, 139, 255, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(112, 244, 156, 0.035), transparent 44%);
  content: "";
  opacity: 0.65;
}

.workflow-card[data-step="02"]::before {
  background:
    linear-gradient(135deg, rgba(82, 139, 255, 0.09), transparent 38%),
    linear-gradient(315deg, rgba(187, 140, 255, 0.04), transparent 44%);
}

.workflow-card[data-step="03"]::before {
  background:
    linear-gradient(135deg, rgba(112, 244, 156, 0.07), transparent 38%),
    linear-gradient(315deg, rgba(233, 182, 132, 0.045), transparent 44%);
}

.workflow-card[data-step="04"]::before {
  background:
    linear-gradient(135deg, rgba(187, 140, 255, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(82, 139, 255, 0.04), transparent 44%);
}

.workflow-card[data-step] .workflow-visual {
  height: 178px;
}

.workflow-visual {
  overflow: hidden;
  border-color: rgba(173, 184, 205, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 28%),
    linear-gradient(135deg, rgba(82, 139, 255, 0.12), rgba(17, 22, 31, 0.88) 58%),
    #121925;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.workflow-visual::before,
.workflow-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.workflow-visual::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.055) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 90%);
}

.workflow-visual::after {
  z-index: 5;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 30px 70px rgba(255, 255, 255, 0.035);
}

.workflow-visual > * {
  position: relative;
  z-index: 1;
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.1);
}

.visual-topline span {
  color: #8792a7;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.visual-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 14px rgba(112, 244, 156, 0.78);
}

.discovery-stage {
  position: absolute;
  top: 44px;
  right: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: stretch;
}

.discovery-radar {
  position: relative;
  min-height: 88px;
  border: 1px solid rgba(82, 139, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(82, 139, 255, 0.12), rgba(112, 244, 156, 0.035)),
    rgba(255, 255, 255, 0.025);
}

.discovery-radar span {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(82, 139, 255, 0.18);
  border-radius: 50%;
}

.discovery-radar span:nth-child(2) {
  inset: 30px;
  border-color: rgba(112, 244, 156, 0.22);
}

.discovery-radar span:nth-child(3) {
  inset: 42px;
  border-color: rgba(255, 255, 255, 0.16);
}

.discovery-radar b {
  position: absolute;
  top: 32px;
  left: 60px;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 22px rgba(82, 139, 255, 0.74);
}

.discovery-rank-list {
  display: grid;
  gap: 7px;
}

.discovery-rank-list div {
  display: grid;
  grid-template-columns: 46px 30px 1fr;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(153, 163, 183, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
}

.discovery-rank-list strong {
  color: #e7ebf3;
  font-size: 9px;
}

.discovery-rank-list em {
  color: var(--positive);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.discovery-rank-list i {
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 15%, rgba(112, 244, 156, 0.85) 16% 20%, transparent 21% 38%, rgba(112, 244, 156, 0.8) 39% 44%, transparent 45%),
    linear-gradient(90deg, rgba(112, 244, 156, 0.08), rgba(112, 244, 156, 0.2));
}

.discovery-rank-list .path-mid {
  background:
    linear-gradient(135deg, transparent 18%, rgba(82, 139, 255, 0.85) 19% 24%, transparent 25% 44%, rgba(82, 139, 255, 0.85) 45% 51%, transparent 52%),
    linear-gradient(90deg, rgba(82, 139, 255, 0.08), rgba(82, 139, 255, 0.2));
}

.discovery-rank-list .path-soft {
  opacity: 0.72;
}

.discovery-signal-grid {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
}

.discovery-signal-grid span {
  height: 9px;
  border-radius: 3px;
  background: rgba(82, 139, 255, 0.14);
}

.discovery-signal-grid span:nth-child(3n),
.discovery-signal-grid span:nth-child(8) {
  background: rgba(112, 244, 156, 0.55);
  box-shadow: 0 0 12px rgba(112, 244, 156, 0.32);
}

.visual-analysis {
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 11px;
  padding: 12px;
}

.analysis-hero-chart,
.review-chart {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.11);
  border-radius: 14px;
  background: rgba(13, 18, 27, 0.72);
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.06) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
}

.analysis-hero-chart svg,
.review-chart svg {
  position: absolute;
  inset: 10px 0 0;
  width: 100%;
  height: calc(100% - 10px);
}

.context-fill {
  fill: url(#workflowAnalysisFill);
}

.context-price {
  fill: none;
  stroke: var(--accent-bright);
  stroke-width: 4;
}

.context-vwap {
  fill: none;
  stroke: rgba(112, 244, 156, 0.78);
  stroke-dasharray: 9 8;
  stroke-width: 2;
}

.context-candle {
  position: absolute;
  bottom: 19px;
  z-index: 2;
  width: 5px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(to top, rgba(112, 244, 156, 0.18), var(--positive));
}

.context-candle.c-one { left: 10%; height: 29px; }
.context-candle.c-two { left: 18%; height: 45px; }
.context-candle.c-three { left: 31%; height: 34px; background: linear-gradient(to top, rgba(229, 102, 116, 0.16), var(--negative)); }
.context-candle.c-four { left: 56%; height: 55px; }
.context-candle.c-five { left: 73%; height: 44px; }
.context-candle.c-six { left: 89%; height: 66px; }

.context-tag {
  position: absolute;
  z-index: 3;
  padding: 4px 6px;
  border: 1px solid rgba(153, 163, 183, 0.13);
  border-radius: 6px;
  background: rgba(22, 28, 39, 0.9);
  color: #d7dce6;
  font-size: 7px;
  font-weight: 850;
}

.tag-vwap {
  top: 47px;
  left: 48%;
  color: var(--positive);
}

.tag-volume {
  top: 14px;
  right: 12px;
  color: var(--accent-bright);
}

.analysis-side-panel {
  display: grid;
  gap: 6px;
}

.analysis-side-panel div {
  display: grid;
  align-content: center;
  gap: 4px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(153, 163, 183, 0.11);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(187, 140, 255, 0.08), transparent 70%),
    rgba(255, 255, 255, 0.035);
}

.analysis-side-panel small,
.plan-node small {
  color: #7c8799;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.analysis-side-panel strong,
.plan-node strong {
  overflow: hidden;
  color: #e1e6ef;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-plan {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 28%),
    linear-gradient(135deg, rgba(112, 244, 156, 0.1), rgba(17, 22, 31, 0.9) 58%),
    #121925;
}

.plan-connections {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.plan-connections path {
  fill: none;
  stroke: rgba(82, 139, 255, 0.65);
  stroke-width: 3;
}

.plan-connections path:nth-child(2) {
  stroke: rgba(112, 244, 156, 0.52);
  stroke-dasharray: 8 8;
}

.plan-node {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 104px;
  padding: 11px 12px;
  border: 1px solid rgba(153, 163, 183, 0.16);
  border-radius: 12px;
  background: rgba(31, 39, 52, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.plan-node::before {
  position: absolute;
  top: 12px;
  right: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid #1d2532;
  border-radius: 50%;
  background: var(--accent-bright);
  content: "";
}

.plan-node-entry {
  top: 29px;
  left: 8%;
}

.plan-node-rule {
  top: 27px;
  left: 41%;
}

.plan-node-risk {
  right: 7%;
  bottom: 38px;
}

.plan-node-alert {
  bottom: 28px;
  left: 24%;
}

.plan-node-risk::before,
.plan-node-alert::before {
  background: var(--positive);
}

.plan-risk-strip {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.plan-risk-strip span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  border: 1px solid rgba(153, 163, 183, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #9da7b9;
  font-size: 7px;
  font-weight: 800;
}

.plan-risk-strip i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--positive);
}

.visual-review {
  display: grid;
  grid-template-columns: 112px 1fr 78px;
  gap: 11px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 28%),
    linear-gradient(135deg, rgba(187, 140, 255, 0.11), rgba(17, 22, 31, 0.9) 58%),
    #121925;
}

.review-score-ring {
  display: grid;
  place-items: center;
  border: 1px solid rgba(187, 140, 255, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(#151c28, #151c28) padding-box,
    conic-gradient(from 220deg, var(--positive) 0 74%, rgba(82, 139, 255, 0.28) 74% 100%) border-box;
}

.review-score-ring span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 22, 31, 0.9);
  color: #f2f5fa;
  font-size: 22px;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.review-fill {
  fill: rgba(187, 140, 255, 0.15);
}

.review-line {
  fill: none;
  stroke: var(--violet);
  stroke-width: 4;
}

.review-bars {
  position: absolute;
  right: 12px;
  bottom: 11px;
  left: 12px;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 34px;
}

.review-bars span {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(to top, rgba(82, 139, 255, 0.24), var(--accent-bright));
}

.review-bars span:nth-child(1) { height: 34%; }
.review-bars span:nth-child(2) { height: 55%; }
.review-bars span:nth-child(3) { height: 42%; }
.review-bars span:nth-child(4) { height: 78%; background: linear-gradient(to top, rgba(112, 244, 156, 0.24), var(--positive)); }
.review-bars span:nth-child(5) { height: 92%; background: linear-gradient(to top, rgba(112, 244, 156, 0.24), var(--positive)); }

.review-notes {
  display: grid;
  gap: 8px;
}

.review-notes span {
  border: 1px solid rgba(153, 163, 183, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(112, 244, 156, 0.22), transparent 38%),
    rgba(255, 255, 255, 0.035);
}

.review-notes span:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(82, 139, 255, 0.22), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.review-notes span:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(187, 140, 255, 0.22), transparent 56%),
    rgba(255, 255, 255, 0.035);
}

.platform-section {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: #151a23;
}

.platform-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 100px;
}

.platform-copy h2 {
  font-size: clamp(42px, 4vw, 61px);
}

.platform-copy > p {
  margin-top: 24px;
}

.platform-points {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--border-soft);
}

.platform-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}

.platform-points > div > span {
  color: var(--accent-bright);
  font-size: 10px;
  font-weight: 800;
}

.platform-points p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.platform-points strong {
  color: var(--foreground);
  font-size: 13px;
}

.platform-visual {
  position: relative;
  min-height: 630px;
}

.platform-visual::before {
  position: absolute;
  inset: 40px 30px 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 139, 255, 0.12), transparent 68%);
  content: "";
  filter: blur(8px);
}

.process-line {
  position: absolute;
  z-index: 1;
  top: 95px;
  bottom: 95px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(82, 139, 255, 0.55), transparent);
}

.process-line::before,
.process-line::after {
  position: absolute;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(82, 139, 255, 0.75);
  content: "";
}

.process-line::before {
  top: 31%;
}

.process-line::after {
  bottom: 28%;
}

.process-card {
  position: absolute;
  z-index: 2;
  width: min(420px, 76%);
  padding: 20px;
  border: 1px solid rgba(153, 163, 183, 0.17);
  border-radius: 16px;
  background: rgba(33, 40, 53, 0.9);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.process-card-one {
  top: 0;
  left: 0;
  transform: rotate(-2deg);
}

.process-card-two {
  z-index: 3;
  top: 195px;
  right: 0;
  transform: rotate(1.5deg);
}

.process-card-three {
  bottom: 0;
  left: 44px;
  transform: rotate(-1deg);
}

.process-label {
  display: inline-flex;
  padding: 5px 7px;
  border-radius: 5px;
  background: rgba(82, 139, 255, 0.1);
  color: var(--accent-bright);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.process-content {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 15px;
}

.pulse-rings {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
}

.pulse-rings i {
  position: absolute;
  border: 1px solid rgba(82, 139, 255, 0.22);
  border-radius: 50%;
}

.pulse-rings i:first-child { width: 68px; height: 68px; }
.pulse-rings i:nth-child(2) { width: 48px; height: 48px; }
.pulse-rings i:nth-child(3) { width: 28px; height: 28px; }
.pulse-rings b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.process-content > div:last-child,
.review-score > div:last-child {
  display: grid;
}

.process-content strong,
.review-score strong {
  margin-top: 3px;
  color: var(--foreground);
  font-size: 13px;
}

.process-content p,
.review-score p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.plan-builder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 14px 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}

.plan-builder > div {
  display: grid;
}

.plan-builder strong {
  margin-top: 3px;
  color: var(--foreground);
  font-size: 13px;
}

.quality-pill {
  border-color: rgba(112, 244, 156, 0.18);
  background: rgba(112, 244, 156, 0.08);
  color: var(--positive);
}

.rule-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  color: var(--muted);
  font-size: 9px;
}

.rule-row strong {
  color: #d4d9e2;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}

.score-ring {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  place-content: center;
  border: 6px solid rgba(112, 244, 156, 0.12);
  border-top-color: var(--positive);
  border-right-color: rgba(112, 244, 156, 0.55);
  border-radius: 50%;
}

.score-ring strong {
  color: var(--foreground);
  font-size: 18px;
}

.score-ring small {
  margin-left: 2px;
  font-size: 7px;
}

.tools-section {
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 85% 18%, rgba(187, 140, 255, 0.08), transparent 30rem),
    radial-gradient(circle at 8% 70%, rgba(82, 139, 255, 0.08), transparent 34rem),
    var(--background-deep);
}

.tools-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.tool-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
  pointer-events: none;
}

.tool-glow-one {
  top: 13%;
  right: -280px;
  background: var(--violet);
}

.tool-glow-two {
  bottom: 16%;
  left: -300px;
  background: var(--accent);
}

.tools-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 110px;
}

.tool-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 180px;
}

.tool-spotlight {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 70px;
}

.tool-reversed {
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
}

.tool-reversed .tool-copy {
  order: 2;
}

.tool-reversed .tool-visual-wrap {
  order: 1;
}

.tool-copy {
  position: relative;
  z-index: 3;
}

.tool-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tool-number {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(82, 139, 255, 0.25);
  border-radius: 8px;
  background: rgba(82, 139, 255, 0.08);
  font-size: 8px;
}

.tool-copy h3 {
  margin: 23px 0 0;
  color: var(--foreground);
  font-size: clamp(39px, 4vw, 59px);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.tool-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.tool-feature-list {
  display: grid;
  gap: 13px;
  margin-top: 29px;
}

.tool-feature-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #c8ced8;
  font-size: 11px;
  line-height: 1.45;
}

.tool-feature-list i {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 1px solid rgba(112, 244, 156, 0.25);
  border-radius: 50%;
  background: rgba(112, 244, 156, 0.07);
}

.tool-feature-list i::after {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 5px;
  height: 3px;
  transform: rotate(-45deg);
  border-bottom: 1.5px solid var(--positive);
  border-left: 1.5px solid var(--positive);
  content: "";
}

.tool-footnote {
  display: grid;
  gap: 4px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.tool-footnote strong {
  color: var(--foreground);
  font-size: 12px;
}

.tool-footnote span {
  color: #737e91;
  font-size: 9px;
}

.tool-visual-wrap {
  position: relative;
  min-width: 0;
  perspective: 1300px;
}

.tool-visual-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 7% 5% -8%;
  border-radius: 36px;
  background: rgba(82, 139, 255, 0.09);
  content: "";
  filter: blur(45px);
}

.tool-algo .tool-visual-wrap::before {
  inset: 4% 1% -7% 9%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.2), transparent 54%),
    rgba(82, 139, 255, 0.1);
  filter: blur(42px);
}

.tool-breakout .tool-visual-wrap::before {
  inset: 4% 9% -7% 1%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.18), transparent 54%),
    rgba(112, 244, 156, 0.08);
  filter: blur(42px);
}

.tool-swing .tool-visual-wrap::before {
  inset: 4% 1% -7% 9%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.18), transparent 54%),
    rgba(187, 140, 255, 0.1);
  filter: blur(42px);
}

.tool-pattern .tool-visual-wrap::before {
  inset: 4% 9% -7% 1%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.18), transparent 54%),
    rgba(82, 139, 255, 0.09);
  filter: blur(42px);
}

.tool-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.19);
  border-radius: 19px;
  background: #171d27;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: rotateY(-3deg) rotateX(0.8deg);
  transform-style: preserve-3d;
}

.tool-reversed .tool-window {
  transform: rotateY(3deg) rotateX(0.8deg);
}

.algo-screenshot-frame,
.breakout-screenshot-frame,
.swing-screenshot-frame,
.pattern-screenshot-frame,
.market-replay-screenshot-frame {
  position: relative;
  width: min(106%, 980px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: #111722;
  box-shadow:
    0 48px 105px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform-style: preserve-3d;
  isolation: isolate;
}

.algo-screenshot-frame {
  margin: 0 0 0 auto;
  box-shadow:
    -26px 18px 80px rgba(255, 255, 255, 0.1),
    0 48px 105px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateY(-7deg) rotateX(1.2deg) rotateZ(-0.45deg);
  transform-origin: right center;
}

.market-replay-screenshot-frame {
  margin: 0 0 0 auto;
  box-shadow:
    -26px 18px 80px rgba(255, 255, 255, 0.1),
    0 48px 105px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateY(-7deg) rotateX(1.2deg) rotateZ(-0.45deg);
  transform-origin: right center;
}

.swing-screenshot-frame {
  margin: 0 0 0 auto;
  box-shadow:
    -26px 18px 80px rgba(255, 255, 255, 0.1),
    0 48px 105px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateY(-7deg) rotateX(1.2deg) rotateZ(-0.45deg);
  transform-origin: right center;
}

.breakout-screenshot-frame,
.pattern-screenshot-frame {
  margin: 0 auto 0 0;
  box-shadow:
    26px 18px 80px rgba(255, 255, 255, 0.1),
    0 48px 105px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateY(7deg) rotateX(1.2deg) rotateZ(0.45deg);
  transform-origin: left center;
}

.algo-screenshot-frame::before,
.algo-screenshot-frame::after,
.breakout-screenshot-frame::before,
.breakout-screenshot-frame::after,
.swing-screenshot-frame::before,
.swing-screenshot-frame::after,
.pattern-screenshot-frame::before,
.pattern-screenshot-frame::after,
.market-replay-screenshot-frame::before,
.market-replay-screenshot-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.algo-screenshot-frame::before,
.breakout-screenshot-frame::before,
.swing-screenshot-frame::before,
.pattern-screenshot-frame::before,
.market-replay-screenshot-frame::before {
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 22px 60px rgba(255, 255, 255, 0.05);
}

.algo-screenshot-frame::after,
.breakout-screenshot-frame::after,
.swing-screenshot-frame::after,
.pattern-screenshot-frame::after,
.market-replay-screenshot-frame::after {
  z-index: 3;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.15), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.algo-screenshot-frame img,
.breakout-screenshot-frame img,
.swing-screenshot-frame img,
.pattern-screenshot-frame img,
.market-replay-screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateZ(0);
}

.tool-window-bar {
  display: flex;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.13);
  background: #202733;
}

.tool-window-bar > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.tool-window-bar strong {
  color: var(--foreground);
  font-size: 11px;
  white-space: nowrap;
}

.tool-window-mark {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(187, 140, 255, 0.2);
  border-radius: 8px;
  background: rgba(187, 140, 255, 0.09);
  color: var(--violet);
}

.tool-window-mark svg {
  width: 15px;
  height: 15px;
}

.breakout-mark {
  border-color: rgba(112, 244, 156, 0.2);
  background: rgba(112, 244, 156, 0.08);
  color: var(--positive);
}

.swing-mark {
  border-color: rgba(82, 139, 255, 0.22);
  background: rgba(82, 139, 255, 0.08);
  color: var(--accent-bright);
}

.window-breadcrumb {
  overflow: hidden;
  color: #727d90;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-actions span {
  color: #7f899a;
  font-size: 8px;
  white-space: nowrap;
}

.window-actions b {
  padding: 7px 10px;
  border: 1px solid rgba(82, 139, 255, 0.25);
  border-radius: 7px;
  background: rgba(82, 139, 255, 0.11);
  color: var(--accent-bright);
  font-size: 8px;
  white-space: nowrap;
}

.algo-layout {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 500px;
}

.algo-palette {
  position: relative;
  z-index: 3;
  padding: 17px 13px;
  border-right: 1px solid rgba(153, 163, 183, 0.12);
  background: #1b222d;
}

.algo-palette > small {
  color: #758095;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.palette-search {
  display: block;
  margin-top: 12px;
  padding: 8px 9px;
  border: 1px solid rgba(153, 163, 183, 0.12);
  border-radius: 7px;
  color: #626d80;
  font-size: 7px;
}

.palette-group {
  display: grid;
  gap: 6px;
  margin-top: 19px;
}

.palette-group em {
  margin-bottom: 2px;
  color: #596477;
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.palette-group span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 8px;
  border: 1px solid rgba(153, 163, 183, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.018);
  color: #aeb6c4;
  font-size: 7px;
}

.palette-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.violet-dot { background: var(--violet); box-shadow: 0 0 8px rgba(187, 140, 255, 0.55); }
.blue-dot { background: var(--accent-bright); box-shadow: 0 0 8px rgba(82, 139, 255, 0.55); }
.green-dot { background: var(--positive); box-shadow: 0 0 8px rgba(112, 244, 156, 0.45); }
.amber-dot { background: var(--warning); box-shadow: 0 0 8px rgba(233, 182, 132, 0.45); }

.algo-canvas {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #141a23;
}

.canvas-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(153, 163, 183, 0.19) 0.8px, transparent 0.8px);
  background-position: 0 0;
  background-size: 18px 18px;
  mask-image: linear-gradient(135deg, #000, rgba(0, 0, 0, 0.48));
}

.canvas-chip {
  position: absolute;
  top: 14px;
  right: 15px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid rgba(153, 163, 183, 0.1);
  border-radius: 6px;
  background: rgba(32, 39, 51, 0.82);
  color: #687386;
  font-size: 6px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.node-connections {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  overflow: visible;
  pointer-events: none;
}

.node-connections path {
  fill: none;
  stroke: rgba(82, 139, 255, 0.65);
  stroke-width: 1.8;
}

.algo-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 132px;
  gap: 4px;
  padding: 13px;
  border: 1px solid rgba(153, 163, 183, 0.17);
  border-radius: 10px;
  background: rgba(34, 42, 55, 0.96);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.algo-node::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  border-radius: 10px 0 0 10px;
  background: var(--accent);
  content: "";
}

.node-macd {
  top: 63px;
  left: 6%;
}

.node-macd::before { background: var(--violet); }

.node-volume {
  top: 230px;
  left: 6%;
}

.node-volume::before { background: var(--positive); }

.node-logic {
  top: 161px;
  left: 42%;
}

.node-logic::before { background: var(--warning); }

.node-entry {
  top: 161px;
  right: 5%;
}

.algo-node strong {
  color: var(--foreground);
  font-size: 9px;
}

.algo-node small {
  color: #7c8799;
  font-size: 7px;
}

.node-type {
  width: max-content;
  margin-bottom: 3px;
  font-size: 5px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.violet-type { color: var(--violet); }
.green-type { color: var(--positive); }
.amber-type { color: var(--warning); }
.blue-type { color: var(--accent-bright); }

.node-port {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
  background: #202936;
}

.node-port-left {
  right: auto;
  left: -5px;
}

.node-logic .port-one {
  top: 37%;
}

.node-logic .port-two {
  top: 67%;
}

.variable-chip {
  position: absolute;
  right: 17px;
  bottom: 17px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid rgba(187, 140, 255, 0.18);
  border-radius: 9px;
  background: rgba(187, 140, 255, 0.07);
}

.variable-chip > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 6px;
  background: rgba(187, 140, 255, 0.12);
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
}

.variable-chip p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.variable-chip small {
  color: #6f7a8c;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.variable-chip strong {
  color: #c9d0dc;
  font-size: 7px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 3px;
  color: #727d90;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.live-indicator i,
.setup-ready i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 9px rgba(112, 244, 156, 0.75);
}

.breakout-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 13px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.11);
  background: #181f29;
}

.breakout-summary > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 8px;
  padding: 11px 12px;
  border: 1px solid rgba(153, 163, 183, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.018);
}

.breakout-summary small {
  color: #697487;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.breakout-summary strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--foreground);
  font-size: 20px;
}

.breakout-summary span {
  color: #8b95a6;
  font-size: 7px;
}

.tracker-table {
  padding: 0 13px;
  background: #151b24;
}

.tracker-head,
.tracker-row {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 0.65fr 0.65fr 1fr 0.8fr;
  align-items: center;
  gap: 7px;
}

.tracker-head {
  min-height: 35px;
  color: #606b7d;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.tracker-row {
  position: relative;
  min-height: 67px;
  border-top: 1px solid rgba(153, 163, 183, 0.09);
  color: #bec5d0;
  font-size: 8px;
}

.tracker-row.is-highlighted {
  margin: 0 -7px;
  padding: 0 7px;
  border-top-color: rgba(82, 139, 255, 0.2);
  border-radius: 8px;
  background: rgba(82, 139, 255, 0.075);
  box-shadow: inset 2px 0 var(--accent);
}

.tracker-symbol {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.tracker-symbol > i {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: #27303e;
  color: #cbd2dd;
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
}

.tracker-symbol b,
.tracker-row > span:nth-child(5) {
  display: grid;
  min-width: 0;
  gap: 2px;
  color: var(--foreground);
  font-size: 8px;
}

.tracker-symbol small,
.tracker-row > span:nth-child(5) small {
  overflow: hidden;
  color: #6d788a;
  font-size: 6px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.score-badge {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(153, 163, 183, 0.14);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
}

.score-a {
  border-color: rgba(112, 244, 156, 0.28);
  background: rgba(112, 244, 156, 0.08);
  color: var(--positive);
}

.score-b {
  border-color: rgba(82, 139, 255, 0.25);
  background: rgba(82, 139, 255, 0.08);
  color: var(--accent-bright);
}

.score-c {
  border-color: rgba(233, 182, 132, 0.25);
  background: rgba(233, 182, 132, 0.07);
  color: var(--warning);
}

.pressure-bars {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 21px;
}

.pressure-bars i {
  width: 3px;
  height: 35%;
  border-radius: 2px;
  background: var(--positive);
  opacity: 0.85;
}

.pressure-bars i:nth-child(2) { height: 52%; }
.pressure-bars i:nth-child(3) { height: 70%; }
.pressure-bars i:nth-child(4) { height: 86%; }
.pressure-bars i:nth-child(5) { height: 100%; }
.pressure-bars.four-bars i:last-child,
.pressure-bars.three-bars i:nth-last-child(-n + 2) {
  background: #394352;
}

.tracker-detail {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.72fr);
  align-items: center;
  gap: 12px;
  min-height: 75px;
  padding: 13px 18px;
  border-top: 1px solid rgba(153, 163, 183, 0.12);
  background: #1d2430;
}

.tracker-detail > div {
  display: grid;
  gap: 3px;
}

.tracker-detail small {
  color: #687386;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.tracker-detail strong {
  color: var(--foreground);
  font-size: 8px;
}

.tracker-detail > span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 7px;
  color: #778295;
  font-size: 6px;
}

.tracker-detail > span i {
  grid-row: 1 / 3;
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: var(--positive);
}

.tracker-detail > span b {
  color: #cdd3dd;
  font-size: 7px;
}

.swing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 10px;
  min-height: 475px;
  padding: 13px;
  background: #151b24;
}

.swing-chart-card,
.swing-score-card {
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.11);
  border-radius: 11px;
  background: #1b222d;
}

.swing-chart-head {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 13px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.1);
}

.swing-chart-head > div {
  display: grid;
  justify-items: end;
}

.swing-chart-head > div strong {
  color: var(--foreground);
  font-size: 12px;
}

.swing-chart-head > div small {
  font-size: 7px;
}

.swing-chart {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #171e28;
}

.swing-chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.055) 1px, transparent 1px);
  background-size: 25% 25%, 16.666% 100%;
}

.swing-chart svg {
  position: absolute;
  inset: 15px 12px 12px;
  width: calc(100% - 24px);
  height: calc(100% - 27px);
}

.swing-fill {
  fill: url("#swingFill");
  stroke: none;
}

.swing-price-line {
  fill: none;
  stroke: var(--violet);
  stroke-width: 2.4;
}

.sma-line {
  fill: none;
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
}

.sma-twenty { stroke: rgba(112, 244, 156, 0.75); }
.sma-fifty { stroke: rgba(82, 139, 255, 0.7); }

.swing-chart-point {
  fill: var(--violet);
  stroke: #171e28;
  stroke-width: 2;
}

.chart-label {
  position: absolute;
  right: 10px;
  padding: 3px 5px;
  border-radius: 4px;
  background: #293140;
  font-size: 6px;
}

.label-price {
  top: 21px;
  background: rgba(187, 140, 255, 0.18);
  color: #d5b9ff;
}

.label-sma20 {
  top: 73px;
  color: var(--positive);
}

.label-sma50 {
  top: 112px;
  color: var(--accent-bright);
}

.swing-chart-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 76px;
  border-top: 1px solid rgba(153, 163, 183, 0.1);
}

.swing-chart-stats span {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border-right: 1px solid rgba(153, 163, 183, 0.08);
}

.swing-chart-stats span:last-child {
  border-right: 0;
}

.swing-chart-stats small {
  color: #687386;
  font-size: 5px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.swing-chart-stats strong {
  color: #d7dce5;
  font-size: 8px;
}

.swing-score-card {
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 16px 13px;
  text-align: center;
}

.setup-ready {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(112, 244, 156, 0.17);
  border-radius: 999px;
  background: rgba(112, 244, 156, 0.06);
  color: var(--positive);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.swing-score-ring {
  display: grid;
  width: 110px;
  height: 110px;
  margin-top: 16px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #1b222d 57%, transparent 58%),
    conic-gradient(var(--violet) 0 302deg, rgba(187, 140, 255, 0.11) 302deg 360deg);
  box-shadow: 0 0 35px rgba(187, 140, 255, 0.08);
}

.swing-score-ring > div {
  display: flex;
  align-items: baseline;
}

.swing-score-ring strong {
  color: var(--foreground);
  font-size: 27px;
  letter-spacing: -0.05em;
}

.swing-score-ring small {
  margin-left: 3px;
  color: #737e91;
  font-size: 7px;
}

.swing-score-card h4 {
  margin: 13px 0 0;
  color: var(--foreground);
  font-size: 11px;
}

.swing-score-card > p {
  margin: 3px 0 0;
  color: #737e91;
  font-size: 7px;
}

.factor-list {
  display: grid;
  width: 100%;
  gap: 9px;
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid rgba(153, 163, 183, 0.1);
  text-align: left;
}

.factor-list > span {
  display: grid;
  grid-template-columns: 1fr 46px auto;
  align-items: center;
  gap: 6px;
}

.factor-list small {
  color: #8d97a8;
  font-size: 6px;
}

.factor-list > span > i {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #303949;
}

.factor-list > span > i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--violet));
}

.factor-list .factor-92 { width: 92%; }
.factor-list .factor-87 { width: 87%; }
.factor-list .factor-85 { width: 85%; }
.factor-list .factor-80 { width: 80%; }

.factor-list > span > strong {
  color: #c7ced8;
  font-size: 6px;
}

.risk-reference {
  display: grid;
  width: 100%;
  gap: 4px;
  margin-top: 17px;
  padding: 10px;
  border: 1px solid rgba(233, 182, 132, 0.14);
  border-radius: 8px;
  background: rgba(233, 182, 132, 0.055);
  text-align: left;
}

.risk-reference small {
  color: var(--warning);
  font-size: 5px;
  font-weight: 850;
  letter-spacing: 0.07em;
}

.risk-reference strong {
  color: #d6dbe3;
  font-size: 7px;
}

.simulation-section {
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 78% 18%, rgba(112, 244, 156, 0.08), transparent 30rem),
    radial-gradient(circle at 12% 70%, rgba(187, 140, 255, 0.08), transparent 34rem),
    #151a23;
}

.simulation-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.simulation-section .container {
  position: relative;
  z-index: 2;
}

.simulation-heading {
  margin-bottom: 72px;
}

.simulation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 68px;
}

.simulation-copy h3 {
  margin: 18px 0 0;
  color: var(--foreground);
  font-size: clamp(33px, 3.3vw, 48px);
  font-weight: 730;
  letter-spacing: -0.052em;
  line-height: 1.06;
}

.simulation-copy > p {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.simulation-points {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--border-soft);
}

.simulation-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}

.simulation-points > div > span {
  color: var(--positive);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.simulation-points p {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.simulation-points strong {
  color: var(--foreground);
  font-size: 13px;
}

.simulation-visual {
  position: relative;
  min-width: 0;
  perspective: 1300px;
}

.simulation-visual::before {
  position: absolute;
  z-index: -1;
  inset: 4% 1% -7% 9%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.2), transparent 54%),
    rgba(112, 244, 156, 0.08);
  content: "";
  filter: blur(42px);
}

.simulation-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.19);
  border-radius: 19px;
  background: #171d27;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: rotateY(-2.6deg) rotateX(0.8deg);
  transform-style: preserve-3d;
}

.simulation-window-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.13);
  background: #202733;
}

.simulation-window-bar > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.simulation-window-bar strong {
  overflow: hidden;
  color: var(--foreground);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.simulation-mark {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(112, 244, 156, 0.22);
  border-radius: 8px;
  background: rgba(112, 244, 156, 0.08);
  color: var(--positive);
}

.simulation-mark svg {
  width: 15px;
  height: 15px;
}

.simulation-mode {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(112, 244, 156, 0.18);
  border-radius: 999px;
  background: rgba(112, 244, 156, 0.06);
  color: var(--positive);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.simulation-mode i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 9px rgba(112, 244, 156, 0.75);
}

.simulation-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 208px;
  gap: 12px;
  min-height: 520px;
  padding: 13px;
  background: #151b24;
}

.replay-panel,
.paper-card {
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.11);
  border-radius: 11px;
  background: #1b222d;
}

.replay-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
}

.replay-panel-head {
  display: flex;
  min-height: 63px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.1);
}

.replay-panel-head > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.replay-panel-head small,
.paper-card small {
  color: #687386;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.replay-panel-head strong {
  overflow: hidden;
  color: var(--foreground);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.replay-panel-head > span {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(82, 139, 255, 0.1);
  color: var(--accent-bright);
  font-size: 8px;
  font-weight: 800;
}

.replay-chart {
  position: relative;
  min-height: 334px;
  overflow: hidden;
  background: #171e28;
}

.replay-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.055) 1px, transparent 1px);
  background-size: 25% 25%, 16.666% 100%;
}

.replay-chart svg {
  position: absolute;
  inset: 22px 14px 22px;
  width: calc(100% - 28px);
  height: calc(100% - 44px);
}

.replay-zone {
  fill: url("#replayFill");
  stroke: none;
}

.replay-price-line {
  fill: none;
  stroke: var(--positive);
  stroke-width: 2.5;
}

.replay-moving-average {
  fill: none;
  stroke: rgba(121, 166, 255, 0.72);
  stroke-dasharray: 5 5;
  stroke-width: 1.4;
}

.replay-order {
  position: absolute;
  z-index: 2;
  padding: 5px 7px;
  border-radius: 5px;
  background: rgba(17, 22, 31, 0.82);
  font-size: 7px;
  font-weight: 850;
}

.order-entry {
  right: 24%;
  top: 38%;
  color: var(--positive);
}

.order-stop {
  left: 10%;
  bottom: 26%;
  color: var(--negative);
}

.replay-cursor {
  position: absolute;
  top: 18px;
  bottom: 22px;
  left: 69%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(233, 182, 132, 0.85), transparent);
}

.replay-cursor::before {
  position: absolute;
  top: 24%;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 14px rgba(233, 182, 132, 0.65);
  content: "";
}

.replay-controls {
  display: grid;
  grid-template-columns: auto repeat(3, 30px) 1fr;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 12px 14px;
  border-top: 1px solid rgba(153, 163, 183, 0.1);
}

.replay-controls > span {
  color: #7d8799;
  font-size: 8px;
  font-weight: 800;
}

.replay-controls button {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(153, 163, 183, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: #aeb7c5;
}

.replay-controls button.active {
  border-color: rgba(112, 244, 156, 0.25);
  background: rgba(112, 244, 156, 0.09);
  color: var(--positive);
}

.replay-controls svg {
  width: 13px;
  height: 13px;
}

.replay-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #303949;
}

.replay-progress i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--positive));
}

.paper-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.paper-card {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.account-card {
  background:
    linear-gradient(145deg, rgba(112, 244, 156, 0.08), transparent 62%),
    #1b222d;
}

.paper-card > strong {
  color: var(--foreground);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.paper-card > span {
  font-size: 8px;
  font-weight: 800;
}

.paper-position {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.1);
}

.paper-position span {
  color: var(--accent-bright);
  font-size: 9px;
  font-weight: 850;
}

.paper-position strong {
  color: var(--foreground);
  font-size: 10px;
}

.paper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #8791a3;
  font-size: 8px;
}

.paper-row b {
  color: #d5dbe4;
  font-size: 8px;
}

.algo-run-card {
  border-color: rgba(187, 140, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(187, 140, 255, 0.08), transparent 64%),
    #1b222d;
}

.algo-run-card > strong {
  font-size: 12px;
}

.algo-run-steps {
  display: grid;
  gap: 7px;
  margin-top: 2px;
}

.algo-run-steps span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bac2d0;
  font-size: 8px;
}

.algo-run-steps i {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(112, 244, 156, 0.12);
}

.algo-run-steps i::after {
  position: absolute;
  top: 3px;
  left: 5px;
  width: 3px;
  height: 6px;
  border: solid var(--positive);
  border-width: 0 1.4px 1.4px 0;
  content: "";
  transform: rotate(45deg);
}

.bento-section {
  background: var(--background);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.bento-card {
  position: relative;
  min-height: 410px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
    var(--surface);
}

.bento-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(82, 139, 255, 0.06), transparent 45%);
  content: "";
  pointer-events: none;
}

.bento-wide {
  grid-column: 1 / -1;
  min-height: 540px;
}

.bento-grid .bento-wide:first-child {
  min-height: 660px;
}

.bento-copy {
  position: relative;
  z-index: 2;
  max-width: 490px;
}

.bento-copy h3 {
  margin: 15px 0 0;
  color: var(--foreground);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.bento-copy p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 15px);
  line-height: 1.65;
}

#context_paragraph {
  max-width: 350px;
}

@media (min-width: 961px) and (max-width: 1200px) {
  #context_paragraph {
    max-width: clamp(240px, 24vw, 288px);
  }
}

.context-visual {
  position: absolute;
  right: 32px;
  bottom: 0;
  width: 62%;
  height: 360px;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.14);
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
  background: #171d27;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.context-screenshot-frame {
  bottom: -30px;
  z-index: 1;
  width: min(60%, 760px);
  height: auto;
  aspect-ratio: 2067 / 1464;
  overflow: visible;
  isolation: isolate;
  border-color: rgba(190, 202, 224, 0.18);
  border-bottom: 1px solid rgba(190, 202, 224, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(82, 139, 255, 0.16), transparent 45%),
    #121925;
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.36),
    0 0 62px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.context-screenshot-frame::before {
  position: absolute;
  z-index: -1;
  inset: -26px -22px 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.24), transparent 58%),
    rgba(255, 255, 255, 0.08);
  content: "";
  filter: blur(24px);
  pointer-events: none;
}

.context-screenshot-frame::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.context-screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: top center;
}

.context-tabs {
  display: flex;
  gap: 6px;
  padding: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.context-tabs span {
  padding: 7px 11px;
  border-radius: 6px;
  color: #818b9e;
  font-size: 8px;
  font-weight: 750;
}

.context-tabs .active {
  background: rgba(82, 139, 255, 0.12);
  color: var(--accent-bright);
}

.context-chart {
  position: relative;
  height: 220px;
  margin: 0 14px;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.06) 1px, transparent 1px);
  background-size: 100% 25%, 16.66% 100%;
}

.context-chart svg {
  position: absolute;
  inset: 20px 0 0;
  width: 100%;
  height: calc(100% - 30px);
}

.context-chart path {
  fill: none;
  stroke: var(--accent-bright);
  stroke-width: 3;
}

.context-chart i {
  position: absolute;
  bottom: 0;
  width: 5px;
  border-radius: 2px 2px 0 0;
  background: rgba(112, 244, 156, 0.25);
}

.context-chart i:nth-child(1) { left: 10%; height: 25px; }
.context-chart i:nth-child(2) { left: 23%; height: 42px; }
.context-chart i:nth-child(3) { left: 48%; height: 31px; }
.context-chart i:nth-child(4) { left: 68%; height: 57px; }
.context-chart i:nth-child(5) { left: 87%; height: 72px; }

.context-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 14px 0;
}

.context-stats span {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.context-stats strong {
  color: #d6dbe4;
  font-size: 9px;
}

.checklist-visual {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: grid;
  gap: 8px;
}

.checklist-visual span {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(153, 163, 183, 0.1);
  border-radius: 9px;
  background: rgba(17, 22, 31, 0.45);
  color: #bac2d0;
  font-size: 10px;
}

.checklist-visual i {
  position: relative;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(112, 244, 156, 0.12);
}

.checklist-visual i::after {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 7px;
  border: solid var(--positive);
  border-width: 0 1.5px 1.5px 0;
  content: "";
  transform: rotate(45deg);
}

.alert-visual {
  position: absolute;
  right: 32px;
  bottom: 42px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px;
  border: 1px solid rgba(82, 139, 255, 0.18);
  border-radius: 12px;
  background: rgba(17, 22, 31, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.alert-bell {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(82, 139, 255, 0.11);
  color: var(--accent-bright);
}

.alert-bell svg {
  width: 20px;
  height: 20px;
}

.alert-visual > div {
  display: grid;
}

.alert-visual small {
  color: var(--accent-bright);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.alert-visual strong {
  margin-top: 2px;
  color: var(--foreground);
  font-size: 12px;
}

.alert-visual p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.bento-journal {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 50px;
}

.bento-journal .bento-copy {
  order: 2;
}

.journal-dashboard {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.14);
  border-radius: 14px;
  background: #171d27;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.journal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.journal-header > div {
  display: grid;
}

.journal-header strong {
  margin-top: 2px;
  color: var(--foreground);
  font-size: 12px;
}

.journal-header > span {
  padding: 6px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 7px;
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.review-metrics > div {
  position: relative;
  display: grid;
  min-height: 85px;
  align-content: start;
  padding: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.review-metrics strong {
  margin-top: 4px;
  color: var(--foreground);
  font-size: 22px;
}

.metric-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22px;
  clip-path: polygon(0 80%, 16% 55%, 28% 67%, 45% 28%, 58% 48%, 74% 16%, 87% 35%, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(to top, rgba(82, 139, 255, 0.18), rgba(82, 139, 255, 0.04));
}

.line-two {
  background: linear-gradient(to top, rgba(112, 244, 156, 0.16), rgba(112, 244, 156, 0.03));
  clip-path: polygon(0 60%, 14% 72%, 30% 38%, 46% 55%, 62% 18%, 76% 32%, 90% 10%, 100% 22%, 100% 100%, 0 100%);
}

.line-three {
  background: linear-gradient(to top, rgba(187, 140, 255, 0.16), rgba(187, 140, 255, 0.03));
}

.review-table {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.5fr;
  padding: 0 14px 14px;
}

.review-table span,
.review-table strong {
  padding: 8px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.08);
  font-size: 8px;
}

.review-table span {
  color: #6f7a8e;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.review-table strong {
  color: #b9c1ce;
  font-weight: 650;
}

.statement-section {
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: #11161f;
  text-align: center;
}

.statement-grid {
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.statement-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.statement-content img {
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
}

.statement-content blockquote {
  margin: 25px 0 0;
  color: var(--foreground);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.statement-content blockquote span {
  color: var(--accent-bright);
}

.statement-content > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.pricing-section {
  border-top: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 82% 24%, rgba(112, 244, 156, 0.1), transparent 28rem),
    radial-gradient(circle at 18% 42%, rgba(82, 139, 255, 0.11), transparent 30rem),
    var(--background);
}

.pricing-heading {
  align-items: end;
}

.pricing-heading h2 span {
  color: var(--accent-bright);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.pricing-card,
.pricing-trial,
.pricing-feature-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 52%),
    #181e28;
  box-shadow: var(--shadow);
}

.pricing-card::before,
.pricing-trial::before,
.pricing-feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(82, 139, 255, 0.18), transparent 20rem),
    radial-gradient(circle at 92% 12%, rgba(112, 244, 156, 0.13), transparent 18rem);
  opacity: 0.86;
}

.pricing-card {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.pricing-card > *,
.pricing-trial > *,
.pricing-feature-panel > * {
  position: relative;
  z-index: 1;
}

.pricing-card-featured {
  border-color: rgba(121, 166, 255, 0.46);
  background:
    linear-gradient(145deg, rgba(82, 139, 255, 0.16), rgba(112, 244, 156, 0.06) 58%, transparent),
    #181e28;
}

.pricing-label {
  width: max-content;
  padding: 7px 11px;
  border: 1px solid rgba(121, 166, 255, 0.24);
  border-radius: 999px;
  background: rgba(82, 139, 255, 0.1);
  color: var(--accent-bright);
  font-size: 9px;
  font-weight: 830;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card h3,
.pricing-trial h3 {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pricing-price {
  display: flex;
  align-items: end;
  gap: 10px;
  color: var(--foreground);
}

.pricing-price strong {
  font-size: clamp(56px, 7vw, 82px);
  font-weight: 790;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.pricing-price span {
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}

.pricing-card p,
.pricing-trial p {
  max-width: 540px;
  margin: 0;
  color: #bac2cf;
  font-size: 15px;
  line-height: 1.75;
}

.pricing-card .button {
  justify-self: start;
  margin-top: 6px;
  color: #fff;
}

.pricing-trial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: 28px 34px;
}

.pricing-trial .button {
  flex: 0 0 auto;
}

.pricing-feature-panel {
  margin-top: 22px;
  padding: 30px 34px 34px;
}

.pricing-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.pricing-feature-list span {
  position: relative;
  min-height: 48px;
  padding: 14px 14px 14px 40px;
  border: 1px solid rgba(153, 163, 183, 0.15);
  border-radius: 14px;
  background: rgba(33, 40, 53, 0.72);
  color: #dbe1ec;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.pricing-feature-list span::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--positive);
  box-shadow: 0 0 18px rgba(112, 244, 156, 0.62);
}

.mobile-app-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 20% 28%, rgba(82, 139, 255, 0.12), transparent 31rem),
    radial-gradient(circle at 82% 54%, rgba(187, 140, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 62% 18%, rgba(112, 244, 156, 0.08), transparent 30rem),
    var(--background);
}

.mobile-app-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 72px;
}

.mobile-app-copy > p {
  max-width: 560px;
  margin: 26px 0 0;
  color: #bac2cf;
  font-size: 16px;
  line-height: 1.85;
}

.mobile-app-points {
  display: grid;
  gap: 11px;
  margin-top: 31px;
}

.mobile-app-points span {
  position: relative;
  padding-left: 24px;
  color: #dbe1ec;
  font-size: 13px;
  font-weight: 720;
}

.mobile-app-points span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--positive);
  box-shadow: 0 0 18px rgba(112, 244, 156, 0.62);
}

.mobile-app-visual {
  position: relative;
  min-height: 660px;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.mobile-shot {
  position: absolute;
  bottom: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #181e28;
  border-radius: 34px;
  background: #f5f6fa;
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.48),
    0 0 0 9px rgba(255, 255, 255, 0.03),
    0 0 38px rgba(255, 255, 255, 0.32),
    0 0 92px rgba(255, 255, 255, 0.22),
    0 0 140px rgba(121, 166, 255, 0.1);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.mobile-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.48), transparent 28%, transparent 74%, rgba(121, 166, 255, 0.12));
  mix-blend-mode: screen;
}

.mobile-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-shot-one {
  z-index: 2;
  left: 0;
  bottom: 78px;
  width: min(30%, 238px);
  transform: rotateZ(-8deg) rotateY(11deg) translateZ(-60px);
  transform-origin: center bottom;
}

.mobile-shot-two {
  z-index: 4;
  left: 32%;
  bottom: 14px;
  width: min(34%, 278px);
  transform: rotateZ(3deg) rotateY(-5deg) translateZ(88px);
  transform-origin: center bottom;
}

.mobile-shot-three {
  z-index: 3;
  right: 0;
  bottom: -32px;
  width: min(31%, 250px);
  transform: rotateZ(9deg) rotateY(-12deg) translateZ(18px);
  transform-origin: center bottom;
}

.contact-page-main {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(82, 139, 255, 0.13), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(112, 244, 156, 0.09), transparent 31rem),
    var(--background);
}

.contact-page-hero {
  position: relative;
  min-height: 680px;
  padding: 168px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background:
    linear-gradient(180deg, rgba(17, 22, 31, 0.68), rgba(24, 30, 40, 0.98));
}

.contact-page-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: 72px;
}

.contact-page-copy h1 {
  max-width: 850px;
  margin: 20px 0 0;
  color: var(--foreground);
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 780;
  letter-spacing: -0.078em;
  line-height: 0.9;
}

.contact-page-copy > p {
  max-width: 690px;
  margin: 28px 0 0;
  color: #c7ceda;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.contact-hero-panel,
.contact-info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(82, 139, 255, 0.11), rgba(112, 244, 156, 0.035) 56%, transparent),
    #181e28;
  box-shadow: var(--shadow);
}

.contact-hero-panel {
  padding: 30px;
}

.contact-hero-panel::before,
.contact-info-card::before,
.contact-page-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 0%, rgba(82, 139, 255, 0.15), transparent 17rem),
    radial-gradient(circle at 95% 12%, rgba(187, 140, 255, 0.1), transparent 16rem);
}

.contact-hero-panel > *,
.contact-info-card > *,
.contact-page-form-card > * {
  position: relative;
  z-index: 1;
}

.contact-signal-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-signal-list div {
  padding: 18px;
  border: 1px solid rgba(153, 163, 183, 0.14);
  border-radius: 16px;
  background: rgba(33, 40, 53, 0.68);
}

.contact-signal-list strong {
  display: block;
  color: var(--foreground);
  font-size: 15px;
}

.contact-signal-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.contact-page-section {
  padding: 88px 0 112px;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: 68px;
}

.contact-detail-stack {
  display: grid;
  gap: 18px;
}

.contact-info-card {
  padding: 28px;
}

.contact-info-card h2 {
  margin: 14px 0 0;
  color: var(--foreground);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.contact-info-card p {
  margin: 17px 0 0;
  color: #bac2cf;
  font-size: 15px;
  line-height: 1.75;
}

.contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.contact-topic-grid span {
  min-height: 44px;
  padding: 13px 14px;
  border: 1px solid rgba(153, 163, 183, 0.14);
  border-radius: 13px;
  background: rgba(33, 40, 53, 0.74);
  color: #dbe1ec;
  font-size: 12px;
  font-weight: 740;
}

.contact-availability-card {
  background:
    linear-gradient(145deg, rgba(112, 244, 156, 0.08), rgba(82, 139, 255, 0.06) 60%, transparent),
    #181e28;
}

.contact-page-form-card {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
  background:
    linear-gradient(145deg, rgba(82, 139, 255, 0.08), transparent 54%),
    var(--surface);
}

.access-section,
.contact-section {
  background:
    radial-gradient(circle at 18% 50%, rgba(82, 139, 255, 0.11), transparent 30rem),
    var(--background);
}

.access-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.access-copy h2 {
  font-size: clamp(42px, 4.4vw, 64px);
}

.access-copy > p,
.contact-copy > p {
  margin-top: 25px;
}

.access-benefits,
.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 31px;
}

.access-benefits span,
.contact-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bac2cf;
  font-size: 12px;
}

.access-benefits svg,
.contact-points svg {
  width: 16px;
  height: 16px;
  color: var(--positive);
  stroke-width: 2.4;
}

.contact-section {
  border-top: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 82% 42%, rgba(112, 244, 156, 0.08), transparent 28rem),
    radial-gradient(circle at 18% 50%, rgba(82, 139, 255, 0.11), transparent 30rem),
    var(--background);
}

.contact-card {
  background:
    linear-gradient(145deg, rgba(82, 139, 255, 0.035), transparent 50%),
    var(--surface);
}

.signup-card {
  padding: 34px;
  border: 1px solid rgba(153, 163, 183, 0.2);
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow);
}

.signup-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.signup-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: rgba(82, 139, 255, 0.11);
  color: var(--accent-bright);
}

.signup-icon svg {
  width: 19px;
  height: 19px;
}

.signup-card-top > div {
  display: grid;
}

.signup-card-top small {
  color: var(--accent-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.signup-card-top h3 {
  margin: 3px 0 0;
  color: var(--foreground);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.waitlist-form,
.contact-form {
  position: relative;
  display: grid;
  margin-top: 24px;
}

.waitlist-form > label,
.contact-form > label {
  margin: 0 0 8px;
  color: #aeb7c5;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.waitlist-form > label:not(:first-of-type),
.contact-form > label:not(:first-of-type) {
  margin-top: 17px;
}

.input-wrap,
.select-wrap,
.textarea-wrap {
  position: relative;
}

.input-wrap svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 17px;
  height: 17px;
  color: #6f7a8e;
  transform: translateY(-50%);
}

.input-wrap input,
.select-wrap select,
.textarea-wrap textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: rgba(17, 22, 31, 0.55);
  color: var(--foreground);
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.input-wrap input {
  height: 52px;
  padding: 0 16px 0 45px;
}

.select-wrap select {
  height: 52px;
  padding: 0 42px 0 16px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7f899a 50%),
    linear-gradient(135deg, #7f899a 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  color: var(--foreground);
}

.textarea-wrap textarea {
  min-height: 142px;
  padding: 15px 16px;
  resize: vertical;
  line-height: 1.55;
}

.input-wrap input::placeholder,
.textarea-wrap textarea::placeholder {
  color: #697487;
}

.input-wrap input:focus,
.select-wrap select:focus,
.textarea-wrap textarea:focus {
  border-color: var(--accent);
  background-color: rgba(17, 22, 31, 0.76);
  box-shadow: 0 0 0 4px rgba(82, 139, 255, 0.1);
}

.input-wrap input.is-invalid,
.select-wrap select.is-invalid,
.textarea-wrap textarea.is-invalid {
  border-color: var(--negative);
  box-shadow: 0 0 0 4px rgba(229, 102, 116, 0.08);
}

.submit-button {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.submit-button.is-loading {
  cursor: wait;
  opacity: 0.78;
}

.submit-button.is-loading svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  min-height: 20px;
  margin: 13px 0 0;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.form-status.is-success {
  color: var(--positive);
}

.form-status.is-error {
  color: #f18b97;
}

.privacy-note {
  margin: 4px 0 0;
  color: #778296;
  font-size: 9px;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.faq-section {
  padding-top: 80px;
  border-top: 1px solid var(--border-soft);
  background: #151a23;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
}

.faq-heading h2 {
  font-size: clamp(38px, 3.8vw, 56px);
}

.faq-list {
  border-top: 1px solid var(--border-soft);
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  color: var(--foreground);
  font-size: 16px;
  font-weight: 680;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 14px;
  height: 1.5px;
  background: var(--accent-bright);
  content: "";
  transition: transform 0.2s ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item p {
  max-width: 670px;
  margin: -6px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-soft);
  background: #10151d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 35px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-grid > div:first-child > p {
  margin: 14px 0 0;
  color: #737e91;
  font-size: 12px;
  line-height: 1.6;
}

.footer-link-stack {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: #9ba5b7;
  font-size: 11px;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-meta {
  justify-self: end;
  text-align: right;
}

.footer-cta {
  margin-bottom: 14px;
}

.footer-meta p {
  margin: 3px 0 0;
  color: #737e91;
  font-size: 9px;
}

.legal-main {
  background:
    radial-gradient(circle at 15% 0%, rgba(82, 139, 255, 0.12), transparent 34rem),
    var(--background);
}

.legal-hero {
  position: relative;
  min-height: 470px;
  padding: 170px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(17, 22, 31, 0.78), rgba(24, 30, 40, 0.98));
}

.legal-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.legal-hero-content h1 {
  max-width: 840px;
  margin: 18px 0 20px;
  color: var(--foreground);
  font-size: clamp(52px, 8vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.legal-hero-content > p {
  max-width: 760px;
  margin: 0;
  color: #c7ceda;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.legal-updated {
  margin-top: 24px !important;
  color: var(--accent-bright) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-section {
  padding: 74px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 112px;
}

.legal-card {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(37, 45, 59, 0.96), rgba(27, 34, 45, 0.96)),
    var(--surface);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.legal-card strong {
  margin: 0 0 9px;
  color: var(--foreground);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-card a {
  padding: 9px 10px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.legal-card a:hover {
  background: rgba(82, 139, 255, 0.11);
  color: var(--foreground);
}

.legal-document {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(33, 40, 53, 0.95), rgba(20, 26, 36, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.legal-document section + section {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid rgba(153, 163, 183, 0.12);
}

.legal-document h2,
.legal-document h3 {
  color: var(--foreground);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.legal-document h2 {
  margin: 0 0 15px;
  font-size: clamp(25px, 3.3vw, 39px);
}

.legal-document h3 {
  margin: 26px 0 10px;
  font-size: 18px;
}

.legal-document p,
.legal-document li {
  color: #c8cfdb;
  font-size: 15px;
  line-height: 1.85;
}

.legal-document p {
  margin: 0 0 15px;
}

.legal-document ul {
  display: grid;
  gap: 11px;
  margin: 17px 0 0;
  padding-left: 20px;
}

.legal-document li::marker {
  color: var(--accent-bright);
}

.legal-document a {
  color: var(--accent-bright);
  font-weight: 800;
}

.legal-document a:hover {
  color: var(--foreground);
}

.legal-callout,
.legal-disclaimer-short {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid rgba(82, 139, 255, 0.24);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(82, 139, 255, 0.14), rgba(187, 140, 255, 0.08)),
    rgba(17, 22, 31, 0.74);
}

.legal-callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--foreground);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-callout p,
.legal-disclaimer-short p {
  margin: 0;
  color: #e0e5ef;
}

.footer-disclaimer {
  max-width: 620px;
  margin: 0 auto;
  color: #737e91;
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
}

.footer-copyright {
  margin: 10px 0 0;
  color: #737e91;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 35px;
  }

  .hero-title {
    font-size: clamp(52px, 6vw, 72px);
  }

  .product-window {
    transform: none;
  }

  .chip-two {
    right: -10px;
  }

  .platform-layout,
  .access-layout,
  .contact-layout,
  .faq-layout {
    gap: 60px;
  }

  .tool-spotlight,
  .tool-reversed {
    grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
    gap: 45px;
  }

  .tool-reversed {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  }

  .algo-layout {
    grid-template-columns: 135px 1fr;
  }

  .algo-palette {
    padding-right: 10px;
    padding-left: 10px;
  }

  .algo-node {
    width: 118px;
    padding: 11px;
  }

  .swing-layout {
    grid-template-columns: minmax(0, 1fr) 168px;
  }

  .simulation-layout {
    grid-template-columns: minmax(270px, 0.58fr) minmax(0, 1.42fr);
    gap: 45px;
  }

  .simulation-body {
    grid-template-columns: minmax(0, 1fr) 184px;
  }

  .context-visual {
    width: 66%;
  }

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

  .mobile-app-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mobile-app-copy {
    max-width: 760px;
  }

  .mobile-app-visual {
    min-height: 610px;
  }

  .contact-page-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .contact-hero-panel {
    max-width: 760px;
  }
}

@media (max-width: 960px) {
  .pricing-heading {
    align-items: start;
  }

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

  .pricing-trial {
    align-items: start;
    flex-direction: column;
  }

  .contact-page-hero {
    min-height: auto;
    padding: 150px 0 78px;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .mobile-app-visual {
    min-height: 560px;
  }

  .mobile-shot-one {
    left: 6%;
    width: min(31%, 220px);
  }

  .mobile-shot-two {
    left: 35%;
    width: min(34%, 250px);
  }

  .mobile-shot-three {
    right: 5%;
    width: min(31%, 220px);
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--foreground);
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 84px;
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(17, 22, 31, 0.98);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease,
      opacity 0.2s ease,
      border-color 0.3s ease,
      visibility 0s linear 0.3s;
  }

  .mobile-nav.is-open {
    max-height: 520px;
    padding: 18px 24px 25px;
    border-color: var(--border-soft);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-nav > a:not(.button) {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border-soft);
    color: #c1c8d4;
    font-size: 14px;
    font-weight: 650;
  }

  .mobile-nav .button {
    min-height: 48px;
    margin-top: 10px;
  }

  .mobile-nav .button + .button {
    margin-top: 4px;
  }

  .hero {
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-title {
    font-size: clamp(62px, 10vw, 88px);
  }

  .hero-product {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .platform-layout,
  .access-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .platform-copy {
    max-width: 700px;
  }

  .tools-heading {
    margin-bottom: 85px;
  }

  .tool-showcase {
    gap: 130px;
  }

  .tool-spotlight,
  .tool-reversed {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tool-reversed .tool-copy,
  .tool-reversed .tool-visual-wrap {
    order: initial;
  }

  .tool-copy {
    max-width: 700px;
  }

  .tool-copy > p {
    max-width: 620px;
  }

  .tool-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 24px;
  }

  .tool-window,
  .tool-reversed .tool-window,
  .algo-screenshot-frame,
  .breakout-screenshot-frame,
  .swing-screenshot-frame,
  .pattern-screenshot-frame,
  .market-replay-screenshot-frame {
    width: 100%;
    transform: none;
  }

  .simulation-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .simulation-copy {
    max-width: 720px;
  }

  .simulation-copy > p {
    max-width: 620px;
  }

  .simulation-window {
    transform: none;
  }

  .platform-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .bento-journal {
    grid-template-columns: 1fr;
  }

  .bento-journal .bento-copy {
    order: 0;
  }

  .journal-dashboard {
    margin-top: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-meta {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .mobile-nav {
    top: 74px;
  }

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

  .brand img {
    width: 37px;
    height: 37px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 110px;
  }

  .hero-title {
    margin-top: 19px;
    font-size: clamp(50px, 14.8vw, 72px);
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-layout {
    gap: 75px;
  }

  .floating-chip {
    display: none;
  }

  .product-window {
    border-radius: 15px;
  }

  .window-bar {
    height: 46px;
  }

  .product-body {
    grid-template-columns: 42px 1fr;
    min-height: 390px;
  }

  .product-sidebar {
    gap: 7px;
  }

  .sidebar-mark {
    width: 27px;
    height: 27px;
  }

  .sidebar-mark img {
    width: 23px;
    height: 23px;
  }

  .side-icon {
    width: 28px;
    height: 28px;
  }

  .product-main {
    padding: 13px;
  }

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

  .market-strip > div:last-child {
    display: none;
  }

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

  .setup-card {
    display: none;
  }

  .chart-area {
    height: 170px;
  }

  .section {
    padding: 95px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .platform-copy h2,
  .access-copy h2,
  .contact-copy h2,
  .faq-heading h2 {
    font-size: clamp(38px, 11.5vw, 53px);
  }

  .workflow-grid,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .tools-heading {
    margin-bottom: 65px;
  }

  .tool-showcase {
    gap: 105px;
  }

  .tool-spotlight,
  .tool-reversed {
    gap: 38px;
  }

  .tool-copy h3 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .tool-feature-list {
    grid-template-columns: 1fr;
  }

  .tool-window {
    border-radius: 14px;
  }

  .algo-screenshot-frame,
  .breakout-screenshot-frame,
  .swing-screenshot-frame,
  .pattern-screenshot-frame {
    border-radius: 16px;
  }

  .tool-window-bar {
    min-height: 51px;
    padding: 0 11px;
  }

  .window-breadcrumb,
  .window-actions span {
    display: none;
  }

  .algo-layout {
    grid-template-columns: 1fr;
    min-height: 430px;
  }

  .algo-palette {
    display: none;
  }

  .node-macd,
  .node-volume {
    left: 4%;
  }

  .node-logic {
    left: 40%;
  }

  .node-entry {
    right: 3%;
  }

  .breakout-summary {
    gap: 6px;
    padding: 9px;
  }

  .breakout-summary > div {
    padding: 9px;
  }

  .breakout-summary strong {
    font-size: 16px;
  }

  .tracker-table {
    padding: 0 9px;
  }

  .tracker-head,
  .tracker-row {
    grid-template-columns: 1.4fr 0.55fr 0.7fr 0.7fr 1fr;
  }

  .tracker-head span:last-child,
  .tracker-row > span:last-child {
    display: none;
  }

  .tracker-detail {
    grid-template-columns: 1.4fr repeat(2, 0.75fr);
  }

  .tracker-detail > span:last-child {
    display: none;
  }

  .swing-layout {
    grid-template-columns: 1fr;
  }

  .simulation-heading {
    margin-bottom: 52px;
  }

  .simulation-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .replay-chart {
    min-height: 285px;
  }

  .paper-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .paper-card {
    min-width: 0;
  }

  .swing-score-card {
    grid-template-columns: 95px 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    justify-items: start;
    gap: 0 15px;
    text-align: left;
  }

  .setup-ready {
    grid-column: 2;
    align-self: end;
  }

  .swing-score-ring {
    grid-row: 1 / 4;
    width: 86px;
    height: 86px;
    margin: 0;
  }

  .swing-score-ring strong {
    font-size: 22px;
  }

  .swing-score-card h4,
  .swing-score-card > p {
    grid-column: 2;
  }

  .swing-score-card h4 {
    align-self: center;
    margin-top: 5px;
  }

  .swing-score-card > p {
    align-self: start;
  }

  .factor-list,
  .risk-reference {
    grid-column: 1 / -1;
  }

  .workflow-card {
    min-height: 405px;
    padding: 27px;
  }

  .workflow-card:nth-child(1),
  .workflow-card:nth-child(2),
  .workflow-card:nth-child(3),
  .workflow-card:nth-child(4) {
    grid-column: auto;
  }

  .mini-interface {
    right: 27px;
    bottom: 27px;
    left: 27px;
  }

  .workflow-card[data-step="02"] .mini-interface {
    height: 122px;
  }

  .scanner-interface div {
    padding: 0 7px;
  }

  .plan-interface {
    gap: 5px;
  }

  .plan-interface div {
    padding: 8px;
  }

  .platform-visual {
    min-height: 680px;
  }

  .process-card {
    width: 88%;
  }

  .process-card-one {
    left: 0;
  }

  .process-card-two {
    top: 220px;
  }

  .process-card-three {
    bottom: 0;
    left: 0;
  }

  .bento-card,
  .bento-wide {
    grid-column: auto;
    min-height: 460px;
    padding: 25px;
  }

  .bento-wide:first-child {
    min-height: 620px;
  }

  .context-visual {
    right: 24px;
    bottom: 0;
    left: 24px;
    width: auto;
    height: 335px;
  }

  .context-screenshot-frame {
    bottom: -30px;
    height: auto;
    aspect-ratio: 2067 / 1464;
    border-radius: 20px;
  }

  .context-tabs span {
    padding: 7px 8px;
    font-size: 7px;
  }

  .bento-journal {
    min-height: auto;
  }

  .review-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .review-metrics > div:last-child {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-card strong {
    grid-column: 1 / -1;
  }

  .statement-content blockquote {
    font-size: clamp(39px, 11.8vw, 57px);
  }

  .signup-card {
    padding: 25px;
  }

  .faq-layout,
  .contact-layout {
    gap: 45px;
  }

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

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 49px;
  }

  .hero-note {
    display: grid;
  }

  .product-heading h2 {
    font-size: 15px;
  }

  .demo-pill {
    display: none;
  }

  .chart-meta span:last-child {
    display: none;
  }

  .chart-meta {
    grid-template-columns: 1fr 1fr;
  }

  .scanner-interface strong {
    font-size: 18px;
  }

  .tool-copy > p {
    font-size: 13px;
  }

  .algo-node {
    width: 104px;
    padding: 10px;
  }

  .node-macd {
    top: 62px;
  }

  .node-volume {
    top: 228px;
  }

  .node-logic {
    top: 151px;
    left: 38%;
  }

  .node-entry {
    top: 151px;
  }

  .algo-node strong {
    font-size: 8px;
  }

  .algo-node small {
    font-size: 6px;
  }

  .variable-chip {
    right: 10px;
    bottom: 10px;
  }

  .breakout-summary > div:last-child {
    display: none;
  }

  .breakout-summary {
    grid-template-columns: 1fr 1fr;
  }

  .tracker-head,
  .tracker-row {
    grid-template-columns: 1.5fr 0.55fr 0.75fr 1fr;
  }

  .tracker-head span:nth-child(4),
  .tracker-row > span:nth-child(4) {
    display: none;
  }

  .tracker-row {
    min-height: 62px;
  }

  .tracker-detail {
    grid-template-columns: 1fr 0.65fr;
  }

  .tracker-detail > span:nth-of-type(2) {
    display: none;
  }

  .swing-chart {
    height: 230px;
  }

  .swing-chart-stats {
    grid-template-columns: 1fr 1fr;
  }

  .swing-chart-stats span:nth-child(2) {
    border-right: 0;
  }

  .swing-chart-stats span:nth-child(n + 3) {
    border-top: 1px solid rgba(153, 163, 183, 0.08);
  }

  .journal-interface {
    grid-template-columns: 1fr 80px;
  }

  .analysis-metrics strong {
    font-size: 5px;
  }

  .paper-panel {
    grid-template-columns: 1fr;
  }

  .simulation-window-bar strong {
    max-width: 170px;
  }

  .replay-panel-head {
    align-items: flex-start;
  }

  .replay-panel-head > span {
    display: none;
  }

  .replay-chart {
    min-height: 235px;
  }

  .replay-controls {
    grid-template-columns: repeat(3, 30px) 1fr;
  }

  .replay-controls > span {
    display: none;
  }

  .process-card {
    width: 94%;
    padding: 16px;
  }

  .process-card-two {
    top: 228px;
  }

  .context-tabs span:nth-child(3) {
    display: none;
  }

  .context-stats span:last-child {
    display: none;
  }

  .context-stats {
    grid-template-columns: 1fr 1fr;
  }

  .signup-card-top h3 {
    font-size: 21px;
  }

  .legal-hero {
    min-height: auto;
    padding: 145px 0 58px;
  }

  .legal-section {
    padding: 48px 0 72px;
  }

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

  .legal-document {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.mobilehide {
	opacity: 0 !important;
	display: none !important;
}
	  
	  #dev_brand {
		  display: flex;
		  align-items: center;
		  gap: 5px;
		  justify-content: flex-end;
		  margin-top: 10px;
		  color: inherit;
		  text-decoration: none;
	  }
	  #dev_brand img {
		  width: 35px;
	  }
	  #dev_brand span {
		  font-size: 13px;
		  text-transform: uppercase;
		  letter-spacing: 2px;;
	  }
	  #dev_brand:hover span {
		  color: var(--foreground);
	  }
	  #workflow {
		  padding-bottom: 60px !important;
	  }

@media (max-width: 760px) {
  .pricing-grid {
    gap: 16px;
    margin-top: 34px;
  }

  .pricing-card,
  .pricing-trial,
  .pricing-feature-panel {
    border-radius: 20px;
  }

  .pricing-card,
  .pricing-feature-panel {
    padding: 24px;
  }

  .pricing-trial {
    padding: 24px;
  }

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

  .pricing-card .button,
  .pricing-trial .button {
    width: 100%;
  }

  .mobile-app-section {
    padding-top: 70px;
  }

  .mobile-app-visual {
    min-height: 430px;
  }

  .mobile-shot {
    border-radius: 24px;
  }

  .mobile-shot-one {
    left: 1%;
    bottom: 72px;
    width: 34%;
  }

  .mobile-shot-two {
    left: 31%;
    bottom: 20px;
    width: 40%;
  }

  .mobile-shot-three {
    right: 1%;
    bottom: -26px;
    width: 34%;
  }

  .contact-page-hero {
    padding: 132px 0 64px;
  }

  .contact-page-copy h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .contact-hero-actions .button {
    width: 100%;
  }

  .contact-hero-panel,
  .contact-info-card,
  .contact-page-form-card {
    border-radius: 20px;
  }

  .contact-hero-panel,
  .contact-info-card,
  .contact-page-form-card {
    padding: 24px;
  }

  .contact-topic-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card[data-step] .workflow-visual {
    height: 170px;
  }

  .discovery-stage {
    grid-template-columns: 96px 1fr;
    gap: 9px;
  }

  .discovery-radar {
    min-height: 82px;
  }

  .discovery-rank-list div {
    grid-template-columns: 42px 26px 1fr;
    gap: 6px;
    padding: 0 7px;
  }

  .visual-analysis {
    grid-template-columns: 1fr 96px;
    gap: 8px;
    padding: 10px;
  }

  .analysis-side-panel div {
    padding: 9px;
  }

  .plan-node {
    min-width: 88px;
    padding: 9px;
  }

  .plan-node-entry {
    left: 6%;
  }

  .plan-node-rule {
    left: 38%;
  }

  .plan-risk-strip {
    gap: 5px;
  }

  .plan-risk-strip span {
    padding: 6px;
  }

  .visual-review {
    grid-template-columns: 84px 1fr 56px;
    gap: 8px;
    padding: 10px;
  }

  .review-score-ring span {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

@media (max-width: 430px) {
  .workflow-card {
    min-height: 450px;
  }

  .workflow-card[data-step] .workflow-visual {
    height: 162px;
  }

  .visual-topline {
    height: 30px;
    padding: 0 11px;
  }

  .discovery-stage {
    top: 39px;
    grid-template-columns: 1fr;
  }

  .discovery-radar {
    display: none;
  }

  .discovery-signal-grid {
    gap: 3px;
  }

  .visual-analysis {
    grid-template-columns: 1fr 74px;
  }

  .analysis-side-panel small {
    display: none;
  }

  .analysis-side-panel strong {
    font-size: 8px;
  }

  .context-tag {
    font-size: 6px;
  }

  .plan-node {
    min-width: 74px;
    padding: 8px;
  }

  .plan-node small {
    font-size: 6px;
  }

  .plan-node strong {
    font-size: 8px;
  }

  .plan-risk-strip span {
    font-size: 6px;
  }

  .visual-review {
    grid-template-columns: 66px 1fr 40px;
  }

  .review-score-ring span {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }
}

.workflow-card[data-step] {
  min-height: 250px;
}

.workflow-card[data-step] .workflow-visual {
  display: none;
}

.alerts-system-section {
    overflow: hidden;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background:
      radial-gradient(circle at 16% 42%, rgba(82, 139, 255, 0.1), transparent 34rem),
      radial-gradient(circle at 88% 20%, rgba(78, 231, 224, 0.07), transparent 28rem),
      #131923;
  }

  .alerts-system-section .container {
    position: relative;
    z-index: 2;
  }

  .alerts-system-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(153, 163, 183, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(153, 163, 183, 0.035) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
    pointer-events: none;
  }

  .alerts-system-heading {
    margin-bottom: 72px;
  }

  .alerts-system-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(300px, 0.62fr);
    align-items: center;
    gap: clamp(46px, 6vw, 82px);
  }

  .alerts-product-wrap {
    position: relative;
    min-width: 0;
    perspective: 1400px;
  }

  .alerts-product-wrap::before {
    position: absolute;
    z-index: -1;
    inset: 8% 3% -7% 7%;
    border-radius: 28px;
    background: rgba(235, 247, 255, 0.14);
    content: "";
    filter: blur(42px);
  }

  .alerts-product-shell {
    overflow: hidden;
    border: 1px solid #293343;
    border-radius: 18px;
    background: #171e28;
    box-shadow:
      0 42px 100px rgba(0, 0, 0, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: rotateY(3.2deg) rotateX(0.7deg);
    transform-origin: left center;
  }

  .alerts-product-bar {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(153, 163, 183, 0.13);
    background: #202835;
  }

  .alerts-product-title,
  .alerts-product-status {
    display: flex;
    align-items: center;
  }

  .alerts-product-title {
    min-width: 0;
    gap: 11px;
  }

  .alerts-product-title-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(82, 139, 255, 0.25);
    border-radius: 9px;
    background: rgba(82, 139, 255, 0.12);
    color: var(--accent-bright);
  }

  .alerts-product-title-icon svg {
    width: 17px;
    height: 17px;
  }

  .alerts-product-title > div {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .alerts-product-title strong {
    overflow: hidden;
    color: var(--foreground);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .alerts-product-title small {
    color: #7f8a9d;
    font-size: 8px;
  }

  .alerts-product-status {
    flex: 0 0 auto;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(112, 244, 156, 0.2);
    border-radius: 999px;
    background: rgba(112, 244, 156, 0.07);
    color: var(--positive);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .alerts-live-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--positive);
    box-shadow: 0 0 12px rgba(112, 244, 156, 0.78);
  }

  .alerts-live-dot::after {
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(112, 244, 156, 0.38);
    border-radius: inherit;
    animation: alerts-system-pulse 2s ease-out infinite;
    content: "";
  }

  @keyframes alerts-system-pulse {
    0% { opacity: 0.8; transform: scale(0.72); }
    75%, 100% { opacity: 0; transform: scale(1.55); }
  }

  .alerts-product-body {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.88fr);
    min-height: 510px;
  }

  .alert-rule-panel,
  .alert-center-panel {
    min-width: 0;
    padding: 18px;
  }

  .alert-rule-panel {
    border-right: 1px solid rgba(153, 163, 183, 0.11);
    background: #171e28;
  }

  .alert-center-panel {
    background: #151b24;
  }

  .alerts-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 36px;
  }

  .alerts-panel-head > div {
    display: grid;
    gap: 2px;
  }

  .alerts-panel-head small,
  .alert-rule-label,
  .alert-feed-time {
    color: #707b8f;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .alerts-panel-head strong {
    color: #dfe4ec;
    font-size: 11px;
  }

  .alert-mode,
  .alert-count {
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 7px;
    font-weight: 800;
  }

  .alert-mode {
    background: rgba(82, 139, 255, 0.11);
    color: var(--accent-bright);
  }

  .alert-count {
    background: rgba(112, 244, 156, 0.08);
    color: var(--positive);
  }

  .alert-rule-target {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    margin-top: 15px;
    padding: 13px;
    border: 1px solid rgba(82, 139, 255, 0.19);
    border-radius: 10px;
    background: rgba(82, 139, 255, 0.065);
  }

  .alert-symbol {
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 850;
  }

  .alert-rule-target > div {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .alert-rule-target strong {
    overflow: hidden;
    color: var(--foreground);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .alert-rule-target small {
    color: #8590a3;
    font-size: 7px;
  }

  .alert-rule-target > span:last-child {
    color: var(--positive);
    font-size: 8px;
    font-weight: 800;
  }

  .alert-rule-logic {
    position: relative;
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding-left: 17px;
  }

  .alert-rule-logic::before {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 5px;
    width: 1px;
    background: linear-gradient(var(--accent), #4ee7e0, var(--violet));
    content: "";
    opacity: 0.55;
  }

  .alert-condition {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 9px 10px;
    border: 1px solid rgba(153, 163, 183, 0.11);
    border-radius: 9px;
    background: #202733;
  }

  .alert-condition::before {
    position: absolute;
    top: 50%;
    left: -16px;
    width: 16px;
    height: 1px;
    background: rgba(82, 139, 255, 0.48);
    content: "";
  }

  .alert-condition > span:first-child {
    color: var(--accent-bright);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: 0.08em;
  }

  .alert-condition strong {
    color: #d8dde6;
    font-size: 8px;
    font-weight: 720;
  }

  .alert-condition em {
    padding: 4px 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.035);
    color: #8d98aa;
    font-size: 6px;
    font-style: normal;
  }

  .alert-delivery {
    margin-top: 15px;
  }

  .alert-delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 8px;
  }

  .alert-delivery-grid span {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(78, 231, 224, 0.15);
    border-radius: 8px;
    background: rgba(78, 231, 224, 0.055);
    color: #b8c2d0;
    font-size: 7px;
    font-weight: 750;
  }

  .alert-delivery-grid svg {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    color: #4ee7e0;
  }

  .alert-rule-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid rgba(153, 163, 183, 0.1);
  }

  .alert-rule-footer span {
    color: #8893a5;
    font-size: 7px;
  }

  .alert-rule-footer strong {
    color: var(--positive);
    font-size: 7px;
    font-weight: 800;
  }

  .alert-feed {
    display: grid;
    gap: 8px;
    margin-top: 15px;
  }

  .alert-feed-item {
    position: relative;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    min-height: 91px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(153, 163, 183, 0.11);
    border-radius: 9px;
    background: #202733;
  }

  .alert-feed-item.is-triggered {
    border-color: rgba(112, 244, 156, 0.22);
    background: linear-gradient(110deg, rgba(112, 244, 156, 0.08), #202733 62%);
  }

  .alert-feed-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    background: rgba(82, 139, 255, 0.11);
    color: var(--accent-bright);
  }

  .alert-feed-icon svg {
    width: 14px;
    height: 14px;
  }

  .alert-feed-item.is-triggered .alert-feed-icon {
    background: rgba(112, 244, 156, 0.1);
    color: var(--positive);
  }

  .alert-feed-copy {
    display: grid;
    min-width: 0;
    align-content: start;
    gap: 3px;
  }

  .alert-feed-copy strong {
    overflow: hidden;
    color: #e2e6ed;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .alert-feed-copy p {
    margin: 0;
    color: #8a95a8;
    font-size: 7px;
    line-height: 1.45;
  }

  .alert-feed-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
  }

  .alert-feed-meta span {
    padding: 3px 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.035);
    color: #798598;
    font-size: 5px;
    font-weight: 760;
  }

  .alerts-system-copy h3 {
    margin: 0;
    color: var(--foreground);
    font-size: clamp(34px, 3.5vw, 48px);
    font-weight: 730;
    letter-spacing: -0.052em;
    line-height: 1.06;
  }

  .alerts-system-copy > p {
    margin: 21px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
  }

  .alerts-benefits {
    display: grid;
    gap: 0;
    margin-top: 31px;
    border-top: 1px solid var(--border-soft);
  }

  .alerts-benefit {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .alerts-benefit-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(82, 139, 255, 0.17);
    border-radius: 9px;
    background: rgba(82, 139, 255, 0.07);
    color: var(--accent-bright);
  }

  .alerts-benefit-icon svg {
    width: 16px;
    height: 16px;
  }

  .alerts-benefit div:last-child {
    display: grid;
    gap: 4px;
  }

  .alerts-benefit strong {
    color: var(--foreground);
    font-size: 13px;
  }

  .alerts-benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
  }

  .alerts-system-copy .button {
    margin-top: 30px;
  }

  @media (max-width: 1120px) {
    .alerts-system-layout {
      grid-template-columns: 1fr;
    }

    .alerts-product-wrap {
      width: min(100%, 860px);
    }

    .alerts-system-copy {
      max-width: 760px;
    }
  }

  @media (max-width: 760px) {
    .alerts-system-heading {
      margin-bottom: 48px;
    }

    .alerts-system-layout {
      gap: 52px;
    }

    .alerts-product-shell {
      transform: none;
    }

    .alerts-product-body {
      grid-template-columns: 1fr;
    }

    .alert-rule-panel {
      border-right: 0;
      border-bottom: 1px solid rgba(153, 163, 183, 0.11);
    }

    .alert-center-panel {
      display: none;
    }

    .alert-condition {
      grid-template-columns: 42px minmax(0, 1fr);
    }

    .alert-condition em {
      grid-column: 2;
      justify-self: start;
    }
  }

  @media (max-width: 520px) {
    .alerts-product-bar {
      align-items: flex-start;
      flex-direction: column;
      padding-top: 14px;
      padding-bottom: 14px;
    }

    .alerts-product-status {
      margin-left: 45px;
    }

    .alert-rule-panel {
      padding: 14px;
    }

    .alert-rule-target {
      grid-template-columns: auto minmax(0, 1fr);
    }

    .alert-rule-target > span:last-child {
      grid-column: 2;
    }

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

    .alerts-system-copy .button {
      width: 100%;
    }
  }