:root {
  color-scheme: dark;
  --bg: #0f1012;
  --panel: #141518;
  --panel-soft: #191b1f;
  --ink: #f2f5f8;
  --muted: #9aa1aa;
  --line: #2b2f36;
  --blue: #2f6dff;
  --green: #00a889;
  --red: #ff4d5b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
}

.brand-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--blue) 48%, var(--line));
  border-radius: 5px;
  background: var(--panel-soft);
}

.brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

nav a:last-child {
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, var(--blue) 70%, transparent);
  border-radius: 5px;
  color: var(--ink);
  background: color-mix(in srgb, var(--blue) 12%, transparent);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(430px, 0.9fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: 118px clamp(20px, 6vw, 82px) 86px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.market-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 44%, color-mix(in srgb, var(--blue) 12%, transparent), transparent 32%),
    var(--bg);
}

.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 48%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 48%, transparent) 1px, transparent 1px);
  background-size: 9vw 74px;
  opacity: 0.72;
}

.market-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 16, 18, 0.95) 0%, rgba(15, 16, 18, 0.7) 44%, rgba(15, 16, 18, 0.24) 100%);
}

.price-line {
  position: absolute;
  right: 4vw;
  left: 34vw;
  height: 1px;
  opacity: 0.72;
}

.line-one {
  top: 38%;
  border-top: 1px dashed color-mix(in srgb, var(--green) 80%, transparent);
}

.line-two {
  top: 59%;
  border-top: 1px dashed color-mix(in srgb, var(--red) 70%, transparent);
}

.candle {
  position: absolute;
  z-index: 2;
  bottom: 21%;
  width: clamp(9px, 1vw, 17px);
  border-radius: 1px;
}

.candle::before {
  content: "";
  position: absolute;
  top: -54px;
  bottom: -44px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.76;
}

.candle.up {
  color: var(--green);
  background: var(--green);
}

.candle.down {
  color: var(--red);
  background: var(--red);
}

.c1 { right: 48vw; height: 88px; }
.c2 { right: 43vw; height: 128px; bottom: 25%; }
.c3 { right: 38vw; height: 72px; bottom: 23%; }
.c4 { right: 33vw; height: 158px; bottom: 29%; }
.c5 { right: 28vw; height: 96px; bottom: 26%; }
.c6 { right: 23vw; height: 138px; bottom: 31%; }
.c7 { right: 18vw; height: 112px; bottom: 36%; }
.c8 { right: 13vw; height: 174px; bottom: 30%; }

.floating-panel {
  position: absolute;
  z-index: 3;
  width: min(238px, 34vw);
  padding: 13px 15px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 6px;
  background: color-mix(in srgb, var(--panel) 86%, transparent);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.floating-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-panel strong {
  display: block;
  font-size: 18px;
}

.floating-panel small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.replay-panel {
  right: 17vw;
  top: 20%;
}

.result-panel {
  right: 8vw;
  bottom: 16%;
}

.result-panel strong {
  color: var(--green);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 7.1vw, 98px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 630px;
  color: color-mix(in srgb, var(--ink) 82%, var(--muted));
  font-size: clamp(18px, 2.3vw, 25px);
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 900;
}

.primary-action,
.price-card a {
  background: var(--blue);
  color: #ffffff;
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--ink);
  background: color-mix(in srgb, var(--panel) 84%, transparent);
}

.google-action {
  gap: 10px;
}

.google-action span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
}

.login-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-pricing span {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: 4px;
  color: var(--muted);
  background: color-mix(in srgb, var(--panel) 80%, transparent);
  font-size: 12px;
  font-weight: 800;
}

.hero-app-preview {
  position: relative;
  z-index: 4;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: 7px;
  background: color-mix(in srgb, #101114 92%, transparent);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.hero-app-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(90px, 0.6fr));
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.hero-app-top div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.hero-app-top span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.hero-app-top small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-app-top strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-app-top .gain {
  color: var(--green);
}

.hero-app-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 188px);
  min-height: 410px;
}

.hero-mini-chart {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.hero-mini-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.hero-mini-toolbar span {
  max-width: 170px;
  overflow: hidden;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #181a1e;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-mini-toolbar b,
.hero-mini-toolbar em {
  flex: 0 0 auto;
  font-style: normal;
}

.hero-mini-toolbar b:first-of-type {
  padding: 5px 8px;
  border-radius: 4px;
  background: #2b2f36;
  color: var(--ink);
}

.hero-mini-grid {
  position: relative;
  height: 244px;
  overflow: hidden;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 42%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 42%, transparent) 1px, transparent 1px);
  background-size: 12.5% 54px;
}

.hero-mini-grid::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 69%;
  border-top: 1px dotted var(--green);
  opacity: 0.75;
}

.hm {
  position: absolute;
  left: var(--x);
  bottom: var(--b);
  width: var(--w, 10px);
  height: var(--h, 44px);
  border-radius: 1px;
}

.hm::before {
  content: "";
  position: absolute;
  top: calc(var(--wt, 20px) * -1);
  bottom: calc(var(--wb, 18px) * -1);
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.9;
}

.hm.up {
  color: var(--green);
  background: var(--green);
}

.hm.down {
  color: var(--red);
  background: var(--red);
}

.hero-ask,
.hero-bid {
  position: absolute;
  right: 0;
  z-index: 3;
  padding: 3px 6px;
  font-size: 10px;
  font-weight: 900;
}

.hero-ask {
  top: var(--quote-top, 62%);
  background: #ff4d6d;
}

.hero-bid {
  top: calc(var(--quote-top, 62%) + 21px);
  background: #2f6dff;
}

.hero-mini-tabs {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 24px;
  padding: 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}

.hero-mini-tabs span:first-child {
  min-width: 66px;
  padding: 2px 10px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 10%, transparent);
}

.hero-session-strip {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 5px 8px;
  align-items: center;
  padding: 12px;
  color: var(--muted);
  font-size: 9px;
}

.hero-session-strip b {
  height: 17px;
  border: 1px solid color-mix(in srgb, var(--muted) 42%, transparent);
  background:
    linear-gradient(90deg, #40d4dc 0 29%, transparent 29% 100%),
    linear-gradient(90deg, transparent 0 47%, #b6ec9f 47% 68%, transparent 68%),
    #222527;
}

.hero-session-strip b:nth-of-type(2) {
  background:
    linear-gradient(90deg, #f1c971 0 42%, transparent 42% 100%),
    #222527;
}

.hero-session-strip b:nth-of-type(4) {
  background:
    linear-gradient(90deg, transparent 0 56%, #f18c46 56% 86%, transparent 86%),
    #222527;
}

.hero-order-panel {
  padding: 18px 14px;
  background: #151619;
}

.hero-order-panel nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
}

.hero-order-panel nav strong {
  color: var(--blue);
}

.hero-order-stats,
.hero-order-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.hero-order-stats div,
.hero-order-panel label {
  display: grid;
  gap: 5px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #191b1f;
}

.hero-order-stats small,
.hero-order-panel label {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.hero-order-stats strong,
.hero-order-panel label strong {
  color: var(--ink);
  font-size: 12px;
  text-transform: none;
}

.hero-order-panel p {
  margin: 13px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-order-actions button {
  min-height: 48px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  background: color-mix(in srgb, var(--green) 22%, transparent);
  color: var(--ink);
  text-align: left;
  font-size: 11px;
  font-weight: 900;
}

.hero-order-actions button:last-child {
  border-color: var(--red);
  background: color-mix(in srgb, var(--red) 18%, transparent);
}

.hero-order-actions b {
  color: var(--muted);
  font-size: 9px;
}

.hero-order-panel label {
  margin-top: 9px;
}

.hero-order-panel > button {
  width: 100%;
  min-height: 38px;
  margin-top: 12px;
  border: 1px solid var(--green);
  border-radius: 5px;
  background: color-mix(in srgb, var(--green) 30%, transparent);
  color: var(--ink);
  font-weight: 900;
}

.preview-section {
  padding: clamp(44px, 6vw, 72px) clamp(20px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: #0d0e10;
}

.app-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #111214;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.preview-topbar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-topbar strong {
  color: var(--ink);
  font-size: 13px;
}

.preview-topbar .gain {
  color: var(--green);
}

.preview-account span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.preview-body {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(250px, 310px);
  min-height: 610px;
}

.preview-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 66px 18px;
  border-right: 1px solid var(--line);
}

.preview-sidebar span {
  width: 13px;
  height: 13px;
  border: 1px solid var(--muted);
  border-radius: 2px;
  opacity: 0.65;
}

.preview-sidebar .active {
  border-color: var(--blue);
  background: color-mix(in srgb, var(--blue) 76%, transparent);
  opacity: 1;
}

.preview-chart {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.preview-toolbar span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: #181a1e;
}

.preview-toolbar b,
.preview-toolbar em {
  font-style: normal;
  font-weight: 800;
}

.preview-toolbar .active {
  padding: 5px 8px;
  border-radius: 4px;
  background: #2b2f36;
  color: var(--ink);
}

.preview-grid {
  position: relative;
  height: clamp(280px, 34vw, 420px);
  overflow: hidden;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 44%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 44%, transparent) 1px, transparent 1px);
  background-size: 9% 56px;
}

.preview-grid::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 72%;
  border-top: 1px dotted var(--green);
  opacity: 0.75;
}

.pc {
  position: absolute;
  left: var(--x);
  bottom: var(--b);
  width: var(--w, 10px);
  height: var(--h, 46px);
  border-radius: 1px;
}

.pc::before {
  content: "";
  position: absolute;
  top: calc(var(--wt, 20px) * -1);
  bottom: calc(var(--wb, 18px) * -1);
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.9;
}

.pc.up {
  color: var(--green);
  background: var(--green);
}

.pc.down {
  color: var(--red);
  background: var(--red);
}

.ask-label,
.bid-label {
  position: absolute;
  right: 6px;
  z-index: 3;
  padding: 3px 5px;
  font-size: 10px;
  font-weight: 900;
}

.ask-label {
  top: var(--quote-top, 68%);
  background: #ff4d6d;
}

.bid-label {
  top: calc(var(--quote-top, 68%) + 22px);
  background: #2f6dff;
}

.preview-chart-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 24px;
  padding: 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}

.preview-chart-tabs span:first-child {
  min-width: 76px;
  padding: 2px 10px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 10%, transparent);
}

.preview-time {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  padding: 14px 16px 16px;
}

.session-lines {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 5px 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #191b1d;
  color: var(--muted);
  font-size: 10px;
}

.session-lines b {
  height: 19px;
  border: 1px solid color-mix(in srgb, var(--muted) 46%, transparent);
  background:
    linear-gradient(90deg, #40d4dc 0 29%, transparent 29% 100%),
    linear-gradient(90deg, transparent 0 47%, #b6ec9f 47% 68%, transparent 68%),
    #222527;
}

.session-lines b:nth-of-type(2) {
  background:
    linear-gradient(90deg, #f1c971 0 42%, transparent 42% 100%),
    #222527;
}

.session-lines b:nth-of-type(4) {
  background:
    linear-gradient(90deg, transparent 0 56%, #f18c46 56% 86%, transparent 86%),
    #222527;
}

.jump-box {
  display: grid;
  gap: 8px;
  align-content: start;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.jump-box strong,
.jump-box button {
  min-height: 32px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #17191c;
  color: var(--ink);
  font-size: 13px;
  text-transform: none;
}

.preview-ticket {
  padding: 22px 20px;
  background: #151619;
}

.preview-ticket nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
}

.preview-ticket nav strong {
  color: var(--blue);
}

.ticket-stats,
.ticket-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ticket-stats div,
.preview-ticket label {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #191b1f;
}

.ticket-stats span,
.preview-ticket label {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.ticket-stats strong,
.preview-ticket label strong {
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
}

.preview-ticket p {
  margin: 18px 0 10px;
  color: var(--muted);
  font-weight: 800;
}

.ticket-side button {
  min-height: 58px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  background: color-mix(in srgb, var(--green) 24%, transparent);
  color: var(--ink);
  text-align: left;
  font-weight: 900;
}

.ticket-side button:last-child {
  border-color: var(--red);
  background: color-mix(in srgb, var(--red) 18%, transparent);
}

.ticket-side b {
  color: var(--muted);
  font-size: 11px;
}

.preview-ticket label {
  margin-top: 10px;
}

.confirm-preview {
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border: 1px solid var(--green);
  border-radius: 5px;
  background: color-mix(in srgb, var(--green) 30%, transparent);
  color: var(--ink);
  font-weight: 900;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.product-strip a {
  min-height: 150px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.product-strip a:last-child {
  border-right: 0;
}

.product-strip span,
.price-card span {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-strip strong {
  display: block;
  max-width: 360px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.25;
}

.section,
.agent-section,
.pricing-section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading h2,
.agent-section h2 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid article,
.price-card {
  min-height: 270px;
  padding: 28px;
  background: var(--panel);
}

.feature-grid article span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.feature-grid h3 {
  margin-bottom: 13px;
  font-size: 24px;
}

.feature-grid p,
.agent-section p,
.price-card p {
  color: var(--muted);
  line-height: 1.6;
}

.agent-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: end;
  background: color-mix(in srgb, var(--panel) 54%, var(--bg));
}

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

.price-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.95;
}

.price-card p {
  min-height: 78px;
  max-width: 430px;
}

.price-card.featured {
  background: color-mix(in srgb, var(--panel) 76%, var(--blue) 9%);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(20px, 6vw, 82px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

footer a {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 58px;
  }

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

  .hero-app-preview {
    max-width: 880px;
  }

  .floating-panel {
    display: none;
  }
}

@media (max-width: 880px) {
  .site-header {
    min-height: 58px;
  }

  nav a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 96px;
  }

  .market-scene::before {
    background: linear-gradient(90deg, rgba(15, 16, 18, 0.96), rgba(15, 16, 18, 0.66));
  }

  .product-strip,
  .section-heading,
  .feature-grid,
  .agent-section,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .product-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid article,
  .price-card {
    min-height: auto;
  }

  .preview-body {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .preview-ticket {
    display: none;
  }

  .preview-time {
    grid-template-columns: 1fr;
  }

  .preview-toolbar {
    overflow-x: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-icon {
    width: 26px;
    height: 26px;
  }

  .hero {
    padding-inline: 16px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(52px, 18vw, 86px);
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-app-top,
  .hero-mini-toolbar {
    overflow-x: auto;
  }

  .hero-app-top {
    display: flex;
  }

  .hero-app-top div {
    flex: 0 0 auto;
  }

  .hero-app-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-mini-chart {
    border-right: 0;
  }

  .hero-mini-grid {
    height: 220px;
  }

  .hero-order-panel {
    display: none;
  }

  .section,
  .preview-section,
  .agent-section,
  .pricing-section {
    padding-inline: 16px;
  }

  .preview-topbar {
    gap: 10px;
    overflow-x: auto;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-grid {
    height: 300px;
  }

  .session-lines {
    grid-template-columns: 58px 1fr;
    padding: 10px;
  }

  .section-heading h2,
  .agent-section h2 {
    font-size: clamp(34px, 12vw, 54px);
  }

  footer {
    padding-inline: 16px;
  }
}
