:root {
  color-scheme: dark;
  --background: #181e28;
  --background-deep: #11161f;
  --surface: #212835;
  --surface-soft: #252d3b;
  --surface-muted: #2c3442;
  --border: #343d4d;
  --border-soft: rgba(153, 163, 183, 0.16);
  --foreground: #f4f6fa;
  --text: #d7dae0;
  --muted: #99a3b7;
  --accent: #528bff;
  --accent-bright: #79a6ff;
  --positive: #70f49c;
  --negative: #e56674;
  --warning: #e9b684;
  --violet: #bb8cff;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% -10%, rgba(82, 139, 255, 0.1), transparent 28rem),
    var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

img,
svg {
  display: block;
}
h1, h2, h3, h4 {
	text-transform: capitalize !important;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--foreground);
  color: var(--background-deep);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(153, 163, 183, 0.14);
  background: rgba(17, 22, 31, 0.82);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  color: var(--foreground);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: -1px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: #b8c0ce;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--foreground);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 12px;
}

.button-large {
  min-height: 54px;
  padding: 0 21px;
  font-size: 13px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--accent);
  box-shadow: 0 13px 32px rgba(82, 139, 255, 0.22);
  color: #fff;
}

.button-primary:hover {
  background: #6397ff;
  box-shadow: 0 17px 38px rgba(82, 139, 255, 0.3);
}

.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--foreground);
}

.button-ghost:hover {
  border-color: #526078;
  background: rgba(255, 255, 255, 0.065);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 176px 0 80px;
  background:
    linear-gradient(180deg, rgba(17, 22, 31, 0.94), rgba(24, 30, 40, 0.98)),
    var(--background);
}

.hero-grid,
.statement-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--background-deep), transparent 13%, transparent 87%, var(--background-deep)),
    linear-gradient(180deg, var(--background-deep), transparent 25%);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(14px);
}

.hero-glow-one {
  top: 160px;
  left: -220px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(82, 139, 255, 0.14), transparent 65%);
}

.hero-glow-two {
  right: -170px;
  bottom: 50px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(112, 244, 156, 0.07), transparent 65%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 58px;
}

.eyebrow,
.section-index,
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 14px rgba(112, 244, 156, 0.65);
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(112, 244, 156, 0.35);
  border-radius: inherit;
  content: "";
}

.hero-title {
  max-width: 680px;
  margin: 23px 0 0;
  color: var(--foreground);
  font-size: clamp(58px, 5.6vw, 86px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-title span {
  display: block;
  color: var(--muted);
}

.hero-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: #aeb7c7;
  font-size: 17px;
  line-height: 1.8;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 31px;
}

.hero-note p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid var(--background-deep);
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--foreground);
  font-size: 8px;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: #344567;
}

.avatar-stack span:nth-child(2) {
  background: #3a4f48;
}

.avatar-stack span:nth-child(3) {
  background: #513e55;
}

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

.product-window {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.2);
  border-radius: 21px;
  background: #151b25;
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(255, 255, 255, 0.018);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.12);
  background: #1a202b;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--foreground);
  font-size: 11px;
  font-weight: 750;
}

.window-brand img {
  width: 24px;
  height: 24px;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b4351;
}

.window-controls span:first-child {
  background: #e56674;
}

.window-controls span:nth-child(2) {
  background: #e9b684;
}

.window-controls span:last-child {
  background: #70f49c;
}

.product-body {
  display: grid;
  grid-template-columns: 55px 1fr;
  min-height: 500px;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding-top: 14px;
  border-right: 1px solid rgba(153, 163, 183, 0.1);
  background: #171d27;
}

.sidebar-mark {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  place-items: center;
}

.sidebar-mark img {
  width: 28px;
  height: 28px;
}

.side-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #788397;
}

.side-icon.active {
  background: rgba(82, 139, 255, 0.14);
  color: var(--accent-bright);
}

.side-icon svg {
  width: 15px;
  height: 15px;
}

.product-main {
  min-width: 0;
  padding: 21px;
}

.product-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-heading div,
.card-heading div {
  display: grid;
}

.product-heading small,
.card-heading small,
.setup-card small,
.context-stats small,
.process-card small,
.journal-dashboard small,
.access-copy small {
  color: #7f8a9e;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.product-heading h2 {
  margin: 3px 0 0;
  color: var(--foreground);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.demo-pill,
.quality-pill {
  padding: 6px 8px;
  border: 1px solid rgba(82, 139, 255, 0.25);
  border-radius: 6px;
  background: rgba(82, 139, 255, 0.11);
  color: var(--accent-bright);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 17px;
}

.market-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 8px;
  padding: 10px;
  border: 1px solid rgba(153, 163, 183, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}

.market-strip span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--foreground);
  font-size: 9px;
  font-weight: 800;
}

.market-strip strong {
  color: #adb6c6;
  font-size: 7px;
}

.market-strip small {
  font-size: 7px;
  font-weight: 750;
}

.positive {
  color: var(--positive) !important;
}

.negative {
  color: var(--negative) !important;
}

.warning {
  color: var(--warning) !important;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  gap: 10px;
  margin-top: 10px;
}

.chart-card,
.setup-card {
  min-width: 0;
  border: 1px solid rgba(153, 163, 183, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.022);
}

.chart-card {
  padding: 14px;
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.card-heading strong {
  margin-top: 3px;
  color: var(--foreground);
  font-size: 11px;
}

.price-block {
  align-items: end;
}

.price-block strong {
  font-size: 12px;
}

.price-block span {
  color: var(--positive);
  font-size: 8px;
  font-weight: 800;
}

.chart-area {
  position: relative;
  height: 206px;
  margin-top: 12px;
  overflow: hidden;
}

.chart-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.07) 1px, transparent 1px);
  background-size: 100% 25%, 25% 100%;
}

.price-chart {
  position: absolute;
  inset: 8px 0 0;
  width: 100%;
  height: calc(100% - 8px);
  overflow: visible;
}

.chart-fill {
  fill: url("#chartFill");
  stroke: none;
}

.chart-stroke {
  fill: none;
  stroke: var(--accent-bright);
  stroke-width: 2.5;
}

.chart-point {
  fill: var(--accent-bright);
  stroke: rgba(121, 166, 255, 0.3);
  stroke-width: 8;
}

.chart-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.chart-meta span {
  display: grid;
  gap: 2px;
  padding: 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: #778397;
  font-size: 6px;
  text-transform: uppercase;
}

.chart-meta strong {
  color: #cdd3dd;
  font-size: 8px;
  text-transform: none;
}

.setup-card {
  padding: 14px;
}

.setup-score {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 8px;
  background: rgba(112, 244, 156, 0.11);
  color: var(--positive);
  font-size: 11px;
  font-weight: 850;
}

.signal-list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.signal-list > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.08);
}

.signal-icon {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
}

.signal-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.2;
}

.positive-bg {
  background: rgba(112, 244, 156, 0.1);
  color: var(--positive);
}

.warning-bg {
  background: rgba(233, 182, 132, 0.1);
  color: var(--warning);
}

.signal-list p {
  display: grid;
  gap: 1px;
  margin: 0;
}

.signal-list strong {
  color: #cbd1dc;
  font-size: 8px;
}

.signal-list small {
  color: #758096;
  font-size: 6px;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 12px;
}

.plan-row div {
  display: grid;
  gap: 3px;
  padding: 8px;
  border-radius: 7px;
  background: rgba(82, 139, 255, 0.07);
}

.plan-row strong {
  color: #d1d6df;
  font-size: 7px;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(153, 163, 183, 0.18);
  border-radius: 10px;
  background: rgba(33, 40, 53, 0.92);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
  color: #d7dce5;
  font-size: 9px;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.chip-one {
  top: -26px;
  right: 36px;
}

.chip-two {
  right: -25px;
  bottom: 52px;
}

.chip-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: rgba(82, 139, 255, 0.13);
  color: var(--accent-bright);
}

.chip-icon svg {
  width: 13px;
  height: 13px;
}

.floating-chip .status-dot {
  width: 6px;
  height: 6px;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(82, 139, 255, 0.1);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(82, 139, 255, 0.9);
  content: "";
}

.orbit-one {
  top: -55px;
  right: -35px;
  width: 270px;
  height: 270px;
}

.orbit-two {
  right: 110px;
  bottom: -70px;
  width: 340px;
  height: 340px;
}

.capability-rail {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(153, 163, 183, 0.12);
  border-bottom: 1px solid rgba(153, 163, 183, 0.12);
  background: rgba(17, 22, 31, 0.7);
}

.capability-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 64px;
  animation: capability-scroll 40s linear infinite;
}

.capability-track span {
  color: #a5aec0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-track i {
  width: 4px;
  height: 4px;
  margin: 0 28px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(82, 139, 255, 0.7);
}

@keyframes capability-scroll {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-heading h2,
.platform-copy h2,
.access-copy h2,
.faq-heading h2 {
  margin: 16px 0 0;
  color: var(--foreground);
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading h2 span {
  color: var(--muted);
}

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

.workflow-section {
  background: var(--background);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border-soft);
  border-left: 1px solid var(--border-soft);
}

.workflow-card {
  position: relative;
  min-height: 390px;
  padding: 38px;
  overflow: hidden;
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 55%);
}

.workflow-card::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 139, 255, 0.08), transparent 70%);
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.workflow-card:hover::after {
  opacity: 1;
}

.workflow-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(82, 139, 255, 0.22);
  border-radius: 13px;
  background: rgba(82, 139, 255, 0.08);
  color: var(--accent-bright);
}

.workflow-icon svg {
  width: 21px;
  height: 21px;
}

.step-number {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #4a5568;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.workflow-card h3 {
  margin: 27px 0 0;
  color: var(--foreground);
  font-size: 23px;
  letter-spacing: -0.035em;
}

.workflow-card > p {
  max-width: 455px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.mini-interface {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  height: 95px;
  border: 1px solid rgba(153, 163, 183, 0.12);
  border-radius: 12px;
  background: rgba(17, 22, 31, 0.6);
}

.scanner-interface {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 11px;
}

.scanner-interface div {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 0 13px;
  border-right: 1px solid rgba(153, 163, 183, 0.1);
}

.scanner-interface div:last-child {
  border-right: 0;
}

.scanner-interface span {
  color: #828da0;
  font-size: 8px;
}

.scanner-interface strong {
  color: var(--foreground);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.analysis-interface {
  overflow: hidden;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.055) 1px, transparent 1px);
  background-size: 25% 50%, 20% 100%;
}

.analysis-interface svg {
  position: absolute;
  inset: 13px;
  width: calc(100% - 26px);
  height: calc(100% - 26px);
}

.analysis-interface path {
  fill: none;
  stroke: var(--accent-bright);
  stroke-width: 2;
}

.analysis-interface span {
  position: absolute;
  bottom: 10px;
  width: 3px;
  background: rgba(112, 244, 156, 0.4);
}

.analysis-interface span:nth-child(1) { left: 14%; height: 26px; }
.analysis-interface span:nth-child(2) { left: 23%; height: 38px; }
.analysis-interface span:nth-child(3) { left: 38%; height: 20px; }
.analysis-interface span:nth-child(4) { left: 72%; height: 33px; }
.analysis-interface span:nth-child(5) { left: 84%; height: 48px; }

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

.plan-interface div {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(82, 139, 255, 0.06);
}

.plan-interface small {
  color: #758096;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.plan-interface strong {
  color: #d5d9e1;
  font-size: 10px;
}

.journal-interface {
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: center;
  gap: 18px;
  padding: 13px;
}

.journal-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 60px;
}

.journal-bars span {
  flex: 1;
  min-width: 12px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(to top, rgba(82, 139, 255, 0.35), var(--accent));
}

.journal-bars span:nth-child(1) { height: 32%; }
.journal-bars span:nth-child(2) { height: 53%; }
.journal-bars span:nth-child(3) { height: 42%; }
.journal-bars span:nth-child(4) { height: 78%; }
.journal-bars span:nth-child(5) { height: 92%; }

.journal-interface > div:last-child {
  display: grid;
  gap: 4px;
}

.journal-interface small {
  color: #758096;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journal-interface strong {
  color: var(--positive);
  font-size: 25px;
}

.platform-section {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: #151a23;
}

.platform-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 100px;
}

.platform-copy h2 {
  font-size: clamp(42px, 4vw, 61px);
}

.platform-copy > p {
  margin-top: 24px;
}

.platform-points {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--border-soft);
}

.platform-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}

.platform-points > div > span {
  color: var(--accent-bright);
  font-size: 10px;
  font-weight: 800;
}

.platform-points p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.platform-points strong {
  color: var(--foreground);
  font-size: 13px;
}

.platform-visual {
  position: relative;
  min-height: 630px;
}

.platform-visual::before {
  position: absolute;
  inset: 40px 30px 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 139, 255, 0.12), transparent 68%);
  content: "";
  filter: blur(8px);
}

.process-line {
  position: absolute;
  z-index: 1;
  top: 95px;
  bottom: 95px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(82, 139, 255, 0.55), transparent);
}

.process-line::before,
.process-line::after {
  position: absolute;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(82, 139, 255, 0.75);
  content: "";
}

.process-line::before {
  top: 31%;
}

.process-line::after {
  bottom: 28%;
}

.process-card {
  position: absolute;
  z-index: 2;
  width: min(420px, 76%);
  padding: 20px;
  border: 1px solid rgba(153, 163, 183, 0.17);
  border-radius: 16px;
  background: rgba(33, 40, 53, 0.9);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.process-card-one {
  top: 0;
  left: 0;
  transform: rotate(-2deg);
}

.process-card-two {
  z-index: 3;
  top: 195px;
  right: 0;
  transform: rotate(1.5deg);
}

.process-card-three {
  bottom: 0;
  left: 44px;
  transform: rotate(-1deg);
}

.process-label {
  display: inline-flex;
  padding: 5px 7px;
  border-radius: 5px;
  background: rgba(82, 139, 255, 0.1);
  color: var(--accent-bright);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.process-content {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 15px;
}

.pulse-rings {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
}

.pulse-rings i {
  position: absolute;
  border: 1px solid rgba(82, 139, 255, 0.22);
  border-radius: 50%;
}

.pulse-rings i:first-child { width: 68px; height: 68px; }
.pulse-rings i:nth-child(2) { width: 48px; height: 48px; }
.pulse-rings i:nth-child(3) { width: 28px; height: 28px; }
.pulse-rings b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.process-content > div:last-child,
.review-score > div:last-child {
  display: grid;
}

.process-content strong,
.review-score strong {
  margin-top: 3px;
  color: var(--foreground);
  font-size: 13px;
}

.process-content p,
.review-score p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.plan-builder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 14px 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}

.plan-builder > div {
  display: grid;
}

.plan-builder strong {
  margin-top: 3px;
  color: var(--foreground);
  font-size: 13px;
}

.quality-pill {
  border-color: rgba(112, 244, 156, 0.18);
  background: rgba(112, 244, 156, 0.08);
  color: var(--positive);
}

.rule-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  color: var(--muted);
  font-size: 9px;
}

.rule-row strong {
  color: #d4d9e2;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}

.score-ring {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  place-content: center;
  border: 6px solid rgba(112, 244, 156, 0.12);
  border-top-color: var(--positive);
  border-right-color: rgba(112, 244, 156, 0.55);
  border-radius: 50%;
}

.score-ring strong {
  color: var(--foreground);
  font-size: 18px;
}

.score-ring small {
  margin-left: 2px;
  font-size: 7px;
}

.bento-section {
  background: var(--background);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.bento-card {
  position: relative;
  min-height: 410px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
    var(--surface);
}

.bento-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(82, 139, 255, 0.06), transparent 45%);
  content: "";
  pointer-events: none;
}

.bento-wide {
  grid-column: 1 / -1;
  min-height: 540px;
}

.bento-copy {
  position: relative;
  z-index: 2;
  max-width: 490px;
}

.bento-copy h3 {
  margin: 15px 0 0;
  color: var(--foreground);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.bento-copy p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.context-visual {
  position: absolute;
  right: 32px;
  bottom: 0;
  width: 62%;
  height: 360px;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.14);
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
  background: #171d27;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.context-tabs {
  display: flex;
  gap: 6px;
  padding: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.context-tabs span {
  padding: 7px 11px;
  border-radius: 6px;
  color: #818b9e;
  font-size: 8px;
  font-weight: 750;
}

.context-tabs .active {
  background: rgba(82, 139, 255, 0.12);
  color: var(--accent-bright);
}

.context-chart {
  position: relative;
  height: 220px;
  margin: 0 14px;
  background-image:
    linear-gradient(rgba(153, 163, 183, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 163, 183, 0.06) 1px, transparent 1px);
  background-size: 100% 25%, 16.66% 100%;
}

.context-chart svg {
  position: absolute;
  inset: 20px 0 0;
  width: 100%;
  height: calc(100% - 30px);
}

.context-chart path {
  fill: none;
  stroke: var(--accent-bright);
  stroke-width: 3;
}

.context-chart i {
  position: absolute;
  bottom: 0;
  width: 5px;
  border-radius: 2px 2px 0 0;
  background: rgba(112, 244, 156, 0.25);
}

.context-chart i:nth-child(1) { left: 10%; height: 25px; }
.context-chart i:nth-child(2) { left: 23%; height: 42px; }
.context-chart i:nth-child(3) { left: 48%; height: 31px; }
.context-chart i:nth-child(4) { left: 68%; height: 57px; }
.context-chart i:nth-child(5) { left: 87%; height: 72px; }

.context-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 14px 0;
}

.context-stats span {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.context-stats strong {
  color: #d6dbe4;
  font-size: 9px;
}

.checklist-visual {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: grid;
  gap: 8px;
}

.checklist-visual span {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(153, 163, 183, 0.1);
  border-radius: 9px;
  background: rgba(17, 22, 31, 0.45);
  color: #bac2d0;
  font-size: 10px;
}

.checklist-visual i {
  position: relative;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(112, 244, 156, 0.12);
}

.checklist-visual i::after {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 7px;
  border: solid var(--positive);
  border-width: 0 1.5px 1.5px 0;
  content: "";
  transform: rotate(45deg);
}

.alert-visual {
  position: absolute;
  right: 32px;
  bottom: 42px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px;
  border: 1px solid rgba(82, 139, 255, 0.18);
  border-radius: 12px;
  background: rgba(17, 22, 31, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.alert-bell {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(82, 139, 255, 0.11);
  color: var(--accent-bright);
}

.alert-bell svg {
  width: 20px;
  height: 20px;
}

.alert-visual > div {
  display: grid;
}

.alert-visual small {
  color: var(--accent-bright);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.alert-visual strong {
  margin-top: 2px;
  color: var(--foreground);
  font-size: 12px;
}

.alert-visual p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.bento-journal {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 50px;
}

.bento-journal .bento-copy {
  order: 2;
}

.journal-dashboard {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(153, 163, 183, 0.14);
  border-radius: 14px;
  background: #171d27;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.journal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.journal-header > div {
  display: grid;
}

.journal-header strong {
  margin-top: 2px;
  color: var(--foreground);
  font-size: 12px;
}

.journal-header > span {
  padding: 6px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 7px;
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.review-metrics > div {
  position: relative;
  display: grid;
  min-height: 85px;
  align-content: start;
  padding: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.review-metrics strong {
  margin-top: 4px;
  color: var(--foreground);
  font-size: 22px;
}

.metric-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22px;
  clip-path: polygon(0 80%, 16% 55%, 28% 67%, 45% 28%, 58% 48%, 74% 16%, 87% 35%, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(to top, rgba(82, 139, 255, 0.18), rgba(82, 139, 255, 0.04));
}

.line-two {
  background: linear-gradient(to top, rgba(112, 244, 156, 0.16), rgba(112, 244, 156, 0.03));
  clip-path: polygon(0 60%, 14% 72%, 30% 38%, 46% 55%, 62% 18%, 76% 32%, 90% 10%, 100% 22%, 100% 100%, 0 100%);
}

.line-three {
  background: linear-gradient(to top, rgba(187, 140, 255, 0.16), rgba(187, 140, 255, 0.03));
}

.review-table {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.5fr;
  padding: 0 14px 14px;
}

.review-table span,
.review-table strong {
  padding: 8px;
  border-bottom: 1px solid rgba(153, 163, 183, 0.08);
  font-size: 8px;
}

.review-table span {
  color: #6f7a8e;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.review-table strong {
  color: #b9c1ce;
  font-weight: 650;
}

.statement-section {
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: #11161f;
  text-align: center;
}

.statement-grid {
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.statement-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.statement-content img {
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
}

.statement-content blockquote {
  margin: 25px 0 0;
  color: var(--foreground);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.statement-content blockquote span {
  color: var(--accent-bright);
}

.statement-content > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.access-section {
  background:
    radial-gradient(circle at 18% 50%, rgba(82, 139, 255, 0.11), transparent 30rem),
    var(--background);
}

.access-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.access-copy h2 {
  font-size: clamp(42px, 4.4vw, 64px);
}

.access-copy > p {
  margin-top: 25px;
}

.access-benefits {
  display: grid;
  gap: 12px;
  margin-top: 31px;
}

.access-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bac2cf;
  font-size: 12px;
}

.access-benefits svg {
  width: 16px;
  height: 16px;
  color: var(--positive);
  stroke-width: 2.4;
}

.signup-card {
  padding: 34px;
  border: 1px solid rgba(153, 163, 183, 0.2);
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 50%),
    var(--surface);
  box-shadow: var(--shadow);
}

.signup-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.signup-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: rgba(82, 139, 255, 0.11);
  color: var(--accent-bright);
}

.signup-icon svg {
  width: 19px;
  height: 19px;
}

.signup-card-top > div {
  display: grid;
}

.signup-card-top small {
  color: var(--accent-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.signup-card-top h3 {
  margin: 3px 0 0;
  color: var(--foreground);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.waitlist-form {
  position: relative;
  display: grid;
  margin-top: 24px;
}

.waitlist-form > label {
  margin: 0 0 8px;
  color: #aeb7c5;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.waitlist-form > label:not(:first-of-type) {
  margin-top: 17px;
}

.input-wrap {
  position: relative;
}

.input-wrap svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 17px;
  height: 17px;
  color: #6f7a8e;
  transform: translateY(-50%);
}

.input-wrap input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 45px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: rgba(17, 22, 31, 0.55);
  color: var(--foreground);
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.input-wrap input::placeholder {
  color: #697487;
}

.input-wrap input:focus {
  border-color: var(--accent);
  background: rgba(17, 22, 31, 0.76);
  box-shadow: 0 0 0 4px rgba(82, 139, 255, 0.1);
}

.input-wrap input.is-invalid {
  border-color: var(--negative);
  box-shadow: 0 0 0 4px rgba(229, 102, 116, 0.08);
}

.submit-button {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.submit-button.is-loading {
  cursor: wait;
  opacity: 0.78;
}

.submit-button.is-loading svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  min-height: 20px;
  margin: 13px 0 0;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.form-status.is-success {
  color: var(--positive);
}

.form-status.is-error {
  color: #f18b97;
}

.privacy-note {
  margin: 4px 0 0;
  color: #778296;
  font-size: 9px;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.faq-section {
  padding-top: 80px;
  border-top: 1px solid var(--border-soft);
  background: #151a23;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
}

.faq-heading h2 {
  font-size: clamp(38px, 3.8vw, 56px);
}

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

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  color: var(--foreground);
  font-size: 16px;
  font-weight: 680;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 14px;
  height: 1.5px;
  background: var(--accent-bright);
  content: "";
  transition: transform 0.2s ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item p {
  max-width: 670px;
  margin: -6px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-soft);
  background: #10151d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 35px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-grid > div:first-child > p {
  margin: 14px 0 0;
  color: #737e91;
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #9ba5b7;
  font-size: 11px;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-meta {
  justify-self: end;
  text-align: right;
}

.footer-meta p {
  margin: 3px 0 0;
  color: #737e91;
  font-size: 9px;
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 35px;
  }

  .hero-title {
    font-size: clamp(52px, 6vw, 72px);
  }

  .product-window {
    transform: none;
  }

  .chip-two {
    right: -10px;
  }

  .platform-layout,
  .access-layout,
  .faq-layout {
    gap: 60px;
  }

  .context-visual {
    width: 66%;
  }
}

@media (max-width: 960px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--foreground);
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 84px;
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(17, 22, 31, 0.98);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease,
      opacity 0.2s ease,
      border-color 0.3s ease,
      visibility 0s linear 0.3s;
  }

  .mobile-nav.is-open {
    max-height: 430px;
    padding: 18px 24px 25px;
    border-color: var(--border-soft);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-nav > a:not(.button) {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border-soft);
    color: #c1c8d4;
    font-size: 14px;
    font-weight: 650;
  }

  .mobile-nav .button {
    min-height: 48px;
    margin-top: 10px;
  }

  .hero {
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 100px;
  }

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

  .hero-title {
    font-size: clamp(62px, 10vw, 88px);
  }

  .hero-product {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .platform-layout,
  .access-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

  .platform-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .bento-journal {
    grid-template-columns: 1fr;
  }

  .bento-journal .bento-copy {
    order: 0;
  }

  .journal-dashboard {
    margin-top: 25px;
  }

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

  .footer-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .mobile-nav {
    top: 74px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand img {
    width: 37px;
    height: 37px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 110px;
  }

  .hero-title {
    margin-top: 19px;
    font-size: clamp(50px, 14.8vw, 72px);
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-note {
    align-items: flex-start;
  }

  .hero-layout {
    gap: 75px;
  }

  .floating-chip {
    display: none;
  }

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

  .window-bar {
    height: 46px;
  }

  .product-body {
    grid-template-columns: 42px 1fr;
    min-height: 390px;
  }

  .product-sidebar {
    gap: 7px;
  }

  .sidebar-mark {
    width: 27px;
    height: 27px;
  }

  .sidebar-mark img {
    width: 23px;
    height: 23px;
  }

  .side-icon {
    width: 28px;
    height: 28px;
  }

  .product-main {
    padding: 13px;
  }

  .market-strip {
    grid-template-columns: 1fr 1fr;
  }

  .market-strip > div:last-child {
    display: none;
  }

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

  .setup-card {
    display: none;
  }

  .chart-area {
    height: 170px;
  }

  .section {
    padding: 95px 0;
  }

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

  .section-heading h2,
  .platform-copy h2,
  .access-copy h2,
  .faq-heading h2 {
    font-size: clamp(38px, 11.5vw, 53px);
  }

  .workflow-grid,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    min-height: 385px;
    padding: 27px;
  }

  .workflow-card:nth-child(1),
  .workflow-card:nth-child(2),
  .workflow-card:nth-child(3),
  .workflow-card:nth-child(4) {
    grid-column: auto;
  }

  .mini-interface {
    right: 27px;
    bottom: 27px;
    left: 27px;
  }

  .scanner-interface div {
    padding: 0 7px;
  }

  .plan-interface {
    gap: 5px;
  }

  .plan-interface div {
    padding: 8px;
  }

  .platform-visual {
    min-height: 680px;
  }

  .process-card {
    width: 88%;
  }

  .process-card-one {
    left: 0;
  }

  .process-card-two {
    top: 220px;
  }

  .process-card-three {
    bottom: 0;
    left: 0;
  }

  .bento-card,
  .bento-wide {
    grid-column: auto;
    min-height: 460px;
    padding: 25px;
  }

  .bento-wide:first-child {
    min-height: 620px;
  }

  .context-visual {
    right: 24px;
    bottom: 0;
    left: 24px;
    width: auto;
    height: 335px;
  }

  .context-tabs span {
    padding: 7px 8px;
    font-size: 7px;
  }

  .bento-journal {
    min-height: auto;
  }

  .review-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .review-metrics > div:last-child {
    display: none;
  }

  .statement-content blockquote {
    font-size: clamp(39px, 11.8vw, 57px);
  }

  .signup-card {
    padding: 25px;
  }

  .faq-layout {
    gap: 45px;
  }

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

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 49px;
  }

  .hero-note {
    display: grid;
  }

  .product-heading h2 {
    font-size: 15px;
  }

  .demo-pill {
    display: none;
  }

  .chart-meta span:last-child {
    display: none;
  }

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

  .scanner-interface strong {
    font-size: 18px;
  }

  .journal-interface {
    grid-template-columns: 1fr 80px;
  }

  .process-card {
    width: 94%;
    padding: 16px;
  }

  .process-card-two {
    top: 228px;
  }

  .context-tabs span:nth-child(3) {
    display: none;
  }

  .context-stats span:last-child {
    display: none;
  }

  .context-stats {
    grid-template-columns: 1fr 1fr;
  }

  .signup-card-top h3 {
    font-size: 21px;
  }
}

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

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