:root {
  color-scheme: dark;
  --bg: #080c11;
  --panel: #111821;
  --line: #243244;
  --text: #edf4fb;
  --muted: #91a0b2;
  --accent: #60a5fa;
  --buy: #18b985;
  --sell: #f05d5e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI Variable", Inter, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

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

.landingNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  height: 68px;
  padding: 0 26px;
  border-bottom: 1px solid rgb(148 163 184 / 13%);
  background:
    linear-gradient(90deg, rgb(8 12 17 / 92%), rgb(13 20 28 / 82%));
  backdrop-filter: blur(16px);
}

.languageSwitch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: end;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.languageSwitch > div {
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgb(148 163 184 / 16%);
  border-radius: 6px;
  background: rgb(7 11 16 / 44%);
}

.languageIcon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1.5px solid #7f8d9e;
  border-radius: 999px;
  opacity: 0.85;
}

.languageIcon::before,
.languageIcon::after {
  content: "";
  position: absolute;
  inset: 3px 1px;
  border-left: 1px solid #7f8d9e;
  border-right: 1px solid #7f8d9e;
  border-radius: 999px;
}

.languageIcon::after {
  inset: 50% 2px auto;
  height: 1px;
  border: 0;
  border-top: 1px solid #7f8d9e;
  border-radius: 0;
  transform: translateY(-50%);
}

.languageSwitch button {
  display: inline-grid;
  place-items: center;
  min-width: 31px;
  height: 28px;
  padding: 0 7px;
  border: 0;
  border-left: 1px solid rgb(148 163 184 / 12%);
  border-radius: 0;
  background: transparent;
  color: #7f8d9e;
  cursor: pointer;
  font-size: 11px;
  font-weight: 740;
}

.languageSwitch button:first-child {
  border-left: 0;
}

.languageSwitch button[aria-pressed="true"] {
  background: rgb(96 165 250 / 13%);
  color: #dbeafe;
  box-shadow: inset 0 -1px 0 rgb(96 165 250 / 45%);
}

.languageSwitch button:hover {
  color: #fff;
}

.navBrand img,
footer img {
  display: block;
  width: auto;
  height: 42px;
}

.landingNav nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
}

.landingNav nav a,
.navCta,
.heroActions a,
.priceCard a {
  text-decoration: none;
}

.landingNav nav a {
  color: #aebbc8;
  font-size: 13px;
}

.landingNav nav a:hover {
  color: #fff;
}

.navCta,
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgb(96 165 250 / 68%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 9%), rgb(255 255 255 / 0)),
    linear-gradient(135deg, #2563eb, #17446f 58%, #0f2c49);
  box-shadow: 0 14px 32px rgb(37 99 235 / 28%), inset 0 1px 0 rgb(255 255 255 / 17%);
  color: #fff;
  font-size: 13px;
  font-weight: 720;
}

.navCta:hover,
.primary:hover {
  border-color: rgb(96 165 250 / 92%);
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.navCta,
.primary,
.secondary {
  transition: transform 150ms ease, filter 150ms ease, border-color 150ms ease, background 150ms ease;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92svh;
  overflow: hidden;
  padding: 116px 26px 76px;
}

#heroMarket,
.heroShade {
  position: absolute;
  inset: 0;
}

#heroMarket {
  width: 100%;
  height: 100%;
}

.heroShade {
  background:
    radial-gradient(circle at 80% 26%, rgb(96 165 250 / 14%), transparent 30%),
    linear-gradient(90deg, rgb(8 12 17 / 95%) 0%, rgb(8 12 17 / 76%) 42%, rgb(8 12 17 / 14%) 100%),
    linear-gradient(180deg, rgb(8 12 17 / 50%), rgb(8 12 17 / 78%));
}

.heroContent,
.section,
footer {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.heroContent {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 58px;
}

.heroCopy,
.heroVisual {
  display: grid;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heroKicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.heroKicker span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 11px;
  border: 1px solid rgb(96 165 250 / 24%);
  border-radius: 999px;
  background: rgb(96 165 250 / 9%);
  color: #b9d8fb;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(45px, 5.4vw, 70px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 18px 46px rgb(0 0 0 / 44%);
}

.lead {
  max-width: 650px;
  color: #c3cfdd;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.heroProduct {
  display: grid;
  gap: 16px;
  width: min(440px, 100%);
  justify-self: end;
  padding: 18px;
  border: 1px solid rgb(96 165 250 / 30%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(22 32 43 / 88%), rgb(8 12 17 / 78%));
  box-shadow: 0 28px 70px rgb(0 0 0 / 36%), 0 0 0 1px rgb(96 165 250 / 6%), inset 0 1px 0 rgb(255 255 255 / 6%);
}

.heroVisual {
  gap: 14px;
}

.heroVideo {
  width: min(520px, 100%);
  justify-self: end;
}

.heroVideo .videoFrame {
  aspect-ratio: 16 / 9;
}

.heroVideo + .heroProduct {
  width: min(520px, 100%);
}

.miniTop,
.miniRows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.miniTop span {
  color: #dce8f5;
  font-size: 13px;
  font-weight: 760;
}

.miniTop b {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border: 1px solid rgb(24 185 133 / 22%);
  border-radius: 999px;
  background: rgb(24 185 133 / 9%);
  color: #8ee3c4;
  font-size: 10px;
}

.miniScore {
  display: grid;
  gap: 7px;
}

.miniScore small {
  color: #7f8d9e;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.miniScore strong {
  color: #edf4fb;
  font-size: 34px;
  font-weight: 700;
}

.miniScore i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(240 93 94 / 24%), rgb(148 163 184 / 14%) 50%, rgb(24 185 133 / 28%));
}

.miniScore em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #60a5fa, #18b985);
}

.miniRows {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.miniRows span {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border: 1px solid rgb(148 163 184 / 16%);
  border-radius: 999px;
  background: rgb(148 163 184 / 7%);
  color: #aebbc8;
  font-size: 11px;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgb(148 163 184 / 22%);
  border-radius: 999px;
  background: rgb(17 24 33 / 62%);
  color: #d8e2ee;
  font-size: 13px;
  font-weight: 650;
}

.secondary:hover {
  border-color: rgb(148 163 184 / 38%);
  background: rgb(17 24 33 / 86%);
}

.heroSignals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-self: end;
  padding-top: 10px;
  width: min(440px, 100%);
}

.heroSignals span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgb(148 163 184 / 18%);
  border-radius: 999px;
  background: rgb(148 163 184 / 8%);
  color: #aebbc8;
  font-size: 12px;
}

.section {
  display: grid;
  column-gap: 58px;
  row-gap: 24px;
  padding: 88px 26px;
  border-top: 1px solid rgb(148 163 184 / 12%);
}

.intro {
  position: relative;
}

.intro::before,
.workflow::before,
.pricing::before {
  display: none;
}

.intro,
.pricing,
.technologySection,
.contactSection,
.faqSection,
.newsSection {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.sectionText {
  display: grid;
  align-content: start;
  gap: 14px;
}

.sectionText h2 {
  max-width: 620px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.12;
}

.sectionText p,
.sectionText li {
  color: #aebbc8;
  font-size: 16px;
  line-height: 1.62;
}

.sectionText ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.accessPunch {
  color: #edf4fb;
  font-size: 20px;
  font-weight: 680;
  line-height: 1.35;
}

.decisionBoard {
  display: grid;
  gap: 12px;
}

.decisionBoard article,
.priceCard,
.videoViewer,
.technologyCard,
.readingSteps article,
.newsChart,
.microRead article {
  border: 1px solid rgb(96 165 250 / 14%);
  border-radius: 8px;
  background: linear-gradient(180deg, rgb(17 24 33 / 92%), rgb(12 18 25 / 92%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
}

.decisionBoard article:hover,
.priceCard:hover,
.technologyCard:hover,
.readingSteps article:hover,
.microRead article:hover {
  border-color: rgb(96 165 250 / 24%);
  transform: translateY(-2px);
}

.decisionBoard article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  min-height: 118px;
  padding: 18px 20px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.decisionBoard span,
.priceCard span,
.technologyCard span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
}

.decisionBoard span {
  display: inline-grid;
  place-items: center;
  align-self: start;
  width: 76px;
  height: 32px;
  border: 1px solid rgb(96 165 250 / 20%);
  border-radius: 999px;
  background: rgb(96 165 250 / 9%);
}

.decisionBoard div {
  display: grid;
  gap: 7px;
}

.decisionBoard h3 {
  font-size: 19px;
  font-weight: 610;
  line-height: 1.2;
}

.decisionBoard p,
.priceCard p,
.priceCard small,
.readingSteps p {
  color: #91a0b2;
  line-height: 1.5;
}

.decisionBoard p {
  font-size: 14px;
}

.workflow {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.splitReverse .sectionText {
  grid-column: 2;
  grid-row: 1;
}

.splitReverse .readingSteps {
  grid-column: 1;
  grid-row: 1;
}

.readingSteps {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 12px;
}

.readingSteps article {
  display: grid;
  grid-template-columns: 44px minmax(120px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 96px;
  padding: 17px 19px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.readingSteps small {
  color: #7f8d9e;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.readingSteps strong {
  color: #edf4fb;
  font-size: 20px;
  font-weight: 610;
  line-height: 1.18;
}

.newsBoard {
  display: grid;
  justify-self: end;
  width: min(520px, 100%);
}

.newsChart {
  display: grid;
  gap: 18px;
  min-height: 360px;
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 22px 58px rgb(0 0 0 / 24%), inset 0 1px 0 rgb(255 255 255 / 4%);
}

.newsAlert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgb(246 195 95 / 28%);
  border-radius: 7px;
  background: linear-gradient(90deg, rgb(72 52 18 / 72%), rgb(17 24 33 / 74%));
}

.newsAlert span {
  color: #f6c35f;
  font-size: 12px;
  font-weight: 760;
}

.newsAlert strong {
  min-width: 0;
  color: #f8e4ae;
  font-size: 14px;
  font-weight: 650;
}

.newsCandles {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 14px;
  height: 150px;
  padding: 18px 18px 8px;
  border: 1px solid rgb(148 163 184 / 12%);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgb(96 165 250 / 7%), transparent),
    repeating-linear-gradient(0deg, rgb(148 163 184 / 8%) 0 1px, transparent 1px 32px);
}

.newsCandles i {
  position: relative;
  display: block;
  align-self: end;
  width: 100%;
  max-width: 26px;
  justify-self: center;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #18b985, #0f7f62);
  box-shadow: 0 0 18px rgb(24 185 133 / 16%);
}

.newsCandles i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  bottom: -14px;
  width: 1px;
  background: rgb(148 163 184 / 28%);
  transform: translateX(-50%);
}

.newsCandles i.sell {
  background: linear-gradient(180deg, #f05d5e, #8f2932);
  box-shadow: 0 0 18px rgb(240 93 94 / 16%);
}

.newsCandles i.event b {
  position: absolute;
  top: -34px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgb(246 195 95 / 48%);
  border-radius: 999px;
  background: #f6c35f;
  color: #171006;
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgb(246 195 95 / 34%);
}

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

.microRead article {
  display: grid;
  gap: 7px;
  min-height: 76px;
  padding: 12px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.microRead span {
  color: #7f8d9e;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.microRead strong {
  color: #edf4fb;
  font-size: 15px;
  font-weight: 640;
  line-height: 1.22;
}

.priceCard {
  position: relative;
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 24px;
  overflow: hidden;
  justify-self: end;
  transition: transform 160ms ease, border-color 160ms ease;
}

.priceCard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #18b985, #60a5fa);
}

.technologyCard {
  display: grid;
  gap: 14px;
  width: min(520px, 100%);
  justify-self: end;
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.technologyCard strong {
  color: #edf4fb;
  font-size: 27px;
  font-weight: 630;
  line-height: 1.12;
}

.technologyCard p {
  color: #91a0b2;
  line-height: 1.52;
}

.technologyCard a {
  width: max-content;
  text-decoration: none;
}

.pricingAside {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: min(560px, 100%);
  gap: 16px;
}

.pricing .sectionText h2 {
  font-size: clamp(25px, 2.45vw, 34px);
}

.videoViewer {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgb(96 165 250 / 20%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgb(24 185 133 / 12%), transparent 36%),
    linear-gradient(180deg, rgb(96 165 250 / 13%), rgb(12 18 25 / 94%)),
    rgb(12 18 25 / 94%);
  box-shadow:
    0 24px 62px rgb(0 0 0 / 30%),
    inset 0 1px 0 rgb(255 255 255 / 6%);
}

.videoViewer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #18b985);
}

.videoViewerHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 0;
}

.videoViewerHead span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgb(96 165 250 / 22%);
  border-radius: 999px;
  background: rgb(96 165 250 / 9%);
  color: var(--accent);
  font-size: 11px;
  font-weight: 790;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.videoViewerHead strong {
  min-width: 0;
  color: #eaf2fb;
  font-size: 15px;
  font-weight: 660;
  line-height: 1.25;
  text-align: right;
}

.videoFrame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(148 163 184 / 15%);
  border-radius: 8px;
  background: #05080d;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 18px 42px rgb(0 0 0 / 26%),
    inset 0 0 0 1px rgb(255 255 255 / 3%);
}

.videoFrame::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 42px rgb(96 165 250 / 8%);
  content: "";
}

.videoFrame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #05080d;
}

.videoMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.videoMeta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgb(148 163 184 / 16%);
  border-radius: 999px;
  background: rgb(255 255 255 / 4%);
  color: #9fb2c7;
  font-size: 11px;
  font-weight: 680;
}

.technologySection .sectionText {
  grid-column: 2;
  grid-row: 1;
}

.technologySection .technologyCard {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.pricing .sectionText {
  grid-column: 1;
  grid-row: 1;
  justify-items: start;
  text-align: left;
}

.contactSection .sectionText {
  grid-column: 2;
  grid-row: 1;
  justify-items: end;
  text-align: right;
}

.contactSection .contactForm {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.contactForm {
  display: grid;
  gap: 14px;
  max-width: 520px;
  justify-self: end;
  width: 100%;
  padding: 22px;
  border: 1px solid rgb(96 165 250 / 14%);
  border-radius: 8px;
  background: linear-gradient(180deg, rgb(17 24 33 / 92%), rgb(12 18 25 / 92%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
}

.contactForm label {
  display: grid;
  gap: 7px;
}

.contactForm span {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 610;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  border: 1px solid rgb(148 163 184 / 18%);
  border-radius: 8px;
  outline: 0;
  background: rgb(7 11 16 / 70%);
  color: var(--text);
}

.contactForm input {
  height: 42px;
  padding: 0 12px;
}

.contactForm textarea {
  min-height: 120px;
  resize: vertical;
  padding: 11px 12px;
}

.contactForm input:focus,
.contactForm textarea:focus {
  border-color: rgb(96 165 250 / 64%);
  box-shadow: 0 0 0 3px rgb(96 165 250 / 11%);
}

.contactForm button {
  border: 1px solid rgb(96 165 250 / 68%);
  cursor: pointer;
}

.contactMessage {
  margin: 0;
  padding: 9px 11px;
  border: 1px solid rgb(24 185 133 / 22%);
  border-radius: 7px;
  background: rgb(24 185 133 / 9%);
  color: #98e4c9;
  font-size: 13px;
}

.contactMessage.error {
  border-color: rgb(240 93 94 / 28%);
  background: rgb(91 20 28 / 48%);
  color: #ffb4b7;
}

.faqSection .sectionText {
  grid-column: 1;
  grid-row: 1;
}

.faqList {
  display: grid;
  gap: 10px;
  grid-column: 2;
  grid-row: 1;
}

.faqList details {
  border: 1px solid rgb(96 165 250 / 14%);
  border-radius: 8px;
  background: linear-gradient(180deg, rgb(17 24 33 / 92%), rgb(12 18 25 / 92%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
}

.faqList summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  color: #edf4fb;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  list-style: none;
}

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

.faqList summary::after {
  content: "+";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgb(96 165 250 / 22%);
  border-radius: 999px;
  color: #9ccafa;
  font-size: 18px;
  line-height: 1;
}

.faqList details[open] summary::after {
  content: "-";
}

.faqList p {
  margin: -3px 18px 17px;
  color: #aebbc8;
  font-size: 14px;
  line-height: 1.58;
}

.priceCard strong {
  max-width: 360px;
  font-size: 28px;
  font-weight: 650;
  line-height: 1.12;
}

.launchBadge {
  width: max-content;
  padding: 6px 10px;
  border: 1px solid rgb(24 185 133 / 24%);
  border-radius: 999px;
  background: rgb(24 185 133 / 9%);
  color: #98e4c9;
}

.launchPrice {
  display: grid;
  gap: 11px;
  padding: 16px 17px;
  border: 1px solid rgb(148 163 184 / 12%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 0%)),
    rgb(7 11 16 / 46%);
}

.launchPrice small {
  color: #9fb0c0;
  font-size: 12px;
  font-weight: 680;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.priceLine {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px 12px;
}

.priceLine del {
  width: max-content;
  margin-bottom: 3px;
  color: #7f8d9e;
  font-size: 17px;
  font-weight: 650;
  text-decoration-color: #f05d5e;
  text-decoration-thickness: 2px;
}

.priceLine b {
  color: #edf4fb;
  font-size: 38px;
  font-weight: 720;
  line-height: 1;
}

.promoHint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #a9b6c4;
  font-size: 13px;
  line-height: 1.35;
}

.promoCode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgb(96 165 250 / 22%);
  border-radius: 6px;
  background: rgb(96 165 250 / 8%);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.launchPrice em {
  display: inline-flex;
  align-items: center;
  padding-top: 2px;
  color: #7f8d9e;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.priceCard a {
  width: 100%;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 26px 42px;
  border-top: 1px solid rgb(148 163 184 / 12%);
  color: var(--muted);
  font-size: 13px;
}

.legalLinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.legalLinks a {
  color: #91a0b2;
  text-decoration: none;
}

.legalLinks a:hover {
  color: #dbeafe;
}

.cookieBanner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgb(96 165 250 / 24%);
  border-radius: 8px;
  background: rgb(8 12 17 / 94%);
  box-shadow: 0 22px 60px rgb(0 0 0 / 42%), inset 0 1px 0 rgb(255 255 255 / 5%);
  backdrop-filter: blur(16px);
}

.cookieBanner[hidden] {
  display: none;
}

.cookieBanner strong {
  display: block;
  margin-bottom: 4px;
  color: #edf4fb;
  font-size: 14px;
}

.cookieBanner p {
  color: #aebbc8;
  font-size: 13px;
  line-height: 1.45;
}

.cookieBanner a {
  display: inline-flex;
  margin-top: 7px;
  color: #b9d8fb;
  font-size: 12px;
  text-decoration: none;
}

.cookieBanner a:hover {
  color: #fff;
}

.cookieActions {
  display: flex;
  gap: 9px;
}

.cookieActions button {
  border: 1px solid rgb(148 163 184 / 22%);
  cursor: pointer;
}

@media (max-width: 880px) {
  .landingNav {
    grid-template-columns: 1fr auto auto;
    height: auto;
    min-height: 62px;
    padding: 10px 16px;
    gap: 10px;
  }

  .landingNav nav {
    display: none;
  }

  .navBrand img {
    height: 36px;
  }

  .navCta {
    min-height: 36px;
    padding: 0 13px;
  }

  .languageSwitch button {
    min-width: 29px;
    height: 26px;
    padding: 0 6px;
    font-size: 10px;
  }

  .languageSwitch {
    min-height: 28px;
  }

  .languageIcon {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: 86svh;
    padding: 94px 18px 58px;
  }

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

  .heroVideo,
  .heroProduct,
  .heroSignals {
    justify-self: stretch;
    width: 100%;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(41px, 9.2vw, 60px);
  }

  .lead {
    max-width: 640px;
    font-size: 17px;
  }

  .heroProduct {
    max-width: 520px;
  }

  .heroShade {
    background:
      linear-gradient(180deg, rgb(8 12 17 / 92%), rgb(8 12 17 / 66%)),
      linear-gradient(90deg, rgb(8 12 17 / 88%), rgb(8 12 17 / 28%));
  }

  .intro,
  .workflow,
  .pricing,
  .technologySection,
  .contactSection,
  .faqSection,
  .newsSection {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .splitReverse .sectionText,
  .splitReverse .readingSteps,
  .technologySection .sectionText,
  .technologySection .technologyCard,
  .pricing .sectionText,
  .pricing .pricingAside,
  .faqSection .sectionText,
  .faqSection .faqList,
  .contactSection .sectionText,
  .contactSection .contactForm {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing .sectionText,
  .contactSection .sectionText {
    justify-items: start;
    text-align: left;
  }

  .decisionBoard,
  .readingSteps {
    grid-template-columns: 1fr;
  }

  .decisionBoard article,
  .readingSteps article {
    min-height: auto;
  }

  .readingSteps article {
    grid-template-columns: 1fr;
  }

  .decisionBoard article {
    grid-template-columns: 1fr;
  }

  .priceCard,
  .pricingAside {
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }

  .technologyCard {
    justify-self: stretch;
    width: 100%;
  }

  .newsBoard {
    justify-self: stretch;
    width: 100%;
  }

  .contactForm {
    justify-self: stretch;
    max-width: none;
  }

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

  .legalLinks {
    justify-content: flex-start;
  }

  .cookieBanner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookieActions {
    width: 100%;
  }

  .cookieActions button {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .landingNav {
    gap: 10px;
    padding: 9px 12px;
  }

  .navBrand img {
    height: 32px;
  }

  .navCta {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 86px 14px 48px;
  }

  .heroContent {
    gap: 24px;
  }

  .heroCopy {
    gap: 16px;
  }

  h1 {
    max-width: 420px;
    font-size: clamp(35px, 12vw, 51px);
    line-height: 1;
  }

  .lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .heroKicker {
    gap: 6px;
  }

  .heroKicker span {
    height: 27px;
    padding: 0 9px;
    font-size: 10px;
  }

  .heroActions {
    gap: 9px;
  }

  .heroSignals span {
    width: 100%;
    justify-content: center;
  }

  .heroActions a {
    width: 100%;
    min-height: 44px;
  }

  .heroProduct {
    gap: 13px;
    padding: 14px;
  }

  .section {
    row-gap: 22px;
    padding: 48px 14px;
  }

  .sectionText {
    gap: 12px;
  }

  .sectionText h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .sectionText p,
  .sectionText li {
    font-size: 14px;
    line-height: 1.55;
  }

  .decisionBoard article,
  .readingSteps article,
  .microRead article {
    gap: 11px;
    padding: 15px;
  }

  .newsChart {
    min-height: auto;
    padding: 14px;
  }

  .newsCandles {
    gap: 8px;
    height: 128px;
    padding-inline: 10px;
  }

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

  .decisionBoard span {
    width: max-content;
    min-width: 72px;
    height: 28px;
    padding: 0 10px;
  }

  .decisionBoard h3,
  .readingSteps strong {
    font-size: 18px;
  }

  .miniScore strong {
    font-size: 28px;
  }

  .miniRows span,
  .heroSignals span {
    height: 25px;
    font-size: 10px;
  }

  .priceCard {
    padding: 18px;
  }

  .videoViewer {
    padding: 12px;
  }

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

  .videoViewerHead strong {
    text-align: left;
  }

  .videoMeta {
    gap: 6px;
  }

  .contactForm {
    padding: 16px;
  }

  .priceCard strong {
    font-size: 24px;
  }

  .launchPrice {
    padding: 14px;
  }

  .launchPrice b {
    font-size: 30px;
  }

  footer {
    padding: 24px 14px 32px;
  }
}
