:root {
  --bg: #f5f5f7;
  --bg-soft: #fbfbfd;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --surface-tint: #eef8f7;
  --text: #1d1d1f;
  --muted: #5f666d;
  --faint: #86868b;
  --line: rgba(29, 29, 31, 0.1);
  --line-strong: rgba(29, 29, 31, 0.16);
  --accent: #0071e3;
  --accent-deep: #005bb8;
  --teal: #00a39a;
  --teal-deep: #087b75;
  --teal-soft: rgba(0, 163, 154, 0.1);
  --danger: #b84a52;
  --danger-soft: rgba(184, 74, 82, 0.1);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-brand: "Michroma", "Instrument Sans", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 42%, #ffffff 100%),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(620px 320px at 82% 14%, rgba(0, 113, 227, 0.07), transparent 70%),
    radial-gradient(540px 300px at 12% 18%, rgba(0, 163, 154, 0.08), transparent 70%);
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

p {
  color: var(--muted);
  line-height: 1.58;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  min-height: 64px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  color: var(--text);
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 163, 154, 0.14));
}

.brand span,
.footer-brand span {
  font-family: var(--font-brand);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.login-link,
.footer-columns a,
.footer-bottom a {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.nav-links a:hover,
.login-link:hover,
.footer-columns a:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.login-link {
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.header-cta {
  min-height: 38px;
  padding: 9px 18px;
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.18);
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  background: var(--accent-deep);
  box-shadow: 0 12px 30px rgba(0, 113, 227, 0.22);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-button span + span {
  margin-top: 5px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 690px;
  padding: 104px 0 108px;
  background: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -32%;
  z-index: 0;
  width: min(760px, 80vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08), transparent 68%);
  pointer-events: none;
}

.hero-background-collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-background-collage::before {
  content: "";
  position: absolute;
  inset: 0 38% 0 0;
  z-index: 3;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 54%, rgba(255, 255, 255, 0.18) 100%);
  backdrop-filter: blur(16px);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.92) 68%, transparent 100%);
}

.hero-background-collage::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 28%, rgba(255, 255, 255, 0.48) 50%, rgba(255, 255, 255, 0.1) 74%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.8) 94%);
}

.hero-floor-grid {
  position: absolute;
  right: -10%;
  bottom: -24%;
  z-index: 0;
  width: min(920px, 66vw);
  height: 360px;
  opacity: 0.32;
  transform: perspective(780px) rotateX(68deg);
  transform-origin: top center;
  background:
    linear-gradient(rgba(0, 113, 227, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 154, 0.18) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
}

.hero-glass-plane,
.hero-fine-grid {
  position: absolute;
  pointer-events: none;
}

.hero-glass-plane {
  top: 132px;
  right: -8%;
  z-index: 0;
  width: min(1040px, 70vw);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.3)),
    linear-gradient(180deg, rgba(0, 113, 227, 0.08), rgba(0, 163, 154, 0.04));
  box-shadow:
    0 32px 90px rgba(0, 40, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(0, 113, 227, 0.08);
  transform: perspective(1200px) rotateY(-8deg) rotateX(1.5deg);
  transform-origin: center right;
  backdrop-filter: blur(18px) saturate(145%);
  mask-image: radial-gradient(ellipse at 58% 50%, #000 0%, rgba(0, 0, 0, 0.9) 66%, rgba(0, 0, 0, 0.24) 88%, transparent 100%);
}

.hero-fine-grid {
  top: 134px;
  right: -8%;
  z-index: 3;
  width: min(1040px, 70vw);
  aspect-ratio: 16 / 9;
  opacity: 0.22;
  transform: perspective(1200px) rotateY(-8deg) rotateX(1.5deg);
  transform-origin: center right;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.88) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 134, 148, 0.34) 1px, transparent 1px);
  background-size: 54px 54px;
  filter: blur(0.45px);
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at 58% 50%, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.52) 54%, transparent 86%);
}

.hero-bg-shot {
  position: absolute;
  z-index: 2;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform-origin: center;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-bg-main {
  top: 130px;
  right: -8%;
  width: min(1040px, 70vw);
  aspect-ratio: 16 / 9;
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.16) drop-shadow(0 24px 46px rgba(0, 70, 120, 0.12));
  transform: perspective(1200px) rotateY(-8deg) rotateX(1.5deg);
  transform-origin: center right;
  mask-image: radial-gradient(ellipse at 62% 50%, #000 0%, #000 58%, rgba(0, 0, 0, 0.82) 76%, rgba(0, 0, 0, 0.3) 92%, transparent 100%);
}

.hero-bg-secondary {
  top: 204px;
  right: 35%;
  width: min(650px, 46vw);
  aspect-ratio: 16 / 9;
  opacity: 0.16;
  filter: blur(3px) saturate(0.82);
  mask-image: radial-gradient(ellipse at 58% 50%, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.44) 58%, transparent 88%);
}

.hero-bg-journal {
  top: 408px;
  right: 1%;
  z-index: 4;
  width: min(470px, 35vw);
  aspect-ratio: 16 / 10;
  opacity: 0.86;
  object-position: 5% center;
  filter: saturate(1) contrast(1.08);
  mask-image: radial-gradient(ellipse at 56% 52%, #000 0%, rgba(0, 0, 0, 0.86) 60%, rgba(0, 0, 0, 0.3) 82%, transparent 100%);
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
}

.hero-floating-card span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.hero-floating-card strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}

.hero-floating-card-signal {
  top: 230px;
  right: 34%;
  width: min(280px, 22vw);
  opacity: 0.62;
  border-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(26px) saturate(130%);
}

.hero-floating-card-signal span,
.hero-floating-card-signal strong {
  opacity: 0.78;
}

.hero-floating-card-journal {
  right: 7%;
  bottom: 116px;
  width: min(360px, 28vw);
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 56px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
  animation: fadeUp 700ms ease both;
}

.hero-visual {
  animation-delay: 150ms;
}

.hero-visual-space {
  min-height: 430px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.07);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  animation: pulse 2.4s ease infinite;
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: #111113;
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 32px;
  color: #42464d;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  min-width: 184px;
  padding: 14px 26px;
  font-size: 15px;
}

.button-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.2);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.28);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}

.full-width {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-meta i {
  color: #c4c7cc;
  font-style: normal;
}

.chart-terminal {
  position: relative;
  overflow: hidden;
  min-height: 378px;
  padding: 20px 20px 16px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92)),
    #ffffff;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.chart-terminal::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 18%;
  height: 180px;
  background: radial-gradient(ellipse, rgba(0, 163, 154, 0.13), transparent 66%);
  pointer-events: none;
}

.terminal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.045) 1px, transparent 1px);
  background-size: 44px 34px;
  pointer-events: none;
}

.terminal-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.terminal-bar div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.terminal-bar strong,
.terminal-bar span,
.terminal-bar b,
.visual-note {
  font-family: var(--font-mono);
}

.terminal-bar strong {
  color: #25272b;
  font-size: 12px;
}

.terminal-bar span {
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
}

.terminal-bar b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 163, 154, 0.25);
  border-radius: 999px;
  color: var(--teal-deep);
  background: var(--teal-soft);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.terminal-bar b span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--teal);
}

.chart-stage {
  position: relative;
  z-index: 1;
  height: 300px;
}

.invalidation-line {
  position: absolute;
  right: 0;
  bottom: 66px;
  left: 0;
  z-index: 3;
  border-top: 1px dashed rgba(184, 74, 82, 0.58);
}

.invalidation-line span,
.entry-zone span {
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.invalidation-line span {
  top: -11px;
  padding: 3px 8px;
  border: 1px solid rgba(184, 74, 82, 0.22);
  border-radius: 999px;
  color: var(--danger);
  background: #fff5f6;
}

.entry-zone {
  position: absolute;
  right: 0;
  bottom: 96px;
  left: 0;
  height: 34px;
  border-top: 1px solid rgba(0, 163, 154, 0.18);
  border-bottom: 1px solid rgba(0, 163, 154, 0.18);
  background: rgba(0, 163, 154, 0.055);
}

.entry-zone span {
  top: 8px;
  color: var(--teal-deep);
}

.candles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 6px;
}

.candle {
  position: relative;
  width: 12px;
  border-radius: 4px;
}

.candle::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 5px;
  width: 2px;
  background: rgba(0, 163, 154, 0.42);
}

.candle.green {
  border: 1px solid rgba(0, 143, 132, 0.44);
  background: linear-gradient(180deg, #34d6ca, #0a9289);
}

.candle.red {
  border: 1px solid rgba(184, 74, 82, 0.38);
  background: linear-gradient(180deg, #e6959a, #bd6068);
}

.candle.red::before {
  background: rgba(184, 74, 82, 0.4);
}

.c1 {
  height: 64px;
  margin-bottom: 38px;
}

.c2 {
  height: 44px;
  margin-bottom: 30px;
}

.c3 {
  height: 52px;
  margin-bottom: 34px;
}

.c4 {
  height: 70px;
  margin-bottom: 52px;
}

.c5 {
  height: 40px;
  margin-bottom: 92px;
}

.c6 {
  height: 34px;
  margin-bottom: 110px;
}

.c7 {
  height: 48px;
  margin-bottom: 98px;
}

.c8 {
  height: 36px;
  margin-bottom: 100px;
}

.c9 {
  height: 58px;
  margin-bottom: 118px;
}

.c10 {
  height: 74px;
  margin-bottom: 148px;
}

.c11 {
  height: 38px;
  margin-bottom: 186px;
}

.c12 {
  height: 46px;
  margin-bottom: 172px;
}

.c13 {
  height: 62px;
  margin-bottom: 190px;
}

.c14 {
  height: 40px;
  margin-bottom: 224px;
}

.journal-preview {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 6;
  width: min(236px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(12px);
}

.journal-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.journal-preview-head span {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.journal-preview-head small {
  padding: 2px 7px;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.journal-preview dl {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.journal-preview dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.journal-preview dt,
.journal-preview dd {
  margin: 0;
}

.journal-preview dd {
  color: var(--text);
}

.journal-preview div:nth-child(2) dd,
.journal-preview div:nth-child(3) dd {
  color: var(--teal-deep);
}

.visual-note {
  margin: 14px 0 0;
  color: var(--faint);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

.hero-visual-glass {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-device-shell {
  position: relative;
  min-height: 390px;
}

.hero-live-shot,
.hero-journal-card,
.hero-signal-card {
  border: 1px solid rgba(29, 29, 31, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.hero-live-shot {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}

.hero-journal-card {
  position: absolute;
  right: -18px;
  bottom: 0;
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 14px;
  width: min(420px, 82%);
  padding: 12px;
  border-radius: 22px;
}

.hero-journal-card img {
  width: 118px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: cover;
  object-position: 8% center;
}

.hero-journal-card span,
.hero-signal-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-journal-card strong,
.hero-signal-card strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}

.hero-signal-card {
  position: absolute;
  top: 22px;
  left: -18px;
  width: min(250px, 58%);
  padding: 16px 18px;
  border-radius: 20px;
}

.content-section {
  padding: 100px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.products-section {
  background: #ffffff;
}

.products-section .section-heading {
  margin-bottom: 24px;
}

.product-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 22px;
}

.carousel-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.carousel-button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: var(--shadow);
}

.carousel-button:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.22);
  outline-offset: 3px;
}

.carousel-button span {
  font-size: 18px;
  line-height: 1;
}

.product-showcase {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  margin-inline: -2px;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(0, 113, 227, 0.34) transparent;
  scrollbar-width: thin;
}

.product-showcase::-webkit-scrollbar {
  height: 8px;
}

.product-showcase::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.24);
}

.product-showcase:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.2);
  outline-offset: 8px;
  border-radius: 34px;
}

.product-panel {
  display: grid;
  flex: 0 0 min(100%, 1120px);
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(29, 29, 31, 0.09);
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff, #fbfbfd);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: center;
}

.product-panel-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
}

.product-panel-reverse .product-copy {
  order: 2;
}

.product-panel-reverse .product-shot {
  order: 1;
}

.product-copy {
  display: grid;
  align-content: center;
}

.product-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 113, 227, 0.16);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.product-copy p {
  margin-bottom: 20px;
  font-size: 15.5px;
}

.product-copy ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--text);
  font-size: 14px;
  list-style: none;
}

.product-copy li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.product-copy li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.product-copy a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  color: var(--accent);
  font-weight: 650;
}

.product-shot {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-shot img {
  width: 100%;
  aspect-ratio: 2670 / 1351;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.09);
}

.access-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 245, 247, 0.74));
}

.pricing-section {
  background: linear-gradient(180deg, rgba(245, 245, 247, 0.95), rgba(255, 255, 255, 0.96));
}

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

.center-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 16px;
}

.feature-grid,
.step-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.step-card,
.price-card,
.sale-strip,
.faq-list details {
  border: 1px solid rgba(29, 29, 31, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.step-card {
  padding: 30px 28px;
}

.feature-card {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.18);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 163, 154, 0.18);
  border-radius: 14px;
  background: var(--teal-soft);
}

.feature-icon::before {
  content: "";
  display: block;
}

.triangle-icon::before {
  width: 14px;
  height: 14px;
  background: var(--teal-deep);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.risk-icon {
  border-color: rgba(184, 74, 82, 0.2);
  background: var(--danger-soft);
}

.risk-icon::before {
  width: 16px;
  border-top: 2px dashed var(--danger);
}

.journal-icon {
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(0, 113, 227, 0.08);
}

.journal-icon::before {
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  border-radius: 4px;
}

.feature-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.feature-card-top span,
.plan-badge,
.subtle-badge,
.price-sale {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-card-top span {
  padding: 3px 9px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  color: var(--muted);
  background: #ffffff;
}

.feature-card h3,
.step-card h3,
.price-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
}

.feature-card p,
.step-card p {
  font-size: 14.5px;
}

.feature-card b {
  color: var(--teal-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.feature-card .danger-text {
  color: var(--danger);
}

.feature-card .muted-text {
  color: var(--muted);
}

.step-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.sale-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto 28px;
  padding: 22px 26px;
}

.sale-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(0, 163, 154, 0.24);
  border-radius: 15px;
  color: var(--teal-deep);
  background: var(--teal-soft);
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
}

.sale-copy {
  display: grid;
  gap: 4px;
}

.sale-copy strong {
  color: var(--text);
  font-size: 17px;
}

.sale-copy span {
  color: var(--muted);
}

.countdown {
  display: flex;
  gap: 18px;
}

.countdown div {
  display: grid;
  gap: 4px;
  min-width: 54px;
  text-align: center;
}

.countdown b {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 24px;
  line-height: 1;
}

.countdown span {
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
}

.pricing-grid {
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  background: linear-gradient(180deg, #ffffff, #fbfbfd);
}

.recommended-card {
  border-color: rgba(0, 113, 227, 0.36);
  background: linear-gradient(180deg, #ffffff, #f0f7ff);
  box-shadow:
    0 0 0 1px rgba(0, 113, 227, 0.06),
    0 26px 70px rgba(0, 113, 227, 0.12);
}

.plan-badge,
.subtle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  color: #ffffff;
  background: var(--accent);
  white-space: nowrap;
}

.subtle-badge {
  color: var(--teal-deep);
  border: 1px solid rgba(0, 163, 154, 0.22);
  background: #e9faf8;
}

.price-card h3 {
  color: var(--muted);
  font-size: 15px;
}

.recommended-card h3 {
  color: var(--accent);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.price span {
  color: var(--text);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.price-sale {
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 163, 154, 0.22);
  color: var(--teal-deep);
  background: var(--teal-soft);
}

.price-card p {
  min-height: 44px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13.5px;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  color: var(--text);
  font-size: 14px;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.price-card li::before {
  content: "✓";
  color: var(--teal-deep);
}

.price-card .button {
  margin-top: auto;
}

.pricing-note {
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

.faq-section {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 400;
}

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

.faq-list p {
  margin-bottom: 22px;
  font-size: 14.5px;
}

.final-cta {
  padding: 90px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  background:
    radial-gradient(600px 280px at 50% 100%, rgba(0, 113, 227, 0.09), transparent 70%),
    #ffffff;
  text-align: center;
}

.final-cta h2 {
  max-width: 620px;
  margin: 0 auto 16px;
  color: var(--text);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.1;
}

.final-cta p {
  max-width: 560px;
  margin: 0 auto 32px;
}

.site-footer {
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  background: #f5f5f7;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-brand-block {
  max-width: 320px;
}

.footer-brand {
  margin-bottom: 14px;
}

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

.footer-brand span {
  font-size: 12px;
}

.footer-brand .tm-mark {
  position: relative;
  top: -0.55em;
  margin-left: 0.18em;
  color: var(--faint);
  font-family: var(--font-main);
  font-size: 0.48em;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-brand-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-columns strong {
  margin-bottom: 4px;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-columns a {
  color: var(--muted);
  font-size: 13.5px;
}

.footer-legal {
  display: grid;
  gap: 16px;
  padding: 26px 0 40px;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.footer-legal p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-legal strong {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--faint);
  font-size: 12px;
}

.footer-bottom span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  color: var(--muted);
}

.site-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(360px, calc(100% - 48px));
  padding: 14px 16px;
  border: 1px solid rgba(0, 113, 227, 0.22);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

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

  .mobile-menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 10px;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .login-link {
    display: none;
  }

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

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

  .hero-background-collage::before {
    right: 16%;
  }

  .hero-bg-main {
    top: 150px;
    right: -34%;
    width: 104vw;
    opacity: 0.42;
  }

  .hero-glass-plane,
  .hero-fine-grid {
    top: 156px;
    right: -34%;
    width: 104vw;
    opacity: 0.32;
  }

  .hero-bg-secondary {
    right: 12%;
    opacity: 0.1;
  }

  .hero-bg-journal,
  .hero-floating-card {
    display: none;
  }

  .hero-visual-space {
    min-height: 90px;
  }

  .feature-grid,
  .step-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .product-panel,
  .product-panel-reverse {
    grid-template-columns: 1fr;
  }

  .product-panel-reverse .product-copy,
  .product-panel-reverse .product-shot {
    order: initial;
  }

  .product-controls {
    justify-content: flex-start;
  }

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

  .countdown {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .header-shell {
    width: min(100% - 32px, 1180px);
    grid-template-columns: 1fr auto;
  }

  .brand span {
    font-size: 11px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 68px 0 82px;
  }

  .hero-background-collage {
    opacity: 0.7;
  }

  .hero-bg-main {
    top: 180px;
    right: -66%;
    width: 142vw;
    opacity: 0.26;
  }

  .hero-glass-plane,
  .hero-fine-grid {
    top: 184px;
    right: -66%;
    width: 142vw;
    opacity: 0.2;
  }

  .hero-bg-secondary,
  .hero-bg-journal {
    display: none;
  }

  .hero-floor-grid {
    right: -40%;
    width: 120vw;
    opacity: 0.18;
  }

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

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

  .hero-meta {
    gap: 10px;
  }

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

  .chart-stage {
    height: 260px;
  }

  .journal-preview {
    right: 14px;
    bottom: 14px;
  }

  .content-section {
    padding: 76px 0;
  }

  .feature-card,
  .step-card,
  .price-card {
    padding: 26px 22px;
  }

  .price span {
    font-size: 38px;
  }

  .footer-shell {
    padding-top: 42px;
  }
}
