:root {
  --text: #f3f6fb;
  --muted: #98a3b8;
  --line: rgba(255,255,255,.085);
  --blue-2: #5b7cff;
  --green: #16c784;
  --shadow: 0 18px 65px rgba(0,0,0,.38);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  zoom: .8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 15% 0%, rgba(62,93,255,.18), transparent 34%),radial-gradient(circle at 92% 20%, rgba(115,54,255,.14), transparent 30%),linear-gradient(180deg, #05070b 0%, #070914 100%);
  color: var(--text);
}

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

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

.page-shell {
  overflow: hidden;
}

.section-wrap,
.site-header {
  width: min(100% - 64px, 1240px);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 22px;
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  background: rgba(10,13,20,.72);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  background: rgba(9,12,18,.88);
  border-color: rgba(255,255,255,.09);
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(123,58,237,.26));
}

.brand-name {
  font-size: 31px;
  line-height: 1;
  color: #eef2ff;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #c2cad8;
  font-size: 18px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,var(--blue-2),transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
  transition: transform .2s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

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

.button-small {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 16px;
}

.button-primary {
  background: linear-gradient(135deg,#5f78ff,#5770ff 55%, #7b5cff);
  box-shadow: 0 16px 32px rgba(93,114,255,.30);
}

.button-primary:hover {
  box-shadow: 0 20px 36px rgba(93,114,255,.36);
}

.button-secondary,
.button-ghost {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.03);
  color: #f5f7ff;
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "badge" "heading" "stage";
  gap: 26px;
  align-items: start;
  min-height: calc(100vh - 118px);
  padding-top: 64px;
  padding-bottom: 60px;
}

.hero-badge {
  grid-area: badge;
}

.hero-heading {
  grid-area: heading;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px,5vw,62px);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(73,123,255,.28);
  background: rgba(23,34,76,.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9ab0ff;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22,199,132,.12);
}

.hero-stage {
  grid-area: stage;
  position: relative;
  width: 100%;
  min-height: 560px;
  margin-top: 2px;
}

.hero-lead {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  max-width: 48ch;
}

.hero-chart-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  margin-top: 24px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.hero-actions,
.preview-glow,
.terminal-card,
.chart-only-card,
.hero-chart-frame {
  display: none;
}

.about-section {
  padding-top: 38px;
  padding-bottom: 96px;
  scroll-margin-top: 120px;
}

.about-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 72px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.20) 12%, rgba(255,255,255,.20) 88%, transparent 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 88px;
  align-items: start;
}

.about-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(40px, 4vw, 55px);
  line-height: 1.02;
  letter-spacing: -.048em;
}

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

.about-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-copy .about-lead {
  color: #dfe6f4;
  font-size: 22px;
  line-height: 1.55;
}

.about-copy strong {
  color: #f3f6fb;
  font-weight: 750;
}

.about-copy .about-disclaimer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #7f8ba3;
  font-size: 15px;
  line-height: 1.7;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 48px;
}

.section-heading.section-heading-wide {
  max-width: 100%;
}

.section-heading h2,
.trust-section h2,
.cta h2,
.product-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(38px,4.9vw,70px);
  line-height: 1.02;
  letter-spacing: -.048em;
}

.section-heading.compact {
  max-width: 560px;
  margin-bottom: 0;
}

.section-heading p,
.product-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.feature-section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-carousel {
  position: relative;
}

.feature-carousel-nav {
  width: 100%;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: 56px minmax(200px, 225px) 1fr minmax(200px, 225px) 56px;
  gap: 12px;
  align-items: center;
}

.feature-arrow,
.feature-peek-card {
  appearance: none;
  border: 1px solid rgba(255,255,255,.13);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.feature-arrow {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.feature-arrow svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #e7edfb;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-arrow:hover,
.feature-peek-card:hover {
  transform: translateY(-3px);
  border-color: rgba(115,128,255,.52);
  background: rgba(91,78,255,.09);
  box-shadow: 0 16px 38px rgba(0,0,0,.26);
}

.feature-peek-card {
  min-height: 78px;
  padding: 8px 12px;
  border-radius: 19px;
  background:
    radial-gradient(circle at 12% 25%, rgba(88,72,255,.12), transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.feature-peek-card[data-feature-prev-card] {
  grid-column: 2;
}

.feature-peek-card[data-feature-next-card] {
  grid-column: 4;
}

.feature-arrow[data-feature-prev] {
  grid-column: 1;
}

.feature-arrow[data-feature-next] {
  grid-column: 5;
}

.feature-peek-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(121,139,255,.32);
  background: rgba(10,15,28,.92);
  box-shadow: inset 0 0 24px rgba(83,72,255,.07);
}

.feature-peek-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #9fb0ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-peek-card > strong {
  min-width: 0;
  color: #f2f5ff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-panel-stack {
  position: relative;
}

.feature-panel {
  width: min(74%, 940px);
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 30px;
  padding: 30px;
  background:
    radial-gradient(circle at 86% 4%, rgba(92,74,255,.12), transparent 27%),
    linear-gradient(145deg, rgba(18,22,35,.96), rgba(8,10,17,.98));
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
  overflow: hidden;
  animation: featurePanelIn .34s cubic-bezier(.2,.7,.2,1) both;
}

.feature-panel[hidden] {
  display: none;
}

@keyframes featurePanelIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feature-panel-copy {
  width: 100%;
  max-width: none;
  margin-bottom: 30px;
}

.feature-panel h3 {
  max-width: none;
  margin: 0;
  font-size: clamp(32px, 3.65vw, 50px);
  line-height: 1.04;
  letter-spacing: -.042em;
}

.feature-panel-copy > p {
  max-width: none;
  margin: 18px 0 0;
  color: #9ca7bb;
  font-size: 17px;
  line-height: 1.7;
}


.feature-demo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 24px;
  background: #03060b;
  box-shadow: 0 20px 48px rgba(0,0,0,.32);
}

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

.feature-demo-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-panel-sidepanel {
  padding: 30px 32px 34px;
}

.feature-side-sections {
  display: grid;
  gap: 34px;
}

.feature-side-row {
  display: grid;
  align-items: center;
  gap: 34px;
}

.feature-side-row-top {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 280px);
}

.feature-side-row-bottom {
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
}

.feature-side-copy {
  min-width: 0;
}

.feature-side-copy h3,
.feature-side-copy h4 {
  margin: 0;
  max-width: none;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.feature-side-copy h3 {
  font-size: clamp(30px, 3.15vw, 46px);
}

.feature-side-copy h4 {
  font-size: clamp(24px, 2.35vw, 34px);
}

.feature-side-copy p {
  margin: 16px 0 0;
  color: #9ca7bb;
  font-size: 17px;
  line-height: 1.7;
}

.feature-side-copy-secondary {
  align-self: center;
}

.feature-sidepanel-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
  background: #f2f3f5;
}

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

.feature-sidepanel-shot-menu,
.feature-sidepanel-shot-news {
  width: 100%;
  max-width: 280px;
}

.feature-sidepanel-shot-menu {
  justify-self: end;
}

.feature-sidepanel-shot-news {
  justify-self: start;
}

.feature-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.feature-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #303748;
  transition: width .25s ease, background .25s ease;
}

.feature-progress-dot.is-active {
  width: 28px;
  background: #667cff;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 92px;
  align-items: center;
}

.steps-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b0e16;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
}

.step>span {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(35,114,255,.10);
  border: 1px solid rgba(35,114,255,.20);
  display: grid;
  place-items: center;
  color: #82a9ff;
  font-size: 11px;
  font-weight: 900;
}

.step b {
  font-size: 16px;
}

.step p {
  margin: 7px 0 0;
  color: #7e879b;
  font-size: 13px;
}

.product-panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg,#0e121c,#090c13);
  min-height: 520px;
  padding: 52px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 62px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-panel::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -140px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(35,114,255,.15),transparent 68%);
}

.product-copy {
  position: relative;
  z-index: 1;
}

.chip-row {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.chip-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 800;
  color: #80899b;
}

.chip-row .active {
  background: #1652c8;
  border-color: #2f75ff;
  color: white;
}

.feed-preview {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #080a10;
  padding: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  transform: rotate(1.5deg);
}

.feed-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(239,74,80,.55);
  margin-bottom: 8px;
  background: linear-gradient(90deg,rgba(239,74,80,.06),transparent);
}

.feed-row:last-child {
  margin-bottom: 0;
}

.feed-row div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feed-row b {
  font-size: 12px;
}

.feed-row span {
  color: #9d75ff;
  font-size: 10px;
}

.feed-row strong {
  font-size: 12px;
  align-self: end;
}

.feed-row small {
  grid-column: 2;
  color: #737c8d;
  font-size: 9px;
  text-align: right;
}

.trust-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 90px;
  padding-bottom: 90px;
}

.trust-points {
  display: grid;
  gap: 0;
}

.trust-points p {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: #8f98ab;
  line-height: 1.65;
}

.trust-points p:first-child {
  padding-top: 0;
}

.trust-points p:last-child {
  border-bottom: 0;
}

.trust-points b {
  color: #f1f4fb;
}

.faq-section {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 90px;
  align-items: start;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 750;
  position: relative;
  padding-right: 30px;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: #7e8799;
}

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

.faq-list p {
  color: #8992a4;
  line-height: 1.7;
  max-width: 760px;
  margin: 14px 0 0;
}

.cta {
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 54px;
  min-height: 290px;
  border: 1px solid rgba(86,113,255,.22);
  border-radius: 32px;
  background: radial-gradient(circle at 80% 20%,rgba(82,72,255,.20),transparent 35%),linear-gradient(135deg,#0e1422,#0a0d14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta .button {
  flex: 0 0 auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 38px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  color: #727b8e;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: #8992a4;
  font-size: 12px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  grid-column: 1/-1;
  margin: 20px 0 0;
  color: #555e70;
  font-size: 11px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.footer-brand-name {
  font-size: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width:980px) {
  .feature-carousel-nav {
    grid-template-columns: 56px minmax(0,1fr) minmax(0,1fr) 56px;
    gap: 12px;
  }

  .feature-arrow[data-feature-prev] {
    grid-column: 1;
  }

  .feature-peek-card[data-feature-prev-card] {
    grid-column: 2;
  }

  .feature-peek-card[data-feature-next-card] {
    grid-column: 3;
  }

  .feature-arrow[data-feature-next] {
    grid-column: 4;
  }

  .feature-peek-card {
    min-height: 86px;
    padding: 14px 16px;
  }

  .feature-peek-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .feature-peek-card > strong {
    font-size: 16px;
  }

  .feature-panel {
    width: min(88%, 860px);
    padding: 28px;
  }
}

@media (max-width:1180px) {
  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-lead {
    max-width: 44ch;
  }

  .split-section,
  .product-panel,
  .trust-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-panel {
    padding: 36px;
  }

  .section-heading.compact {
    max-width: 760px;
  }

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

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

@media (max-width:820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .site-header>.button {
    display: none;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-name {
    font-size: 26px;
  }

  .hero h1 {
    font-size: 50px;
    max-width: none;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-lead {
    position: relative;
    top: auto;
    left: auto;
    max-width: 38ch;
    margin-bottom: 14px;
  }

  .hero-chart-main {
    margin-top: 0;
  }
}

@media (max-width:640px) {
  .section-wrap,
  .site-header {
    width: min(100% - 24px,1240px);
  }

  .site-header {
    margin-top: 8px;
    padding: 14px 16px;
  }

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

  .hero {
    padding-top: 76px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 42px;
    max-width: none;
  }

  .hero-lead {
    font-size: 16px;
    max-width: none;
  }

  .hero-chart-main {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }

  .about-section {
    padding-top: 24px;
    padding-bottom: 76px;
  }

  .about-divider {
    margin-bottom: 52px;
  }

  .about-heading h2 {
    font-size: 38px;
  }

  .about-copy .about-lead {
    font-size: 20px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .button-small {
    width: auto;
  }
.section {
    padding: 76px 0;
  }

  .section-heading h2,
  .trust-section h2,
  .cta h2,
  .product-copy h2 {
    font-size: 38px;
  }

  .product-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .feed-row {
    grid-template-columns: 1fr;
  }

  .feed-row strong,
  .feed-row small {
    grid-column: 1;
  }

  .feed-row small {
    text-align: left;
  }

  .trust-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .faq-section {
    gap: 26px;
  }

  .cta {
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
  }

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

  .copyright {
    grid-column: 1;
  }

  .terminal-topbar {
    grid-template-columns: auto 1fr auto;
  }

  .window-dots {
    display: none;
  }
}

@media (max-width:640px) {
  .feature-showcase-section {
    padding-top: 76px;
  }

  .feature-section-lead {
    font-size: 16px;
  }

  .feature-carousel-nav {
    grid-template-columns: 46px minmax(0,1fr) minmax(0,1fr) 46px;
    gap: 8px;
  }

  .feature-arrow {
    width: 46px;
    height: 54px;
    border-radius: 15px;
  }

  .feature-peek-card {
    min-height: 72px;
    padding: 10px;
    border-radius: 17px;
    justify-content: center;
    gap: 9px;
  }

  .feature-peek-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
  }

  .feature-peek-icon svg {
    width: 22px;
    height: 22px;
  }

  .feature-peek-card > strong {
    font-size: 13px;
  }

  .feature-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .feature-panel h3 {
    font-size: 34px;
  }

  .feature-panel-copy > p {
    font-size: 16px;
  }

  .feature-demo-frame {
    margin-inline: -10px;
    border-radius: 20px;
  }

  .feature-side-sections {
    gap: 22px;
  }

  .feature-side-row-top {
    grid-template-columns: minmax(0, 1.1fr) 220px;
    gap: 18px;
  }

  .feature-side-row-bottom {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
  }

  .feature-sidepanel-shot-menu,
  .feature-sidepanel-shot-news {
    max-width: 220px;
    width: 100%;
  }
}

@media (max-width:640px) {
  .feature-side-sections {
    gap: 20px;
  }

  .feature-side-row,
  .feature-side-row-top,
  .feature-side-row-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-sidepanel-shot-menu,
  .feature-sidepanel-shot-news {
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width:900px) and (min-width:641px) {
  .feature-side-row-top {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 24px;
  }

  .feature-side-row-bottom {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
  }

  .feature-sidepanel-shot-menu,
  .feature-sidepanel-shot-news {
    max-width: 240px;
  }
}

@media (max-width:760px) and (min-width:641px) {
  .feature-panel-sidepanel {
    padding: 24px 20px 26px;
  }

  .feature-side-copy h3 {
    font-size: 32px;
  }

  .feature-side-copy h4 {
    font-size: 24px;
  }

  .feature-side-copy p {
    font-size: 15px;
    line-height: 1.6;
  }
}


/* === FORCE FIX: Side Panel feature layout === */
/* This intentionally overrides the older responsive feature rules. */
.cp-sidepanel-feature {
  padding: 30px 32px 34px !important;
}

.cp-sidepanel-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 260px !important;
  grid-template-areas:
    "textTop menu"
    "news textBottom" !important;
  column-gap: 34px !important;
  row-gap: 34px !important;
  align-items: center !important;
}

.cp-sidepanel-text {
  min-width: 0 !important;
}

.cp-sidepanel-text-top {
  grid-area: textTop !important;
}

.cp-sidepanel-text-bottom {
  grid-area: textBottom !important;
}

.cp-sidepanel-text h3,
.cp-sidepanel-text h4 {
  margin: 0 !important;
  max-width: none !important;
  line-height: 1.05 !important;
  letter-spacing: -.04em !important;
}

.cp-sidepanel-text h3 {
  font-size: clamp(30px, 3.15vw, 46px) !important;
}

.cp-sidepanel-text h4 {
  font-size: clamp(24px, 2.35vw, 34px) !important;
}

.cp-sidepanel-text p {
  margin: 16px 0 0 !important;
  color: #9ca7bb !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}

.cp-sidepanel-shot {
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 18px 34px rgba(0,0,0,.28) !important;
  background: #f2f3f5 !important;
  width: 260px !important;
  max-width: 260px !important;
}

.cp-sidepanel-shot img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

.cp-sidepanel-shot-menu {
  grid-area: menu !important;
  justify-self: end !important;
}

.cp-sidepanel-shot-news {
  grid-area: news !important;
  justify-self: start !important;
}

/* Keep it side-by-side even on the narrower preview width.
   Only stack on very small phones. */
@media (max-width: 700px) {
  .cp-sidepanel-feature {
    padding: 24px 20px 26px !important;
  }

  .cp-sidepanel-grid {
    grid-template-columns: minmax(0, 1fr) 210px !important;
    column-gap: 18px !important;
    row-gap: 26px !important;
  }

  .cp-sidepanel-shot {
    width: 210px !important;
    max-width: 210px !important;
    border-radius: 20px !important;
  }

  .cp-sidepanel-text h3 {
    font-size: 32px !important;
  }

  .cp-sidepanel-text h4 {
    font-size: 24px !important;
  }

  .cp-sidepanel-text p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 500px) {
  .cp-sidepanel-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "textTop"
      "menu"
      "news"
      "textBottom" !important;
  }

  .cp-sidepanel-shot {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* === REAL FIX v2: keep Side Panel feature in the requested two-column rows === */
/* The previous version still stacked because the preview width triggered the old narrow breakpoint. */
.cp-sidepanel-feature {
  width: min(calc(100vw - 36px), 940px) !important;
  max-width: 940px !important;
  padding: clamp(18px, 3vw, 32px) !important;
}

.cp-sidepanel-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) clamp(145px, 30vw, 260px) !important;
  grid-template-areas:
    "textTop menu"
    "news textBottom" !important;
  column-gap: clamp(12px, 3vw, 34px) !important;
  row-gap: clamp(22px, 4vw, 38px) !important;
  align-items: center !important;
}

.cp-sidepanel-shot {
  width: clamp(145px, 30vw, 260px) !important;
  max-width: clamp(145px, 30vw, 260px) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
}

.cp-sidepanel-shot-menu {
  grid-area: menu !important;
  justify-self: end !important;
}

.cp-sidepanel-shot-news {
  grid-area: news !important;
  justify-self: start !important;
}

.cp-sidepanel-text-top {
  grid-area: textTop !important;
}

.cp-sidepanel-text-bottom {
  grid-area: textBottom !important;
}

.cp-sidepanel-text h3 {
  font-size: clamp(22px, 5.1vw, 46px) !important;
  line-height: 1.05 !important;
}

.cp-sidepanel-text h4 {
  font-size: clamp(18px, 3.7vw, 34px) !important;
  line-height: 1.08 !important;
}

.cp-sidepanel-text p {
  font-size: clamp(12px, 2.25vw, 17px) !important;
  line-height: 1.55 !important;
}

/* Only truly tiny phone widths stack. Your desktop/test preview will not. */
@media (max-width: 340px) {
  .cp-sidepanel-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "textTop"
      "menu"
      "news"
      "textBottom" !important;
  }

  .cp-sidepanel-shot {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Full-width tutorials placeholder */
.tutorials-coming-section {
  display: block;
}

.tutorials-kicker {
  margin-bottom: 24px;
}

.tutorial-coming-soon {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(91, 124, 255, .24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 20%, rgba(91, 124, 255, .14), transparent 38%),
    radial-gradient(circle at 84% 78%, rgba(126, 72, 255, .11), transparent 34%),
    linear-gradient(135deg, #0d111b, #090c13);
  text-align: center;
}

.tutorial-coming-soon::before,
.tutorial-coming-soon::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(91, 124, 255, .10);
  pointer-events: none;
}

.tutorial-coming-soon::before {
  top: -210px;
  left: -80px;
  box-shadow: 0 0 0 42px rgba(91, 124, 255, .018), 0 0 0 84px rgba(91, 124, 255, .012);
}

.tutorial-coming-soon::after {
  right: -90px;
  bottom: -220px;
  box-shadow: 0 0 0 42px rgba(91, 124, 255, .018), 0 0 0 84px rgba(91, 124, 255, .012);
}

.tutorial-coming-soon h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

/* Larger, more legible footer typography */
.site-footer {
  gap: 38px;
  padding-top: 48px;
  padding-bottom: 54px;
}

.footer-brand .brand {
  gap: 18px;
}

.footer-logo {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
}

.footer-brand-name {
  font-size: 34px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: #8d98ad;
  font-size: 16px;
  line-height: 1.55;
}

.footer-links {
  gap: 26px;
  color: #a6b0c3;
  font-size: 15px;
  font-weight: 600;
}

.copyright {
  margin-top: 26px;
  color: #737e92;
  font-size: 14px;
}

@media (max-width: 760px) {
  .tutorial-coming-soon {
    min-height: 190px;
    padding: 32px 22px;
  }

  .footer-links {
    gap: 18px 22px;
  }
}


/* Chart Pins legal document pages */
.legal-body .page-shell {
  overflow: visible;
}

.legal-header {
  position: relative;
}

.legal-main {
  padding-bottom: 70px;
}

.legal-hero {
  padding-top: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: none;
  margin: 22px 0 16px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.legal-hero > p {
  max-width: 1040px;
  margin: 0;
  color: #a6b0c3;
  font-size: 19px;
  line-height: 1.62;
}

.legal-updated {
  margin-top: 18px;
  color: #78849b;
  font-size: 15px;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding-top: 44px;
}

.legal-sidebar {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 18px;
}

.legal-sidebar-card,
.legal-doc-links {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}

.legal-sidebar strong,
.legal-doc-links strong {
  display: block;
  margin-bottom: 14px;
  color: #edf2ff;
  font-size: 15px;
}

.legal-toc,
.legal-doc-links {
  display: grid;
  gap: 2px;
}

.legal-toc {
  max-height: 52vh;
  overflow: auto;
  padding-right: 5px;
}

.legal-toc a,
.legal-doc-links a,
.legal-toc-empty {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #8d98ad;
  font-size: 13px;
  line-height: 1.35;
  transition: color .2s ease, background .2s ease;
}

.legal-toc a:hover,
.legal-doc-links a:hover,
.legal-doc-links a.is-active {
  color: #f5f7ff;
  background: rgba(91,124,255,.10);
}

.legal-content {
  min-width: 0;
  max-width: 900px;
}

.legal-content > .legal-meta:first-child {
  margin-top: 0;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.legal-meta-row {
  min-width: 0;
  padding: 18px 20px;
  background: #0b0e16;
}

.legal-meta dt {
  margin-bottom: 6px;
  color: #717d93;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 0;
  color: #e5eaf5;
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.legal-callout {
  margin: 0 0 42px;
  padding: 24px 26px;
  border: 1px solid rgba(91,124,255,.24);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(91,124,255,.12), rgba(126,72,255,.06));
  color: #dce4f7;
  font-size: 17px;
  line-height: 1.7;
}

.legal-section {
  scroll-margin-top: 24px;
  padding: 0 0 42px;
}

.legal-section + .legal-section {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 22px;
  color: #f3f6fb;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.legal-section-body p,
.legal-content > p {
  margin: 0 0 18px;
  color: #a6b0c3;
  font-size: 18px;
  line-height: 1.78;
}

.legal-content a {
  color: #9ab0ff;
  text-decoration: underline;
  text-decoration-color: rgba(154,176,255,.34);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: #c8d4ff;
  text-decoration-color: currentColor;
}

.legal-list {
  margin: 4px 0 22px;
  padding-left: 24px;
  color: #a6b0c3;
  font-size: 18px;
  line-height: 1.72;
}

.legal-list li {
  margin: 10px 0;
  padding-left: 5px;
}

.legal-list li::marker {
  color: #718cff;
}

.legal-table-wrap {
  width: 100%;
  margin: 26px 0 40px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255,255,255,.018);
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
}

.legal-table th:last-child,
.legal-table td:last-child {
  border-right: 0;
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  color: #edf2ff;
  background: rgba(91,124,255,.08);
  font-size: 13px;
}

.legal-table td {
  color: #9da8bc;
}

.legal-placeholder-page .legal-layout {
  grid-template-columns: 260px minmax(0, 1fr);
}

.legal-placeholder {
  min-height: 330px;
  display: grid;
  align-content: center;
  padding: 46px;
  border: 1px solid rgba(91,124,255,.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 10%, rgba(91,124,255,.14), transparent 36%),
    radial-gradient(circle at 90% 85%, rgba(126,72,255,.11), transparent 34%),
    linear-gradient(135deg, #0d111b, #090c13);
}

.legal-placeholder h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.045em;
}

.legal-placeholder p {
  max-width: 700px;
  margin: 0 0 15px;
  color: #a6b0c3;
  font-size: 18px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .legal-toc {
    max-height: 260px;
  }

  .legal-content {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .legal-hero {
    padding-top: 44px;
    padding-bottom: 30px;
  }

  .legal-hero h1 {
    margin-top: 18px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .legal-hero > p,
  .legal-section-body p,
  .legal-content > p,
  .legal-list,
  .legal-placeholder p {
    font-size: 17px;
  }

  .legal-layout {
    padding-top: 30px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    grid-template-columns: 1fr;
  }

  .legal-section + .legal-section {
    padding-top: 34px;
  }

  .legal-placeholder {
    min-height: 280px;
    padding: 30px 24px;
  }
}


/* Pricing placeholder and launch waitlist */
.pricing-coming-section {
  padding-top: 48px;
}

.launch-body {
  min-height: 100vh;
}

.launch-main {
  min-height: calc(100vh - 260px);
}

.launch-section {
  padding-top: 92px;
  padding-bottom: 110px;
}

.launch-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 72px;
  align-items: center;
  padding: 72px;
  overflow: hidden;
  border: 1px solid rgba(91, 124, 255, .24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 12%, rgba(91, 124, 255, .16), transparent 34%),
    radial-gradient(circle at 90% 84%, rgba(126, 72, 255, .13), transparent 32%),
    linear-gradient(135deg, #0d111b, #080b12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.launch-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -190px;
  top: -230px;
  border-radius: 50%;
  border: 1px solid rgba(91, 124, 255, .10);
  box-shadow: 0 0 0 52px rgba(91, 124, 255, .018), 0 0 0 104px rgba(91, 124, 255, .012);
  pointer-events: none;
}

.launch-copy,
.launch-form {
  position: relative;
  z-index: 1;
}

.launch-copy h1 {
  margin: 28px 0 22px;
  max-width: 720px;
  font-size: clamp(46px, 5.2vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
}

.launch-copy p {
  margin: 0;
  max-width: 600px;
  color: #9ca7bb;
  font-size: 19px;
  line-height: 1.7;
}

.launch-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 24px;
  background: rgba(5, 8, 14, .62);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.launch-field {
  display: grid;
  gap: 10px;
}

.launch-field label {
  color: #e9edfa;
  font-size: 14px;
  font-weight: 750;
}

.launch-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, .04);
  color: #f4f7ff;
  font: inherit;
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.launch-field input::placeholder {
  color: #6f798d;
}

.launch-field input:focus {
  border-color: rgba(91, 124, 255, .72);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 0 0 4px rgba(91, 124, 255, .12);
}

.launch-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 20px 0;
  color: #9da7ba;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.launch-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #637cff;
}

.launch-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.launch-submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.launch-status {
  min-height: 24px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.launch-status:empty {
  min-height: 0;
  margin-top: 0;
}

.launch-status.is-success {
  color: #54d9a4;
}

.launch-status.is-error {
  color: #ff8d9a;
}

.launch-privacy {
  margin: 14px 0 0;
  color: #727d91;
  font-size: 12px;
  line-height: 1.55;
}

.launch-privacy a {
  color: #9ab0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.launch-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@media (max-width: 1080px) {
  .launch-card {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 54px;
  }

  .launch-form {
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .pricing-coming-section {
    padding-top: 24px;
  }

  .launch-section {
    padding-top: 66px;
    padding-bottom: 76px;
  }

  .launch-card {
    gap: 34px;
    padding: 34px 22px;
    border-radius: 24px;
  }

  .launch-copy h1 {
    margin-top: 22px;
    font-size: 42px;
  }

  .launch-copy p {
    font-size: 16px;
  }

  .launch-form {
    padding: 24px 18px;
    border-radius: 20px;
  }
}


/* Pricing cards */
.pricing-section {
  max-width: 1120px;
  padding-top: 64px;
  margin-inline: auto;
}

.section-heading.compact.pricing-heading {
  max-width: 1000px;
  margin: 0 auto 42px;
  text-align: center;
}

.pricing-heading p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  max-width: 1120px;
  margin-inline: auto;
}

.pricing-card {
  position: relative;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(91, 124, 255, .20);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 6%, rgba(91, 124, 255, .12), transparent 34%),
    linear-gradient(145deg, rgba(16, 20, 32, .98), rgba(8, 11, 18, .98));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #5b7cff, #7b48ff 58%, transparent);
  opacity: .9;
}

.pricing-card-active {
  border-color: rgba(91, 124, 255, .46);
  box-shadow: 0 24px 76px rgba(42, 63, 165, .24);
}

.pricing-card-future {
  border-color: rgba(255, 255, 255, .09);
  background:
    radial-gradient(circle at 86% 6%, rgba(126, 72, 255, .07), transparent 34%),
    linear-gradient(145deg, rgba(14, 17, 27, .92), rgba(7, 9, 15, .94));
}

.pricing-card-future::before {
  opacity: .34;
}

.pricing-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-tier-label,
.pricing-availability {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.pricing-tier-label {
  border: 1px solid rgba(91, 124, 255, .42);
  background: rgba(91, 124, 255, .10);
  color: #aebdff;
}

.pricing-availability {
  color: #76e7b9;
  background: rgba(22, 199, 132, .10);
  border: 1px solid rgba(22, 199, 132, .22);
}

.pricing-availability-future {
  color: #a2abc0;
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .08);
}

.pricing-card h3 {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding-bottom: 9px;
  border-bottom: 2px solid rgba(91, 124, 255, .78);
  color: #f7f8ff;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.035em;
}

.pricing-card-future h3 {
  border-bottom-color: rgba(123, 72, 255, .40);
}

.pricing-card-subtitle {
  min-height: 58px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.pricing-trial {
  width: fit-content;
  margin-top: 24px;
  padding: 11px 15px;
  border: 1px solid rgba(22, 199, 132, .28);
  border-radius: 13px;
  background: rgba(22, 199, 132, .08);
  color: #80ebc0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .015em;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  margin: 30px 0 26px;
  background: linear-gradient(90deg, rgba(91, 124, 255, .52), rgba(255, 255, 255, .08) 60%, transparent);
}

.pricing-includes-title {
  margin-bottom: 17px;
  color: #eef2ff;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.pricing-feature-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 29px;
  color: #d6dced;
  font-size: 16px;
  line-height: 1.5;
}

.pricing-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(91, 124, 255, .13);
  color: #90a4ff;
  font-size: 12px;
  font-weight: 900;
}

.pricing-future-message {
  display: grid;
  place-items: center;
  flex: 1;
  min-height: 205px;
  padding: 26px;
  border: 1px dashed rgba(255, 255, 255, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .018);
  text-align: center;
}

.pricing-future-message span {
  color: #c7cede;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -.025em;
}

.pricing-future-message p {
  max-width: 250px;
  margin: 12px auto 0;
  color: #858fa5;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-card-footer {
  margin-top: auto;
  padding-top: 30px;
}

.pricing-price-pill {
  min-height: 58px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 13px 20px;
  border: 1px solid rgba(91, 124, 255, .45);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(91, 124, 255, .16), rgba(123, 72, 255, .11));
  color: #f4f6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.pricing-price {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.035em;
}

.pricing-period {
  color: #a9b3c8;
  font-size: 14px;
  font-weight: 700;
}

.pricing-price-pill-muted {
  align-items: center;
  border-color: rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .025);
  color: #838da2;
  font-size: 14px;
  font-weight: 800;
}

.pricing-note {
  margin: 24px 0 0;
  color: #78839a;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1060px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-card-subtitle {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .pricing-section {
    padding-top: 42px;
  }

  .pricing-heading {
    margin-bottom: 30px;
  }

  .pricing-heading p {
    font-size: 16px;
  }

  .pricing-card {
    padding: 27px 22px;
    border-radius: 23px;
  }

  .pricing-card-topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .pricing-card h3 {
    font-size: 34px;
  }
}


/* Closed beta request test flow */
.beta-request-trigger {
  font-family: inherit;
  cursor: pointer;
}

.beta-request-modal[hidden] {
  display: none !important;
}

.beta-request-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.beta-request-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, .78);
  backdrop-filter: blur(12px);
}

.beta-request-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 34px;
  border: 1px solid rgba(91, 124, 255, .30);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 2%, rgba(91, 124, 255, .14), transparent 34%),
    linear-gradient(145deg, rgba(16, 20, 32, .99), rgba(8, 11, 18, .99));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .52);
}

.beta-request-dialog h2 {
  margin: 18px 0 12px;
  color: #f7f8ff;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.beta-request-dialog > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.beta-request-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: #dfe5f5;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.beta-request-form {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.beta-request-form label {
  color: #d9deea;
  font-size: 13px;
  font-weight: 800;
}

.beta-request-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 15px;
  outline: none;
  background: rgba(255,255,255,.035);
  color: #f5f7ff;
  font: inherit;
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.beta-request-form input:focus {
  border-color: rgba(91,124,255,.65);
  box-shadow: 0 0 0 4px rgba(91,124,255,.10);
}

.beta-request-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.beta-request-submit:disabled {
  opacity: .62;
  cursor: wait;
}

.beta-request-status {
  min-height: 22px;
  margin-top: 14px;
  color: #9fa9bd;
  font-size: 13px;
  line-height: 1.5;
}

.beta-request-status.is-success {
  color: #76e7b9;
}

.beta-request-status.is-error {
  color: #ff8f9a;
}

body.beta-request-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .beta-request-modal {
    padding: 14px;
  }
  .beta-request-dialog {
    padding: 28px 20px 22px;
    border-radius: 22px;
  }
  .beta-request-dialog h2 {
    font-size: 31px;
  }
}


/* EN / CS language switch */
.header-actions { display:flex; align-items:center; justify-content:flex-end; gap:10px; }
.language-switch { display:inline-flex; align-items:center; gap:3px; padding:3px; border:1px solid rgba(255,255,255,.12); border-radius:12px; background:rgba(255,255,255,.035); box-shadow:0 8px 22px rgba(0,0,0,.16); }
.language-switch-button { appearance:none; border:0; cursor:pointer; min-width:36px; padding:8px 9px; border-radius:9px; color:#8f9aae; background:transparent; font:800 12px/1 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; letter-spacing:.04em; transition:background .18s ease,color .18s ease; }
.language-switch-button:hover { color:#fff; background:rgba(255,255,255,.055); }
.language-switch-button.is-active { color:#fff; background:linear-gradient(135deg,rgba(95,120,255,.48),rgba(123,92,255,.38)); }
.language-switch-card { align-self:flex-end; margin:0 0 4px auto; }
.language-switch-floating { position:fixed; top:18px; right:18px; z-index:120; background:rgba(9,12,18,.90); backdrop-filter:blur(14px); }
.legal-form-box { margin:20px 0; padding:20px; border:1px solid rgba(255,255,255,.10); border-radius:18px; background:rgba(255,255,255,.025); }
.legal-form-line { display:grid; grid-template-columns:minmax(160px,240px) 1fr; gap:12px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.06); }
.legal-form-line:last-child { border-bottom:0; }
.legal-form-label { color:#aab4c7; font-weight:700; }
.legal-form-blank { min-height:24px; border-bottom:1px solid rgba(255,255,255,.24); }
@media (max-width:820px) {
  .header-actions > .button { display:none; }
}
@media (max-width:640px) {
  .site-header { grid-template-columns:1fr auto !important; }
  .header-actions { gap:6px; }
  .language-switch-button { min-width:33px; padding:7px 7px; }
  .legal-form-line { grid-template-columns:1fr; }
}
