:root {
  color-scheme: dark;
  --bg: #08090a;
  --ink: #f7f3ea;
  --muted: #b8b1a5;
  --line: rgba(255, 255, 255, 0.13);
  --panel: rgba(12, 17, 20, 0.82);
  --panel-solid: #101417;
  --amber: #5b2cff;
  --cyan: #7c3cff;
  --green: #8d5cff;
  --red: #ff6b9d;
  --magenta: #4b1fbf;
  --violet-deep: #24115f;
  --violet-bright: #5f38ff;
  --violet-glow: rgba(91, 44, 255, 0.38);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 72px 72px,
    #08090a;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 10, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(95, 56, 255, 0.68);
  background: linear-gradient(135deg, rgba(36, 17, 95, 0.86), rgba(95, 56, 255, 0.22));
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(247, 243, 234, 0.76);
  font-size: 0.9rem;
}

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

.header-cta {
  min-width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 11px 16px;
  font-size: 0.9rem;
  font-weight: 750;
}

.header-cta:hover {
  border-color: rgba(95, 56, 255, 0.8);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 56px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08) hue-rotate(18deg);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.95) 0%, rgba(8, 9, 10, 0.79) 37%, rgba(24, 11, 69, 0.21) 72%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.55), rgba(8, 9, 10, 0.25) 44%, rgba(8, 9, 10, 0.95) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: end;
  gap: clamp(32px, 5vw, 72px);
  width: min(1240px, 100%);
  min-height: calc(100svh - 176px);
  margin: 0 auto;
}

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

.eyebrow,
.mini-kicker {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3.65rem, 8.2vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.highlight-word {
  color: var(--violet-bright);
  text-shadow: 0 0 34px var(--violet-glow);
}

.headline-accent {
  color: var(--violet-bright);
  text-shadow: 0 0 26px rgba(95, 56, 255, 0.28);
}

.hero-lede {
  max-width: 680px;
  color: rgba(247, 243, 234, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 18px;
  font-weight: 850;
  line-height: 1.1;
}

.button-primary {
  background: linear-gradient(135deg, #26105f, #5b2cff 55%, #32157e);
  color: #fff;
  box-shadow: 0 16px 42px rgba(91, 44, 255, 0.34);
}

.button-primary:hover {
  background: linear-gradient(135deg, #31147b, #6848ff 55%, #3a1894);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(95, 56, 255, 0.72);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.hero-metrics div,
.rush-panel,
.fit-grid article,
.toast-panel,
.flow-grid article,
.guest-led-proof-strip div,
.guest-led-sell-grid article,
.ops-grid article,
.estimate-card,
.zero-cost-callout,
.receipt-card,
.lead-form,
.campaign-notes,
blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 18, 20, 0.72);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  min-height: 116px;
  padding: 18px;
}

.hero-metrics dt {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 2rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.35;
}

.hero-metrics dt span {
  display: inline-block;
  min-width: 1.2em;
}

.hero-metrics div {
  position: relative;
  overflow: hidden;
}

.hero-metrics div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(95, 56, 255, 0.18) 44%, transparent 58%);
  transform: translateX(-120%);
  animation: stat-sweep 3.8s ease-in-out infinite;
}

.rush-panel {
  padding: 24px;
  background: rgba(11, 14, 16, 0.76);
  backdrop-filter: blur(18px);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-topline strong {
  color: var(--ink);
}

.rush-timeline {
  display: grid;
  gap: 14px;
}

.rush-timeline div {
  position: relative;
  padding: 0 0 16px 28px;
  border-bottom: 1px solid var(--line);
}

.rush-timeline div::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: #120a2a;
}

.rush-timeline div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rush-timeline .time {
  display: block;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
}

.rush-timeline strong {
  display: block;
  margin: 4px 0 6px;
  font-size: 1.08rem;
}

.rush-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.intro-band {
  padding: 32px clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(25, 17, 48, 0.92), rgba(31, 21, 64, 0.72));
}

.intro-band p {
  width: min(1160px, 100%);
  margin: 0 auto;
  color: rgba(247, 243, 234, 0.92);
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-band p span {
  color: var(--violet-bright);
}

.trust-runner {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(95, 56, 255, 0.08), transparent 56%),
    #15191d;
}

.trust-runner p {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 10px;
  color: rgba(247, 243, 234, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(42px, 9vw, 140px);
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #15191d, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, #15191d, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 18px 0;
  animation: marquee 52s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  padding: 12px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #20252a;
  color: rgba(247, 243, 234, 0.88);
  font-size: clamp(1.05rem, 2.15vw, 1.9rem);
  letter-spacing: 0;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.wordmark-script {
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(1.35rem, 2.8vw, 2.45rem) !important;
  font-weight: 800;
}

.wordmark-block {
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  text-transform: uppercase;
}

.wordmark-outline {
  font-family: Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  color: transparent !important;
  -webkit-text-stroke: 1px rgba(247, 243, 234, 0.9);
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(95, 56, 255, 0.28);
}

.wordmark-serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 850;
  text-transform: uppercase;
}

.market-marquee {
  border-top-color: rgba(255, 255, 255, 0.055);
}

.market-track {
  gap: 8px;
  padding: 10px 0 18px;
  animation-duration: 64s;
  animation-direction: reverse;
}

.market-track span {
  border-color: rgba(95, 56, 255, 0.22);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(8, 9, 10, 0.36);
  color: rgba(247, 243, 234, 0.58);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.section {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

.split-section,
.toast-section,
.calculator-section,
.proof-section,
.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.6vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.section p,
.calculator-copy p,
.proof-copy p,
.demo-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.fit-grid {
  display: grid;
  gap: 14px;
}

.fit-grid article {
  padding: 24px;
  background: var(--panel-solid);
}

.feature-section {
  border-top: 1px solid var(--line);
}

.toast-section {
  border-top: 1px solid var(--line);
}

.toast-copy {
  position: sticky;
  top: 92px;
}

.toast-title {
  display: grid;
  gap: 8px;
}

.toast-title > span:first-child {
  color: var(--ink);
  font-size: 0.6em;
  line-height: 0.95;
}

.toast-title > span:last-child {
  max-width: 680px;
  color: var(--ink);
  font-size: 0.66em;
  line-height: 1.03;
}

.toast-fire-image {
  display: block;
  width: min(100%, 680px);
  height: auto;
  margin: -4px 0 -2px;
  filter:
    drop-shadow(0 18px 38px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 24px rgba(255, 95, 25, 0.36));
}

.toast-verdict {
  margin-top: 28px;
  border: 1px solid rgba(255, 124, 36, 0.28);
  border-left: 3px solid rgba(255, 124, 36, 0.88);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 91, 25, 0.14), rgba(95, 56, 255, 0.08)),
    rgba(13, 18, 20, 0.56);
}

.toast-verdict strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1rem;
}

.toast-verdict p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.toast-panel {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(36, 17, 95, 0.34), rgba(13, 18, 20, 0.92)),
    rgba(13, 18, 20, 0.72);
}

.toast-stack {
  display: grid;
  gap: 16px;
}

.toast-panel-head,
.toast-panel article {
  display: grid;
  grid-template-columns: minmax(138px, 0.54fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
}

.toast-panel-head {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 35, 48, 0.14), rgba(95, 56, 255, 0.14));
  color: rgba(247, 243, 234, 0.8);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.78rem, 1.2vw, 0.96rem);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toast-column-label {
  color: #ff384d;
  text-shadow: 0 0 18px rgba(255, 56, 77, 0.28);
}

.union-column-label {
  color: #c5b8ff;
}

.toast-panel article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.toast-panel article > span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 9px 10px;
  background:
    linear-gradient(135deg, rgba(95, 56, 255, 0.18), rgba(255, 255, 255, 0.045));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.94rem, 1.28vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
}

.toast-limit,
.union-win {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 15px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.12vw, 1rem);
  font-weight: 680;
}

.toast-limit {
  border-color: rgba(255, 56, 77, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 35, 48, 0.18), transparent 64%),
    rgba(255, 255, 255, 0.035);
  color: rgba(247, 243, 234, 0.72);
}

.union-win {
  border-color: rgba(95, 56, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(95, 56, 255, 0.28), transparent 64%),
    rgba(255, 255, 255, 0.05);
  color: rgba(247, 243, 234, 0.9);
}

.toast-panel p {
  margin: 0;
  line-height: 1.48;
}

.ultimate-difference {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(95, 56, 255, 0.3);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 84% 0%, rgba(95, 56, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(36, 17, 95, 0.62), rgba(13, 18, 20, 0.92));
  box-shadow: var(--shadow);
}

.ultimate-difference::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(95, 56, 255, 0.72);
  pointer-events: none;
}

.ultimate-difference > span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--violet-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ultimate-difference h3 {
  max-width: 740px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.05rem, 4.25vw, 4.2rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.ultimate-difference > p {
  max-width: 820px;
  color: rgba(247, 243, 234, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.6;
}

.ultimate-difference blockquote {
  margin-top: 22px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(8, 9, 10, 0.42);
  box-shadow: none;
}

.ultimate-difference blockquote p {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 1.65vw, 1.42rem);
  font-weight: 780;
  line-height: 1.38;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.guest-led-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.guest-led-proof-strip div {
  min-height: 122px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(95, 56, 255, 0.2), transparent 58%),
    rgba(13, 18, 20, 0.72);
}

.guest-led-proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: clamp(1.55rem, 4vw, 3.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.guest-led-proof-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.guest-led-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  align-items: stretch;
}

.puck-stage {
  position: relative;
  min-height: 486px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 62%, rgba(91, 44, 255, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(18, 12, 27, 0.95), rgba(9, 11, 13, 0.92));
  box-shadow: var(--shadow);
}

.puck-stage::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-4deg);
}

.phone-mock {
  position: absolute;
  top: 44px;
  left: 50%;
  display: grid;
  gap: 12px;
  width: min(220px, 58%);
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 28px 18px 18px;
  background: linear-gradient(180deg, #171a1f, #070809);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
  transform: translateX(-50%) rotate(4deg);
}

.phone-top {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 68px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}

.phone-mock strong {
  margin-top: 18px;
  font-size: 1.6rem;
  line-height: 1;
}

.phone-mock span:not(.phone-top) {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 12px;
  color: rgba(247, 243, 234, 0.82);
  background: rgba(255, 255, 255, 0.055);
}

.puck-mock {
  position: absolute;
  right: 34px;
  bottom: 40px;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  border: 1px solid rgba(95, 56, 255, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(36, 17, 95, 0.95), rgba(95, 56, 255, 0.86));
  box-shadow: 0 24px 70px rgba(91, 44, 255, 0.32);
}

.puck-mock::before,
.puck-mock::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(95, 56, 255, 0.32);
  border-radius: 50%;
}

.puck-mock::before {
  inset: -18px;
}

.puck-mock::after {
  inset: -36px;
}

.puck-mock span {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-grid,
.ops-grid {
  display: grid;
  gap: 14px;
}

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

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

.flow-grid::before {
  content: "";
  position: absolute;
  top: 116px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(95, 56, 255, 0.9), transparent);
  box-shadow: 0 0 18px rgba(95, 56, 255, 0.5);
  animation: electric-flow 2.8s ease-in-out infinite;
}

.flow-grid article,
.ops-grid article {
  min-height: 235px;
  padding: 24px;
}

.flow-grid article {
  position: relative;
}

.flow-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(95, 56, 255, 0.62);
  color: var(--cyan);
  font-weight: 900;
  background: #111119;
  box-shadow: 0 0 22px rgba(95, 56, 255, 0.26);
}

.flow-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.guest-led-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.guest-led-sell-grid article {
  min-height: 230px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(95, 56, 255, 0.12), transparent 56%),
    rgba(13, 18, 20, 0.72);
}

.guest-led-sell-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guest-led-sell-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.calculator-section,
.proof-section {
  border-top: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  color: rgba(247, 243, 234, 0.84);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 10px;
  height: 10px;
  background: var(--green);
}

.calculator,
.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 20, 23, 0.9);
  box-shadow: var(--shadow);
}

.calculator-intro {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.calculator-intro strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.calculator-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(247, 243, 234, 0.82);
  font-size: 0.88rem;
  font-weight: 760;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

select option {
  background: #15191d;
  color: var(--ink);
}

input:focus,
select:focus {
  outline: 2px solid rgba(95, 56, 255, 0.78);
  outline-offset: 2px;
}

.estimate-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(36, 17, 95, 0.5), rgba(95, 56, 255, 0.12));
}

.estimate-card span,
.estimate-card small {
  color: var(--muted);
}

.estimate-card strong {
  color: var(--green);
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1;
}

.zero-cost-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: center;
  padding: 20px;
  border-color: rgba(95, 56, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(95, 56, 255, 0.28), transparent 54%),
    rgba(10, 12, 16, 0.86);
}

.zero-cost-callout span {
  color: rgba(247, 243, 234, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zero-cost-callout strong {
  grid-row: span 2;
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 0.9;
  text-shadow: 0 0 30px rgba(95, 56, 255, 0.48);
}

.zero-cost-callout p,
.calculator-disclaimer {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.calculator-disclaimer {
  font-size: 0.82rem;
}

.receipt-comparison {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.receipt-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 22% 12%, rgba(95, 56, 255, 0.18), transparent 34%),
    rgba(13, 18, 20, 0.72);
}

.receipt-card-purple {
  background:
    radial-gradient(circle at 22% 12%, rgba(141, 92, 255, 0.18), transparent 34%),
    rgba(13, 18, 20, 0.72);
}

.receipt-paper {
  grid-row: span 2;
  min-height: 392px;
  padding: 22px 18px 18px;
  background: #fbfaf5;
  color: #151515;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.78rem;
  line-height: 1.25;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.receipt-head {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  text-align: center;
}

.receipt-head strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.receipt-head span,
.receipt-meta {
  color: #333;
}

.receipt-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  margin-bottom: 28px;
}

.receipt-row,
.receipt-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px 64px;
  gap: 8px;
  align-items: baseline;
}

.receipt-row span:last-child,
.receipt-total strong {
  text-align: right;
}

.receipt-table-head {
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #222;
  color: #222;
  text-transform: uppercase;
}

.receipt-total {
  grid-template-columns: minmax(0, 1fr) 82px;
  margin-top: 5px;
}

.receipt-total:first-of-type {
  margin-top: 14px;
  padding-top: 8px;
  border-top: 1px solid #222;
}

.receipt-total.featured {
  font-weight: 900;
}

.receipt-row.discount {
  color: #565656;
  font-size: 0.72rem;
}

.receipt-paper p {
  margin: 28px 0 0;
  color: #111;
  text-align: center;
}

.receipt-card h3 {
  align-self: end;
  margin: 0;
  color: var(--ink);
}

.receipt-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hardware-section {
  border-top: 1px solid var(--line);
}

.hardware-copy {
  max-width: 880px;
}

.hardware-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hardware-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 42% 52%, rgba(95, 56, 255, 0.27), transparent 38%),
    linear-gradient(145deg, rgba(15, 16, 20, 0.98), rgba(26, 19, 48, 0.86));
  box-shadow: var(--shadow);
}

.terminal,
.printer {
  position: absolute;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, #1d2228, #08090a);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.44);
}

.terminal span,
.printer span {
  display: block;
  border: 1px solid rgba(95, 56, 255, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(95, 56, 255, 0.22), rgba(255, 255, 255, 0.04)),
    #0b0d10;
}

.terminal strong,
.printer strong {
  margin-top: 14px;
  color: rgba(247, 243, 234, 0.82);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terminal-main {
  top: 56px;
  left: 54px;
  width: 196px;
  height: 286px;
  transform: rotate(-5deg);
}

.terminal-main span {
  height: 150px;
}

.handheld {
  right: 46px;
  top: 112px;
  width: 132px;
  height: 226px;
  transform: rotate(8deg);
}

.handheld span {
  height: 116px;
}

.printer {
  right: 70px;
  bottom: 46px;
  width: 188px;
  height: 120px;
}

.printer span {
  height: 30px;
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hardware-grid article {
  display: grid;
  min-height: 220px;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(13, 18, 20, 0.72);
  box-shadow: var(--shadow);
}

.hardware-grid span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hardware-grid strong {
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  line-height: 1.05;
}

.hardware-grid p,
.hardware-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hardware-grid .featured-tier {
  border-color: rgba(95, 56, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(36, 17, 95, 0.72), rgba(95, 56, 255, 0.12)),
    rgba(13, 18, 20, 0.9);
}

.hardware-note {
  max-width: 760px;
  margin-top: 18px;
  font-size: 0.92rem;
}

.operating-system {
  border-top: 1px solid var(--line);
}

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

.ops-grid article {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(95, 56, 255, 0.16), transparent 42%),
    rgba(13, 18, 20, 0.78);
}

blockquote {
  margin: 0;
  padding: 24px;
}

blockquote p {
  color: var(--ink);
  font-size: clamp(1.12rem, 2.25vw, 1.72rem);
  line-height: 1.3;
}

cite {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

.proof-stack {
  display: grid;
  gap: 12px;
}

.proof-section h2 {
  font-size: clamp(2.05rem, 4.2vw, 4.2rem);
}

.included-section {
  border-top: 1px solid var(--line);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.included-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(13, 18, 20, 0.72);
  box-shadow: var(--shadow);
}

.included-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.included-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.demo-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(36, 17, 95, 0.62), transparent 38%),
    linear-gradient(315deg, rgba(95, 56, 255, 0.13), transparent 40%),
    #101417;
}

.demo-section > * {
  max-width: 590px;
}

.process-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.process-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(8, 9, 10, 0.42);
}

.process-list span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(95, 56, 255, 0.62);
  color: var(--amber);
  font-weight: 900;
}

.process-list strong {
  display: block;
}

.process-list p {
  margin: 4px 0 0;
}

.lead-form {
  justify-self: end;
  width: min(560px, 100%);
}

.lead-form h3 {
  margin-bottom: 2px;
  font-size: 1.6rem;
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-status {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  padding: 36px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #070809;
}

.site-footer p {
  margin: 8px 0 0;
  line-height: 1.55;
}

.fine-print {
  font-size: 0.82rem;
}

@keyframes stat-sweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes electric-flow {
  0%,
  100% {
    opacity: 0.36;
    filter: blur(0);
  }
  50% {
    opacity: 1;
    filter: blur(0.4px);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .guest-led-showcase,
  .hardware-top,
  .split-section,
  .toast-section,
  .calculator-section,
  .proof-section,
  .demo-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-metrics,
  .flow-grid,
  .guest-led-proof-strip,
  .guest-led-sell-grid,
  .receipt-comparison,
  .hardware-grid {
    grid-template-columns: 1fr;
  }

  .toast-copy {
    position: static;
  }

  .toast-panel-head,
  .toast-panel article {
    grid-template-columns: minmax(120px, 0.5fr) minmax(0, 1fr) minmax(0, 1fr);
  }

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

  .lead-form {
    justify-self: start;
  }

  .puck-stage {
    min-height: 390px;
  }

  .hardware-visual {
    min-height: 360px;
  }

  .receipt-card {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  }

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

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

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 10px 11px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 102px 16px 42px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8, 9, 10, 0.58), rgba(8, 9, 10, 0.9) 46%, rgba(8, 9, 10, 0.98)),
      linear-gradient(90deg, rgba(8, 9, 10, 0.88), rgba(8, 9, 10, 0.34));
  }

  .intro-band p {
    font-size: clamp(1.28rem, 8vw, 2rem);
  }

  h1 {
    font-size: clamp(3.05rem, 18vw, 4.65rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.1rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 30px);
    padding: 68px 0;
  }

  .flow-grid article,
  .ops-grid article,
  .toast-panel-head,
  .toast-panel article,
  .receipt-card,
  .hardware-grid article,
  .included-grid article,
  .fit-grid article,
  .calculator,
  .lead-form,
  blockquote {
    padding: 20px;
  }

  .toast-panel-head,
  .toast-panel article,
  .receipt-card {
    grid-template-columns: 1fr;
  }

  .toast-panel-head span:nth-child(2),
  .toast-panel-head span:nth-child(3) {
    display: none;
  }

  .toast-panel article p:nth-child(2)::before,
  .toast-panel article p:nth-child(3)::before {
    display: block;
    margin-bottom: 6px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .toast-panel article p:nth-child(2)::before {
    content: "Toast limitation";
    color: rgba(247, 243, 234, 0.55);
  }

  .toast-panel article p:nth-child(3)::before {
    content: "Union advantage";
    color: var(--cyan);
  }

  .receipt-paper {
    grid-row: auto;
    min-height: 0;
  }

  .zero-cost-callout {
    grid-template-columns: 1fr;
  }

  .flow-grid::before {
    top: 0;
    bottom: 0;
    left: 38px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(95, 56, 255, 0.9), transparent);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
