:root {
  --bg: #0b0f1a;
  --bg-soft: #101729;
  --surface: rgba(14, 20, 36, 0.62);
  --surface-strong: rgba(17, 23, 39, 0.9);
  --border: rgba(148, 163, 184, 0.1);
  --text: #eef2ff;
  --muted: #91a0b8;
  --primary: #4f46e5;
  --secondary: #22c55e;
  --cyan: #38bdf8;
  --shadow: 0 26px 70px rgba(4, 8, 18, 0.28);
  --radius: 20px;
  --radius-sm: 16px;
  --container: 1180px;
  --page-gutter: clamp(1rem, 2vw, 1.5rem);
  --section-space: clamp(4.5rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    linear-gradient(180deg, #0b0f1a 0%, #0d1321 52%, #0a0f1b 100%);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  overflow: clip;
  position: relative;
  isolation: isolate;
}

.background-wall-grid,
.background-grid,
.background-orb,
.background-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background-wall-grid {
  z-index: -5;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(79, 70, 229, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(10, 15, 28, 0.18), rgba(8, 12, 22, 0.72));
  background-size: 78px 78px, 78px 78px, 100% 100%, 100% 100%;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.9) 12%,
    rgba(0, 0, 0, 0.88) 56%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.55;
}

.background-wall-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.06), transparent 34%);
  opacity: 0.7;
}

.background-grid {
  z-index: -4;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 10, 20, 0.42));
  background-size: 64px 64px, 64px 64px, 100% 100%;
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
  transform: perspective(1600px) rotateX(82deg) scale(2.2) translateY(22%);
  transform-origin: center bottom;
  opacity: 0.8;
}

.background-grid::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  transform: rotate(-8deg);
  filter: blur(18px);
  opacity: 0.45;
}

.background-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -6%;
  height: 22%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 36%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(8px);
  opacity: 0.5;
}

.background-orb {
  filter: blur(90px);
}

.background-orb-a {
  z-index: -3;
  top: -12%;
  left: -8%;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, rgba(79, 70, 229, 0) 70%);
}

.background-orb-b {
  z-index: -3;
  top: 12%;
  right: -10%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0) 70%);
}

.background-noise {
  z-index: -2;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6) 0.7px, transparent 0.8px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.45) 0.7px, transparent 0.8px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.5) 0.7px, transparent 0.8px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.35) 0.7px, transparent 0.8px);
  background-size: 180px 180px, 210px 210px, 240px 240px, 260px 260px;
  mix-blend-mode: soft-light;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
  position: relative;
}

[id] {
  scroll-margin-top: 84px;
}

.section-tight {
  padding: 0 0 2rem;
}

.section-surface {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(9, 13, 24, 0.28));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 0.85rem;
  background: transparent;
  border-bottom: 0;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
   
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0.5rem 0.65rem 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(10, 14, 24, 0.64);
  box-shadow:
    0 18px 50px rgba(2, 6, 18, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-size: 0.95rem;
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter:
    drop-shadow(0 8px 18px rgba(79, 70, 229, 0.22))
    drop-shadow(0 0 16px rgba(56, 189, 248, 0.08));
  flex: 0 0 auto;
}

.footer-brand .brand-logo {
  width: 2.15rem;
  height: 2.15rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.22rem;
  border: 1px solid rgba(148, 163, 184, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.nav-menu a {
  color: rgba(229, 236, 245, 0.8);
  font-size: 0.88rem;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.nav-menu .nav-cta {
  margin-left: 0.2rem;
  min-height: 2.3rem;
  padding: 0.58rem 1rem;
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.58rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 0.28rem 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 550;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 18px 32px rgba(79, 70, 229, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 36px rgba(79, 70, 229, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(148, 163, 184, 0.18);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.3);
}

.hero {
  padding-top: clamp(2.25rem, 6vw, 4.25rem);
  padding-bottom: clamp(5rem, 9vw, 7.5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(620px, 700px);
  gap: 2.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-market-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.market-grid-lines {
  position: absolute;
  inset: 6% 0 18%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 124px 52px, 124px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.86) 45%, transparent 100%);
  opacity: 0.32;
}

.market-lines-svg {
  width: 50%;
  min-width: 50%;
  height: 100%;
  flex: 0 0 50%;
  opacity: 0.42;
}

.market-lines-track {
  position: absolute;
  inset: 5% 0 20%;
  display: flex;
  width: max-content;
  height: 54%;
  animation: marketTrackMove 22s linear infinite;
}

.market-lines-svg {
  width: 100vw;
  min-width: 100vw;
  flex: 0 0 100vw;
}

.market-line-glow,
.market-line {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.market-line-glow-a {
  stroke: rgba(66, 232, 209, 0.1);
  stroke-width: 5;
  filter: url(#heroGlowA);
}

.market-line-glow-b {
  stroke: rgba(52, 211, 153, 0.06);
  stroke-width: 4;
  filter: url(#heroGlowB);
}

.market-line-a {
  stroke: rgba(66, 232, 209, 0.52);
  stroke-width: 1.4;
  stroke-dasharray: none;
  animation: marketLineFlowA 18s linear infinite;
}

.market-line-b {
  stroke: rgba(52, 211, 153, 0.34);
  stroke-width: 1.1;
  stroke-dasharray: none;
  animation: marketLineFlowB 24s linear infinite;
}

.market-line-guide {
  stroke: rgba(138, 247, 234, 0.08);
  stroke-width: 1;
  stroke-dasharray: 3 7;
}

.market-line-point {
  fill: rgba(138, 247, 234, 0.7);
  filter: drop-shadow(0 0 8px rgba(74, 222, 200, 0.22));
}

.market-line-point-soft {
  fill: rgba(138, 247, 234, 0.08);
  filter: blur(0.8px);
}

.market-ticker-stream {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  z-index: 0;
  overflow: hidden;
}

.market-ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 26s linear infinite;
}

.market-ticker-group {
  display: flex;
  gap: 1rem;
  flex: 0 0 auto;
  padding-right: 1rem;
  color: rgba(226, 232, 240, 0.46);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.market-ticker-group span {
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.06);
}

.hero-copy,
.hero-visual,
.section-heading,
.feature-card,
.step-card,
.about-copy,
.about-panel,
.pricing-card,
.testimonial-card,
.security-panel,
.faq-item,
.cta-panel,
.stat-card {
  position: relative;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: auto;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-a {
  width: 28rem;
  height: 28rem;
  top: -3rem;
  left: -6rem;
  background: rgba(79, 70, 229, 0.14);
}

.hero-glow-b {
  width: 22rem;
  height: 22rem;
  top: 6rem;
  right: 4rem;
  background: rgba(34, 197, 94, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.06);
  color: #c7d2fe;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 1.35rem;
}

.hero h1,
.section-heading h2,
.cta-panel h2,
.security-copy h2,
.about-copy h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-family: "Manrope", "Inter", sans-serif;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  max-width: 11ch;
  font-weight: 650;
  text-wrap: balance;
}

.hero h1 span {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 550;
}

.lead,
.section-heading p,
.about-copy p,
.cta-panel p,
.security-copy p,
.feature-card p,
.step-card p,
.pricing-card p,
.testimonial-card p,
.faq-item p,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 60ch;
  font-size: 0.98rem;
  margin: 1.35rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
  margin-bottom: 2rem;
}

.hero-trust div,
.metric-card,
.signal-card,
.mini-board-card,
.badge-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(148, 163, 184, 0.09);
  border-radius: 16px;
}

.hero-trust div {
  padding: 1rem;
}

.hero-trust strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 550;
  margin-bottom: 0.35rem;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.86rem;
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  position: relative;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  opacity: 0.7;
  pointer-events: none;
}

.dashboard-window {
  width: 100%;
  max-width: 620px;
  min-height: 575px;
  padding: 0.95rem;
  background:
    linear-gradient(180deg, rgba(18, 25, 45, 0.86), rgba(12, 18, 32, 0.88));
  transform: perspective(1400px) rotateX(8deg) rotateY(-10deg);
  transform-style: preserve-3d;
  transition: transform 500ms ease, box-shadow 300ms ease;
}

.hero-visual:hover .dashboard-window {
  transform: perspective(1400px) rotateX(5deg) rotateY(-5deg) translateY(-4px);
}

.dashboard-topbar,
.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.window-dots {
  display: flex;
  gap: 0.4rem;
}

.window-dots span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.window-dots span:first-child {
  background: #fb7185;
}

.window-dots span:nth-child(2) {
  background: #fbbf24;
}

.window-dots span:nth-child(3) {
  background: #22c55e;
}

.dashboard-status,
.pill {
  color: #bbf7d0;
  font-size: 0.66rem;
  font-weight: 500;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.14);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 0.85rem;
  margin-top: 0.85rem;
  min-height: 510px;
}

.dashboard-sidebar {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.sidebar-label {
  color: rgba(203, 213, 225, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 0.2rem;
}

.sidebar-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.78rem;
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.08);
  font-size: 0.76rem;
}

.sidebar-chip.active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(56, 189, 248, 0.12));
}

.sidebar-chip svg {
  width: 0.85rem;
  height: 0.85rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.88;
}

.dashboard-main {
  display: grid;
  gap: 0.8rem;
  grid-template-rows: auto auto minmax(245px, 1fr) auto auto;
}

.dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.toolbar-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.toolbar-pill {
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(148, 163, 184, 0.08);
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.64rem;
}

.toolbar-pill.active {
  background: rgba(79, 70, 229, 0.14);
  color: #dbeafe;
  border-color: rgba(99, 102, 241, 0.14);
}

.toolbar-meta {
  color: rgba(145, 160, 184, 0.76);
  font-size: 0.66rem;
}

.dashboard-summary,
.dashboard-bottom,
.security-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-card,
.signal-card,
.mini-board-card,
.badge-card {
  padding: 0.85rem;
}

.metric-card span,
.signal-title,
.chart-label,
.mini-board-card span,
.badge-card span,
.plan-name {
  color: #cbd5e1;
  font-size: 0.7rem;
  letter-spacing: 0.01em;
}

.metric-card strong,
.signal-card strong,
.mini-board-card strong,
.pricing-card h3 {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.metric-card small,
.signal-card small,
.mini-board-card small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.signal-card.positive strong,
.stat-value,
.pricing-card.featured h3 {
  color: #86efac;
}

.chart-card {
  padding: 0.85rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(79, 70, 229, 0.12), rgba(14, 20, 36, 0.68));
  border: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  min-height: 248px;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: end;
  min-height: 158px;
  margin-top: 0.85rem;
}

.chart-overlay-labels {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
  color: rgba(145, 160, 184, 0.55);
  font-size: 0.61rem;
}

.chart-grid span {
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #60a5fa 0%, #4f46e5 100%);
  box-shadow: 0 10px 18px rgba(79, 70, 229, 0.18);
}

.ticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.dashboard-heatmap {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.36rem;
}

.heat {
  display: block;
  height: 0.38rem;
  border-radius: 999px;
  opacity: 0.85;
}

.heat-1,
.heat-4,
.heat-8 {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.25), rgba(56, 189, 248, 0.8));
}

.heat-2,
.heat-6 {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.24), rgba(34, 197, 94, 0.82));
}

.heat-3,
.heat-7 {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.24), rgba(99, 102, 241, 0.78));
}

.heat-5 {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.18), rgba(14, 165, 233, 0.62));
}

.ticker-row span {
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.08);
  color: #dbe5f3;
  font-size: 0.64rem;
}

.ticker-row em {
  color: #86efac;
  font-style: normal;
  margin-left: 0.25rem;
}

.stats-grid,
.feature-grid,
.steps-grid,
.pricing-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

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

.stat-card {
  padding: 1.4rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.stat-label {
  color: var(--muted);
  font-size: 0.86rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2,
.security-copy h2,
.about-copy h2,
.cta-panel h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  font-weight: 650;
}

.section-heading p,
.about-copy p,
.security-copy p,
.cta-panel p {
  margin-top: 1rem;
}

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

.feature-card,
.step-card,
.testimonial-card,
.faq-item {
  padding: 1.5rem;
}

.feature-card h3,
.step-card h3,
.pricing-card h3,
.testimonial-card strong {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.feature-card h3,
.step-card h3 {
  font-size: 1.05rem;
}

.icon-wrap {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(56, 189, 248, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.16);
}

.icon-wrap svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: #c7d2fe;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.step-card {
  min-height: 100%;
}

.step-number,
.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-number {
  min-width: 3.25rem;
  padding: 0.55rem 0.85rem;
  margin-bottom: 1rem;
  color: #bfdbfe;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.about-grid,
.security-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.about-panel,
.cta-panel {
  padding: 1.5rem;
}

.mini-board {
  display: grid;
  gap: 1rem;
}

.bullet-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.bullet-list li {
  color: #dbe4f0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.6;
  font-size: 0.95rem;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--cyan));
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.08);
}

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

.pricing-card {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-height: 100%;
  align-items: stretch;
}

.pricing-copy {
  min-height: 10.25rem;
}

.pricing-card .plan-name {
  display: inline-block;
  margin-bottom: 0.2rem;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-card p {
  margin: 0.7rem 0 0;
}

.pricing-card .bullet-list {
  margin-top: 0;
}

.pricing-card .button {
  width: 100%;
  min-height: 2.7rem;
  margin-top: auto;
}

.pricing-card.featured {
  transform: translateY(-0.35rem);
  border-color: rgba(99, 102, 241, 0.22);
  background:
    linear-gradient(180deg, rgba(79, 70, 229, 0.14), rgba(18, 25, 45, 0.84));
}

.plan-badge {
  align-self: flex-start;
  min-height: auto;
  padding: 0.5rem 0.8rem;
  color: #eef2ff;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.84), rgba(56, 189, 248, 0.8));
}

.compact {
  gap: 0.75rem;
}

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

.person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 650;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.55), rgba(34, 197, 94, 0.38));
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.person span {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
  font-size: 0.84rem;
}

.security-panel {
  padding: 1.6rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 550;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  color: #c7d2fe;
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.9rem 0 0;
}

.cta-section {
  padding-top: 2rem;
}

.cta-panel {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  background:
    radial-gradient(circle at top, rgba(79, 70, 229, 0.18), transparent 45%),
    rgba(18, 25, 45, 0.78);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer-grid {
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: start;
}

.footer-grid h3 {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 550;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--text);
}

.footer-copy {
  max-width: 34ch;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom a {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--text);
}

.legal-nav {
  gap: 0.5rem;
}

.legal-shell {
  max-width: 920px;
}

.legal-title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-family: "Manrope", "Inter", sans-serif;
}

.legal-card {
  padding: 1.8rem;
}

.legal-section + .legal-section {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.legal-section h2 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-section .bullet-list {
  margin-top: 1rem;
}

.legal-section a {
  color: #c7d2fe;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  color: #e2e8f0;
}

.login-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}

.login-shell {
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
}

.login-copy,
.login-card {
  position: relative;
  z-index: 1;
}

.login-card {
  padding: 1.6rem;
}

.login-card-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.login-card-head p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.login-contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.login-contact-list a {
  width: fit-content;
  color: #dbe5f3;
  font-size: 0.95rem;
}

.login-contact-list a:hover,
.login-contact-list a:focus-visible {
  color: #ffffff;
}

.login-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field span {
  color: #dbe5f3;
  font-size: 0.86rem;
  font-weight: 500;
}

.field input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input::placeholder {
  color: rgba(145, 160, 184, 0.7);
}

.field input:focus {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.login-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.login-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.login-feedback {
  display: none;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  background: rgba(79, 70, 229, 0.08);
  color: #dbe5f3;
  line-height: 1.7;
}

.login-feedback.is-visible {
  display: block;
}

.login-feedback a {
  color: #c7d2fe;
}

.login-feedback a:hover,
.login-feedback a:focus-visible {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes marketLineFlowA {
  0% {
    transform: translate3d(-3.5%, 0, 0);
  }

  50% {
    transform: translate3d(0, -2px, 0);
  }

  100% {
    transform: translate3d(3.5%, 0, 0);
  }
}

@keyframes marketLineFlowB {
  0% {
    transform: translate3d(-2.4%, 0, 0);
  }

  50% {
    transform: translate3d(0, 2px, 0);
  }

  100% {
    transform: translate3d(2.4%, 0, 0);
  }
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marketTrackMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.feature-card:hover,
.step-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(148, 163, 184, 0.16);
}

.feature-card,
.step-card,
.pricing-card,
.testimonial-card,
.stat-card,
.faq-item,
.button,
.nav-menu a,
.dashboard-window {
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .security-panel,
  .footer-grid,
  .login-shell {
    grid-template-columns: 1fr;
  }

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

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

  .dashboard-window {
    max-width: 100%;
    min-height: auto;
    transform: none;
  }

  .dashboard-layout {
    min-height: auto;
  }

  .dashboard-main {
    grid-template-rows: auto;
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 60px;
    padding: 0.45rem 0.55rem 0.45rem 0.85rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.7rem;
    padding: 0.9rem;
    background: rgba(10, 15, 27, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-card {
    padding: 1.25rem;
  }

  .login-card {
    padding: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .market-grid-lines,
  .market-lines-svg,
  .market-ticker-stream {
    display: none;
  }

  .dashboard-toolbar,
  .chart-overlay-labels {
    flex-direction: column;
    align-items: flex-start;
  }

  .background-grid {
    background-size: 40px 40px, 40px 40px, 100% 100%;
    transform: perspective(1300px) rotateX(83deg) scale(2.5) translateY(24%);
    opacity: 0.68;
  }

  .background-wall-grid {
    background-size: 46px 46px, 46px 46px, 100% 100%, 100% 100%;
    opacity: 0.46;
  }

  .hero-trust,
  .dashboard-summary,
  .dashboard-bottom,
  .security-badges,
  .feature-grid,
  .steps-grid,
  .pricing-grid,
  .testimonial-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    margin-bottom: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .dashboard-window,
  .hero-visual:hover .dashboard-window,
  .background-wall-grid,
  .background-grid {
    transform: none;
  }
}
