@font-face {
  font-family: 'Rajdhani';
  src: url('/assets/fonts/Rajdhani-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('/assets/fonts/Rajdhani-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('/assets/fonts/Rajdhani-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPEditorialNew';
  src: url('/assets/fonts/PPEditorialNew-Regular-BF644b214ff145f.otf')
    format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f1e8;
  --bg-soft: #fbf8f1;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: #ffffff;
  --text: #152236;
  --muted: #516173;
  --line: rgba(21, 34, 54, 0.12);
  --line-strong: rgba(21, 34, 54, 0.18);
  --navy: #14243a;
  --navy-soft: #203754;
  --teal: #0aa7a0;
  --teal-soft: rgba(10, 167, 160, 0.16);
  --gold: #d69a2d;
  --warning: #74441c;
  --warning-bg: rgba(214, 154, 45, 0.14);
  --shadow-soft: 0 18px 56px rgba(16, 28, 45, 0.08);
  --shadow-card: 0 24px 72px rgba(18, 29, 47, 0.1);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  background:
    radial-gradient(circle at top, rgba(10, 167, 160, 0.14), transparent 38%),
    radial-gradient(circle at 85% 22%, rgba(214, 154, 45, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg-soft) 18%, var(--bg) 100%);
}

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

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

button,
input,
summary {
  font: inherit;
}

.site-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 241, 0.86);
  border-bottom: 1px solid rgba(21, 34, 54, 0.08);
}

.site-header__inner,
.site-footer__inner,
.page-section__inner,
.hero__inner,
.breadcrumb,
.page-meta {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(17, 31, 50, 0.14);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border-radius: 999px;
  padding: 0 14px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 28px rgba(15, 16, 46, 0.08);
  backdrop-filter: blur(10px);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-toggle.is-open,
.nav-toggle[aria-expanded='true'] {
  background: rgba(21, 17, 59, 0.96);
  border-color: rgba(21, 17, 59, 0.96);
  color: #f7f5f0;
  box-shadow: 0 16px 34px rgba(15, 16, 46, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  background: rgba(21, 34, 54, 0.08);
  color: var(--navy);
}

.hero {
  padding: 56px 0 28px;
}

.hero__inner {
  display: grid;
  gap: 28px;
}

.hero__surface {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(21, 34, 54, 0.1);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 248, 0.82)),
    radial-gradient(circle at top right, rgba(10, 167, 160, 0.18), transparent 30%);
  box-shadow: var(--shadow-card);
}

.hero__surface::after {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(214, 154, 45, 0.14);
  filter: blur(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--navy-soft);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow--warning {
  background: var(--warning-bg);
  color: var(--warning);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
}

h1 {
  font-family: 'PPEditorialNew', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.4rem;
  line-height: 1;
}

.lede,
.hero p,
.page-section p,
.page-section li,
.site-footer p {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.55;
}

.hero__actions,
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn {
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
}

.btn--primary {
  border-color: transparent;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(20, 36, 58, 0.2);
}

.btn--subtle {
  background: transparent;
}

.hero__grid,
.two-col,
.card-grid,
.link-grid,
.spec-grid,
.screenshot-grid,
.faq-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.hero__panel,
.card,
.screenshot-card,
.faq-panel,
.spec-card,
.link-card,
.notice,
.timeline-entry,
.comparison-table,
.table-wrap,
.cta-band,
.footer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.hero__panel,
.card,
.faq-panel,
.spec-card,
.link-card,
.notice,
.timeline-entry,
.cta-band,
.footer-card {
  padding: 22px;
}

.hero__points,
.checklist,
.inline-links,
.footer-links,
.related-links,
.snapshot-list,
.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__points li,
.checklist li,
.snapshot-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.hero__points li::before,
.checklist li::before,
.snapshot-list li::before {
  content: '•';
  color: var(--teal);
  font-size: 1.3rem;
  line-height: 1;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 20px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.breadcrumb {
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.breadcrumb a {
  color: var(--navy-soft);
}

.page-section {
  padding: 18px 0;
}

.page-section--spacious {
  padding: 42px 0;
}

.page-section__inner > * + * {
  margin-top: 18px;
}

.section-kicker {
  color: var(--teal);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

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

.screenshot-card {
  overflow: hidden;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 1408 / 2974;
  object-fit: cover;
  background: linear-gradient(180deg, #edf3f2, #f7f4ec);
}

.screenshot-card__copy {
  padding: 18px;
}

.screenshot-card__copy h3 {
  margin-bottom: 10px;
}

.notice {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(252, 248, 238, 0.92));
}

.notice strong {
  color: var(--navy);
}

.workflow {
  counter-reset: workflow;
  display: grid;
  gap: 16px;
}

.workflow__step {
  position: relative;
  padding: 20px 22px 20px 74px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.workflow__step::before {
  counter-increment: workflow;
  content: counter(workflow);
  position: absolute;
  left: 22px;
  top: 20px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-weight: 600;
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-answer {
  padding: 0 20px 18px;
}

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

.link-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.link-card h3 {
  margin: 10px 0 10px;
}

.table-wrap {
  overflow-x: auto;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  font-size: 0.98rem;
}

td {
  color: var(--muted);
  font-size: 1rem;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

.site-footer {
  padding: 46px 0 38px;
}

.site-footer__inner {
  display: grid;
  gap: 18px;
}

.footer-card {
  display: grid;
  gap: 18px;
}

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

.footer-links a,
.related-links a,
.inline-links a {
  color: var(--navy-soft);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.98rem;
}

.center {
  text-align: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.cta-band {
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(20, 36, 58, 0.96), rgba(24, 55, 84, 0.9)),
    radial-gradient(circle at top right, rgba(10, 167, 160, 0.3), transparent 28%);
  color: rgba(255, 255, 255, 0.9);
}

.cta-band h2,
.cta-band h3,
.cta-band a,
.cta-band strong {
  color: #ffffff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .small,
.site-footer .muted {
  color: var(--muted);
}

body.site-page {
  --footer-shell-radius: clamp(30px, 4.8vw, 52px);
  --footer-reveal-progress: 0;
  position: relative;
  overflow-x: clip;
}

body.site-page::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(220px, 26vw, 360px);
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 125, 138, 0.16), transparent 24%),
    linear-gradient(180deg, #3a3838 0%, #1b1b1b 100%);
  z-index: 0;
}

body.site-page > main {
  position: relative;
  z-index: 1;
  isolation: isolate;
  border-bottom-left-radius: var(--footer-shell-radius);
  border-bottom-right-radius: var(--footer-shell-radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 231, 213, 0.09), transparent 34%),
    radial-gradient(circle at 14% 18%, rgba(59, 96, 255, 0.05), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(255, 213, 148, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg-soft) 18%, var(--bg) 100%);
  box-shadow:
    0 42px 100px rgba(15, 24, 38, calc(0.09 + var(--footer-reveal-progress) * 0.09)),
    inset 0 -1px 0 rgba(255, 255, 255, 0.64);
  transition:
    border-radius 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.site-page > main::after {
  content: '';
  display: block;
  height: clamp(28px, 4vw, 48px);
}

body.site-page .site-footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  padding: clamp(88px, 7vw, 120px) 0 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 125, 138, 0.16), transparent 24%),
    linear-gradient(180deg, #3a3838 0%, #1b1b1b 100%);
  color: rgba(255, 255, 255, 0.84);
  opacity: 1;
  transform: none;
}

body.site-page .site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%),
    radial-gradient(rgba(255, 255, 255, 0.035) 0.8px, transparent 0.9px);
  background-size: auto, 8px 8px;
  opacity: 0.55;
  pointer-events: none;
}

body.site-page .site-footer__inner {
  position: relative;
  z-index: 1;
  gap: 0;
}

body.site-page .site-footer__inner::after {
  content: none;
}

body.home-page .site-footer__inner,
body.site-page .site-footer__inner {
  position: relative;
  z-index: 1;
  gap: 0;
}

body.home-page .footer-menu,
body.site-page .footer-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 0.75fr 1fr 1fr 1fr;
  align-items: start;
  justify-items: start;
  margin-bottom: 64px;
  display: grid;
}

body.home-page .footer-cell,
body.site-page .footer-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 14px;
}

body.home-page .footer-heading,
body.site-page .footer-heading {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

body.home-page .footer-link,
body.site-page .footer-link {
  display: block;
  margin-bottom: 12px;
  color: #888787;
  font-size: 18px;
  line-height: 1.2;
  transition: color 0.15s;
}

body.home-page .footer-link:hover,
body.site-page .footer-link:hover {
  color: #ffffff;
}

body.home-page .footer-logo,
body.site-page .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
}

body.home-page .footer-logo__icon,
body.site-page .footer-logo__icon {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
}

body.home-page .footer-large-logo,
body.site-page .footer-large-logo {
  width: 100%;
  position: relative;
  top: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(4.6rem, 11.8vw, 11rem);
  font-weight: 600;
  line-height: 0.76;
  letter-spacing: -0.078em;
  color: #f8f4ec;
  white-space: nowrap;
}

body.home-page {
  background: #f7f7f7;
}

body.home-page > main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #f7f7f7;
  border-bottom-right-radius: 64px;
  border-bottom-left-radius: 64px;
}

body.home-page .site-footer,
body.site-page .site-footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
  color: #fff;
  background-image:
    url('/assets/images/footer-dark-noise.png'),
    linear-gradient(#393737, #1b1b1b);
  background-position: 0 0, 0 0;
  background-size: 80px 80px, auto;
  margin-top: -64px;
  padding-top: 150px;
  overflow: hidden;
}

body.home-page .site-footer::before,
body.site-page .site-footer::before {
  content: none;
}

.site-footer .footer-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(36px, 4vw, 64px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer .footer-card p {
  max-width: 14ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 1rem;
  line-height: 1.18;
}

.site-footer .footer-card--minimal {
  grid-template-columns: minmax(0, 0.75fr) repeat(3, minmax(0, 1fr));
}

.site-footer .footer-links--minimal {
  grid-template-columns: none;
}

.site-footer .footer-links {
  display: contents;
}

.site-footer .footer-card > div:first-child,
.site-footer .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
}

.site-footer .footer-card > div:first-child {
  gap: 18px;
}

.site-footer .footer-card h2,
.site-footer .footer-card h3 {
  color: #ffffff;
}

.site-footer .footer-card h2 {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.site-footer .footer-card h2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #f8f4ec;
}

.site-footer .footer-card h2::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 11px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #1b1b1b;
}

.site-footer .footer-card p,
.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.52);
}

.site-footer .footer-links h3 {
  margin: 0 0 18px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer .footer-links .plain-list {
  gap: 0;
}

.site-footer .footer-links li + li {
  margin-top: 12px;
}

.site-footer .footer-links a {
  display: block;
  font-size: 1rem;
  line-height: 1.18;
  transition: color 150ms ease;
}

.site-footer .footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  body.home-page .footer-menu,
  body.site-page .footer-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .footer-large-logo,
  body.site-page .footer-large-logo {
    font-size: clamp(4.4rem, 16vw, 8rem);
  }

  .site-footer .footer-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }
}

@media (max-width: 760px) {
  body.home-page > main,
  body.site-page > main {
    border-bottom-right-radius: 48px;
    border-bottom-left-radius: 48px;
  }

  body.home-page .site-footer,
  body.site-page .site-footer {
    margin-top: -48px;
    padding-top: 120px;
  }

  body.home-page .footer-menu,
  body.site-page .footer-menu {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }

  body.home-page .footer-cell,
  body.site-page .footer-cell {
    padding-top: 0;
  }

  body.home-page .footer-large-logo,
  body.site-page .footer-large-logo {
    font-size: clamp(4.2rem, 21vw, 6.8rem);
  }

  .site-footer .footer-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer .footer-card > div:first-child,
  .site-footer .footer-links > div {
    padding-top: 0;
  }

  .site-footer .footer-card p {
    max-width: none;
  }
}

.noindex-note {
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .hero__grid,
  .card-grid,
  .stats-grid,
  .screenshot-grid,
  .link-grid,
  .faq-grid,
  .spec-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
  }

  .site-nav[hidden] {
    display: none;
  }

  .site-nav a {
    border-radius: 12px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero__surface {
    padding: 24px;
  }

  .hero__grid,
  .card-grid,
  .stats-grid,
  .screenshot-grid,
  .link-grid,
  .faq-grid,
  .spec-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .workflow__step {
    padding-left: 68px;
  }

  summary,
  .lede,
  .hero p,
  .page-section p,
  .page-section li {
    font-size: 1.05rem;
  }

}

body.site-page {
  --page-accent: #0d9d95;
  --page-accent-soft: rgba(13, 157, 149, 0.14);
  --page-accent-alt: #213f65;
  --page-accent-strong: rgba(33, 63, 101, 0.2);
  --page-panel: rgba(255, 255, 255, 0.72);
  --page-panel-strong: rgba(255, 255, 255, 0.9);
  --page-border: rgba(21, 34, 54, 0.08);
  --page-glow-primary: rgba(13, 157, 149, 0.18);
  --page-glow-secondary: rgba(35, 79, 131, 0.12);
  --page-shadow: 0 28px 82px rgba(16, 28, 45, 0.1);
  --page-shadow-strong: 0 34px 94px rgba(14, 24, 40, 0.18);
  --hero-shot-primary: url('/assets/screens/watchlist-real.png');
  --hero-shot-secondary: url('/assets/screens/tradeonchart-real.png');
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.94), transparent 22%),
    radial-gradient(circle at 82% 0%, var(--page-glow-primary), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(214, 154, 45, 0.16), transparent 18%),
    linear-gradient(180deg, #fdfbf6 0%, #f4f0e7 46%, #ece5d9 100%);
}

body.site-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(21, 34, 54, 0.035) 0.6px, transparent 0.8px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 24%);
  opacity: 0.42;
  z-index: 0;
}

.site-page .site-header,
.site-page .site-nav,
.site-page main {
  position: relative;
  z-index: 1;
}

.site-page .site-header,
.site-page .site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 241, 0.62);
  border-bottom: 1px solid rgba(21, 34, 54, 0.06);
  backdrop-filter: blur(18px);
  display: block;
}

.site-page .site-header__inner,
.site-page .site-nav__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px 10px;
}

.site-page .brand {
  gap: 14px;
  font-size: 1.52rem;
  line-height: 1;
}

.site-page .brand img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(17, 31, 50, 0.16);
}

.site-page .site-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.site-page .site-nav__links a,
.site-page .site-nav__cta {
  border-radius: 999px;
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease;
}

.site-page .site-nav__links a {
  position: relative;
  padding: 10px 15px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(21, 34, 54, 0.68);
}

.site-page .site-nav__links a:hover,
.site-page .site-nav__links a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(16, 28, 45, 0.08);
}

.site-page .site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(21, 17, 59, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(15, 16, 46, 0.08);
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 600;
}

.site-page .site-nav__cta:hover {
  transform: translate3d(0, -2px, 0);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 18;
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.82), rgba(244, 241, 232, 0.9)),
    radial-gradient(circle at top center, rgba(104, 193, 225, 0.12), transparent 34%);
  backdrop-filter: blur(4px);
}

.site-page .breadcrumb {
  padding-top: 24px;
  color: rgba(21, 34, 54, 0.56);
  letter-spacing: -0.01em;
}

.site-page .hero {
  position: relative;
  padding: 30px 0 12px;
}

.site-page .hero__surface {
  min-height: clamp(430px, 68dvh, 620px);
  padding: clamp(32px, 4vw, 56px);
  padding-right: clamp(36px, 33vw, 470px);
  border-radius: 40px;
  border-color: var(--page-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 245, 238, 0.74)),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.46), transparent 16%),
    radial-gradient(circle at 80% 18%, var(--page-glow-primary), transparent 28%),
    radial-gradient(circle at 70% 64%, var(--page-glow-secondary), transparent 34%);
  box-shadow: var(--page-shadow);
  isolation: isolate;
  overflow: hidden;
}

.site-page .hero__surface::before,
.site-page .hero__surface::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  background-color: rgba(238, 242, 240, 0.94);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--page-shadow-strong);
  will-change: transform, opacity;
}

.site-page .hero__surface::before {
  top: clamp(34px, 4.5vw, 56px);
  right: clamp(26px, 4.5vw, 54px);
  width: min(32vw, 344px);
  aspect-ratio: 1408 / 2974;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(21, 34, 54, 0.02)),
    var(--hero-shot-primary);
  transform: rotate(9deg) translate3d(0, 16px, 0);
}

.site-page .hero__surface::after {
  right: clamp(112px, 16vw, 264px);
  bottom: clamp(22px, 4vw, 48px);
  width: min(24vw, 254px);
  aspect-ratio: 1408 / 2974;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(21, 34, 54, 0.04)),
    var(--hero-shot-secondary);
  transform: rotate(-9deg) translate3d(0, 26px, 0);
  opacity: 0.94;
}

.site-page .hero__surface > * {
  position: relative;
  z-index: 1;
  max-width: 39rem;
}

.site-page .eyebrow {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.78);
  color: var(--page-accent-alt);
  letter-spacing: 0.1em;
}

.site-page .eyebrow--warning {
  background: rgba(255, 246, 231, 0.9);
  color: #925f18;
}

.site-page h1 {
  max-width: 10.2ch;
  margin-top: 18px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.88;
}

.site-page h2 {
  max-width: 13ch;
  line-height: 0.94;
}

.site-page .lede {
  max-width: 34rem;
  margin-top: 18px;
  color: rgba(21, 34, 54, 0.76);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.52;
}

.site-page .hero__actions {
  margin-top: 28px;
}

.site-page .btn {
  position: relative;
  overflow: hidden;
}

.site-page .btn::after {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.34) 50%, transparent 62%);
  transform: translateX(-140%);
  transition: transform 420ms ease;
}

.site-page .btn:hover::after {
  transform: translateX(125%);
}

.site-page .btn {
  border-color: rgba(21, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(16, 28, 45, 0.08);
}

.site-page .btn--primary {
  background:
    linear-gradient(135deg, rgba(20, 36, 58, 0.98), rgba(33, 63, 101, 0.92)),
    radial-gradient(circle at top right, rgba(13, 157, 149, 0.28), transparent 28%);
}

.site-page .small.muted {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(21, 34, 54, 0.64);
}

.site-page .small.muted::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--page-accent);
  box-shadow: 0 0 0 6px var(--page-accent-soft);
}

.site-page .hero__points {
  max-width: 44rem;
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.site-page .hero__points li {
  gap: 8px;
  padding: 16px 16px 17px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(16, 28, 45, 0.08);
}

.site-page .hero__points li::before {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--page-accent);
  box-shadow: 0 0 0 5px var(--page-accent-soft);
  color: transparent;
  font-size: 0;
}

.site-page .page-section {
  padding: 28px 0;
}

.site-page .page-section--spacious {
  padding: 48px 0 56px;
}

.site-page .page-section__inner > * + * {
  margin-top: 22px;
}

.site-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--page-accent-alt);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}

.site-page .section-kicker::before {
  content: '';
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--page-accent), transparent);
}

.site-page .section-header {
  display: grid;
  gap: 14px;
  max-width: 58rem;
}

.site-page .section-header h2 {
  max-width: 13ch;
}

.site-page .section-header p {
  max-width: 42rem;
  color: rgba(21, 34, 54, 0.72);
}

.site-page .card-grid,
.site-page .spec-grid,
.site-page .screenshot-grid,
.site-page .link-grid,
.site-page .faq-grid,
.site-page .stats-grid {
  gap: 18px;
}

.site-page .spec-grid,
.site-page .link-grid,
.site-page .screenshot-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.site-page .spec-card,
.site-page .link-card,
.site-page .screenshot-card,
.site-page .notice,
.site-page .timeline-entry,
.site-page details,
.site-page .footer-card,
.site-page .table-wrap,
.site-page .workflow__step {
  border-color: var(--page-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 244, 236, 0.76));
  backdrop-filter: blur(14px);
}

.site-page .spec-card {
  position: relative;
  grid-column: span 6;
  min-height: 188px;
  padding: 24px;
  overflow: hidden;
}

.site-page .spec-card::before,
.site-page .link-card::before,
.site-page .notice::before {
  content: '';
  position: absolute;
  inset: auto auto -44px -28px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--page-accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.site-page .spec-grid > :nth-child(4n + 1),
.site-page .spec-grid > :nth-child(4n + 4) {
  grid-column: span 7;
}

.site-page .spec-grid > :nth-child(4n + 2),
.site-page .spec-grid > :nth-child(4n + 3) {
  grid-column: span 5;
}

.site-page .spec-card h3 {
  max-width: 14ch;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 1.8vw, 1.74rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.site-page .spec-card p,
.site-page .link-card p,
.site-page .screenshot-card p,
.site-page .notice p,
.site-page .timeline-entry p,
.site-page td,
.site-page .faq-answer p {
  color: rgba(21, 34, 54, 0.7);
}

.site-page .workflow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.site-page .workflow__step {
  min-height: 190px;
  padding: 24px 24px 24px 78px;
  box-shadow: 0 20px 44px rgba(16, 28, 45, 0.08);
}

.site-page .workflow__step::before {
  top: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
  background:
    linear-gradient(135deg, rgba(20, 36, 58, 0.98), rgba(33, 63, 101, 0.9)),
    radial-gradient(circle at top right, rgba(13, 157, 149, 0.24), transparent 30%);
}

.site-page .screenshot-card {
  position: relative;
  grid-column: span 6;
  padding: 14px;
  overflow: hidden;
}

.site-page .screenshot-grid > :first-child {
  grid-column: span 7;
}

.site-page .screenshot-grid > :not(:first-child) {
  grid-column: span 5;
}

.site-page .screenshot-grid--equal > :first-child,
.site-page .screenshot-grid--equal > :not(:first-child) {
  grid-column: span 4;
}

.page--analyze .screenshot-grid--equal > :first-child,
.page--analyze .screenshot-grid--equal > :not(:first-child) {
  grid-column: span 6;
}

.site-page .screenshot-card img {
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(247, 248, 244, 0.96), rgba(236, 233, 226, 0.92));
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.site-page .screenshot-card:hover img {
  transform: translate3d(0, -6px, 0) scale(1.012);
  box-shadow: 0 26px 64px rgba(16, 28, 45, 0.16);
}

.site-page .screenshot-card__copy {
  padding: 20px 14px 8px;
}

.site-page .screenshot-card__copy h3 {
  font-size: clamp(1.42rem, 2vw, 1.9rem);
  letter-spacing: -0.02em;
}

.site-page .link-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 238px;
  padding: 24px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-page .link-card:hover {
  transform: translate3d(0, -6px, 0);
  border-color: rgba(21, 34, 54, 0.14);
  box-shadow: 0 28px 68px rgba(16, 28, 45, 0.12);
}

.site-page .link-grid > :nth-child(3n + 1) {
  grid-column: span 5;
}

.site-page .link-grid > :nth-child(3n + 2) {
  grid-column: span 4;
}

.site-page .link-grid > :nth-child(3n) {
  grid-column: span 3;
}

.site-page .link-grid.link-grid--duo > * {
  grid-column: span 6;
}

.site-page .link-grid.link-grid--trio > * {
  grid-column: span 4;
}

.site-page .link-cluster > .section-kicker {
  margin-bottom: 18px;
}

.site-page .link-card span {
  margin-bottom: 56px;
  color: var(--page-accent-alt);
  letter-spacing: 0.12em;
}

.site-page .link-card--plain {
  justify-content: flex-start;
  min-height: 216px;
}

.site-page .link-card--plain h3 {
  max-width: 15ch;
}

.site-page .link-card--plain p {
  max-width: 30ch;
}

.site-page .link-card h3 {
  max-width: 13ch;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
}

.site-page .link-card p {
  max-width: 26ch;
}

.site-page .notice {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 38px);
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(20, 36, 58, 0.98), rgba(26, 52, 82, 0.94)),
    radial-gradient(circle at top right, rgba(13, 157, 149, 0.24), transparent 28%);
  box-shadow: 0 28px 84px rgba(17, 31, 50, 0.18);
}

.site-page .notice::before {
  inset: auto -30px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(13, 157, 149, 0.28) 0%, transparent 72%);
}

.site-page .notice h2,
.site-page .notice strong,
.site-page .cta-band h2,
.site-page .cta-band h3,
.site-footer .footer-card h2,
.site-footer .footer-card h3 {
  color: #ffffff;
}

.site-page .notice p,
.site-page .cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.site-page .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.site-page details {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 28, 45, 0.08);
}

.site-page summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.site-page summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 18px;
  color: var(--page-accent-alt);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.site-page details[open] summary::after {
  transform: rotate(45deg);
}

.site-page .faq-answer {
  padding: 0 22px 22px;
}

.site-page .app-map {
  display: grid;
  gap: 18px;
}

.site-page .app-map__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-page .app-map__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(21, 34, 54, 0.68);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.site-page .app-map__button:hover,
.site-page .app-map__button[aria-selected='true'] {
  border-color: rgba(21, 34, 54, 0.14);
  background: rgba(21, 34, 54, 0.92);
  color: #ffffff;
  transform: translate3d(0, -2px, 0);
}

.site-page .app-map__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--page-border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 244, 236, 0.78));
  box-shadow: 0 24px 58px rgba(16, 28, 45, 0.08);
}

.site-page .app-map__panel[hidden] {
  display: none;
}

.site-page .app-map__copy {
  padding: 10px 10px 10px 8px;
}

.site-page .app-map__copy h3 {
  max-width: 12ch;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.site-page .app-map__copy p {
  max-width: 32rem;
}

.site-page .app-map__list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.site-page .app-map__list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.site-page .app-map__list strong {
  color: var(--navy);
}

.site-page .app-map__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.site-page .app-map__facts span,
.site-page .proof-card strong,
.site-page .plan-card__meta,
.site-page .path-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(21, 34, 54, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-page .app-map__figure {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(13, 157, 149, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(241, 244, 241, 0.94), rgba(232, 229, 222, 0.88));
  overflow: hidden;
}

.site-page .app-map__figure::before {
  content: '';
  position: absolute;
  inset: auto auto -70px -56px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--page-accent-soft) 0%, transparent 72%);
}

.site-page .app-map__figure img {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(16, 28, 45, 0.18);
}

.site-page .path-grid,
.site-page .proof-grid,
.site-page .plan-grid {
  display: grid;
  gap: 18px;
}

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

.site-page .path-card,
.site-page .proof-card,
.site-page .plan-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--page-border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 244, 236, 0.76));
  box-shadow: 0 24px 58px rgba(16, 28, 45, 0.08);
}

.site-page .path-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
  gap: 18px;
  padding: 20px;
}

.site-page .path-card__copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-page .path-card__copy h3 {
  max-width: 16ch;
  font-size: clamp(1.7rem, 2.3vw, 2.35rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.site-page .path-card__copy p {
  max-width: 30ch;
}

.site-page .path-card__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-page .path-card__list li {
  color: rgba(21, 34, 54, 0.68);
}

.site-page .path-card__media {
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(13, 157, 149, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(242, 245, 244, 0.96), rgba(232, 229, 222, 0.92));
}

.site-page .path-card__media img {
  width: min(100%, 160px);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(16, 28, 45, 0.16);
}

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

.site-page .proof-card {
  min-height: 200px;
  padding: 22px;
}

.site-page .proof-card h3 {
  max-width: 13ch;
  margin: 14px 0 12px;
  font-size: clamp(1.36rem, 2vw, 1.86rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.site-page .proof-card p {
  max-width: 26ch;
  color: rgba(21, 34, 54, 0.68);
}

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

.site-page .plan-card {
  padding: 24px;
}

.site-page .plan-card--pro {
  background:
    linear-gradient(135deg, rgba(20, 36, 58, 0.98), rgba(26, 52, 82, 0.94)),
    radial-gradient(circle at top right, rgba(214, 154, 45, 0.3), transparent 28%);
  box-shadow: 0 30px 84px rgba(16, 28, 45, 0.18);
}

.site-page .plan-card--pro h3,
.site-page .plan-card--pro .plan-card__price,
.site-page .plan-card--pro li,
.site-page .plan-card--pro p,
.site-page .plan-card--pro strong {
  color: #ffffff;
}

.site-page .plan-card--pro .plan-card__meta {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.site-page .plan-card__price {
  margin: 16px 0 8px;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.site-page .plan-card__price small {
  font-size: 0.34em;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.site-page .plan-card__list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.site-page .plan-card__list li {
  color: rgba(21, 34, 54, 0.72);
}

.site-page .hero__surface--dark {
  background:
    linear-gradient(135deg, rgba(20, 36, 58, 0.98), rgba(26, 52, 82, 0.94)),
    radial-gradient(circle at 84% 14%, rgba(214, 154, 45, 0.18), transparent 22%),
    radial-gradient(circle at 70% 62%, rgba(13, 157, 149, 0.22), transparent 32%);
}

.site-page .hero__surface--dark h1,
.site-page .hero__surface--dark .lede,
.site-page .hero__surface--dark .hero__points li,
.site-page .hero__surface--dark .small.muted,
.site-page .hero__surface--dark .eyebrow {
  color: #ffffff;
}

.site-page .hero__surface--dark .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-page .hero__surface--dark .hero__points li,
.site-page .hero__surface--dark .small.muted {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.site-page .hero__surface--dark .hero__points li::before,
.site-page .hero__surface--dark .small.muted::before {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(214, 154, 45, 0.16);
}

.site-page .timeline {
  gap: 18px;
}

.site-page .timeline-entry {
  padding: 26px;
}

.site-page .timeline-entry h2 {
  margin-bottom: 16px;
  color: var(--navy);
}

.site-page .timeline-entry__meta {
  color: rgba(21, 34, 54, 0.6);
}

.site-page .table-wrap {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(16, 28, 45, 0.1);
}

.site-page th {
  background: rgba(21, 34, 54, 0.04);
}

.site-page.js-site-page .hero__surface {
  opacity: 0.92;
  transform: translate3d(0, 20px, 0);
}

.site-page.js-site-page .hero__surface::before {
  opacity: 0;
}

.site-page.js-site-page .hero__surface::after {
  opacity: 0;
}

.site-page.js-site-page .hero__surface.is-mounted {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 720ms ease;
}

.site-page.js-site-page .hero__surface.is-mounted::before,
.site-page.js-site-page .hero__surface.is-mounted::after {
  opacity: 1;
  transition:
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 760ms ease;
}

.site-page.js-site-page .hero__surface.is-mounted::before {
  transform: rotate(9deg) translate3d(0, 0, 0);
}

.site-page.js-site-page .hero__surface.is-mounted::after {
  transform: rotate(-9deg) translate3d(0, 0, 0);
}

.site-page.js-site-page .reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.988);
  transition:
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.site-page.js-site-page .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.page--practice {
  --hero-shot-primary: url('/assets/screens/watchlist-real.png');
  --hero-shot-secondary: url('/assets/screens/tradeonchart-real.png');
}

.page--features {
  --hero-shot-primary: url('/assets/screens/tradeonchart-real.png');
  --hero-shot-secondary: url('/assets/screens/replaytrade-real.png');
}

.page--pricing {
  --hero-shot-primary: url('/assets/screens/fundsscreen-real.png');
  --hero-shot-secondary: url('/assets/screens/watchlist-real.png');
}

.page--faq {
  --hero-shot-primary: url('/assets/screens/watchlist-real.png');
  --hero-shot-secondary: url('/assets/screens/optionchain-real.png');
}

.page--about {
  --hero-shot-primary: url('/assets/screens/watchlist-real.png');
  --hero-shot-secondary: url('/assets/screens/portfolio-real.png');
}

.page--methodology {
  --page-accent: #cb8a1f;
  --page-accent-soft: rgba(203, 138, 31, 0.16);
  --page-glow-primary: rgba(203, 138, 31, 0.18);
  --hero-shot-primary: url('/assets/screens/optionchain-real.png');
  --hero-shot-secondary: url('/assets/screens/replaytrade-real.png');
}

.page--virtual-trading {
  --hero-shot-primary: url('/assets/screens/watchlist-real.png');
  --hero-shot-secondary: url('/assets/screens/portfolio-real.png');
}

.page--paper-trading {
  --hero-shot-primary: url('/assets/screens/tradeonchart-real.png');
  --hero-shot-secondary: url('/assets/screens/pnlstatement-real.png');
}

.page--simulator {
  --hero-shot-primary: url('/assets/screens/watchlist-real.png');
  --hero-shot-secondary: url('/assets/screens/replaytrade-real.png');
}

.page--practice-no-money {
  --hero-shot-primary: url('/assets/screens/fundsscreen-real.png');
  --hero-shot-secondary: url('/assets/screens/watchlist-real.png');
}

.page--beginners {
  --hero-shot-primary: url('/assets/screens/watchlist-real.png');
  --hero-shot-secondary: url('/assets/screens/tradeonchart-real.png');
}

.page--options-practice {
  --hero-shot-primary: url('/assets/screens/optionchain-real.png');
  --hero-shot-secondary: url('/assets/screens/tradeonchart-real.png');
}

.page--analyze {
  --hero-shot-primary: url('/assets/screens/optionchain-real.png');
  --hero-shot-secondary: url('/assets/screens/watchlist-real.png');
}

.page--nifty-banknifty {
  --hero-shot-primary: url('/assets/screens/optionchain-real.png');
  --hero-shot-secondary: url('/assets/screens/replaytrade-real.png');
}

.page--trade-on-chart {
  --hero-shot-primary: url('/assets/screens/tradeonchart-real.png');
  --hero-shot-secondary: url('/assets/screens/stockdetailsmodal-real.png');
}

.page--replay {
  --hero-shot-primary: url('/assets/screens/replaytrade-real.png');
  --hero-shot-secondary: url('/assets/screens/pnlstatement-real.png');
}

.page--option-chain {
  --hero-shot-primary: url('/assets/screens/optionchain-real.png');
  --hero-shot-secondary: url('/assets/screens/chart.png');
}

.page--review {
  --hero-shot-primary: url('/assets/screens/portfolio-real.png');
  --hero-shot-secondary: url('/assets/screens/pnlstatement-real.png');
}

@media (max-width: 1100px) {
  .site-page .hero__surface {
    min-height: 0;
    padding-right: clamp(28px, 4vw, 44px);
    padding-bottom: min(52vw, 420px);
  }

  .site-page .hero__surface::before {
    top: auto;
    right: clamp(18px, 4vw, 34px);
    bottom: clamp(18px, 4vw, 30px);
    width: min(40vw, 290px);
  }

  .site-page .hero__surface::after {
    right: clamp(132px, 22vw, 250px);
    bottom: clamp(20px, 8vw, 36px);
    width: min(26vw, 190px);
  }

  .site-page .spec-grid > :nth-child(4n + 1),
  .site-page .spec-grid > :nth-child(4n + 2),
  .site-page .spec-grid > :nth-child(4n + 3),
  .site-page .spec-grid > :nth-child(4n + 4),
  .site-page .screenshot-grid > :first-child,
  .site-page .screenshot-grid > :not(:first-child) {
    grid-column: span 6;
  }

  .site-page .screenshot-grid--equal > :first-child,
  .site-page .screenshot-grid--equal > :not(:first-child) {
    grid-column: span 6;
  }

  .site-page .link-grid > :nth-child(3n + 1),
  .site-page .link-grid > :nth-child(3n + 2),
  .site-page .link-grid > :nth-child(3n) {
    grid-column: span 6;
  }

  .site-page .workflow {
    grid-template-columns: 1fr;
  }

  .site-page .app-map__panel,
  .site-page .path-grid,
  .site-page .proof-grid,
  .site-page .plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .site-page .site-nav__inner {
    width: min(100% - 20px, var(--container));
    min-height: 72px;
    gap: 14px 6px;
  }

  .site-page .brand {
    gap: 10px;
    font-size: 1.18rem;
  }

  .site-page .brand img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .site-page .site-nav__links {
    gap: 4px;
  }

  .site-page .site-nav__links a {
    padding: 9px 9px;
    font-size: 0.88rem;
  }

  .site-page .site-nav__cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.88rem;
  }
}

@media (max-width: 760px) {
  body.site-page {
    background: linear-gradient(180deg, #fdfbf6 0%, #f4f0e7 46%, #ece5d9 100%);
  }

  .site-page .site-header__inner,
  .site-page .site-nav__inner {
    min-height: 58px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
    width: min(100% - 20px, var(--container));
    margin: 8px auto 4px;
    padding: 8px 12px;
    border: 1px solid rgba(21, 17, 59, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.97);
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-page .site-nav {
    position: sticky;
    top: 0;
    display: block;
    width: 100%;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
  }

  .site-page .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-page .site-nav__cta {
    display: none;
  }

  .site-page .brand {
    gap: 12px;
    font-size: 1.24rem;
  }

  .site-page .brand img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .site-page .site-nav__links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    width: calc(100vw - 28px);
    max-width: none;
    box-sizing: border-box;
    display: grid;
    gap: 0;
    padding: 14px 16px 16px;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    border: 1px solid rgba(21, 17, 59, 0.09);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.99), rgba(248, 245, 238, 0.98)),
      radial-gradient(circle at top right, rgba(104, 193, 225, 0.12), transparent 34%),
      radial-gradient(circle at bottom left, rgba(222, 177, 64, 0.1), transparent 30%);
    box-shadow:
      0 28px 60px rgba(15, 16, 46, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
    justify-content: stretch;
    opacity: 0;
    transform: translate3d(0, -12px, 0) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 220ms ease,
      transform 240ms var(--ease-out);
    z-index: 21;
  }

  .site-page .site-nav__links[hidden] {
    display: none;
  }

  .site-page .site-nav__links:not([hidden]) {
    display: grid;
  }

  .site-page .site-nav__links a {
    padding: 13px 2px;
    border: 0;
    border-bottom: 1px solid rgba(21, 17, 59, 0.08);
    border-radius: 0;
    background: transparent;
    text-align: left;
    color: var(--navy);
    box-shadow: none;
  }

  .site-page.nav-open .site-nav__links:not([hidden]) {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .site-page .site-nav__links .site-nav__cta--menu {
    display: inline-flex;
    justify-content: center;
    min-height: 50px;
    margin-top: 14px;
    padding: 0 16px;
    border-radius: 18px;
    border: 0;
    background: rgba(21, 17, 59, 0.94);
    color: #f7f5f0;
    box-shadow: 0 18px 36px rgba(15, 16, 46, 0.16);
  }

  .site-page .breadcrumb {
    padding-top: 12px;
  }

  .site-page .hero {
    padding-top: 12px;
  }

  .site-page .hero__surface {
    border-radius: 30px;
    padding: 26px 24px 252px;
  }

  .site-page h1 {
    max-width: 10.6ch;
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .site-page .hero__surface::before {
    right: 18px;
    bottom: 20px;
    width: min(48vw, 212px);
    border-radius: 22px;
  }

  .site-page .hero__surface::after {
    right: 112px;
    bottom: 24px;
    width: min(32vw, 148px);
    border-radius: 18px;
  }

  .site-page .hero__points,
  .site-page .faq-grid,
  .site-footer .footer-card,
  .site-footer .footer-links {
    grid-template-columns: 1fr;
  }

  .site-page .spec-grid,
  .site-page .link-grid,
  .site-page .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .site-page .app-map__panel,
  .site-page .path-card {
    grid-template-columns: 1fr;
  }

  .site-page .spec-grid > *,
  .site-page .link-grid > *,
  .site-page .screenshot-grid > * {
    grid-column: auto;
  }

  .site-page .link-card,
  .site-page .spec-card,
  .site-page .screenshot-card {
    min-height: 0;
  }

  .site-page .workflow__step {
    min-height: 0;
  }

  .site-footer .footer-card p {
    max-width: none;
  }

  .site-footer .footer-links--minimal {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .site-footer,
  body.site-page .site-footer {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.home-page > main,
  body.site-page > main {
    transition: none;
  }
}

body.home-page {
  --bg: #f4f2ed;
  --bg-top: #f8f7f3;
  --bg-base: #f1eee6;
  --text: #19192a;
  --muted: #666b7c;
  --line: rgba(25, 25, 42, 0.1);
  --line-strong: rgba(25, 25, 42, 0.16);
  --navy: #15113b;
  --navy-soft: #232154;
  --cyan: #0d6e68;
  --cyan-soft: rgba(13, 110, 104, 0.16);
  --gradient-body-primary: rgba(13, 110, 104, 0.3);
  --gradient-body-secondary: rgba(59, 96, 255, 0.26);
  --gradient-body-tertiary: rgba(255, 213, 148, 0.32);
  --gradient-body-quaternary: rgba(186, 226, 255, 0.2);
  --gradient-body-quinary: rgba(210, 219, 255, 0.24);
  --gradient-pageglow-primary: rgba(16, 231, 213, 0.28);
  --gradient-pageglow-secondary: rgba(28, 48, 181, 0.18);
  --gradient-pageglow-tertiary: rgba(255, 215, 156, 0.24);
  --gradient-pill-start: rgba(16, 231, 213, 0.26);
  --gradient-pill-mid: rgba(96, 159, 255, 0.22);
  --gradient-pill-end: rgba(252, 215, 154, 0.2);
  --gradient-story-primary: rgba(16, 231, 213, 0.22);
  --gradient-story-secondary: rgba(26, 52, 181, 0.14);
  --shadow-soft: 0 24px 70px rgba(21, 17, 59, 0.08);
  --shadow-shot: 0 30px 78px rgba(15, 16, 46, 0.18);
  --container: 1240px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --hero-stage-height: clamp(220px, 34vh, 336px);
  --bg-layer-opacity: 0.42;
  --page-glow-opacity: 0.24;
  --page-glow-wash-opacity: 0.12;
  --page-grain-opacity: 0.07;
  position: relative;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 231, 213, 0.14), transparent 34%),
    radial-gradient(circle at 14% 18%, rgba(59, 96, 255, 0.09), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(255, 213, 148, 0.1), transparent 22%),
    linear-gradient(180deg, #fbfaf5 0%, var(--bg-top) 18%, var(--bg) 48%, var(--bg-base) 100%);
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body.home-page::before {
  display: none;
}

.home-page .page-glow {
  display: none;
}

.home-page .page-glow::before {
  display: none;
}

.home-page .page-glow::after {
  display: none;
}

.home-page main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.home-page .site-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.home-page .site-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  position: relative;
}

.home-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.home-page .brand__icon {
  width: 56px;
  height: 56px;
  box-shadow: 0 16px 40px rgba(14, 15, 46, 0.14);
}

.home-page .brand__wordmark {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.home-page .brand__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.16rem;
  line-height: 1;
  transform: translateY(1px);
}

.home-page .site-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.home-page .site-nav__store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-page .site-nav__links .site-nav__cta--menu {
  display: none;
}

.home-page .nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(21, 17, 59, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(15, 16, 46, 0.08);
}

.home-page .nav-toggle.is-open,
.home-page .nav-toggle[aria-expanded='true'] {
  background: rgba(35, 31, 81, 0.96);
  border-color: rgba(35, 31, 81, 0.96);
  color: #f7f5f0;
  box-shadow: 0 16px 34px rgba(15, 16, 46, 0.16);
}

.home-page .site-nav__links a,
.home-page .site-nav__cta,
.home-page .story__links a,
.home-page .final-cta__links a {
  border-radius: 999px;
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease;
}

.home-page .site-nav__links a {
  padding: 10px 14px;
  color: rgba(25, 25, 42, 0.72);
  font-size: 0.96rem;
  font-weight: 600;
}

.home-page .site-nav__links a:hover {
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
  transform: translate3d(0, -1px, 0);
}

.home-page .site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(21, 17, 59, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(15, 16, 46, 0.08);
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 600;
}

.home-page .site-nav__store .site-nav__cta {
  min-width: 86px;
}

.home-page .site-nav__cta:hover,
.home-page .story__links a:hover,
.home-page .final-cta__links a:hover {
  transform: translate3d(0, -2px, 0);
}

.home-page .hero,
.home-page .story,
.home-page .final-cta {
  padding-inline: clamp(20px, 4vw, 40px);
}

.home-page .hero {
  position: relative;
  --hero-title-gap: clamp(18px, 2vh, 26px);
  min-height: 100dvh;
  padding-top: 96px;
  padding-bottom: 34px;
}

.home-page .hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  min-height: calc(100dvh - 134px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  row-gap: clamp(14px, 2vh, 22px);
}

.home-page .hero__copy {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: grid;
  grid-template-rows: auto minmax(max-content, 1fr);
  row-gap: clamp(12px, 1.8vw, 18px);
  align-items: stretch;
}

.home-page .hero-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: max-content;
}

.home-page .hero-pill__text {
  position: relative;
  z-index: 1;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(25, 25, 42, 0.84);
}

.home-page .hero-pill__glow {
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  background: conic-gradient(
    from 180deg at 50% 50%,
    var(--gradient-pill-start) 0deg,
    var(--gradient-pill-mid) 126deg,
    var(--gradient-pill-end) 252deg,
    var(--gradient-pill-start) 360deg
  );
  opacity: 0.72;
  filter: blur(7px);
}

.home-page .hero__title,
.home-page .story__title,
.home-page .final-cta__title {
  margin: 0;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #171732;
}

.home-page .hero__title {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  width: 100%;
  padding-block: 18px;
  overflow: clip;
  text-align: center;
  font-size: var(--hero-title-size, clamp(3.5rem, 6.6vw, 5.4rem));
  line-height: 0.88;
}

.home-page .hero__summary {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.home-page .hero__title-rotator {
  overflow: clip;
}

.home-page .hero__title-sizer {
  display: block;
  white-space: pre-line;
  text-align: center;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.home-page .hero__title-dynamic {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  white-space: pre-line;
  text-align: center;
  opacity: 0;
  filter: blur(18px);
  transform: scale(0.985);
  transform-origin: 50% 50%;
  will-change: transform, filter, opacity;
  pointer-events: none;
}

.home-page .hero__title-dynamic::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  white-space: pre-line;
  color: transparent;
  background: linear-gradient(
    112deg,
    transparent 0%,
    transparent 34%,
    rgba(255, 255, 255, 0.1) 44%,
    rgba(255, 255, 255, 0.86) 50%,
    rgba(255, 255, 255, 0.14) 56%,
    transparent 70%,
    transparent 100%
  );
  background-size: 230% 100%;
  background-position: 140% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  pointer-events: none;
}

.home-page .hero__title-dynamic.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  transition:
    transform 780ms var(--ease-out),
    filter 780ms var(--ease-out),
    opacity 540ms ease;
}

.home-page .hero__title-dynamic.is-exiting {
  opacity: 0;
  filter: blur(14px);
  transform: scale(1.01);
  transition:
    transform 620ms var(--ease-out),
    filter 620ms ease,
    opacity 420ms ease;
}

.home-page .hero__title-dynamic.is-sheen::after {
  animation: heroTitleSheen 920ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-page .hero-stage__caption,
.home-page .story__body,
.home-page .final-cta__note {
  color: var(--muted);
}

.home-page .hero-stage {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.home-page .hero-stage__copy {
  margin-bottom: 10px;
}

.home-page .hero-stage__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(25, 25, 42, 0.08);
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(25, 25, 42, 0.78);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.home-page .hero-stage__label.is-shifting,
.home-page .hero-stage__caption.is-shifting {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.home-page .carousel {
  position: relative;
  height: var(--hero-stage-height);
  isolation: isolate;
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.home-page .carousel.is-dragging {
  cursor: grabbing;
}

.home-page .carousel__portal {
  display: none;
}

.home-page .carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.home-page .carousel__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: calc(100% - 4px);
  aspect-ratio: 1408 / 2974;
  margin: 0;
  transition:
    transform 820ms var(--ease-out),
    opacity 540ms ease,
    filter 540ms ease;
  will-change: transform, opacity;
}

.home-page .carousel__slide img,
.home-page .story__shot img {
  width: auto;
  height: 100%;
  max-width: none;
  pointer-events: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  filter: drop-shadow(var(--shadow-shot));
}

.home-page .story__shot img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.home-page .carousel__slide[data-pos='active'] {
  z-index: 5;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.home-page .carousel__slide[data-pos='prev'] {
  z-index: 4;
  opacity: 0.42;
  cursor: pointer;
  filter: saturate(0.92) brightness(0.98);
  transform: translate3d(-128%, -50%, -180px) scale(0.82) rotate(-8deg);
}

.home-page .carousel__slide[data-pos='next'] {
  z-index: 4;
  opacity: 0.42;
  cursor: pointer;
  filter: saturate(0.92) brightness(0.98);
  transform: translate3d(28%, -50%, -180px) scale(0.82) rotate(8deg);
}

.home-page .carousel__slide[data-pos='far-prev'] {
  z-index: 2;
  opacity: 0.12;
  cursor: pointer;
  filter: blur(1px);
  transform: translate3d(-186%, -50%, -320px) scale(0.58) rotate(-14deg);
}

.home-page .carousel__slide[data-pos='far-next'] {
  z-index: 2;
  opacity: 0.12;
  cursor: pointer;
  filter: blur(1px);
  transform: translate3d(86%, -50%, -320px) scale(0.58) rotate(14deg);
}

.home-page .carousel__slide[data-pos='hidden'] {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, -460px) scale(0.48);
}

.home-page .hero-stage__caption {
  max-width: 390px;
  min-height: 2.05em;
  margin: 8px auto 0;
  font-size: 0.96rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.home-page .carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: min(100%, 344px);
  margin: 6px auto 0;
}

.home-page .carousel__dot {
  position: relative;
  width: 24px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    transform 220ms var(--ease-out);
}

.home-page .carousel__dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(21, 17, 59, 0.18);
  transform: translate(-50%, -50%);
  transition:
    width 220ms var(--ease-out),
    background 220ms ease,
    transform 220ms var(--ease-out);
}

.home-page .carousel__dot.is-active::before {
  width: 15px;
  background: var(--navy);
}

.home-page .carousel__dot:hover::before {
  transform: translate(-50%, -50%) scale(1.06);
}

.home-page .hero__cta {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.home-page .store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-page .store-button,
.home-page .play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 220ms var(--ease-out),
    opacity 220ms ease;
}

.home-page .store-button {
  min-width: 186px;
  min-height: 57px;
  flex-direction: column;
  padding: 7px 18px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #111111;
  box-shadow: 0 14px 28px rgba(18, 22, 52, 0.14);
  color: #ffffff;
  line-height: 1;
}

.home-page .store-button__label {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.home-page .play-button {
  line-height: 0;
  transition:
    transform 220ms var(--ease-out),
    opacity 220ms ease;
}

.home-page .store-button:hover,
.home-page .play-button:hover {
  transform: translate3d(0, -2px, 0);
  opacity: 0.94;
}

.home-page .store-button:active,
.home-page .play-button:active {
  transform: translate3d(0, 0, 0) scale(0.985);
}

.home-page .play-button__badge {
  display: block;
  width: clamp(168px, 15.6vw, 191px);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(18, 22, 52, 0.14));
}

.home-page .story {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 106px;
}

.home-page .story__copy {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.home-page .story__kicker,
.home-page .final-cta__kicker {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.home-page .story__title,
.home-page .final-cta__title {
  font-size: clamp(3.2rem, 6vw, 5.6rem);
}

.home-page .story__body {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 1.26rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.home-page .story__links,
.home-page .final-cta__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-page .story__links a,
.home-page .final-cta__links a {
  padding: 10px 14px;
  border: 1px solid rgba(25, 25, 42, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(25, 25, 42, 0.82);
  font-size: 0.94rem;
  font-weight: 600;
}

.home-page .story__stage {
  position: relative;
  max-width: 980px;
  height: 680px;
  margin: 0 auto;
}

.home-page .story__portal {
  position: absolute;
  inset: 14% 18% 12%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, var(--gradient-story-primary), transparent 42%),
    radial-gradient(circle at 36% 58%, var(--gradient-story-secondary), transparent 34%);
  filter: blur(24px);
}

.home-page .story__shot {
  position: absolute;
  margin: 0;
  transition: transform 720ms var(--ease-out);
}

.home-page .story__shot--main {
  width: min(24vw, 340px);
}

.home-page .story__shot--offset {
  width: min(20vw, 286px);
}

.home-page .story--learning .story__shot--main {
  top: 4%;
  left: 20%;
  transform: rotate(-5deg);
}

.home-page .story--learning .story__shot--offset {
  right: 18%;
  bottom: 1%;
  transform: rotate(6deg);
}

.home-page .story--confidence .story__shot--main {
  top: 4%;
  right: 20%;
  transform: rotate(5deg);
}

.home-page .story--confidence .story__shot--offset {
  left: 17%;
  bottom: 3%;
  transform: rotate(-6deg);
}

.home-page .story.is-visible .story__shot--main {
  transform: translate3d(0, -8px, 0) rotate(var(--story-main-rotate, 0deg));
}

.home-page .story.is-visible .story__shot--offset {
  transform: translate3d(0, 8px, 0) rotate(var(--story-offset-rotate, 0deg));
}

.home-page .story--learning {
  --story-main-rotate: -3deg;
  --story-offset-rotate: 4deg;
}

.home-page .story--confidence {
  --story-main-rotate: 3deg;
  --story-offset-rotate: -4deg;
}

.home-page .home-map,
.home-page .home-demo-band,
.home-page .home-signal,
.home-page .home-journey {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 108px;
}

.home-page .home-demo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
}

.home-page .home-demo-band__copy {
  max-width: 34rem;
}

.home-page .home-demo-band__copy .home-section__title,
.home-page .home-demo-band__copy .home-section__body {
  margin-inline: 0;
}

.home-page .home-demo-band__visual {
  display: flex;
  justify-content: center;
}

.home-page .home-demo-band__visual .chart-demo {
  width: min(100%, 392px);
  aspect-ratio: 1.02;
  border-radius: 24px;
  box-shadow:
    0 24px 56px rgba(8, 12, 23, 0.24),
    0 0 0 1px rgba(19, 23, 45, 0.06);
}

.home-page .home-demo-band__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.home-page .home-demo-band__facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(25, 25, 42, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(25, 25, 42, 0.74);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-page .home-section__head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.home-page .home-section__kicker {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.home-page .home-section__title {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #171732;
}

.home-page .home-section__body {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.34;
}

.home-page .home-map__module {
  display: grid;
  gap: 18px;
}

.home-page .home-map__rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-page .home-map__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(25, 25, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(25, 25, 42, 0.72);
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.home-page .home-map__button:hover,
.home-page .home-map__button[aria-selected='true'] {
  background: rgba(21, 17, 59, 0.92);
  border-color: rgba(21, 17, 59, 0.14);
  color: #ffffff;
  transform: translate3d(0, -2px, 0);
}

.home-page .home-map__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(25, 25, 42, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 242, 235, 0.78));
  box-shadow: var(--shadow-soft);
}

.home-page .home-map__panel[hidden] {
  display: none;
}

.home-page .home-map__copy {
  padding: 10px 8px;
}

.home-page .home-map__copy h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #171732;
}

.home-page .home-map__copy p {
  max-width: 32rem;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.44;
}

.home-page .home-map__list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.home-page .home-map__list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(25, 25, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.home-page .home-map__list strong {
  color: #171732;
}

.home-page .home-map__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.home-page .home-map__facts span,
.home-page .home-proof-card strong,
.home-page .home-journey__card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(25, 25, 42, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(25, 25, 42, 0.74);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-page .home-map__figure {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(16, 231, 213, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(241, 244, 241, 0.96), rgba(232, 229, 222, 0.9));
}

.home-page .home-map__figure img {
  width: min(100%, 294px);
  border-radius: 24px;
  box-shadow: 0 30px 76px rgba(15, 16, 46, 0.18);
}

.home-page .home-proof-grid,
.home-page .home-journey__grid {
  display: grid;
  gap: 18px;
}

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

.home-page .home-proof-card,
.home-page .home-journey__card {
  padding: 22px;
  border: 1px solid rgba(25, 25, 42, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 242, 235, 0.76));
  box-shadow: var(--shadow-soft);
}

.home-page .home-proof-card h3,
.home-page .home-journey__card h3 {
  max-width: 14ch;
  margin: 14px 0 12px;
  font-size: clamp(1.42rem, 2vw, 1.96rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #171732;
}

.home-page .home-proof-card p,
.home-page .home-journey__card p {
  max-width: 26ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.42;
}

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

.home-page .final-cta {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 72px;
  text-align: center;
}

.home-page .final-cta__title {
  max-width: 760px;
  margin: 0 auto;
}

.home-page .final-cta .play-button {
  margin-top: 28px;
}

.home-page .final-cta .store-buttons {
  margin-top: 28px;
}

.home-page .final-cta__note {
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.2;
}

.home-page .final-cta__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 22px 0 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.home-page .final-cta__legal a {
  color: rgba(25, 25, 42, 0.72);
  border-bottom: 1px solid rgba(25, 25, 42, 0.18);
  transition:
    color 220ms ease,
    border-color 220ms ease;
}

.home-page .final-cta__legal a:hover {
  color: var(--navy);
  border-color: rgba(21, 17, 59, 0.42);
}

.home-page .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 680ms ease,
    transform 820ms var(--ease-out);
}

.home-page .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes heroTitleSheen {
  0% {
    opacity: 0;
    background-position: 140% 50%;
  }
  14% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    background-position: -46% 50%;
  }
}

@keyframes homeFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes homeStageIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.home-page .site-nav {
  animation: homeFadeInUp 620ms ease backwards;
}

.home-page .hero-pill {
  animation: homeFadeInUp 620ms ease backwards;
  animation-delay: 80ms;
}

.home-page .hero__title {
  animation: homeFadeInUp 620ms ease backwards;
  animation-delay: 140ms;
}

.home-page .hero-stage {
  animation: homeStageIn 720ms ease backwards;
  animation-delay: 200ms;
}

.home-page .hero__cta {
  animation: homeFadeInUp 620ms ease backwards;
  animation-delay: 260ms;
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .home-page .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .home-page .carousel__dots {
    margin-top: 10px;
  }

  .home-page .hero__cta {
    margin-top: 14px;
  }
}

@media (min-width: 992px) {
  .home-page .hero {
    --hero-title-gap: 26px;
    --hero-stage-height: clamp(338px, 43vh, 472px);
    padding-bottom: 40px;
  }

  .home-page .hero-pill__glow {
    display: none;
  }

  .home-page .hero::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: min(36vh, 312px);
    background: linear-gradient(
      180deg,
      rgba(248, 247, 243, 0.82) 0%,
      rgba(248, 247, 243, 0.56) 34%,
      rgba(248, 247, 243, 0.18) 68%,
      rgba(248, 247, 243, 0) 100%
    );
    pointer-events: none;
  }

  body.home-page {
    background:
      radial-gradient(circle at 50% 0%, rgba(16, 231, 213, 0.15), transparent 34%),
      radial-gradient(circle at 14% 18%, rgba(59, 96, 255, 0.08), transparent 24%),
      radial-gradient(circle at 88% 20%, rgba(255, 213, 148, 0.08), transparent 22%),
      linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 46%, #eeece6 100%);
  }

  .home-page .hero__inner {
    row-gap: 20px;
  }

  .home-page .hero-stage {
    max-width: 1040px;
  }

  .home-page .hero-stage__copy {
    margin-bottom: 14px;
  }

  .home-page .hero-stage__caption {
    max-width: 430px;
    margin-top: 10px;
  }

  .home-page .carousel__dots {
    margin-top: 14px;
  }

  .home-page .hero__cta {
    margin-top: 18px;
  }
}

@media (max-width: 991px) {
  body.home-page {
    --bg-layer-opacity: 0.28;
    --page-glow-opacity: 0.16;
    --page-glow-wash-opacity: 0.08;
    --page-grain-opacity: 0.04;
  }

  .home-page .site-nav__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
    margin: 10px clamp(12px, 3vw, 18px) 0;
    padding: 8px 12px;
    min-height: 58px;
    border: 1px solid rgba(21, 17, 59, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.97);
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-page .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .home-page .site-nav__store {
    display: none;
  }

  .home-page .brand {
    gap: 12px;
  }

  .home-page .brand__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .home-page .brand__wordmark {
    font-size: 1.24rem;
  }

  .home-page .brand__flag {
    font-size: 0.96rem;
  }

  .home-page .site-nav__links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    width: calc(100vw - 28px);
    max-width: none;
    box-sizing: border-box;
    display: none;
    gap: 0;
    padding: 14px 16px 16px;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    border: 1px solid rgba(21, 17, 59, 0.09);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.99), rgba(248, 245, 238, 0.98)),
      radial-gradient(circle at top right, rgba(104, 193, 225, 0.12), transparent 34%),
      radial-gradient(circle at bottom left, rgba(222, 177, 64, 0.1), transparent 30%);
    box-shadow:
      0 28px 60px rgba(15, 16, 46, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
    justify-content: stretch;
    opacity: 0;
    transform: translate3d(0, -12px, 0) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 220ms ease,
      transform 240ms var(--ease-out);
    z-index: 21;
  }

  .home-page .site-nav__links[hidden] {
    display: none;
  }

  .home-page .site-nav__links:not([hidden]) {
    display: grid;
  }

  .home-page .site-nav__links a {
    padding: 13px 2px;
    border: 0;
    border-bottom: 1px solid rgba(21, 17, 59, 0.08);
    border-radius: 0;
    background: transparent;
    text-align: left;
    color: var(--navy);
    box-shadow: none;
  }

  .home-page.nav-open .site-nav__links:not([hidden]) {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .home-page .site-nav__links .site-nav__cta--menu {
    display: inline-flex;
    justify-content: center;
    min-height: 50px;
    margin-top: 14px;
    padding: 0 16px;
    border: 0;
    border-radius: 18px;
    background: rgba(21, 17, 59, 0.94);
    box-shadow: 0 18px 36px rgba(15, 16, 46, 0.16);
    color: #f7f5f0;
  }

  .home-page .site-nav__links .site-nav__cta--menu + .site-nav__cta--menu {
    margin-top: 10px;
  }

  .home-page .hero {
    padding-top: 100px;
  }

  .home-page .hero__copy {
    max-width: 760px;
  }

  .home-page .story__stage {
    height: 600px;
  }

  .home-page .story__shot--main {
    width: min(30vw, 300px);
  }

  .home-page .story__shot--offset {
    width: min(24vw, 240px);
  }

  .home-page .home-demo-band,
  .home-page .home-map__panel,
  .home-page .home-proof-grid,
  .home-page .home-journey__grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-demo-band__copy {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  body.home-page {
    --bg-layer-opacity: 0.18;
    --page-glow-opacity: 0.1;
    --page-glow-wash-opacity: 0.05;
    --page-grain-opacity: 0.03;
    background: linear-gradient(180deg, #fbfaf5 0%, var(--bg-top) 22%, var(--bg) 52%, var(--bg-base) 100%);
  }

  .home-page .site-nav {
    inset: 0 0 auto 0;
    top: 0;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-page .site-nav__inner {
    width: min(100% - 20px, var(--container));
    margin: 8px auto 4px;
    min-height: 58px;
    padding: 8px 12px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
    border-radius: 24px;
  }

  .home-page .brand {
    gap: 12px;
  }

  .home-page .brand__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .home-page .brand__wordmark {
    font-size: 1.24rem;
  }

  .home-page .brand__flag {
    font-size: 0.96rem;
  }

  .home-page .nav-toggle {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.92rem;
  }

  .home-page .hero,
  .home-page .story,
  .home-page .final-cta {
    padding-inline: 20px;
  }

  .home-page .hero {
    --hero-title-gap: 18px;
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .home-page .hero-pill {
    margin-top: 18px;
  }

  .home-page .hero__title {
    font-size: var(--hero-title-size, clamp(3rem, 14vw, 4.2rem));
    line-height: 0.9;
    padding-block: 12px;
  }

  .home-page .carousel__slide[data-pos='prev'] {
    opacity: 0.26;
    transform: translate3d(-116%, -50%, -150px) scale(0.76) rotate(-8deg);
  }

  .home-page .carousel__slide[data-pos='next'] {
    opacity: 0.26;
    transform: translate3d(16%, -50%, -150px) scale(0.76) rotate(8deg);
  }

  .home-page .carousel__slide[data-pos='far-prev'] {
    opacity: 0;
    transform: translate3d(-160%, -50%, -240px) scale(0.46) rotate(-12deg);
  }

  .home-page .carousel__slide[data-pos='far-next'] {
    opacity: 0;
    transform: translate3d(60%, -50%, -240px) scale(0.46) rotate(12deg);
  }

  .home-page .hero-stage__caption {
    max-width: 320px;
    margin-top: 8px;
    font-size: 0.92rem;
    min-height: 2.2em;
  }

  .home-page .hero__cta {
    margin-top: 12px;
  }

  .home-page .play-button__badge {
    width: clamp(164px, 24vw, 184px);
  }

  .home-page .story {
    padding-top: 88px;
  }

  .home-page .home-map,
  .home-page .home-demo-band,
  .home-page .home-signal,
  .home-page .home-journey {
    padding-top: 88px;
  }

  .home-page .home-demo-band__visual {
    justify-content: flex-start;
  }

  .home-page .home-demo-band__visual .chart-demo {
    width: min(100%, 360px);
    aspect-ratio: 1;
  }

  .home-page .home-section__title {
    font-size: clamp(2.8rem, 14vw, 4rem);
    line-height: 0.96;
  }

  .home-page .home-section__body {
    max-width: 360px;
    font-size: 1.12rem;
  }

  .home-page .home-map__panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .home-page .home-map__figure img {
    width: min(100%, 220px);
  }

  .home-page .story__title,
  .home-page .final-cta__title {
    font-size: clamp(2.8rem, 14vw, 4rem);
    line-height: 0.96;
  }

  .home-page .story__body {
    max-width: 360px;
    font-size: 1.16rem;
  }

  .home-page .story__stage {
    height: auto;
    max-width: 340px;
    display: grid;
    gap: 18px;
  }

  .home-page .story__portal {
    display: none;
  }

  .home-page .story__shot,
  .home-page .story__shot--main,
  .home-page .story__shot--offset,
  .home-page .story--learning .story__shot--main,
  .home-page .story--learning .story__shot--offset,
  .home-page .story--confidence .story__shot--main,
  .home-page .story--confidence .story__shot--offset {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .home-page .story.is-visible .story__shot--main,
  .home-page .story.is-visible .story__shot--offset {
    transform: none;
  }

  .home-page .final-cta {
    padding-top: 96px;
    padding-bottom: 52px;
  }

  .home-page .final-cta__legal {
    margin-top: 20px;
    font-size: 0.96rem;
  }
}


/* ===== V3 polish overrides ===== */
.home-page .hero__summary {
  max-width: 36rem;
}

.site-page .hero__surface::before,
.site-page .hero__surface::after {
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: none;
}

.site-page .hero__surface::before,
.site-page .hero__surface::after,
.site-page .screenshot-card img,
.site-page .app-map__figure img,
.site-page .path-card__media img,
.home-page .home-map__figure img {
  filter: drop-shadow(0 26px 54px rgba(16, 28, 45, 0.18));
  box-shadow: none;
}

.site-page .screenshot-card,
.site-page .path-card__media,
.site-page .app-map__figure,
.home-page .home-map__figure {
  background: radial-gradient(circle at top, rgba(214, 154, 45, 0.08), transparent 32%);
}

.site-page .screenshot-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 18px 20px;
}

.site-page .screenshot-card img {
  width: min(100%, 300px);
  max-width: 300px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  justify-self: center;
  background: transparent;
}

.site-page .screenshot-card__copy {
  padding: 0;
}

.site-page .app-map__figure,
.home-page .home-map__figure,
.site-page .path-card__media {
  border: 0;
}

.site-page .app-map__figure img {
  width: min(100%, 280px);
}

.home-page .home-map__figure img {
  width: min(100%, 280px);
}

.site-page .path-card__media img {
  width: min(100%, 150px);
  background: transparent;
}

.site-page .plan-card--pro {
  background:
    linear-gradient(135deg, rgba(15, 24, 40, 0.98), rgba(34, 47, 71, 0.96) 55%, rgba(73, 54, 18, 0.94)),
    radial-gradient(circle at 88% 14%, rgba(255, 210, 102, 0.42), transparent 26%),
    radial-gradient(circle at 70% 70%, rgba(214, 154, 45, 0.18), transparent 34%);
  border-color: rgba(255, 222, 143, 0.18);
  box-shadow: 0 32px 90px rgba(13, 18, 32, 0.28);
}

.site-page .plan-card--pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 221, 141, 0.12) 40%, transparent 56%);
  transform: translateX(-120%);
  animation: proSheen 5.8s ease-in-out infinite;
}

.site-page .plan-card--pro > * {
  position: relative;
  z-index: 1;
}

.page--pricing .hero__surface--pricing::before,
.page--pricing .hero__surface--pricing::after {
  display: none;
}

.page--pricing .hero__surface--pricing {
  padding-right: clamp(32px, 36vw, 520px);
  border-color: rgba(21, 34, 54, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 231, 213, 0.14), transparent 34%),
    radial-gradient(circle at 14% 18%, rgba(59, 96, 255, 0.09), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(255, 213, 148, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 236, 0.82));
  box-shadow: 0 32px 90px rgba(16, 28, 45, 0.12);
}

.page--pricing .hero__surface--pricing h1,
.page--pricing .hero__surface--pricing .lede {
  color: var(--navy);
}

.page--pricing .hero__surface--pricing .eyebrow {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 34, 54, 0.08);
  color: rgba(33, 63, 101, 0.78);
}

.page--pricing .hero__surface--with-demo > .pricing-motion {
  border-color: rgba(21, 34, 54, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 241, 232, 0.44)),
    rgba(255, 255, 255, 0.32);
  box-shadow: 0 22px 48px rgba(16, 28, 45, 0.12);
}

.pricing-motion {
  position: absolute;
  top: 50%;
  right: clamp(24px, 4vw, 46px);
  width: min(31vw, 350px);
  transform: translateY(-50%);
  z-index: 1;
}

.pricing-motion__screen {
  position: relative;
  aspect-ratio: 0.64;
  border-radius: 34px;
  border: 1px solid rgba(255, 222, 143, 0.18);
  background:
    linear-gradient(180deg, rgba(11, 18, 31, 0.88), rgba(21, 30, 48, 0.94)),
    radial-gradient(circle at top, rgba(214, 154, 45, 0.14), transparent 30%);
  box-shadow: 0 36px 84px rgba(8, 12, 23, 0.42);
  overflow: hidden;
}

.pricing-motion__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 18%, 18% 100%;
  opacity: 0.38;
}

.pricing-motion__candles {
  position: absolute;
  inset: 18% 10% 26% 10%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 9px;
}

.pricing-motion__candle {
  position: relative;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 214, 112, 0.95), rgba(214, 154, 45, 0.72));
  box-shadow: 0 0 0 1px rgba(255, 214, 112, 0.08);
  animation: candleFloat 3.2s ease-in-out infinite;
}

.pricing-motion__candle::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 2px;
  height: 18px;
  margin-left: -1px;
  background: rgba(255, 214, 112, 0.64);
  border-radius: 999px;
}

.pricing-motion__candle:nth-child(1) { height: 22%; animation-delay: 0s; }
.pricing-motion__candle:nth-child(2) { height: 38%; animation-delay: 0.18s; }
.pricing-motion__candle:nth-child(3) { height: 30%; animation-delay: 0.36s; }
.pricing-motion__candle:nth-child(4) { height: 52%; animation-delay: 0.54s; }
.pricing-motion__candle:nth-child(5) { height: 44%; animation-delay: 0.72s; }
.pricing-motion__candle:nth-child(6) { height: 66%; animation-delay: 0.9s; }
.pricing-motion__candle:nth-child(7) { height: 58%; animation-delay: 1.08s; }
.pricing-motion__candle:nth-child(8) { height: 78%; animation-delay: 1.26s; }

.pricing-motion__price {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, rgba(55, 211, 185, 0.2), rgba(55, 211, 185, 0.92), rgba(55, 211, 185, 0.2));
  box-shadow: 0 0 12px rgba(55, 211, 185, 0.36);
}

.pricing-motion__pill {
  position: absolute;
  right: 10%;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.pricing-motion__pill--tgt {
  top: 22%;
  background: rgba(255, 214, 112, 0.18);
  border: 1px solid rgba(255, 214, 112, 0.24);
  color: #ffd266;
  animation: targetSlide 4.2s ease-in-out infinite;
}

.pricing-motion__pill--trail {
  top: 43%;
  background: rgba(55, 211, 185, 0.14);
  border: 1px solid rgba(55, 211, 185, 0.22);
  color: #7de1d3;
  animation: trailStep 4.2s ease-in-out infinite;
}

.pricing-motion__pill--sl {
  top: 67%;
  background: rgba(255, 110, 110, 0.12);
  border: 1px solid rgba(255, 110, 110, 0.18);
  color: #ff9f9f;
  animation: stopPulse 4.2s ease-in-out infinite;
}

.pricing-motion__footer {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.pricing-motion__footer span {
  flex: 1;
  padding: 10px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

@keyframes targetSlide {
  0%, 100% { transform: translate3d(0, 0, 0); }
  35% { transform: translate3d(-18px, -8px, 0); }
  70% { transform: translate3d(-8px, 4px, 0); }
}

@keyframes trailStep {
  0%, 20% { transform: translate3d(0, 0, 0); }
  35% { transform: translate3d(-14px, -10px, 0); }
  55% { transform: translate3d(-14px, -10px, 0); }
  72% { transform: translate3d(-6px, -18px, 0); }
  100% { transform: translate3d(-6px, -18px, 0); }
}

@keyframes stopPulse {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.92; }
  50% { transform: translate3d(-10px, 0, 0) scale(1.04); opacity: 1; }
}

@keyframes proSheen {
  0%, 100% { transform: translateX(-120%); }
  45%, 60% { transform: translateX(120%); }
}

@media (max-width: 1100px) {
  .page--pricing .hero__surface--pricing {
    padding-right: clamp(28px, 4vw, 44px);
    padding-bottom: min(62vw, 430px);
  }

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

  .page--pricing .pricing-feature-card--trade-on-chart {
    grid-column: span 1;
  }

  .page--pricing .pricing-feature-card__copy h3,
  .page--pricing .pricing-feature-card__copy p {
    max-width: none;
  }

  .page--pricing .pricing-feature-card--unlimited-trades {
    grid-template-columns: 1fr;
  }

  .page--pricing .pricing-unlimited-trades-card__copy h3,
  .page--pricing .pricing-unlimited-trades-card__copy p {
    max-width: none;
  }

  .pricing-motion {
    top: auto;
    right: 24px;
    bottom: 28px;
    width: min(46vw, 320px);
    transform: none;
  }

  .site-page .screenshot-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-page .screenshot-card img {
    max-width: 280px;
  }
}

@media (max-width: 760px) {
  .pricing-motion {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .page--pricing .plan-card__header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .page--pricing .plan-card__comparison-vs {
    width: 100%;
    height: auto;
    padding: 6px 0;
    border-radius: 999px;
  }

  .page--pricing .pricing-feature-card {
    padding: 20px;
  }

  .page--pricing .pricing-feature-card__copy h3 {
    font-size: clamp(1.72rem, 8vw, 2.4rem);
  }

  .page--pricing .pricing-feature-card__preview {
    padding: 12px;
  }

  .page--pricing .pricing-feature-card--unlimited-trades {
    padding: 20px;
  }

  .pricing-motion__screen {
    border-radius: 26px;
  }

  .site-page .screenshot-card {
    padding: 18px;
  }

  .site-page .screenshot-card img {
    width: min(100%, 250px);
  }
}


/* v3 refinement pass */
.home-page .home-map__figure img,
.site-page .app-map__figure img,
.site-page .screenshot-card img,
.site-page .path-card__media img {
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  max-height: 560px;
  display: block;
}

.home-page .carousel__slide img,
.home-page .story__shot img {
  object-fit: contain;
  background: transparent;
}

.site-page .hero__surface--pricing {
  overflow: hidden;
}

.page--pricing .section-header--pricing-plans {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin-bottom: 24px;
}

.page--pricing .section-header--pricing-plans h2 {
  max-width: 15ch;
  color: var(--navy);
}

.page--pricing .pricing-paywall {
  position: relative;
  display: grid;
  gap: 24px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 231, 213, 0.14), transparent 34%),
    radial-gradient(circle at 14% 18%, rgba(59, 96, 255, 0.08), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(255, 213, 148, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.82));
  box-shadow: 0 28px 74px rgba(16, 28, 45, 0.1);
}

.page--pricing .pricing-paywall::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.page--pricing .pricing-paywall .section-kicker {
  border-color: rgba(13, 157, 149, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(33, 63, 101, 0.78);
}

.page--pricing .section-header--pricing-plans p {
  color: rgba(21, 34, 54, 0.68);
}

.page--pricing .plan-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.86fr);
  gap: 24px;
  align-items: stretch;
}

.page--pricing .plan-card {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 100%;
  padding: clamp(26px, 2.8vw, 34px);
  border-radius: 34px;
}

.page--pricing .plan-card--free {
  background:
    radial-gradient(circle at 86% 12%, rgba(186, 226, 255, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 236, 0.9));
  border-color: rgba(21, 34, 54, 0.08);
  box-shadow: 0 24px 58px rgba(16, 28, 45, 0.07);
}

.page--pricing .plan-card--pro {
  position: relative;
  transform: translateY(-6px);
  grid-template-rows: auto;
  background:
    radial-gradient(circle at 84% 12%, rgba(186, 226, 255, 0.2), transparent 20%),
    radial-gradient(circle at 100% 100%, rgba(255, 213, 148, 0.36), transparent 28%),
    linear-gradient(155deg, rgba(18, 33, 56, 0.98), rgba(27, 56, 92, 0.95) 54%, rgba(29, 39, 56, 0.96));
  border-color: rgba(77, 121, 210, 0.16);
  box-shadow: 0 34px 90px rgba(16, 28, 45, 0.18);
}

.page--pricing .plan-card--pro::before {
  content: '';
  position: absolute;
  top: -72px;
  left: -72px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 226, 255, 0.24) 0%, rgba(186, 226, 255, 0.08) 36%, transparent 70%);
  pointer-events: none;
}

.page--pricing .plan-card--pro::after {
  content: '';
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 112, 0.54) 0%, rgba(255, 214, 112, 0.24) 34%, transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

.page--pricing .plan-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page--pricing .plan-card__flag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 112, 0.24);
  background: rgba(255, 214, 112, 0.14);
  color: rgba(255, 239, 196, 0.96);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page--pricing .plan-card__value {
  display: grid;
  gap: 4px;
}

.page--pricing .plan-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page--pricing .plan-card__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(21, 34, 54, 0.8);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page--pricing .plan-card--pro .plan-card__stats span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 247, 223, 0.92);
}

.page--pricing .plan-card__billing {
  margin: 0;
}

.page--pricing .plan-card__billing {
  font-size: 1.04rem;
  font-weight: 600;
  color: rgba(21, 34, 54, 0.74);
}

.page--pricing .plan-card--pro .plan-card__billing {
  color: rgba(255, 233, 175, 0.9);
}

.page--pricing .plan-card__comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 16px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(9, 18, 31, 0.26), rgba(9, 18, 31, 0.14)),
    radial-gradient(circle at 100% 100%, rgba(255, 213, 148, 0.14), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page--pricing .plan-card__comparison-side {
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page--pricing .plan-card__comparison-side--market {
  background: linear-gradient(180deg, rgba(255, 180, 113, 0.18), rgba(255, 132, 95, 0.08));
  border-color: rgba(255, 187, 126, 0.18);
}

.page--pricing .plan-card__comparison-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.page--pricing .plan-card__comparison-value {
  font-size: clamp(1.52rem, 2.4vw, 2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(255, 233, 175, 0.98);
}

.page--pricing .plan-card__comparison-side--market .plan-card__comparison-value {
  color: rgba(255, 219, 184, 0.98);
}

.page--pricing .plan-card__comparison-note {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.68);
}

.page--pricing .plan-card__comparison-vs {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  align-self: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page--pricing .plan-card__insight {
  margin: 0;
  padding: 13px 15px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(89, 196, 229, 0.16), rgba(84, 199, 139, 0.08));
  border: 1px solid rgba(120, 207, 230, 0.2);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.page--pricing .plan-card--free .plan-card__insight {
  color: rgba(21, 34, 54, 0.72);
}

.page--pricing .plan-card--pro .plan-card__price {
  color: rgba(255, 233, 175, 0.98);
  text-shadow: 0 0 24px rgba(255, 210, 102, 0.14);
}

.page--pricing .plan-card__list {
  gap: 12px;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 34, 54, 0.08);
}

.page--pricing .plan-card__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(21, 34, 54, 0.72);
}

.page--pricing .plan-card__list li::before {
  content: '';
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(21, 34, 54, 0.34);
}

.page--pricing .plan-card--pro .plan-card__list li::before {
  background: rgba(255, 214, 112, 0.68);
}

.page--pricing .plan-card--pro .plan-card__list li {
  color: rgba(255, 255, 255, 0.84);
}

.page--pricing .plan-card--pro .plan-card__list {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.page--pricing .plan-footnote {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  margin: 14px 4px 0;
  color: rgba(21, 34, 54, 0.56);
  font-size: 0.94rem;
  line-height: 1.5;
}

.page--pricing h1 {
  max-width: 10.6ch;
}

@media (max-width: 960px) {
  .page--pricing .plan-grid {
    grid-template-columns: 1fr;
  }

  .page--pricing .plan-card--pro {
    transform: none;
  }
}

.page--pricing .pricing-feature-stack {
  display: grid;
  gap: 20px;
}

.page--pricing .pricing-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: 22px;
  align-items: center;
  min-height: 0;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--page-border);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 242, 234, 0.8)),
    radial-gradient(circle at top right, rgba(13, 157, 149, 0.1), transparent 28%);
  box-shadow: 0 24px 58px rgba(16, 28, 45, 0.08);
}

.page--pricing .pricing-feature-card::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(13, 157, 149, 0.08);
  filter: blur(18px);
}

.page--pricing .pricing-feature-card--reverse .pricing-feature-card__content,
.page--pricing .pricing-feature-card--reverse .pricing-feature-card__copy {
  order: 2;
}

.page--pricing .pricing-feature-card--reverse .pricing-feature-card__preview {
  order: 1;
}

.page--pricing .pricing-feature-card__content,
.page--pricing .pricing-feature-card__copy {
  display: grid;
  align-content: start;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.page--pricing .pricing-feature-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(21, 34, 54, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page--pricing .pricing-feature-card__content h3,
.page--pricing .pricing-feature-card__copy h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.page--pricing .pricing-feature-card__content p,
.page--pricing .pricing-feature-card__copy p {
  max-width: 34ch;
  margin: 0;
  color: rgba(21, 34, 54, 0.74);
}

.page--pricing .pricing-feature-card__list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.page--pricing .pricing-feature-card__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(21, 34, 54, 0.72);
}

.page--pricing .pricing-feature-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(13, 157, 149, 0.96), rgba(33, 63, 101, 0.92));
  box-shadow: 0 0 0 5px rgba(13, 157, 149, 0.12);
}

.page--pricing .pricing-feature-card__preview {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  background:
    radial-gradient(circle at top, rgba(13, 157, 149, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(242, 245, 244, 0.98), rgba(230, 228, 220, 0.92));
}

.page--pricing .pricing-trade-chart-card__preview {
  min-height: 380px;
  padding: 18px;
}

.page--pricing .pricing-feature-card--trade-on-chart {
  align-items: stretch;
}

.page--pricing .pricing-trade-chart-card__preview .chart-demo--pricing-card {
  width: min(100%, 360px);
  aspect-ratio: 1.16;
  border-radius: 24px;
}

.page--pricing .pricing-trade-chart-card__preview .chart-demo--pricing-card .chart-demo__plot {
  inset: 8% 23.5% 9% 5.5%;
}

.page--pricing .pricing-trade-chart-preview {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 360 / 194;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #11161c, #0a0e12);
  box-shadow:
    0 14px 24px rgba(0, 245, 212, 0.08),
    0 18px 38px rgba(10, 14, 18, 0.34);
}

.page--pricing .pricing-trade-chart-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 14%, rgba(111, 229, 209, 0.09), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.03), transparent 22%);
  pointer-events: none;
}

.page--pricing .pricing-trade-chart-preview__grid {
  position: absolute;
  inset: 0;
  background-image:
    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: 100% 20%, 16.666% 100%;
  opacity: 0.6;
}

.page--pricing .pricing-trade-chart-preview__candles {
  position: absolute;
  inset: 10px 74px 10px 10px;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 2px;
}

.page--pricing .pricing-trade-chart-preview__candle {
  position: relative;
  --wick-top: 70%;
  --wick-bottom: 16%;
  --body-top: 75%;
  --body-height: 10%;
  --candle-fill: linear-gradient(180deg, rgba(76, 209, 110, 0.98), rgba(31, 152, 66, 0.92));
  --candle-shadow: rgba(61, 196, 93, 0.18);
}

.page--pricing .pricing-trade-chart-preview__candle::before {
  content: '';
  position: absolute;
  top: var(--wick-top);
  bottom: var(--wick-bottom);
  left: 50%;
  width: 1.6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.page--pricing .pricing-trade-chart-preview__candle::after {
  content: '';
  position: absolute;
  top: var(--body-top);
  left: 50%;
  width: min(12px, 84%);
  height: var(--body-height);
  transform: translateX(-50%);
  border-radius: 3px;
  background: var(--candle-fill);
  box-shadow: 0 0 0 1px var(--candle-shadow);
}

.page--pricing .pricing-trade-chart-preview__candle:nth-child(1) { --wick-top: 73%; --wick-bottom: 16%; --body-top: 77%; --body-height: 9%; --candle-fill: linear-gradient(180deg, rgba(244, 104, 112, 0.96), rgba(208, 55, 72, 0.9)); --candle-shadow: rgba(228, 84, 97, 0.16); }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(2) { --wick-top: 66%; --wick-bottom: 16%; --body-top: 70%; --body-height: 12%; }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(3) { --wick-top: 60%; --wick-bottom: 18%; --body-top: 65%; --body-height: 12%; }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(4) { --wick-top: 57%; --wick-bottom: 18%; --body-top: 62%; --body-height: 14%; --candle-fill: linear-gradient(180deg, rgba(244, 104, 112, 0.96), rgba(208, 55, 72, 0.9)); --candle-shadow: rgba(228, 84, 97, 0.16); }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(5) { --wick-top: 48%; --wick-bottom: 18%; --body-top: 54%; --body-height: 15%; }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(6) { --wick-top: 44%; --wick-bottom: 18%; --body-top: 49%; --body-height: 16%; }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(7) { --wick-top: 36%; --wick-bottom: 16%; --body-top: 42%; --body-height: 18%; --candle-fill: linear-gradient(180deg, rgba(244, 104, 112, 0.96), rgba(208, 55, 72, 0.9)); --candle-shadow: rgba(228, 84, 97, 0.16); }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(8) { --wick-top: 33%; --wick-bottom: 18%; --body-top: 38%; --body-height: 18%; }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(9) { --wick-top: 30%; --wick-bottom: 16%; --body-top: 34%; --body-height: 18%; }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(10) { --wick-top: 25%; --wick-bottom: 14%; --body-top: 30%; --body-height: 20%; --candle-fill: linear-gradient(180deg, rgba(244, 104, 112, 0.96), rgba(208, 55, 72, 0.9)); --candle-shadow: rgba(228, 84, 97, 0.16); }
.page--pricing .pricing-trade-chart-preview__candle:nth-child(11) { --wick-top: 18%; --wick-bottom: 14%; --body-top: 24%; --body-height: 22%; }

.page--pricing .pricing-trade-chart-preview__guide {
  position: absolute;
  left: 10px;
  right: 74px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.page--pricing .pricing-trade-chart-preview__guide--avg {
  top: 50%;
  border-color: rgba(39, 198, 168, 0.54);
}

.page--pricing .pricing-trade-chart-preview__guide--tgt {
  top: 24%;
  border-color: rgba(76, 175, 80, 0.54);
}

.page--pricing .pricing-trade-chart-preview__guide--sl {
  top: 76%;
  border-color: rgba(244, 67, 54, 0.54);
}

.page--pricing .pricing-trade-chart-preview__axis-tag {
  position: absolute;
  right: 10px;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page--pricing .pricing-trade-chart-preview__axis-tag--avg {
  top: calc(50% - 11px);
  background: rgba(39, 198, 168, 0.16);
  border-color: rgba(39, 198, 168, 0.4);
}

.page--pricing .pricing-trade-chart-preview__axis-tag--tgt {
  top: calc(24% - 11px);
  background: rgba(76, 175, 80, 0.16);
  border-color: rgba(76, 175, 80, 0.4);
}

.page--pricing .pricing-trade-chart-preview__axis-tag--sl {
  top: calc(76% - 11px);
  background: rgba(244, 67, 54, 0.26);
  border-color: rgba(244, 67, 54, 0.7);
}

.page--pricing .pricing-trade-chart-preview__pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.page--pricing .pricing-trade-chart-preview__pill--avg {
  top: calc(50% - 12px);
  left: 20px;
}

.page--pricing .pricing-trade-chart-preview__pill--tgt {
  top: calc(24% - 12px);
  left: 20px;
}

.page--pricing .pricing-trade-chart-preview__pill--sl {
  top: calc(76% - 12px);
  left: 12px;
}

.page--pricing .pricing-trade-chart-preview__pill-segment {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page--pricing .pricing-trade-chart-preview__pill-segment--avg-label {
  border-radius: 12px 0 0 12px;
  background: rgba(39, 198, 168, 0.72);
}

.page--pricing .pricing-trade-chart-preview__pill-segment--avg-value {
  border-radius: 0 12px 12px 0;
  background: rgba(22, 157, 132, 0.72);
}

.page--pricing .pricing-trade-chart-preview__pill-segment--tgt-label {
  border-radius: 12px 0 0 12px;
  background: rgba(56, 142, 60, 0.72);
}

.page--pricing .pricing-trade-chart-preview__pill-segment--tgt-value {
  border-radius: 0 12px 12px 0;
  background: rgba(76, 175, 80, 0.72);
}

.page--pricing .pricing-trade-chart-preview__pill-segment--sl-label {
  border-radius: 12px 0 0 12px;
  background: rgba(211, 47, 47, 0.98);
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.28);
}

.page--pricing .pricing-trade-chart-preview__pill-segment--sl-value {
  border-radius: 0 12px 12px 0;
  background: rgba(244, 67, 54, 0.98);
  box-shadow: 0 6px 16px rgba(244, 67, 54, 0.28);
}

.page--pricing .pricing-watchlists-demo {
  display: grid;
  gap: 14px;
  align-content: center;
}

.page--pricing .pricing-watchlists-demo__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page--pricing .pricing-watchlists-demo__tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(21, 34, 54, 0.08);
  color: rgba(21, 34, 54, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.page--pricing .pricing-watchlists-demo__tabs .is-active {
  background: linear-gradient(135deg, rgba(13, 157, 149, 0.18), rgba(33, 63, 101, 0.16));
  color: var(--navy);
}

.page--pricing .pricing-watchlists-demo__panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 22, 35, 0.96), rgba(19, 31, 48, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page--pricing .pricing-watchlists-demo__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page--pricing .pricing-watchlists-demo__panel-head strong {
  color: #ffffff;
  font-size: 1rem;
}

.page--pricing .pricing-watchlists-demo__panel-head span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.page--pricing .pricing-watchlists-demo__rows {
  display: grid;
  gap: 10px;
}

.page--pricing .pricing-watchlists-demo__rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.page--pricing .pricing-watchlists-demo__rows span {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.page--pricing .pricing-watchlists-demo__rows em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-style: normal;
}

.page--pricing .pricing-exit-demo {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 22, 35, 0.96), rgba(19, 31, 48, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page--pricing .pricing-exit-demo__positions {
  display: grid;
  gap: 10px;
}

.page--pricing .pricing-exit-demo__positions div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.page--pricing .pricing-exit-demo__positions span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
}

.page--pricing .pricing-exit-demo__positions strong {
  color: #ffffff;
  font-size: 0.9rem;
}

.page--pricing .pricing-exit-demo__swipe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
}

.page--pricing .pricing-exit-demo__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 157, 149, 0.96), rgba(33, 63, 101, 0.92));
  color: #ffffff;
  font-size: 1.1rem;
}

.page--pricing .pricing-exit-demo__flash {
  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(49, 191, 99, 0.16);
  border: 1px solid rgba(49, 191, 99, 0.24);
  color: #d9ffe7;
  font-size: 0.76rem;
  font-weight: 700;
}

.page--pricing .pricing-pill-block {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--page-border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 241, 232, 0.72)),
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.08), transparent 24%);
  box-shadow: 0 22px 48px rgba(16, 28, 45, 0.06);
}

.page--pricing .pricing-pill-block__copy h3 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.page--pricing .pricing-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page--pricing .pricing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(21, 34, 54, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.page--pricing .pricing-feature-card--limit-orders {
  display: grid;
  gap: 18px;
}

.page--pricing .pricing-feature-card--limit-orders h3 {
  max-width: 12ch;
}

.page--pricing .pricing-feature-card--limit-orders p {
  color: rgba(21, 34, 54, 0.72);
}

.page--pricing .pricing-feature-card__preview--limit-orders {
  margin-top: auto;
}

.page--pricing .pricing-limit-selector {
  width: 140px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.page--pricing .pricing-limit-selector__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 15px;
  background: rgba(26, 27, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-inline: auto;
}

.page--pricing .pricing-limit-selector__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: 26px;
  border-radius: 13px;
  background: #1b4d3e;
  border: 1px solid rgba(0, 245, 212, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  will-change: transform;
  animation: pricingLimitSelectorThumb 11.2s ease-in-out infinite;
}

.page--pricing .pricing-limit-selector__tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 26px;
  color: #b0b3b8;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.page--pricing .pricing-limit-selector__tab--market {
  animation: pricingLimitSelectorMarket 11.2s ease-in-out infinite;
}

.page--pricing .pricing-limit-selector__tab--limit {
  animation: pricingLimitSelectorLimit 11.2s ease-in-out infinite;
}

.page--pricing .pricing-limit-selector__label {
  will-change: transform;
  animation: pricingLimitSelectorLabel 11.2s ease-in-out infinite;
}

.page--pricing .pricing-limit-selector__pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 14px;
  border-radius: 6px;
  background: rgba(255, 193, 7, 0.15);
  border: 0.5px solid rgba(255, 193, 7, 0.3);
  color: #ffc107;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  animation: pricingLimitSelectorPro 11.2s ease-in-out infinite;
}

@keyframes pricingLimitSelectorThumb {
  0%,
  26.78% {
    transform: translateX(0);
  }
  33.93%,
  57.14% {
    transform: translateX(100%);
  }
  64.29%,
  100% {
    transform: translateX(0);
  }
}

@keyframes pricingLimitSelectorMarket {
  0%,
  26.78%,
  100% {
    color: #00f5d4;
    font-weight: 600;
  }
  33.93%,
  57.14% {
    color: #b0b3b8;
    font-weight: 500;
  }
}

@keyframes pricingLimitSelectorLimit {
  0%,
  26.78%,
  100% {
    color: #b0b3b8;
    font-weight: 500;
  }
  33.93%,
  57.14% {
    color: #00f5d4;
    font-weight: 600;
  }
}

@keyframes pricingLimitSelectorLabel {
  0%,
  26.78%,
  100% {
    transform: translateX(0);
  }
  33.93%,
  57.14% {
    transform: translateX(16px);
  }
}

@keyframes pricingLimitSelectorPro {
  0%,
  26.78%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  32.14%,
  57.14% {
    opacity: 0;
    transform: scale(0.92);
  }
}

.page--pricing .pricing-feature-card--watchlists h3,
.page--pricing .pricing-feature-card--advanced-orders h3 {
  max-width: 11ch;
}

.page--pricing .pricing-feature-card--watchlists .pricing-feature-card__preview,
.page--pricing .pricing-feature-card--exit-all .pricing-feature-card__preview,
.page--pricing .pricing-feature-card--advanced-orders .pricing-feature-card__preview {
  padding: 18px;
}

.page--pricing .pricing-watchlists-demo,
.page--pricing .pricing-exit-demo {
  width: min(100%, 320px);
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 22, 34, 0.98), rgba(19, 28, 43, 0.94)),
    radial-gradient(circle at top right, rgba(74, 123, 255, 0.16), transparent 26%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 42px rgba(13, 18, 31, 0.18);
}

.page--pricing .pricing-watchlists-demo__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page--pricing .pricing-watchlists-demo__tabs span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page--pricing .pricing-watchlists-demo__tabs .is-active {
  background: rgba(74, 123, 255, 0.22);
  color: #eaf0ff;
  box-shadow: inset 0 0 0 1px rgba(123, 154, 255, 0.24);
}

.page--pricing .pricing-watchlists-demo__panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page--pricing .pricing-watchlists-demo__panel-head {
  display: grid;
  gap: 4px;
}

.page--pricing .pricing-watchlists-demo__panel-head strong {
  color: #ffffff;
  font-size: 1rem;
}

.page--pricing .pricing-watchlists-demo__panel-head span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.page--pricing .pricing-watchlists-demo__rows {
  display: grid;
  gap: 10px;
}

.page--pricing .pricing-watchlists-demo__rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.page--pricing .pricing-watchlists-demo__rows span {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
}

.page--pricing .pricing-watchlists-demo__rows em {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-style: normal;
}

.page--pricing .pricing-feature-card__preview--watchlists {
  padding-inline: 20px;
}

.page--pricing .pricing-watchlists-card {
  width: min(100%, 356px);
  display: grid;
  align-content: center;
}

.page--pricing .pricing-watchlists-card__rail {
  display: flex;
  gap: 6px;
  align-items: center;
  width: 100%;
  min-height: 34px;
  padding-inline: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.page--pricing .pricing-watchlists-card__rail::-webkit-scrollbar {
  display: none;
}

.page--pricing .pricing-watchlists-card__tab {
  flex: 0 0 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.page--pricing .pricing-watchlists-card__tab--active {
  background: #1b4d3e;
  border-color: rgba(0, 245, 212, 0.3);
  color: #00f5d4;
  font-weight: 600;
  transform: translateZ(0);
}

.page--pricing .pricing-exit-demo__positions,
.page--pricing .pricing-exit-demo__rows {
  display: grid;
  gap: 10px;
}

.page--pricing .pricing-exit-demo__positions div,
.page--pricing .pricing-exit-demo__rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.page--pricing .pricing-exit-demo__positions span,
.page--pricing .pricing-exit-demo__rows span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
}

.page--pricing .pricing-exit-demo__positions strong,
.page--pricing .pricing-exit-demo__rows strong {
  color: #ffffff;
  font-size: 0.84rem;
}

.page--pricing .pricing-exit-demo__swipe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(247, 97, 97, 0.18), rgba(255, 165, 94, 0.14));
  border: 1px solid rgba(255, 141, 104, 0.24);
  color: #ffe6dc;
  font-size: 0.82rem;
  font-weight: 700;
}

.page--pricing .pricing-exit-demo__thumb {
  animation: pricingExitThumb 2.2s ease-in-out infinite;
}

.page--pricing .pricing-exit-demo__flash {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  text-align: center;
}

@keyframes pricingExitThumb {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.page--pricing .pricing-advanced-orders-demo {
  width: min(100%, 320px);
  display: grid;
  align-content: center;
  padding: 8px 0;
}

.page--pricing .pricing-advanced-orders-demo__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 12px;
  border-radius: 25px;
  background: rgba(20, 27, 38, 0.98);
  border: 1px solid rgba(255, 177, 76, 0.24);
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.5),
    -2px -2px 4px rgba(255, 255, 255, 0.05);
}

.page--pricing .pricing-advanced-orders-demo__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20, 27, 38, 0.96);
  border: 1.5px solid rgba(255, 177, 76, 0.3);
  box-shadow:
    2px 2px 5px rgba(255, 159, 42, 0.3),
    4px 4px 8px rgba(0, 0, 0, 0.5),
    -2px -2px 4px rgba(255, 255, 255, 0.05);
}

.page--pricing .pricing-advanced-orders-demo__icon span {
  color: #ff9f2a;
  font-family: "Orbitron", "Chakra Petch", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page--pricing .pricing-advanced-orders-demo__body {
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 4px;
}

.page--pricing .pricing-advanced-orders-demo__symbol {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.page--pricing .pricing-advanced-orders-demo__meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: rgba(209, 219, 230, 0.82);
  font-size: 0.74rem;
  font-weight: 500;
}

.page--pricing .pricing-advanced-orders-demo__separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(209, 219, 230, 0.36);
}

.page--pricing .pricing-advanced-orders-demo__term {
  color: rgba(209, 219, 230, 0.82);
  font-size: 0.74rem;
  font-weight: 500;
}

.page--pricing .pricing-advanced-orders-demo__trail {
  display: grid;
  gap: 1px;
  width: fit-content;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(255, 177, 76, 0.1);
  border: 1px solid rgba(255, 177, 76, 0.24);
}

.page--pricing .pricing-advanced-orders-demo__trail-label {
  color: #ffad42;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page--pricing .pricing-advanced-orders-demo__trail-value {
  color: #d98b32;
  font-size: 0.56rem;
  font-weight: 500;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.page--pricing .pricing-advanced-orders-demo__ltp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4cd774;
  font-size: 0.76rem;
  font-weight: 600;
}

.page--pricing .pricing-advanced-orders-demo__ltp-value {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.page--pricing .pricing-advanced-orders-demo__ltp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37c767;
  box-shadow: 0 0 0 1px rgba(55, 199, 103, 0.18), 0 0 6px rgba(55, 199, 103, 0.32);
}

.page--pricing .pricing-advanced-orders-demo__side {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.page--pricing .pricing-advanced-orders-demo__time {
  color: rgba(209, 219, 230, 0.76);
  font-size: 0.74rem;
  font-weight: 500;
}

.page--pricing .pricing-advanced-orders-demo__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(80, 145, 255, 0.24);
  background: rgba(80, 145, 255, 0.1);
  color: #72b0ff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .page--pricing .pricing-advanced-orders-demo__card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .page--pricing .pricing-advanced-orders-demo__side {
    grid-column: 2;
    justify-self: end;
  }
}

.page--pricing .pricing-feature-card--unlimited-trades,
.page--pricing .pricing-feature-card--watchlist-add {
  margin-top: 0;
}

.page--pricing .pricing-pill-block {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 243, 236, 0.78)),
    radial-gradient(circle at top right, rgba(214, 154, 45, 0.12), transparent 28%);
}

.page--pricing .pricing-pill-block__copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 0.96;
}

.page--pricing .pricing-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page--pricing .pricing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(21, 34, 54, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page--pricing .pricing-feature-card--unlimited-trades {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(240px, 0.94fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(21, 34, 54, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 232, 0.84));
  box-shadow: 0 24px 58px rgba(16, 28, 45, 0.08);
}

.page--pricing .pricing-unlimited-trades-card__copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.page--pricing .pricing-unlimited-trades-card__copy h3 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.page--pricing .pricing-unlimited-trades-card__copy p {
  max-width: 35ch;
  margin: 0;
  color: rgba(21, 34, 54, 0.74);
}

.page--pricing .pricing-unlimited-trades-card__preview {
  display: grid;
  place-items: center;
  padding: 10px 0 10px 14px;
}

.page--pricing .pricing-unlimited-trades-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  background: rgba(26, 26, 26, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.page--pricing .pricing-unlimited-trades-card__icon,
.page--pricing .pricing-unlimited-trades-card__infinity {
  display: inline-flex;
  align-items: center;
}

.page--pricing .pricing-unlimited-trades-card__icon {
  width: 12px;
  height: 12px;
  color: #ffc107;
  flex: 0 0 auto;
}

.page--pricing .pricing-unlimited-trades-card__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.page--pricing .pricing-unlimited-trades-card__icon circle,
.page--pricing .pricing-unlimited-trades-card__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page--pricing .pricing-unlimited-trades-card__icon .pricing-unlimited-trades-card__icon-dot {
  fill: currentColor;
  stroke: none;
}

.page--pricing .pricing-unlimited-trades-card__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
}

.page--pricing .pricing-unlimited-trades-card__infinity {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(
    90deg,
    #f8d370 0%,
    #f0b02c 30%,
    #fff0b0 50%,
    #f0b02c 70%,
    #f8d370 100%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: pricingUnlimitedTradesCardShimmer 2s linear infinite;
}

@keyframes pricingUnlimitedTradesCardShimmer {
  from {
    background-position: -100% 0;
  }

  to {
    background-position: 200% 0;
  }
}

.site-page .hero__surface--with-demo {
  min-height: clamp(560px, 58vw, 700px);
  padding-right: clamp(368px, 37vw, 444px);
}

.site-page .hero__surface--with-demo::before,
.site-page .hero__surface--with-demo::after {
  display: none;
}

.site-page .hero__surface--with-demo > * {
  max-width: 35rem;
}

.site-page .hero__surface--with-demo > .pricing-motion,
.site-page .hero__surface--with-demo > .trade-demo {
  position: absolute;
  top: clamp(24px, 4vw, 42px);
  right: clamp(16px, 2.6vw, 24px);
  width: min(24.5vw, 308px);
  max-width: 308px;
  transform: none;
  z-index: 2;
}

.site-page .hero__surface--with-demo > .trade-demo {
  width: min(30vw, 392px);
  max-width: 392px;
}

.pricing-motion,
.trade-demo {
  display: flex;
  justify-content: flex-end;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(5, 10, 20, 0.18);
  box-shadow: 0 22px 48px rgba(8, 12, 23, 0.22);
  backdrop-filter: blur(14px);
}

.page--trade-on-chart .hero__surface--with-demo {
  min-height: clamp(720px, 74vw, 900px);
  padding-right: clamp(430px, 43vw, 532px);
}

.page--trade-on-chart .hero__surface--with-demo > * {
  max-width: 33rem;
}

.page--trade-on-chart .hero__surface--with-demo > .trade-demo {
  top: clamp(24px, 4vw, 40px);
  right: clamp(16px, 2.6vw, 24px);
  width: min(34vw, 430px);
  max-width: 430px;
}

.page--trade-on-chart .chart-demo {
  aspect-ratio: 1.16;
  border-radius: 24px;
}

.page--trade-on-chart .chart-demo__plot {
  inset: 8% 23.5% 9% 5.5%;
}

.page--trade-on-chart h1 {
  max-width: 8.2ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.chart-demo {
  --chart-frame-border: rgba(255, 255, 255, 0.09);
  --chart-frame-glow: rgba(49, 191, 99, 0.08);
  --chart-grid-line: rgba(255, 255, 255, 0.06);
  --chart-price: #31bf63;
  --chart-price-shadow: rgba(49, 191, 99, 0.3);
  --chart-price-border: rgba(49, 191, 99, 0.28);
  --chart-tgt-a: #159b57;
  --chart-tgt-b: #31bf63;
  --chart-tgt-guide: rgba(49, 191, 99, 0.56);
  --chart-tsl-a: #f29c1b;
  --chart-tsl-b: #ffb14c;
  --chart-tsl-guide: rgba(255, 177, 76, 0.56);
  --chart-sl-a: #e35151;
  --chart-sl-b: #ff6e6e;
  --chart-sl-guide: rgba(255, 110, 110, 0.5);
  --chart-candle-up: linear-gradient(180deg, rgba(76, 209, 110, 0.98), rgba(31, 152, 66, 0.92));
  --chart-candle-up-shadow: rgba(61, 196, 93, 0.18);
  --chart-candle-down: linear-gradient(180deg, rgba(244, 104, 112, 0.96), rgba(208, 55, 72, 0.9));
  --chart-candle-down-shadow: rgba(228, 84, 97, 0.16);
  position: relative;
  width: 100%;
  aspect-ratio: 1.16;
  border-radius: 30px;
  border: 1px solid var(--chart-frame-border);
  background:
    linear-gradient(180deg, rgba(9, 17, 31, 0.98), rgba(14, 24, 39, 0.98)),
    radial-gradient(circle at 76% 12%, var(--chart-frame-glow), transparent 30%);
  box-shadow: 0 28px 64px rgba(8, 12, 23, 0.42);
  overflow: hidden;
}

.chart-demo--pro {
  --chart-frame-border: rgba(255, 222, 143, 0.18);
  --chart-frame-glow: rgba(214, 154, 45, 0.18);
  --chart-price: #31bf63;
  --chart-price-shadow: rgba(49, 191, 99, 0.3);
  --chart-price-border: rgba(49, 191, 99, 0.28);
  --chart-tgt-a: #159b57;
  --chart-tgt-b: #31bf63;
  --chart-tgt-guide: rgba(49, 191, 99, 0.56);
  --chart-candle-up: linear-gradient(180deg, rgba(76, 209, 110, 0.98), rgba(31, 152, 66, 0.92));
  --chart-candle-up-shadow: rgba(61, 196, 93, 0.18);
  --chart-candle-down: linear-gradient(180deg, rgba(244, 104, 112, 0.96), rgba(208, 55, 72, 0.9));
  --chart-candle-down-shadow: rgba(228, 84, 97, 0.16);
}

.chart-demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.03), transparent 20%);
  pointer-events: none;
}

.chart-demo__loader {
  display: none;
}

.chart-demo__loader-wave {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: 124px;
  height: 18px;
  transform: translateX(-50%);
}

.chart-demo__loader-wave::before,
.chart-demo__loader-wave::after {
  content: '';
  position: absolute;
  inset-inline: 0;
}

.chart-demo__loader-wave::before {
  top: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

.chart-demo__loader-wave::after {
  top: 1px;
  width: 42px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
  filter: blur(0.4px);
  animation: chartLoaderSweep 1.36s linear infinite;
}

.chart-demo__brand {
  position: absolute;
  top: 16%;
  left: 50%;
  display: grid;
  gap: 6px;
  transform: translate(-50%, 0);
  text-align: center;
  animation: chartBrandMove 6.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.chart-demo__brand-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.44rem, 2.3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.94);
}

.chart-demo__brand-subtitles {
  position: relative;
  min-height: 0.95rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.68);
}

.chart-demo__brand-subtitle {
  position: absolute;
  inset: 0;
  display: block;
  text-transform: uppercase;
}

.chart-demo__brand-subtitle--loading {
  animation: chartLoadingCopy 6.2s ease-in-out infinite;
}

.chart-demo__brand-subtitle--resolved {
  opacity: 0;
  animation: chartResolvedCopy 6.2s ease-in-out infinite;
}

.chart-demo__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--chart-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--chart-grid-line) 1px, transparent 1px);
  background-size: 100% 33.333%, 10.6% 100%;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, transparent 6%, #000 20%, #000 100%);
}

.chart-demo__plot {
  position: absolute;
  inset: 9.5% 24.5% 9.5% 5%;
}

.chart-demo__candles {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: clamp(0px, 0.18vw, 1.5px);
}

.chart-demo__candle {
  position: relative;
  height: 100%;
  --wick-top: 70%;
  --wick-bottom: 16%;
  --body-top: 75%;
  --body-height: 10%;
  --candle-fill: var(--chart-candle-up);
  --candle-shadow: var(--chart-candle-up-shadow);
  transform-origin: bottom center;
}

.chart-demo__candle::before {
  content: '';
  position: absolute;
  top: var(--wick-top);
  bottom: var(--wick-bottom);
  left: 50%;
  width: 1.75px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  opacity: 0.7;
}

.chart-demo__candle::after {
  content: '';
  position: absolute;
  top: calc(var(--body-top) + var(--chart-candle-shift, 0px));
  left: 50%;
  width: min(14px, 84%);
  height: var(--body-height);
  transform: translateX(-50%);
  border-radius: 3px;
  background: var(--candle-fill);
  box-shadow: 0 0 0 1px var(--candle-shadow);
}

.chart-demo__candle:nth-child(1) { --wick-top: 73%; --wick-bottom: 16%; --body-top: 77%; --body-height: 9%; --candle-fill: var(--chart-candle-down); --candle-shadow: var(--chart-candle-down-shadow); }
.chart-demo__candle:nth-child(2) { --wick-top: 66%; --wick-bottom: 16%; --body-top: 70%; --body-height: 12%; }
.chart-demo__candle:nth-child(3) { --wick-top: 60%; --wick-bottom: 18%; --body-top: 65%; --body-height: 12%; }
.chart-demo__candle:nth-child(4) { --wick-top: 57%; --wick-bottom: 18%; --body-top: 62%; --body-height: 14%; --candle-fill: var(--chart-candle-down); --candle-shadow: var(--chart-candle-down-shadow); }
.chart-demo__candle:nth-child(5) { --wick-top: 48%; --wick-bottom: 18%; --body-top: 54%; --body-height: 15%; }
.chart-demo__candle:nth-child(6) { --wick-top: 44%; --wick-bottom: 18%; --body-top: 49%; --body-height: 16%; }
.chart-demo__candle:nth-child(7) { --wick-top: 36%; --wick-bottom: 16%; --body-top: 42%; --body-height: 18%; --candle-fill: var(--chart-candle-down); --candle-shadow: var(--chart-candle-down-shadow); }
.chart-demo__candle:nth-child(8) { --wick-top: 33%; --wick-bottom: 18%; --body-top: 38%; --body-height: 18%; }
.chart-demo__candle:nth-child(9) { --wick-top: 30%; --wick-bottom: 16%; --body-top: 34%; --body-height: 18%; }
.chart-demo__candle:nth-child(10) { --wick-top: 25%; --wick-bottom: 14%; --body-top: 30%; --body-height: 20%; --candle-fill: var(--chart-candle-down); --candle-shadow: var(--chart-candle-down-shadow); }
.chart-demo__candle:nth-child(11) { --wick-top: 18%; --wick-bottom: 14%; --body-top: 24%; --body-height: 22%; }

.chart-demo__price-line {
  position: absolute;
  left: 5%;
  right: 21.5%;
  top: 54%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--chart-price) 0 5px,
    transparent 5px 9px
  );
  box-shadow: 0 0 12px var(--chart-price-shadow);
  opacity: 0.92;
}

.chart-demo__price-tag,
.chart-demo__entry-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 12, 23, 0.74);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  font-variant-numeric: tabular-nums;
}

.chart-demo__price-tag {
  top: calc(54% - 12px);
  right: 3.5%;
  min-width: 78px;
  justify-content: center;
  border-color: var(--chart-price-border);
  color: var(--chart-price);
  box-shadow: 0 10px 22px rgba(5, 10, 19, 0.28);
}

.chart-demo__price-tag em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.56);
}

.chart-demo__price-tag strong {
  font-weight: 700;
  color: var(--chart-price);
  font-variant-numeric: tabular-nums;
}

.chart-demo__entry-tag {
  display: none;
}

.chart-demo__guide {
  position: absolute;
  left: 12px;
  right: 82px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  opacity: 0.92;
}

.chart-demo__guide--tgt {
  top: 26%;
  color: var(--chart-tgt-guide);
  border-color: var(--chart-tgt-guide);
}

.chart-demo__guide--sl {
  top: 62%;
  color: var(--chart-sl-guide);
  border-color: var(--chart-sl-guide);
}

.chart-demo__pill {
  position: absolute;
  left: 4.5%;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform-origin: left center;
  font-variant-numeric: tabular-nums;
}

.chart-demo__pill-label,
.chart-demo__pill-value {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.chart-demo__pill-label {
  border-radius: 12px 0 0 12px;
}

.chart-demo__pill-value {
  border-radius: 0 12px 12px 0;
}

.chart-demo__pill-label em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
}

.chart-demo__pill.is-active .chart-demo__pill-label em {
  opacity: 1;
  visibility: visible;
}

.chart-demo__pill--position {
  top: calc(54% - 12px);
}

.chart-demo__pill--tgt {
  top: calc(26% - 12px);
}

.chart-demo__pill--position .chart-demo__pill-label {
  background: rgba(16, 34, 53, 0.96);
  color: rgba(255, 255, 255, 0.94);
}

.chart-demo__pill--position .chart-demo__pill-value {
  background: rgba(15, 117, 63, 0.98);
  color: #e6ffef;
}

.chart-demo__pill--position.is-profit .chart-demo__pill-value {
  background: rgba(15, 117, 63, 0.98);
  color: #e6ffef;
}

.chart-demo__pill--position.is-loss .chart-demo__pill-value {
  background: rgba(211, 63, 78, 0.98);
  color: #ffe8ea;
}

.chart-demo__pill--tgt .chart-demo__pill-label {
  background: var(--chart-tgt-a);
  min-width: 50px;
  justify-content: space-between;
}

.chart-demo__pill--tgt .chart-demo__pill-value {
  background: var(--chart-tgt-b);
}

.chart-demo__pill--sl {
  top: calc(62% - 12px);
}

.chart-demo__pill--sl .chart-demo__pill-label {
  background: var(--chart-sl-a);
  min-width: 50px;
  justify-content: space-between;
}

.chart-demo__pill--sl .chart-demo__pill-value {
  background: var(--chart-sl-b);
}

.chart-demo__axis-pill {
  position: absolute;
  right: 3.5%;
  top: calc(26% - 10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 25, 0.86);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 22px rgba(5, 10, 19, 0.26);
}

.chart-demo__axis-pill.is-target-axis {
  color: rgba(231, 255, 250, 0.96);
  border-color: rgba(49, 191, 99, 0.28);
}

.chart-demo__axis-pill.is-stop-axis {
  color: rgba(255, 231, 231, 0.94);
  border-color: rgba(245, 117, 117, 0.28);
}

.chart-demo__touch {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  opacity: var(--chart-touch-opacity, 1);
  border-radius: 50%;
  border: 1.4px solid rgba(240, 246, 255, 0.56);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.chart-demo__touch::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.chart-demo__footer {
  position: absolute;
  left: 4.5%;
  right: 4.5%;
  bottom: 6%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.chart-demo__footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes chartLoaderFade {
  0%, 18% { opacity: 1; visibility: visible; }
  26%, 100% { opacity: 0; visibility: hidden; }
}

@keyframes chartBrandMove {
  0%, 12% { top: 14%; transform: translate(-50%, 0) scale(0.98); }
  20%, 30% { top: 50%; transform: translate(-50%, -50%) scale(1.02); }
  100% { top: 50%; transform: translate(-50%, -50%) scale(1.02); }
}

@keyframes chartLoadingCopy {
  0%, 18% { opacity: 1; transform: translateY(0); }
  24%, 100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes chartResolvedCopy {
  0%, 18% { opacity: 0; transform: translateY(6px); }
  24%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes chartCandleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes chartLoaderSweep {
  0% { transform: translateX(-24px); opacity: 0.4; }
  18% { opacity: 1; }
  100% { transform: translateX(106px); opacity: 0.24; }
}

.chart-demo.is-scripted {
  --chart-entry-y: 180px;
  --chart-price-y: 180px;
  --chart-tgt-y: 96px;
  --chart-sl-y: 238px;
  --chart-axis-y: 96px;
  --chart-tgt-guide-left: 132px;
  --chart-sl-guide-left: 132px;
  --chart-guide-right-gap: 76px;
  --chart-tgt-pill-shift: 0px;
  --chart-sl-pill-shift: 0px;
  --chart-tgt-scale: 1;
  --chart-sl-scale: 1;
  --chart-touch-x: 0px;
  --chart-touch-y: 0px;
  --chart-touch-scale: 0.82;
  --chart-touch-opacity: 0;
}

.chart-demo.is-scripted .chart-demo__guide,
.chart-demo.is-scripted .chart-demo__pill {
  animation: none !important;
}

.chart-demo.is-scripted .chart-demo__grid,
.chart-demo.is-scripted .chart-demo__plot,
.chart-demo.is-scripted .chart-demo__price-line,
.chart-demo.is-scripted .chart-demo__price-tag,
.chart-demo.is-scripted .chart-demo__entry-tag,
.chart-demo.is-scripted .chart-demo__guide,
.chart-demo.is-scripted .chart-demo__pill,
.chart-demo.is-scripted .chart-demo__axis-pill,
.chart-demo.is-scripted .chart-demo__touch,
.chart-demo.is-scripted .chart-demo__footer {
  opacity: 1;
  filter: saturate(1);
  transition: opacity 180ms ease-out, filter 180ms ease-out;
}

.chart-demo.is-scripted.is-ready .chart-demo__grid,
.chart-demo.is-scripted.is-ready .chart-demo__plot,
.chart-demo.is-scripted.is-ready .chart-demo__price-line,
.chart-demo.is-scripted.is-ready .chart-demo__price-tag,
.chart-demo.is-scripted.is-ready .chart-demo__entry-tag,
.chart-demo.is-scripted.is-ready .chart-demo__guide,
.chart-demo.is-scripted.is-ready .chart-demo__pill,
.chart-demo.is-scripted.is-ready .chart-demo__axis-pill,
.chart-demo.is-scripted.is-ready .chart-demo__touch,
.chart-demo.is-scripted.is-ready .chart-demo__footer {
  opacity: 1;
  filter: saturate(1);
}

.chart-demo.is-scripted .chart-demo__price-line {
  top: var(--chart-price-y);
}

.chart-demo.is-scripted .chart-demo__price-tag {
  top: calc(var(--chart-price-y) - 12px);
  min-width: 82px;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

.chart-demo.is-scripted .chart-demo__entry-tag {
  top: calc(var(--chart-entry-y) + 14px);
}

.chart-demo.is-scripted .chart-demo__guide {
  height: 1px;
  border-top: 0;
  background: repeating-linear-gradient(
    90deg,
    currentColor 0 4px,
    transparent 4px 7px
  );
}

.chart-demo.is-scripted .chart-demo__guide--tgt {
  top: var(--chart-tgt-y);
  left: var(--chart-tgt-guide-left);
  right: auto;
  width: max(28px, calc(100% - var(--chart-tgt-guide-left) - var(--chart-guide-right-gap)));
}

.chart-demo.is-scripted .chart-demo__guide--sl {
  top: var(--chart-sl-y);
  left: var(--chart-sl-guide-left);
  right: auto;
  width: max(28px, calc(100% - var(--chart-sl-guide-left) - var(--chart-guide-right-gap)));
}

.chart-demo.is-scripted .chart-demo__pill {
  font-variant-numeric: tabular-nums;
}

.chart-demo.is-scripted .chart-demo__pill--position {
  top: calc(var(--chart-entry-y) - 12px);
  left: 4.5%;
  transform: translate3d(0, 0, 0) scale(1);
}

.chart-demo.is-scripted .chart-demo__pill--position::before,
.chart-demo.is-scripted .chart-demo__pill--position::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--chart-price) 0 5px,
    transparent 5px 9px
  );
  box-shadow: 0 0 12px var(--chart-price-shadow);
}

.chart-demo.is-scripted .chart-demo__pill--position::before {
  right: calc(100% + 8px);
  width: 28px;
  transform: translateY(-50%);
}

.chart-demo.is-scripted .chart-demo__pill--position::after {
  left: calc(100% + 8px);
  width: 138px;
  transform: translateY(-50%);
}

.chart-demo.is-scripted .chart-demo__pill--tgt {
  top: calc(var(--chart-tgt-y) - 12px);
  left: calc(4.5% + var(--chart-tgt-pill-shift));
  transform: translate3d(0, 0, 0) scale(var(--chart-tgt-scale));
}

.chart-demo.is-scripted .chart-demo__pill--sl {
  top: calc(var(--chart-sl-y) - 12px);
  left: calc(4.5% + var(--chart-sl-pill-shift));
  transform: translate3d(0, 0, 0) scale(var(--chart-sl-scale));
}

.chart-demo.is-scripted .chart-demo__axis-pill {
  top: calc(var(--chart-axis-y) - 10px);
}

.chart-demo.is-scripted .chart-demo__axis-pill.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
}

.chart-demo.is-scripted .chart-demo__touch {
  left: var(--chart-touch-x);
  top: var(--chart-touch-y);
  transform: translate(-50%, -50%) scale(var(--chart-touch-scale));
}

.chart-demo.is-scripted .chart-demo__pill.is-active {
  filter: saturate(1.04);
}

@media (max-width: 1100px) {
  .site-page .hero__surface--with-demo {
    min-height: auto;
    padding-right: clamp(28px, 4vw, 44px);
    padding-bottom: clamp(28px, 4vw, 40px);
  }

  .site-page .hero__surface--with-demo > .pricing-motion,
  .site-page .hero__surface--with-demo > .trade-demo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 520px);
    margin-top: 28px;
    transform: none;
    justify-content: flex-start;
  }

  .chart-demo {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-page .hero__surface {
    padding: 24px 22px 216px;
  }

  .site-page h1 {
    max-width: 13.2ch;
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .site-page .hero__points li {
    padding: 14px 14px 15px;
  }

  .site-page .hero__surface--with-demo {
    padding: 24px 22px 28px;
  }

  .site-page .hero__surface--with-demo > .pricing-motion,
  .site-page .hero__surface--with-demo > .trade-demo {
    width: 100%;
    margin-top: 24px;
    justify-content: center;
  }

  .chart-demo {
    max-width: min(100%, 440px);
    aspect-ratio: 1.12;
    border-radius: 26px;
  }

  .chart-demo__footer span {
    min-height: 30px;
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chart-demo__loader,
  .chart-demo__brand,
  .chart-demo__brand-subtitle--loading,
  .chart-demo__brand-subtitle--resolved,
  .chart-demo__candle,
  .chart-demo__guide--tgt,
  .chart-demo__guide--sl,
  .chart-demo__pill--tgt,
  .chart-demo__pill--sl {
    animation: none !important;
  }

  .chart-demo__loader {
    opacity: 0;
    visibility: hidden;
  }
}

.page--pricing .pricing-feature-card--watchlist-add {
  grid-template-columns: minmax(0, 0.44fr) minmax(280px, 0.56fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(20, 22, 29, 0.96)),
    radial-gradient(circle at top right, rgba(56, 101, 255, 0.18), transparent 32%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 58px rgba(6, 10, 19, 0.22);
}

.page--pricing .pricing-feature-card--watchlist-add__copy {
  display: grid;
  align-content: start;
  gap: 4px;
}

.page--pricing .pricing-feature-card--watchlist-add::before {
  display: none;
}

.page--pricing .pricing-feature-card--watchlist-add__copy h3 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.4vw, 1.16rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page--pricing .pricing-feature-card--watchlist-add__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.3;
}

.page--pricing .pricing-feature-card--watchlist-add__demo {
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
}

.page--pricing .pricing-feature-card--watchlist-add__sheet {
  width: min(100%, 320px);
  padding: 12px 24px 20px;
  border-radius: 24px 24px 16px 16px;
  background: #141414;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.28);
}

.page--pricing .pricing-feature-card--watchlist-add__handle {
  display: block;
  width: 40px;
  height: 4px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(142, 148, 160, 0.38);
}

.page--pricing .pricing-feature-card--watchlist-add__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.page--pricing .pricing-feature-card--watchlist-add__symbol {
  display: grid;
  gap: 6px;
}

.page--pricing .pricing-feature-card--watchlist-add__symbol strong {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page--pricing .pricing-feature-card--watchlist-add__symbol span {
  width: fit-content;
  padding: 2px 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page--pricing .pricing-feature-card--watchlist-add__bookmark {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(145deg, rgba(39, 39, 42, 0.94), rgba(20, 20, 23, 0.96));
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.34),
    -2px -2px 4px rgba(255, 255, 255, 0.03);
  animation: pricing-watchlist-add-pulse 3.3s ease-in-out infinite;
}

.page--pricing .pricing-feature-card--watchlist-add__bookmark span {
  width: 12px;
  height: 16px;
  background: #80889a;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
  animation: pricing-watchlist-add-bookmark 3.3s ease-in-out infinite;
}

@keyframes pricing-watchlist-add-pulse {
  0%, 24%, 100% {
    transform: scale(1);
    box-shadow:
      4px 4px 8px rgba(0, 0, 0, 0.34),
      -2px -2px 4px rgba(255, 255, 255, 0.03);
  }

  42%, 66% {
    transform: scale(1.05);
    box-shadow:
      4px 4px 8px rgba(0, 0, 0, 0.34),
      -2px -2px 4px rgba(255, 255, 255, 0.03),
      0 0 0 8px rgba(66, 122, 255, 0.16),
      0 16px 28px rgba(20, 40, 97, 0.34);
  }
}

@keyframes pricing-watchlist-add-bookmark {
  0%, 24%, 100% {
    background: #7b8497;
  }
  42%, 66% {
    background: #5d87ff;
  }
}

@media (max-width: 900px) {
  .page--pricing .pricing-feature-card--watchlist-add {
    grid-template-columns: 1fr;
  }

  .page--pricing .pricing-feature-card--watchlist-add__demo {
    justify-items: start;
  }
}

.page--pricing .pricing-one-swipe-exit-card__copy {
  display: grid;
  gap: 8px;
}

.page--pricing .pricing-one-swipe-exit-card__subtitle {
  margin: 0;
}

.page--pricing .pricing-one-swipe-exit-card__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.page--pricing .pricing-one-swipe-exit-card__shell {
  position: relative;
  width: 150px;
  height: 44px;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.2),
    -1px -1px 2px rgba(255, 255, 255, 0.05);
}

.page--pricing .pricing-one-swipe-exit-card__track {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 59, 48, 0) 0%, rgba(255, 59, 48, 0.12) 50%, rgba(255, 59, 48, 0) 100%),
    rgba(32, 32, 32, 0.82);
  background-size: 180% 100%, 100% 100%;
  animation: pricing-one-swipe-exit-card-shimmer 1.5s ease-in-out infinite;
}

.page--pricing .pricing-one-swipe-exit-card__label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-left: 14px;
  color: rgba(255, 59, 48, 0.98);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.page--pricing .pricing-one-swipe-exit-card__thumb {
  position: absolute;
  top: 0;
  left: 0.5px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.5), rgba(255, 59, 48, 0.3));
  border: 1px solid rgba(255, 59, 48, 0.3);
  box-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    -1px -1px 2px rgba(255, 255, 255, 0.05);
}

.page--pricing .pricing-one-swipe-exit-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  line-height: 0;
}

.page--pricing .pricing-one-swipe-exit-card__arrow svg {
  display: block;
  width: 19px;
  height: 19px;
}

@keyframes pricing-one-swipe-exit-card-shimmer {
  0%,
  100% {
    background-position: -140% 0, 0 0;
  }
  50% {
    background-position: 140% 0, 0 0;
  }
}

@media (max-width: 760px) {
  .page--pricing h1 {
    max-width: 7.1ch;
    font-size: clamp(2.35rem, 11.2vw, 3.9rem);
  }

  .page--pricing .pricing-paywall {
    gap: 18px;
    padding: 20px;
    border-radius: 30px;
  }

  .page--pricing .section-header--pricing-plans {
    margin-bottom: 10px;
  }

  .page--pricing .section-header--pricing-plans h2 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 0.98;
  }

  .page--pricing .section-header--pricing-plans p {
    font-size: 1rem;
  }

  .page--pricing .plan-card {
    gap: 16px;
    padding: 20px;
    border-radius: 28px;
  }

  .page--pricing .plan-card__comparison {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
  }

  .page--pricing .plan-card__comparison-side {
    width: 100%;
    padding: 12px;
  }

  .page--pricing .plan-card__comparison-vs {
    width: 100%;
    height: auto;
    padding: 4px 0;
    border-radius: 999px;
  }

  .page--pricing .plan-card__comparison-value {
    font-size: clamp(1.3rem, 6.4vw, 1.72rem);
  }

  .page--pricing .plan-card__stats {
    gap: 6px;
  }

  .page--pricing .plan-card__stats span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .page--pricing .plan-card__list {
    padding-top: 14px;
  }

  .page--pricing .plan-footnote {
    margin: 2px 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .page--pricing .pricing-feature-stack {
    gap: 14px;
  }

  .page--pricing .pricing-feature-card,
  .page--pricing .pricing-feature-card--unlimited-trades,
  .page--pricing .pricing-feature-card--watchlist-add {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 28px;
  }

  .page--pricing .pricing-feature-card--reverse .pricing-feature-card__copy,
  .page--pricing .pricing-feature-card--reverse .pricing-feature-card__content,
  .page--pricing .pricing-feature-card--reverse .pricing-unlimited-trades-card__copy,
  .page--pricing .pricing-feature-card--reverse .pricing-feature-card--watchlist-add__copy {
    order: 0;
  }

  .page--pricing .pricing-feature-card--reverse .pricing-feature-card__preview,
  .page--pricing .pricing-feature-card--reverse .pricing-unlimited-trades-card__preview,
  .page--pricing .pricing-feature-card--reverse .pricing-feature-card--watchlist-add__demo {
    order: 0;
  }

  .page--pricing .pricing-feature-card__copy,
  .page--pricing .pricing-unlimited-trades-card__copy,
  .page--pricing .pricing-feature-card--watchlist-add__copy {
    gap: 8px;
  }

  .page--pricing .pricing-feature-card__content h3,
  .page--pricing .pricing-feature-card__copy h3,
  .page--pricing .pricing-unlimited-trades-card__copy h3 {
    max-width: none;
    font-size: clamp(2rem, 9.6vw, 2.85rem);
    line-height: 0.9;
  }

  .page--pricing .pricing-feature-card__content p,
  .page--pricing .pricing-feature-card__copy p,
  .page--pricing .pricing-unlimited-trades-card__copy p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.45;
  }

  .page--pricing .pricing-feature-card__preview,
  .page--pricing .pricing-unlimited-trades-card__preview,
  .page--pricing .pricing-feature-card--watchlist-add__demo {
    min-height: 0;
    padding: 14px;
    border-radius: 22px;
  }

  .page--pricing .pricing-trade-chart-card__preview {
    min-height: 0;
    padding: 14px;
  }

  .page--pricing .pricing-trade-chart-card__preview .chart-demo--pricing-card {
    width: 100%;
    max-width: 320px;
  }

  .page--pricing .pricing-feature-card__preview--limit-orders,
  .page--pricing .pricing-feature-card__preview--watchlists,
  .page--pricing .pricing-feature-card__preview--exit-all,
  .page--pricing .pricing-feature-card__preview--advanced-orders {
    justify-items: center;
  }

  .page--pricing .pricing-limit-selector,
  .page--pricing .pricing-watchlists-card,
  .page--pricing .pricing-watchlists-demo,
  .page--pricing .pricing-exit-demo,
  .page--pricing .pricing-advanced-orders-demo,
  .page--pricing .pricing-feature-card--watchlist-add__sheet {
    width: 100%;
    max-width: 100%;
  }

  .page--pricing .pricing-limit-selector {
    width: min(100%, 208px);
    height: 46px;
    min-height: 0;
  }

  .page--pricing .pricing-limit-selector__track {
    height: 46px;
    padding: 3px;
    border-radius: 23px;
  }

  .page--pricing .pricing-limit-selector__thumb {
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: 38px;
    border-radius: 19px;
  }

  .page--pricing .pricing-limit-selector__tab {
    min-height: 38px;
    gap: 3px;
    font-size: 0.88rem;
    font-weight: 600;
  }

  .page--pricing .pricing-limit-selector__pro {
    width: auto;
    min-width: 30px;
    height: 14px;
    padding: 0 6px;
    border-radius: 7px;
    font-size: 0.52rem;
  }

  .page--pricing .pricing-watchlists-card__rail {
    min-height: 44px;
    padding-inline: 2px;
  }

  .page--pricing .pricing-watchlists-card__tab {
    flex-basis: 96px;
    min-height: 40px;
    border-radius: 20px;
    font-size: 0.78rem;
  }

  .page--pricing .pricing-one-swipe-exit-card__preview {
    min-height: 120px;
  }

  .page--pricing .pricing-one-swipe-exit-card__shell {
    width: min(100%, 188px);
  }

  .page--pricing .pricing-unlimited-trades-card__preview {
    justify-content: flex-start;
    padding: 0;
  }

  .page--pricing .pricing-unlimited-trades-card__pill {
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
  }

  .page--pricing .pricing-unlimited-trades-card__label {
    font-size: 0.82rem;
  }

  .page--pricing .pricing-unlimited-trades-card__infinity {
    font-size: 1.2rem;
  }

  .page--pricing .pricing-advanced-orders-demo {
    padding: 0;
  }

  .page--pricing .pricing-advanced-orders-demo__card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
  }

  .page--pricing .pricing-advanced-orders-demo__side {
    grid-column: 2;
    justify-self: start;
    justify-items: start;
    gap: 6px;
  }

  .page--pricing .pricing-feature-card--watchlist-add__copy h3 {
    font-size: 1.5rem;
    line-height: 1;
  }

  .page--pricing .pricing-feature-card--watchlist-add__subtitle {
    font-size: 0.9rem;
  }

  .page--pricing .pricing-feature-card--watchlist-add__demo {
    padding: 0;
    border: 0;
    background: none;
  }

  .page--pricing .pricing-feature-card--watchlist-add__sheet {
    padding: 12px 18px 18px;
    border-radius: 24px;
  }
}

@media (max-width: 767px) {
  .home-page .story,
  .home-page .home-map,
  .home-page .home-demo-band,
  .home-page .home-signal,
  .home-page .home-journey {
    padding-top: 72px;
  }

  .home-page .home-demo-band {
    gap: 22px;
    padding-inline: 20px;
    justify-items: center;
  }

  .home-page .home-demo-band__copy {
    width: min(100%, 352px);
    margin-inline: auto;
    text-align: center;
  }

  .home-page .home-demo-band__copy .home-section__title,
  .home-page .home-demo-band__copy .home-section__body {
    margin-inline: auto;
    text-align: center;
  }

  .home-page .home-demo-band__facts {
    justify-content: center;
  }

  .home-page .home-demo-band__visual {
    width: 100%;
    justify-content: center;
    margin-inline: auto;
  }

  .home-page .home-demo-band__visual .chart-demo {
    width: min(100%, 316px);
    aspect-ratio: 1.08;
    margin-inline: auto;
  }

  .home-page .home-map__module {
    gap: 14px;
  }

  .home-page .home-map__panel {
    gap: 14px;
    padding: 16px;
    border-radius: 26px;
  }

  .home-page .home-map__copy {
    padding: 0;
  }

  .home-page .home-map__copy h3 {
    max-width: none;
    font-size: clamp(1.72rem, 8.4vw, 2.32rem);
    line-height: 0.94;
  }

  .home-page .home-map__copy p {
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .home-page .home-map__list {
    gap: 10px;
    margin-top: 14px;
  }

  .home-page .home-map__list li {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .home-page .home-map__facts {
    gap: 8px;
    margin-top: 14px;
  }

  .home-page .home-map__facts span {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .home-page .home-map__figure {
    min-height: 0;
    padding: 10px 12px 0;
    background: none;
    display: flex;
    justify-content: center;
  }

  .home-page .home-map__figure img {
    width: min(100%, 148px);
    max-height: 312px;
    filter: drop-shadow(0 20px 36px rgba(16, 28, 45, 0.14));
  }

  .home-page .story__copy {
    margin: 0 auto 26px;
  }

  .home-page .story__body {
    max-width: 340px;
    font-size: 1.04rem;
    line-height: 1.36;
  }

  .home-page .story__links {
    gap: 10px;
    margin-top: 18px;
  }

  .home-page .story__links a {
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .home-page .story__stage {
    max-width: 312px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
  }

  .home-page .story__shot,
  .home-page .story__shot--main,
  .home-page .story__shot--offset,
  .home-page .story--learning .story__shot--main,
  .home-page .story--learning .story__shot--offset,
  .home-page .story--confidence .story__shot--main,
  .home-page .story--confidence .story__shot--offset {
    width: 100%;
    margin: 0;
  }

  .home-page .story__shot img {
    width: 100%;
    max-width: none;
    max-height: 332px;
  }

  .home-page .story__shot--main {
    transform: translate3d(0, -8px, 0) rotate(-4deg);
  }

  .home-page .story__shot--offset {
    transform: translate3d(0, 8px, 0) rotate(4deg);
  }

  .home-page .story.is-visible .story__shot--main {
    transform: translate3d(0, -8px, 0) rotate(-4deg);
  }

  .home-page .story.is-visible .story__shot--offset {
    transform: translate3d(0, 8px, 0) rotate(4deg);
  }
}

body.footer-shell-page {
  background: #f7f7f7;
  overflow-x: clip;
}

body.footer-shell-page::before,
body.footer-shell-page::after {
  content: none;
}

body.footer-shell-page > main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #f7f7f7;
  background-image: none;
  border-bottom-right-radius: 64px;
  border-bottom-left-radius: 64px;
  box-shadow: none;
  isolation: auto;
  transition: none;
}

body.footer-shell-page > main::after {
  content: none;
}

body.footer-shell-page .site-footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
  color: #fff;
  background-image:
    url('/assets/images/footer-dark-noise.png'),
    linear-gradient(#393737, #1b1b1b);
  background-position: 0 0, 0 0;
  background-size: 80px 80px, auto;
  margin-top: -64px;
  padding-top: 150px;
  overflow: hidden;
}

body.footer-shell-page .site-footer::before {
  content: none;
}

body.footer-shell-page .site-footer__inner {
  position: relative;
  z-index: 1;
  gap: 0;
}

body.footer-shell-page .footer-menu {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-columns: 0.75fr repeat(4, minmax(0, 1fr));
  align-items: start;
  justify-items: start;
  margin-bottom: 64px;
}

body.footer-shell-page .footer-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 14px;
}

body.footer-shell-page .footer-heading {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

body.footer-shell-page .footer-link {
  display: block;
  margin-bottom: 12px;
  color: #888787;
  font-size: 18px;
  line-height: 1.2;
  transition: color 0.15s;
}

body.footer-shell-page .footer-link:hover {
  color: #ffffff;
}

body.footer-shell-page .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
}

body.footer-shell-page .footer-logo__icon {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
}

body.footer-shell-page .footer-large-logo {
  width: 100%;
  position: relative;
  top: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(4.6rem, 11.8vw, 11rem);
  font-weight: 600;
  line-height: 0.76;
  letter-spacing: -0.078em;
  color: #f8f4ec;
  white-space: nowrap;
}

@media (max-width: 980px) {
  body.footer-shell-page .footer-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.footer-shell-page .footer-large-logo {
    font-size: clamp(4.4rem, 16vw, 8rem);
  }
}

@media (max-width: 760px) {
  body.footer-shell-page > main {
    border-bottom-right-radius: 48px;
    border-bottom-left-radius: 48px;
  }

  body.footer-shell-page .site-footer {
    margin-top: -48px;
    padding-top: 120px;
  }

  body.footer-shell-page .footer-menu {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }

  body.footer-shell-page .footer-cell {
    padding-top: 0;
  }

  body.footer-shell-page .footer-large-logo {
    font-size: clamp(4.2rem, 21vw, 6.8rem);
  }
}

@media (max-width: 420px) {
  body.footer-shell-page > main {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  body.footer-shell-page .site-footer {
    margin-top: -40px;
    padding-top: 88px;
  }

  body.footer-shell-page .footer-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 18px;
    grid-row-gap: 28px;
    margin-bottom: 28px;
  }

  body.footer-shell-page .footer-logo {
    grid-column: 1 / -1;
    margin-bottom: -6px;
  }

  body.footer-shell-page .footer-cell {
    min-width: 0;
  }

  body.footer-shell-page .footer-heading {
    margin-bottom: 14px;
    font-size: 0.98rem;
  }

  body.footer-shell-page .footer-link {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.12;
  }

  body.footer-shell-page .footer-large-logo {
    font-size: clamp(3.4rem, 19vw, 5.6rem);
    letter-spacing: -0.07em;
  }
}

/* =============================================================
   V4 polish pass — UI tightening, a11y, and paint-performance.
   Additive only. Does not override prior rules.
   ============================================================= */

/* Nicer heading line breaks on supporting browsers (Chrome, Safari, FF). */
h1,
h2,
h3,
.hero__title,
.privacy-title,
.section-title,
.story__title,
.home-section__title,
.final-cta__title,
.plan-card h3,
.proof-card h3,
.home-proof-card h3,
.home-map__copy h3,
.app-map__copy h3,
.workflow__step h3,
.screenshot-card h3,
.link-card h3,
.home-journey__card h3 {
  text-wrap: balance;
}

/* Avoid orphaned trailing words on lede paragraphs. */
.lede,
.hero__summary,
.hero-stage__caption,
.home-section__body,
.story__body {
  text-wrap: pretty;
}

/* Paint perf: defer rendering work on below-fold sections until near viewport.
   Browsers without support ignore these properties. */
.page-section,
.home-demo-band,
.home-map,
.home-signal,
.home-journey,
.story,
.final-cta {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

/* Keep the immediate hero/first-screen fully painted so LCP is not regressed. */
.hero,
.hero__inner,
.hero__surface,
.hero__copy,
.hero-stage {
  content-visibility: visible;
}

/* Stronger keyboard-only focus rings without affecting mouse users. */
:where(a, button, summary, [role='button'], [role='tab'], input, select, textarea):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 10px;
}

.btn:focus-visible,
.site-nav__cta:focus-visible,
.store-button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

/* Subtle hover lift on common cards using transform only (compositor-friendly). */
@media (hover: hover) and (pointer: fine) {
  .link-card,
  .proof-card,
  .home-proof-card,
  .home-journey__card,
  .screenshot-card,
  .workflow__step {
    transition:
      transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1),
      box-shadow 220ms ease,
      border-color 220ms ease;
    will-change: transform;
  }

  .link-card:hover,
  .proof-card:hover,
  .home-proof-card:hover,
  .home-journey__card:hover,
  .screenshot-card:hover,
  .workflow__step:hover {
    transform: translate3d(0, -2px, 0);
  }
}

/* Tap targets feel solid on touch without changing layout. */
@media (hover: none) {
  .link-card:active,
  .proof-card:active,
  .home-proof-card:active,
  .home-journey__card:active {
    transform: scale(0.992);
    transition: transform 120ms ease;
  }
}

/* Tighter motion budget for reduced-motion users across every page, not just home. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Image rendering hints — crisp app screenshots, no smoothing artifacts. */
.carousel__slide img,
.story__shot img,
.home-map__figure img,
.app-map__figure img,
.screenshot-card img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Safer text selection color across the brand palette. */
::selection {
  background-color: rgba(10, 167, 160, 0.28);
  color: var(--navy);
}
