:root {
  --ink: #050c17;
  --ink-2: #081321;
  --panel: #0b1827;
  --panel-2: #0e1d2d;
  --line: #1d3144;
  --line-soft: rgba(126, 156, 184, 0.16);
  --text: #f4f8fb;
  --muted: #94a9bd;
  --muted-2: #657d93;
  --cyan: #20d4f3;
  --cyan-soft: #72e9fa;
  --green: #31d6a2;
  --rose: #ff6b7f;
  --amber: #f7bf60;
  --violet: #a88cff;
  --blue: #6aa8ff;
  --radius: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(130, 162, 190, 0.13);
  background: rgba(5, 12, 23, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-link {
  width: max-content;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 27px;
  height: 27px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  transform: rotate(45deg);
}

.brand-mark i {
  display: block;
  border: 1px solid var(--cyan-soft);
  background: rgba(32, 212, 243, 0.16);
  border-radius: 2px;
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(3) {
  background: rgba(49, 214, 162, 0.38);
}

.header-inner nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #b6c6d5;
  font-size: 13px;
}

.header-inner nav a,
.footer-links a {
  transition: color 160ms ease;
}

.header-inner nav a:hover,
.footer-links a:hover {
  color: var(--cyan-soft);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 9px;
  background: var(--cyan);
  color: #03101a;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 8px 28px rgba(32, 212, 243, 0.18);
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: #63e7fb;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 0;
  background:
    radial-gradient(circle at 71% 30%, rgba(14, 165, 233, 0.15), transparent 25%),
    radial-gradient(circle at 46% 8%, rgba(32, 212, 243, 0.06), transparent 27%),
    linear-gradient(180deg, #050d18 0%, #071321 78%, #081522 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 230px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(8, 21, 34, 0.98));
}

.hero-grid-lines {
  position: absolute;
  width: 820px;
  height: 820px;
  right: -140px;
  top: -90px;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(90, 173, 205, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 173, 205, 0.15) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black 15%, transparent 67%);
  transform: perspective(700px) rotateX(54deg) rotateZ(-12deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 48px;
  min-height: 620px;
}

.hero-copy {
  padding-bottom: 28px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--cyan-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.19em;
}

.eyebrow > span {
  width: 25px;
  height: 1px;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 570px;
  font-size: clamp(52px, 5.4vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.062em;
  font-weight: 720;
}

.hero-lede {
  max-width: 530px;
  margin: 29px 0 0;
  color: #adbecd;
  font-size: 17px;
  line-height: 1.7;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 21px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 750;
  transition: transform 160ms ease, border 160ms ease, color 160ms ease, background 160ms ease;
}

.button-primary {
  background: var(--cyan);
  color: #02111b;
  box-shadow: 0 14px 38px rgba(32, 212, 243, 0.16);
}

.button-secondary {
  border: 1px solid #37546a;
  background: rgba(9, 24, 38, 0.75);
  color: #c9d7e2;
}

.button-secondary:hover {
  transform: translateY(-2px);
  color: white;
  border-color: var(--cyan);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.trust-row > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(9, 22, 35, 0.58);
  color: #aebfce;
  font-size: 11px;
}

.trust-row i {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 1px solid var(--cyan);
}

.trust-shield {
  border-radius: 7px 7px 9px 9px !important;
  transform: scaleX(0.78);
}

.trust-lock {
  border-radius: 3px;
}

.trust-lock::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -7px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.trust-target {
  border-radius: 50%;
}

.trust-target::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--cyan);
  border-radius: inherit;
}

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

.hero-product::before {
  content: "";
  position: absolute;
  inset: 15% 7% -3%;
  background: rgba(0, 187, 255, 0.15);
  filter: blur(65px);
  pointer-events: none;
}

.product-window {
  position: relative;
  width: 100%;
  border: 1px solid #294159;
  border-radius: 14px;
  overflow: hidden;
  background: #07111e;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.window-topline,
.dashboard-head,
.panel-heading,
.chart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-topline {
  min-height: 47px;
  padding: 0 16px;
  border-bottom: 1px solid #1b2d3f;
  color: #99acc0;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.window-topline > div,
.status-row,
.live-pill,
.active-pill {
  display: flex;
  align-items: center;
}

.window-dot {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.status-row {
  gap: 8px;
}

.live-pill,
.active-pill {
  gap: 6px;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid rgba(49, 214, 162, 0.28);
  border-radius: 5px;
  background: rgba(49, 214, 162, 0.07);
  color: #7eeec7;
  font-size: 8px;
  letter-spacing: 0.09em;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
}

.dashboard-head {
  padding: 15px 16px 10px;
}

.dashboard-head > div:first-child {
  display: grid;
  gap: 2px;
}

.dashboard-head span {
  color: var(--muted-2);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.dashboard-head strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.demo-label {
  padding: 5px 7px;
  border: 1px solid #20374c;
  border-radius: 4px;
  color: #6f8ba4;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  padding: 0 16px 11px;
}

.metric {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid #1a3043;
  border-radius: 7px;
  background: #0a1725;
}

.metric span {
  overflow: hidden;
  color: #70879d;
  font-size: 7px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.metric strong {
  overflow: hidden;
  font-size: 13px;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-green { color: var(--green) !important; }
.text-cyan { color: var(--cyan-soft) !important; }
.text-rose { color: var(--rose) !important; }

.dashboard-main {
  display: grid;
  grid-template-columns: 1.66fr 0.84fr;
  gap: 9px;
  padding: 0 16px 10px;
}

.chart-panel,
.orders-panel {
  min-width: 0;
  border: 1px solid #1b3043;
  border-radius: 8px;
  background: #091522;
}

.panel-heading {
  min-height: 41px;
  padding: 0 11px;
  border-bottom: 1px solid #162a3c;
  color: #7e95aa;
  font-size: 8px;
}

.panel-heading > div:first-child {
  display: grid;
  gap: 2px;
}

.panel-heading b {
  color: #d8e4ed;
  font-size: 9px;
}

.range-tabs {
  display: flex;
  gap: 3px;
}

.range-tabs span {
  padding: 5px 6px;
  border-radius: 4px;
  color: #61788e;
  font-size: 7px;
}

.range-tabs .selected {
  background: #173146;
  color: var(--cyan-soft);
}

.market-line {
  width: 100%;
  height: 185px;
  display: block;
  padding: 8px 4px 0;
}

.chart-grid {
  stroke: rgba(121, 158, 185, 0.13);
  stroke-width: 1;
  stroke-dasharray: 5 6;
}

.chart-up,
.chart-down {
  stroke-width: 3.2;
  stroke-linecap: round;
}

.chart-up { stroke: #14cf8f; }
.chart-down { stroke: #f15a6f; }

.chart-current {
  fill: var(--cyan);
  stroke: #dffbff;
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgba(32, 212, 243, 0.85));
}

.chart-footer {
  min-height: 32px;
  padding: 0 11px;
  border-top: 1px solid #162a3c;
  color: #61798d;
  font-size: 7px;
}

.chart-footer span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.chart-footer i {
  width: 10px;
  height: 2px;
}

.legend-up { background: var(--green); }
.legend-down { background: var(--rose); }
.chart-footer b { color: #c5d5e1; }

.orders-panel {
  padding-bottom: 4px;
}

.order-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 6px 9px;
  border-bottom: 1px solid rgba(113, 146, 172, 0.1);
  color: #72899d;
  font-size: 7px;
}

.side {
  width: 31px;
  padding: 4px 0;
  border-radius: 4px;
  text-align: center;
  font-size: 7px;
  font-weight: 800;
}

.side-buy { background: rgba(49, 214, 162, 0.12); color: #72e6be; }
.side-sell { background: rgba(255, 107, 127, 0.11); color: #ff8a9a; }

.order-row > div {
  display: grid;
  gap: 2px;
}

.order-row b { color: #c9d7e2; font-size: 9px; }
.order-row small { color: #62788e; font-size: 7px; }

.dashboard-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 0 16px 15px;
}

.dashboard-footer > div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 6px;
  padding: 9px;
  border: 1px solid #192e40;
  border-radius: 7px;
  background: #091624;
  font-size: 7px;
}

.dashboard-footer b {
  overflow: hidden;
  color: #afc0cd;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dashboard-footer > div > span:last-child {
  grid-column: 2;
  color: #60778c;
}

.event-dot {
  grid-row: span 2;
  width: 6px;
  height: 6px;
  margin-top: 2px;
  border-radius: 50%;
}

.event-dot.green,
.activity-list i.green { background: var(--green); box-shadow: 0 0 10px rgba(49, 214, 162, 0.5); }
.event-dot.cyan,
.activity-list i.cyan { background: var(--cyan); box-shadow: 0 0 10px rgba(32, 212, 243, 0.5); }
.event-dot.amber,
.activity-list i.amber { background: var(--amber); box-shadow: 0 0 10px rgba(247, 191, 96, 0.45); }
.activity-list i.violet { background: var(--violet); box-shadow: 0 0 10px rgba(168, 140, 255, 0.45); }

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: 76px;
  padding: 30px 0 34px;
  border-top: 1px solid var(--line-soft);
}

.proof-strip p {
  margin: 0 0 15px;
  color: #70869a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.proof-strip > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-strip span {
  color: #bdcad5;
  font-size: 12px;
}

.section {
  padding: 116px 0;
}

.product-section {
  background: #081522;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 53px;
}

.section-heading .eyebrow {
  margin-bottom: 17px;
}

.section-heading h2,
.safety-copy h2,
.beta-copy h2,
.faq-grid h2 {
  margin: 0;
  font-size: clamp(39px, 4.1vw, 59px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 690;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid #1c3346;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(14, 29, 45, 0.96), rgba(9, 22, 35, 0.96));
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -95px;
  top: -110px;
  border-radius: 50%;
  background: var(--card-glow, rgba(32, 212, 243, 0.08));
  filter: blur(18px);
}

.feature-1,
.feature-4,
.feature-5 { grid-column: span 7; }
.feature-2,
.feature-3,
.feature-6 { grid-column: span 5; }

.feature-icon {
  position: relative;
  z-index: 1;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.feature-icon span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-top: 30px;
}

.feature-copy p {
  margin: 0 0 9px;
  color: #68839a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin: 0 0 11px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.feature-copy > span {
  display: block;
  max-width: 520px;
  color: #8fa5b8;
  font-size: 13px;
  line-height: 1.7;
}

.feature-stat {
  position: absolute;
  right: 24px;
  top: 28px;
  padding: 6px 8px;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tone-cyan { color: var(--cyan-soft); --card-glow: rgba(32, 212, 243, 0.1); }
.tone-green { color: #73e7c0; --card-glow: rgba(49, 214, 162, 0.1); }
.tone-amber { color: var(--amber); --card-glow: rgba(247, 191, 96, 0.1); }
.tone-violet { color: var(--violet); --card-glow: rgba(168, 140, 255, 0.1); }
.tone-rose { color: #ff8c9b; --card-glow: rgba(255, 107, 127, 0.1); }
.tone-blue { color: #85b7ff; --card-glow: rgba(106, 168, 255, 0.1); }

.views-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(32, 212, 243, 0.06), transparent 26%),
    #06101b;
}

.view-grid {
  display: grid;
  grid-template-columns: 1.32fr 0.84fr 0.84fr;
  gap: 14px;
}

.view-card {
  min-height: 420px;
  padding: 22px;
  border: 1px solid #1b3144;
  border-radius: 14px;
  background: linear-gradient(180deg, #0b1a29, #081522);
}

.view-card-head {
  display: grid;
  gap: 6px;
  min-height: 54px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(120, 151, 178, 0.15);
}

.view-card-head span {
  color: var(--cyan-soft);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.view-card-head b {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.mini-ui {
  display: grid;
  gap: 13px;
  padding-top: 18px;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.mini-metrics i {
  height: 48px;
  border: 1px solid #1b3348;
  border-radius: 7px;
  background: linear-gradient(135deg, #10243a, #0a1725);
}

.mini-metrics i:nth-child(2)::before,
.mini-metrics i:nth-child(3)::before {
  content: "";
  display: block;
  width: 42%;
  height: 4px;
  margin: 29px 0 0 10px;
  border-radius: 3px;
  background: var(--green);
}

.mini-chart {
  padding: 3px 7px 0;
  border: 1px solid #1b3348;
  border-radius: 8px;
  background: #081421;
}

.mini-chart .market-line {
  height: 255px;
}

.watch-rows {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.watch-rows > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  padding: 16px;
  border: 1px solid #1b3245;
  border-radius: 8px;
  background: #091624;
}

.watch-rows b {
  font-size: 13px;
}

.watch-rows span {
  font-size: 11px;
  font-weight: 700;
}

.watch-rows em {
  grid-column: span 2;
  color: #687f94;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.activity-list {
  display: grid;
  gap: 3px;
  padding-top: 18px;
}

.activity-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(118, 151, 177, 0.13);
}

.activity-list i {
  width: 6px;
  height: 6px;
  margin-top: 4px;
  border-radius: 50%;
}

.activity-list span {
  display: grid;
  gap: 5px;
}

.activity-list b {
  color: #bac9d5;
  font-size: 11px;
}

.activity-list small {
  color: #647b91;
  font-size: 9px;
  line-height: 1.45;
}

.safety-section {
  position: relative;
  overflow: hidden;
  background: #e9f1f4;
  color: #071321;
}

.safety-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -210px;
  bottom: -320px;
  border: 1px solid rgba(5, 91, 112, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(5, 91, 112, 0.03), 0 0 0 140px rgba(5, 91, 112, 0.02);
}

.safety-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.safety-copy .eyebrow {
  color: #087a93;
}

.safety-copy > p {
  margin-top: 27px;
  color: #4e6675;
}

.safety-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(17, 90, 108, 0.15);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.35);
  color: #44606e;
  font-size: 11px;
  line-height: 1.55;
}

.safety-note i {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: #0999b7;
}

.safety-cards {
  display: grid;
  gap: 12px;
}

.safety-cards article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 19px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(10, 72, 88, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.safety-cards article > span {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #071d2d;
  color: #78ebf8;
  font-size: 10px;
  font-weight: 800;
}

.safety-cards div {
  display: grid;
  gap: 6px;
}

.safety-cards b {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.safety-cards p {
  margin: 0;
  color: #5b7180;
  font-size: 12px;
  line-height: 1.55;
}

.workflow-section {
  background: #071321;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #213547;
}

.workflow-grid article {
  position: relative;
  padding: 27px 25px 10px 0;
}

.workflow-grid article:not(:last-child) {
  border-right: 1px solid #213547;
  margin-right: 25px;
}

.workflow-grid article > span {
  color: var(--cyan-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.workflow-line {
  width: 32px;
  height: 2px;
  margin: 28px 0 32px;
  background: var(--cyan);
}

.workflow-grid h3 {
  margin: 0 0 12px;
  font-size: 23px;
}

.workflow-grid p {
  margin: 0;
  color: #7990a4;
  font-size: 12px;
  line-height: 1.7;
}

.beta-section {
  padding-top: 38px;
  background: #071321;
}

.beta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  padding: 58px;
  border: 1px solid #244359;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(32, 212, 243, 0.065), transparent 45%),
    #091929;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.23);
}

.beta-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: -210px;
  top: -210px;
  border-radius: 50%;
  background: rgba(32, 212, 243, 0.11);
  filter: blur(40px);
}

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

.beta-copy > p {
  max-width: 570px;
  margin-top: 22px;
}

.beta-status {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 9px 12px;
  border: 1px solid rgba(32, 212, 243, 0.23);
  border-radius: 7px;
  color: #94aabd;
  font-size: 10px;
}

.beta-status i {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 9px rgba(247, 191, 96, 0.55);
}

.offer-card {
  padding: 30px;
  border: 1px solid #29475c;
  border-radius: 13px;
  background: #071522;
}

.offer-price {
  display: flex;
  align-items: flex-start;
  padding-bottom: 23px;
  border-bottom: 1px solid #1d3447;
}

.offer-price > span {
  margin: 8px 3px 0 0;
  color: var(--cyan-soft);
  font-size: 17px;
}

.offer-price strong {
  font-size: 59px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.offer-price em {
  align-self: end;
  margin: 0 0 4px 9px;
  color: #738a9f;
  font-size: 10px;
  font-style: normal;
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  color: #9fb1c0;
  font-size: 11px;
}

.offer-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

.beta-wait {
  min-height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid #2d4c61;
  border-radius: 8px;
  background: #0d2132;
  color: #8ca4b7;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-card small {
  display: block;
  margin-top: 13px;
  color: #5e7589;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.faq-section {
  background: #071321;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.faq-grid h2 {
  font-size: clamp(35px, 3.2vw, 48px);
}

.faq-list {
  border-top: 1px solid #21384b;
}

.faq-list details {
  border-bottom: 1px solid #21384b;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0;
  cursor: pointer;
  list-style: none;
  color: #d2dee7;
  font-size: 14px;
}

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

.faq-list summary span {
  color: var(--cyan-soft);
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -3px 0 23px;
  color: #7d93a6;
  font-size: 12px;
  line-height: 1.7;
}

footer {
  border-top: 1px solid #1b3042;
  background: #040b13;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding: 55px 0 45px;
}

.footer-main > div:first-child {
  display: grid;
  gap: 13px;
}

.footer-main p {
  margin: 0;
  color: #667d91;
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: #8da2b3;
  font-size: 11px;
}

.legal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(118, 149, 175, 0.12);
  color: #53697c;
  font-size: 8px;
  line-height: 1.65;
}

.legal p {
  margin: 0;
}

.legal p:last-child {
  justify-self: end;
  max-width: 700px;
  text-align: right;
}

@media (max-width: 1080px) {
  .header-inner nav {
    gap: 20px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

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

  .hero-product {
    width: 92%;
    justify-self: center;
  }

  .proof-strip {
    margin-top: 60px;
  }

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

  .view-dashboard {
    grid-column: span 2;
  }

  .safety-grid,
  .faq-grid {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 680px);
  }

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

  .header-inner nav {
    display: none;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(48px, 12.8vw, 70px);
  }

  .hero-product {
    width: 100%;
  }

  .metric-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .orders-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .orders-panel .panel-heading {
    grid-column: span 2;
  }

  .order-row:nth-child(2),
  .order-row:nth-child(4) {
    border-right: 1px solid rgba(113, 146, 172, 0.1);
  }

  .proof-strip > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 88px 0;
  }

  .section-heading,
  .safety-grid,
  .faq-grid,
  .beta-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading {
    align-items: start;
  }

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

  .feature-1,
  .feature-2,
  .feature-3,
  .feature-4,
  .feature-5,
  .feature-6 {
    grid-column: span 6;
  }

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

  .view-dashboard {
    grid-column: auto;
  }

  .safety-copy {
    max-width: 640px;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .workflow-grid article:nth-child(2) {
    border-right: 0;
    margin-right: 0;
  }

  .beta-panel {
    padding: 38px;
  }

  .offer-card {
    max-width: 480px;
  }

  .footer-main {
    flex-direction: column;
  }

  .legal {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legal p:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 480px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 10px;
  }

  .header-cta span {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 23px;
    height: 23px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(43px, 14.3vw, 62px);
    line-height: 1.01;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-window {
    border-radius: 10px;
  }

  .window-topline {
    padding: 0 10px;
  }

  .window-topline b {
    font-size: 7px;
  }

  .dashboard-head,
  .metric-row,
  .dashboard-main,
  .dashboard-footer {
    padding-left: 9px;
    padding-right: 9px;
  }

  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    padding: 9px;
  }

  .orders-panel {
    grid-template-columns: 1fr;
  }

  .orders-panel .panel-heading {
    grid-column: auto;
  }

  .order-row:nth-child(2),
  .order-row:nth-child(4) {
    border-right: 0;
  }

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

  .proof-strip > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .safety-copy h2,
  .beta-copy h2,
  .faq-grid h2 {
    font-size: 38px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-1,
  .feature-2,
  .feature-3,
  .feature-4,
  .feature-5,
  .feature-6 {
    grid-column: auto;
  }

  .feature-card {
    min-height: 250px;
    padding: 23px;
  }

  .feature-stat {
    right: 20px;
    top: 24px;
  }

  .view-card {
    min-height: 370px;
    padding: 18px;
  }

  .mini-chart .market-line {
    height: 215px;
  }

  .safety-cards article {
    align-items: start;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-grid article,
  .workflow-grid article:not(:last-child) {
    margin: 0;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid #213547;
  }

  .workflow-line {
    margin: 18px 0 20px;
  }

  .beta-section {
    padding-top: 20px;
  }

  .beta-panel {
    width: calc(100% - 16px);
    padding: 29px 22px;
  }

  .offer-card {
    padding: 23px;
  }

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

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

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

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(32, 212, 243, 0.12), transparent 32%),
    var(--ink);
}

.error-page .container {
  max-width: 680px;
  text-align: center;
}

.error-page .brand-link {
  display: inline-flex;
  margin-bottom: 48px;
}

.error-page h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: -0.055em;
}

.error-page p {
  margin: 20px auto 30px;
  color: var(--muted);
  line-height: 1.7;
}
