:root {
  color-scheme: dark;
  --ink: var(--void);
  --ink-2: var(--ink-900);
  --panel: var(--ink-900);
  --panel-2: var(--ink-800);
  --paper: var(--mist-100);
  --white: var(--mist-100);
  --text: var(--text-body);
  --muted: var(--text-muted);
  --faint: var(--text-faint);
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .2);
  --violet: var(--brand);
  --violet-2: var(--brand-bright);
  --violet-soft: var(--brand-tint);
  --mint: var(--success);
  --amber: var(--warning);
  --danger: var(--error);
  --shadow: var(--shadow-xl);
  --max: 1240px;
  --radius: var(--radius-xl);
  --radius-sm: var(--radius-md);
  --display: var(--font-display);
  --body: var(--font-sans);
  --mono: var(--font-mono);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
.liftedpos-site {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(1000px 620px at 78% -5%, rgba(122, 92, 255, .13), transparent 65%),
    var(--ink);
  color: var(--text);
  font: 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .17;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 72%);
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--violet-2); outline-offset: 4px; }
::selection { background: var(--violet); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { transform: none; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 17px;
  color: var(--violet-2);
  font: 600 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 22px;
  height: 1px;
  content: "";
  background: currentColor;
}
.kicker { color: var(--violet-2); }
.lede {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}
.prose { max-width: 760px; }
.prose p, .prose li { color: var(--muted); }
.prose strong { color: var(--paper); }
.prose a { color: var(--violet-2); text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(7, 8, 18, .76);
  backdrop-filter: blur(20px);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(7, 8, 18, .94); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand {
  display: inline-flex;
  flex: none;
  gap: 11px;
  align-items: center;
  color: var(--white);
  font: 700 18px/1 var(--display);
  text-decoration: none;
  letter-spacing: -.04em;
}
.brand-mark { width: 29px; height: 29px; }
.brand em { color: var(--violet-2); font-style: normal; }
.primary-nav { display: flex; gap: 28px; align-items: center; margin-left: auto; }
.primary-nav > a,
.nav-dropdown > button {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.primary-nav > a:hover,
.nav-dropdown > button:hover { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown > button::after {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin: 0 0 3px 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
.drop-panel {
  position: absolute;
  top: 32px;
  left: -22px;
  width: 330px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 16, 32, .98);
  box-shadow: var(--shadow);
}
.drop-panel[hidden] { display: none; }
.drop-panel a { display: grid; gap: 2px; padding: 12px; border-radius: 10px; text-decoration: none; }
.drop-panel a:hover { background: var(--violet-soft); }
.drop-panel b { color: var(--paper); font-size: 14px; }
.drop-panel span { color: var(--muted); font-size: 12px; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  width: 18px;
  height: 1.5px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.button {
  min-height: 46px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255,255,255,.02);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.36); }
.button-primary {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(122, 92, 255, .24);
}
.button-primary:hover { background: #6b4bf5; }
.button-lg { min-height: 54px; padding-inline: 23px; }
.button-text { min-height: auto; padding: 4px 0; border: 0; }
.arrow {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transition: transform .18s ease;
  transform: rotate(45deg);
}
.button:hover .arrow, a:hover .arrow { transform: translateX(3px) rotate(45deg); }

.hero { position: relative; padding: 80px 0 54px; overflow: clip; }
.hero-globe {
  position: absolute;
  top: 22px;
  right: max(22px, calc((100vw - var(--max)) / 2 - 80px));
  z-index: 0;
  opacity: .16;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(510px, 1.12fr); gap: 54px; align-items: center; }
.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 800px;
  color: var(--paper);
  font: 800 clamp(44px, 6.5vw, 82px)/.99 var(--display);
  letter-spacing: -.065em;
}
.hero h1 span { color: var(--violet-2); }
.hero-copy { max-width: 620px; margin: 25px 0 0; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-note { margin-top: 18px; color: var(--faint); font: 500 11px/1.6 var(--mono); letter-spacing: .03em; }

.transaction-stage { position: relative; min-height: 630px; }
.stage-glow {
  position: absolute;
  inset: 4% -12% auto 4%;
  height: 70%;
  border-radius: 50%;
  background: rgba(122, 92, 255, .19);
  filter: blur(90px);
}
.product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: #111324;
  box-shadow: var(--shadow);
  transform: perspective(1600px) rotateY(-5deg) rotateX(1.5deg);
}
.product-frame::before {
  display: block;
  height: 34px;
  border-bottom: 1px solid var(--line);
  content: "";
  background:
    radial-gradient(circle at 17px 17px, #ff7d85 0 4px, transparent 4.5px),
    radial-gradient(circle at 32px 17px, #f8c86a 0 4px, transparent 4.5px),
    radial-gradient(circle at 47px 17px, #5ce1b7 0 4px, transparent 4.5px);
}
.product-frame img { width: 100%; aspect-ratio: 2400 / 1520; object-fit: cover; }
.transaction-pulse {
  position: absolute;
  right: -18px;
  bottom: 0;
  left: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(157,134,255,.34);
  border-radius: 16px;
  background: rgba(10, 11, 24, .95);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
}
.pulse-step { position: relative; min-height: 118px; padding: 17px 16px; border-right: 1px solid var(--line); }
.pulse-step:last-child { border: 0; }
.pulse-step::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--violet-2);
}
.pulse-step.active::before { animation: fill-step 1.8s ease forwards; }
.pulse-label { display: block; color: var(--faint); font: 600 9px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.pulse-value { display: block; margin-top: 15px; color: var(--paper); font: 600 14px/1.25 var(--mono); }
.pulse-status { display: flex; gap: 6px; align-items: center; margin-top: 11px; color: var(--muted); font-size: 11px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(92,225,183,.1); }
@keyframes fill-step { to { width: 100%; } }

.proof-bar { border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 25px 24px; border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item b { display: block; color: var(--paper); font: 600 14px/1.3 var(--display); }
.proof-item span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }

.section { padding: 115px 0; }
.section-tight { padding: 78px 0; }
.section-paper { background: var(--paper); color: #171827; }
.section-paper .eyebrow { color: #6849ee; }
.section-paper h2, .section-paper h3 { color: #11121e; }
.section-paper p, .section-paper .section-intro { color: #5d6075; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-head h2,
.split-copy h2 {
  max-width: 800px;
  margin: 0;
  color: var(--paper);
  font: 600 clamp(34px, 4.8vw, 59px)/1.05 var(--display);
  letter-spacing: -.055em;
}
.section-intro { max-width: 560px; margin: 0; color: var(--muted); font-size: 17px; }
.split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 80px; align-items: center; }
.split.reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.split-copy p { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: var(--muted); }
.check-list li::before { position: absolute; left: 0; color: var(--mint); content: "✓"; font-family: var(--mono); }

.industry-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.industry-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.industry-tab[aria-selected="true"] { border-color: var(--violet); background: var(--violet-soft); color: var(--white); }
.industry-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 50px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}
.industry-panel[hidden] { display: none; }
.industry-panel h3 { margin: 0; color: var(--paper); font: 600 28px/1.1 var(--display); letter-spacing: -.035em; }
.industry-panel p { color: var(--muted); }
.shot-shell { padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--ink-2); box-shadow: var(--shadow); }
.shot-shell img { border-radius: 9px; aspect-ratio: 2400 / 1520; object-fit: cover; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.023);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(157,134,255,.42); background: rgba(122,92,255,.065); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(157,134,255,.3); border-radius: 12px; background: var(--violet-soft); color: var(--violet-2); font: 600 13px/1 var(--mono); }
.feature-card h3 { margin: auto 0 8px; color: var(--paper); font: 600 20px/1.2 var(--display); letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-card .link-label { margin-top: 17px; color: var(--violet-2); font-size: 13px; font-weight: 700; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--panel); }
.gallery-card:nth-child(1), .gallery-card:nth-child(4) { grid-column: span 7; }
.gallery-card:nth-child(2), .gallery-card:nth-child(3) { grid-column: span 5; }
.gallery-image { overflow: hidden; padding: 10px 10px 0; }
.gallery-image img { border-radius: 10px 10px 0 0; aspect-ratio: 2400 / 1520; object-fit: cover; transition: transform .45s ease; }
.gallery-card:hover img { transform: scale(1.018); }
.gallery-caption { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; }
.gallery-caption b { color: var(--paper); }
.gallery-caption span { color: var(--muted); font-size: 12px; }

.price-stage { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: stretch; }
.price-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.price-amount { margin: 12px 0 2px; color: var(--paper); font: 600 clamp(45px, 6vw, 70px)/1 var(--display); letter-spacing: -.06em; }
.price-amount small { color: var(--muted); font: 500 14px/1 var(--body); letter-spacing: 0; }
.price-detail { color: var(--muted); }
.calculator {
  padding: 34px;
  border: 1px solid rgba(122,92,255,.35);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(122,92,255,.12), rgba(15,16,32,.75));
}
.calculator label { display: flex; justify-content: space-between; color: var(--paper); font-weight: 700; }
.calculator output { font-family: var(--mono); }
.calculator input[type="range"] { width: 100%; margin: 28px 0; accent-color: var(--violet); }
.calc-total { display: flex; justify-content: space-between; align-items: end; padding-top: 22px; border-top: 1px solid var(--line); }
.calc-total b { color: var(--paper); font: 600 40px/1 var(--display); letter-spacing: -.04em; }
.calc-total span { color: var(--muted); font-size: 13px; }

.page-hero { padding: 100px 0 72px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 930px; font-size: clamp(43px, 6vw, 72px); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .45fr; gap: 70px; align-items: end; }
.hero-aside { padding-left: 25px; border-left: 1px solid var(--line-strong); color: var(--muted); font-size: 14px; }
.hero-aside b { display: block; margin-bottom: 9px; color: var(--paper); font: 600 12px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.breadcrumb { margin: 0 0 24px; color: var(--faint); font: 500 11px/1.4 var(--mono); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb span { padding-inline: 7px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 80px; align-items: start; }
.content-main h2 { margin: 64px 0 17px; color: var(--paper); font: 600 31px/1.15 var(--display); letter-spacing: -.04em; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin: 35px 0 10px; color: var(--paper); font: 600 20px/1.2 var(--display); }
.content-main p, .content-main li { color: var(--muted); }
.content-main table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.content-main th, .content-main td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; }
.content-main th { color: var(--paper); font: 600 11px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.side-card { position: sticky; top: 100px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.side-card b { display: block; color: var(--paper); font: 600 18px/1.2 var(--display); }
.side-card p { color: var(--muted); font-size: 13px; }
.side-card .button { width: 100%; }
.callout { margin: 35px 0; padding: 23px 25px; border-left: 3px solid var(--violet); background: var(--violet-soft); }
.callout b { color: var(--paper); }

.demo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.demo-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); text-decoration: none; }
.demo-card img { aspect-ratio: 2400 / 1520; object-fit: cover; }
.demo-body { padding: 23px; }
.demo-body h2 { margin: 0; color: var(--paper); font: 600 22px/1.2 var(--display); }
.demo-body p { color: var(--muted); font-size: 14px; }
.demo-body span { color: var(--violet-2); font-weight: 700; }

.form-card { max-width: 680px; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.field { display: grid; gap: 9px; }
.field label { color: var(--paper); font-size: 13px; font-weight: 700; }
.input-wrap { display: flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 11px; background: var(--ink-2); }
.input-wrap:focus-within { border-color: var(--violet-2); box-shadow: 0 0 0 3px var(--violet-soft); }
.input-wrap input { min-width: 0; flex: 1; min-height: 50px; padding: 0 14px; border: 0; outline: 0; background: transparent; color: var(--paper); }
.input-suffix { padding-right: 14px; color: var(--faint); font: 500 12px/1 var(--mono); }
.field-help, .form-error { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.form-error { color: var(--danger); }

.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.018); }
.faq summary { padding: 20px 22px; color: var(--paper); font-weight: 700; cursor: pointer; }
.faq p { margin: 0; padding: 0 22px 21px; color: var(--muted); }

.cta-band { padding: 0 0 110px; }
.cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: center;
  padding: 55px;
  border: 1px solid rgba(157,134,255,.34);
  border-radius: 26px;
  background: linear-gradient(125deg, rgba(122,92,255,.19), rgba(15,16,32,.92) 58%);
}
.cta-inner::after {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(157,134,255,.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(122,92,255,.035), 0 0 0 110px rgba(122,92,255,.025);
}
.cta-inner h2 { position: relative; z-index: 1; margin: 0; color: var(--paper); font: 600 clamp(32px, 4vw, 50px)/1.1 var(--display); letter-spacing: -.05em; }
.cta-inner p { position: relative; z-index: 1; margin: 12px 0 0; color: var(--muted); }
.cta-inner .button { position: relative; z-index: 1; }

.site-footer { padding: 68px 0 30px; border-top: 1px solid var(--line); background: #060710; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; }
.footer-brand p { max-width: 330px; color: var(--muted); font-size: 14px; }
.footer-col b { color: var(--paper); font: 600 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; margin-top: 13px; color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--faint); font-size: 11px; }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .primary-nav { display: none; position: absolute; top: 76px; right: 20px; left: 20px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav > a, .nav-dropdown > button { width: 100%; padding: 13px; text-align: left; }
  .drop-panel { position: static; width: 100%; margin: 0; box-shadow: none; }
  .menu-button { display: grid; place-items: center; margin-left: auto; }
  .nav-actions .button:not(.button-primary) { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .transaction-stage { width: min(850px, 100%); min-height: auto; padding-bottom: 90px; }
  .section-head { display: block; }
  .section-intro { margin-top: 18px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 42px; }
  .split.reverse .split-copy { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-aside { max-width: 620px; }
  .content-grid { grid-template-columns: 1fr; gap: 45px; }
  .side-card { position: static; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 68px; }
  .primary-nav { top: 68px; }
  .nav-actions .button-primary { display: none; }
  .hero { padding-top: 58px; }
  .hero h1, .page-hero h1 { font-size: clamp(41px, 13vw, 59px); }
  .hero-copy { font-size: 17px; }
  .transaction-stage { padding-bottom: 0; }
  .product-frame { transform: none; }
  .transaction-pulse { position: relative; right: auto; bottom: auto; left: auto; grid-template-columns: repeat(2, 1fr); margin-top: 12px; }
  .pulse-step:nth-child(2) { border-right: 0; }
  .pulse-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { padding: 20px 14px; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(n+3) { border-bottom: 0; }
  .section { padding: 80px 0; }
  .section-tight { padding: 60px 0; }
  .industry-panel { grid-template-columns: 1fr; padding: 20px; }
  .feature-grid, .demo-grid { grid-template-columns: 1fr; }
  .gallery { display: grid; grid-template-columns: 1fr; }
  .gallery-card:nth-child(n) { grid-column: auto; }
  .price-stage { grid-template-columns: 1fr; }
  .page-hero { padding: 68px 0 52px; }
  .cta-inner { grid-template-columns: 1fr; padding: 35px 25px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
}

@media (max-width: 430px) {
  .hero-actions .button { width: 100%; }
  .proof-grid, .footer-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .proof-item:nth-child(n) { border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .pulse-step { min-height: 105px; padding: 14px 12px; }
  .footer-brand { grid-column: auto; }
  .form-card, .price-card, .calculator { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
