@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #070403;
  --bg-2: #120a06;
  --panel: rgba(255, 248, 235, 0.055);
  --panel-strong: rgba(255, 248, 235, 0.105);
  --ink: #fff8ee;
  --soft: rgba(255, 248, 235, 0.74);
  --muted: rgba(255, 248, 235, 0.48);
  --line: rgba(255, 248, 235, 0.16);
  --line-strong: rgba(255, 248, 235, 0.28);
  --orange: #f06a18;
  --orange-2: #ff8a2a;
  --ember: rgba(240, 106, 24, 0.26);
  --bone: #e8dac6;
  --green: #57f28c;
  --red: #ff5f4d;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --max: 1180px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

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

[id] {
  scroll-margin-top: 7rem;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.35), var(--bg) 780px),
    radial-gradient(circle at 30% -10%, rgba(240, 106, 24, 0.2), transparent 36rem),
    radial-gradient(circle at 95% 18%, rgba(87, 242, 140, 0.05), transparent 26rem),
    var(--bg);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
section,
.links-page,
.legal-main {
  max-width: 100%;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 248, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 235, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, transparent 0 22rem, rgba(0, 0, 0, 0.28) 42rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 42%, rgba(0, 0, 0, 0.5));
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--orange);
  color: #060301;
}

.cursor-light {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 106, 24, 0.16), transparent 66%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 200ms ease;
  mix-blend-mode: screen;
}

.cursor-light.active {
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 24px), 1320px);
  margin: 12px 0 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 999px;
  background: rgba(10, 6, 4, 0.72);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 106, 24, 0.55);
  border-radius: 50%;
  color: var(--orange-2);
  font-family: var(--mono);
  font-weight: 800;
  background: radial-gradient(circle at 50% 30%, rgba(240, 106, 24, 0.22), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 18px rgba(240, 106, 24, 0.13), 0 0 28px rgba(240, 106, 24, 0.12);
}

.brand-type {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(255, 104, 13, 0.42);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 0.93rem;
  letter-spacing: 0.16em;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(255, 248, 235, 0.08);
}

.site-nav .nav-cta {
  color: #080402;
  background: var(--orange);
}

.site-nav .nav-cta:hover {
  color: #080402;
  background: #ff7b22;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 8rem 1.4rem 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  filter: saturate(1.08) contrast(1.12);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 4, 3, 0.96) 0%, rgba(7, 4, 3, 0.77) 42%, rgba(7, 4, 3, 0.46) 100%),
    linear-gradient(180deg, rgba(7, 4, 3, 0.35), var(--bg) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: min(5vw, 70px);
  top: 18%;
  z-index: -1;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 106, 24, 0.18);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 8deg, rgba(240, 106, 24, 0.2) 0deg 1deg, transparent 1deg 9deg),
    radial-gradient(circle, rgba(240, 106, 24, 0.12), transparent 64%);
  opacity: 0.55;
  mask-image: radial-gradient(circle, transparent 0 31%, black 32% 34%, transparent 35% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.74fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(100%, var(--max));
  min-height: calc(100svh - 12rem);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 1.2rem;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

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

h1,
h2 {
  text-wrap: balance;
}

h1 span {
  display: block;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 13vw, 11rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(4.2rem, 9.4vw, 8.6rem);
  line-height: 0.84;
}

h2 {
  max-width: 11ch;
  margin-bottom: 1.1rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  color: var(--soft);
  line-height: 1.65;
}

.hero-lede {
  max-width: 40rem;
  margin-bottom: 1.15rem;
  color: rgba(255, 248, 235, 0.82);
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
}

.hero-actions,
.final-panel,
.site-footer nav,
.capture-grid,
.machine-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #080402;
  background: var(--orange);
  box-shadow: 0 18px 46px rgba(240, 106, 24, 0.24);
}

.btn-primary:hover {
  background: #ff7b20;
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(255, 248, 235, 0.2);
  background: rgba(255, 248, 235, 0.055);
}

.btn-secondary:hover {
  border-color: rgba(255, 248, 235, 0.4);
  background: rgba(255, 248, 235, 0.1);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 40rem;
  margin-top: 1.7rem;
  border: 1px solid rgba(255, 248, 235, 0.13);
  background: rgba(255, 248, 235, 0.08);
  overflow: hidden;
}

.hero-proof span {
  min-height: 70px;
  padding: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  background: rgba(8, 4, 2, 0.76);
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.65rem);
  font-weight: 400;
  line-height: 0.85;
  text-transform: none;
}

.hero-conversion {
  display: grid;
  gap: 12px;
  align-self: center;
}

.hero-orbit {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.portrait-stage {
  position: relative;
  width: min(100%, 470px);
  padding: 10px;
  border: 1px solid rgba(255, 248, 235, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.09), rgba(255, 248, 235, 0.02)),
    radial-gradient(circle at 78% 12%, rgba(240, 106, 24, 0.18), transparent 15rem),
    rgba(9, 5, 3, 0.72);
  box-shadow: 0 54px 150px rgba(0, 0, 0, 0.5), 0 0 70px rgba(240, 106, 24, 0.11);
  isolation: isolate;
}

.portrait-stage::before {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: -1;
  border: 1px solid rgba(240, 106, 24, 0.1);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 22deg, rgba(240, 106, 24, 0.11) 0deg 1deg, transparent 1deg 11deg),
    radial-gradient(circle, transparent 0 56%, rgba(240, 106, 24, 0.04) 57%, transparent 72%);
  opacity: 0.52;
  mask-image: linear-gradient(90deg, transparent, black 28%, black 76%, transparent);
}

.portrait-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 0.88;
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 28px;
  overflow: hidden;
  background: #140b06;
  box-shadow: inset 0 0 0 1px rgba(240, 106, 24, 0.08);
}

.portrait-video,
.portrait-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 14%;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.04);
}

.portrait-fallback {
  display: none;
}

.portrait-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 4, 3, 0.58));
  pointer-events: none;
}

.portrait-ring {
  display: none;
}

.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 4, 3, 0.28), transparent 30%, transparent 82%, rgba(7, 4, 3, 0.18)),
    linear-gradient(180deg, transparent 62%, rgba(7, 4, 3, 0.24));
}

.portrait-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.085), rgba(255, 248, 235, 0.035)),
    rgba(8, 4, 2, 0.68);
  backdrop-filter: blur(16px);
}

.portrait-meta > div {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.portrait-meta span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-meta strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.portrait-signal {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 248, 235, 0.1);
}

.portrait-signal p {
  margin: 0;
  color: rgba(255, 248, 235, 0.88);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.signal-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(87, 242, 140, 0.9);
}

.section-shell {
  width: min(calc(100% - 28px), var(--max));
  margin-inline: auto;
  padding-block: clamp(5rem, 11vw, 9rem);
}

.split,
.mechanism-grid,
.snake-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.section-copy p {
  max-width: 42rem;
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  max-width: 32rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
}

.check-list li::before {
  content: "33";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
}

.number-machine {
  position: relative;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 248, 235, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.11), rgba(255, 248, 235, 0.035)),
    radial-gradient(circle at 100% 0%, rgba(240, 106, 24, 0.18), transparent 18rem);
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.number-machine::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(255, 248, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 235, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

.number-machine > * {
  position: relative;
}

.machine-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(87, 242, 140, 0.09);
}

.live-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.number-machine label {
  display: block;
  margin-bottom: 8px;
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.machine-row {
  align-items: stretch;
  margin-bottom: 1rem;
}

input {
  min-height: 48px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(7, 4, 3, 0.64);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus {
  border-color: rgba(240, 106, 24, 0.75);
  box-shadow: 0 0 0 4px rgba(240, 106, 24, 0.12);
}

.machine-row input {
  flex: 1 1 220px;
}

.result-panel {
  display: grid;
  min-height: 260px;
  margin-top: 1rem;
  padding: 1.3rem;
  border: 1px solid rgba(240, 106, 24, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 10%, rgba(240, 106, 24, 0.18), transparent 18rem),
    rgba(0, 0, 0, 0.26);
}

.result-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.result-panel strong {
  margin: 0.2rem 0;
  color: var(--orange-2);
  font-family: var(--serif);
  font-size: clamp(6rem, 17vw, 11rem);
  font-weight: 400;
  line-height: 0.75;
}

.result-panel p {
  max-width: 30rem;
  margin: auto 0 0;
  color: rgba(255, 248, 235, 0.84);
}

.capture-grid {
  margin-top: 1rem;
}

.capture-grid input {
  flex: 1 1 220px;
}

.microcopy {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.hero-machine {
  padding: 18px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 248, 235, 0.12), rgba(255, 248, 235, 0.035)),
    radial-gradient(circle at 100% 0%, rgba(240, 106, 24, 0.2), transparent 15rem),
    rgba(7, 4, 3, 0.72);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42);
}

.hero-machine .machine-topline {
  margin-bottom: 1rem;
}

.hero-machine .machine-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.hero-machine .result-panel {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  min-height: 118px;
  padding: 1rem;
}

.hero-machine .result-label {
  grid-column: 1 / -1;
}

.hero-machine .result-panel strong {
  margin: 0;
  font-size: clamp(4.4rem, 8vw, 6.7rem);
}

.hero-machine .result-panel p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-machine .capture-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.lane-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 248, 235, 0.13);
  border-radius: 24px;
  background: rgba(255, 248, 235, 0.1);
  overflow: hidden;
}

.quick-lane {
  min-height: 116px;
  padding: 14px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 106, 24, 0.12), transparent 9rem),
    rgba(8, 4, 2, 0.82);
  transition: background 180ms ease, transform 180ms var(--ease);
}

.quick-lane:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 106, 24, 0.22), transparent 9rem),
    rgba(18, 10, 6, 0.92);
}

.quick-lane span,
.authority-strip span {
  display: block;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-lane strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 0.9;
}

.quick-lane em {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.authority-strip {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid rgba(255, 248, 235, 0.13);
  border-radius: 24px;
  background: rgba(8, 4, 2, 0.72);
  backdrop-filter: blur(16px);
}

.authority-strip img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  object-position: 58% 18%;
  filter: saturate(0.95) contrast(1.08);
}

.authority-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.25;
}

.mechanism-section,
.products-section,
.final-cta {
  background: linear-gradient(180deg, transparent, rgba(18, 10, 6, 0.72), transparent);
}

.mechanism-grid {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.82fr);
}

.mechanism-visual {
  position: relative;
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1.08;
  background: #0c0604;
}

.mechanism-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.mechanism-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, transparent, rgba(0, 0, 0, 0.42));
}

.mechanism-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(255, 248, 235, 0.18);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(16px);
}

.mechanism-badge span,
.product-kicker,
.receipt-type {
  display: block;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mechanism-badge strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.88;
}

.rule-stack {
  display: grid;
  gap: 1px;
  max-width: 38rem;
  margin-top: 2rem;
  border: 1px solid rgba(255, 248, 235, 0.14);
  background: rgba(255, 248, 235, 0.1);
}

.rule-stack div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  min-height: 76px;
  background: rgba(7, 4, 3, 0.78);
}

.rule-stack span {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--orange);
  font-family: var(--mono);
  font-weight: 800;
  border-right: 1px solid rgba(255, 248, 235, 0.1);
}

.rule-stack p {
  margin: 0;
  padding: 16px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.56fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 0.4rem;
}

.sports-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -0.4rem 0 1.6rem;
  border: 1px solid rgba(255, 248, 235, 0.12);
  background: rgba(255, 248, 235, 0.08);
}

.sports-ledger span {
  min-height: 74px;
  padding: 15px;
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.45;
  background: rgba(7, 4, 3, 0.78);
}

.sports-ledger strong {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-2);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-cinema {
  position: relative;
  min-height: clamp(260px, 42vw, 520px);
  margin: 0 0 1px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  overflow: hidden;
  background: #090604;
}

.proof-cinema video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.92;
}

.proof-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 3, 2, 0.74), rgba(5, 3, 2, 0.12) 56%, rgba(5, 3, 2, 0.54)),
    linear-gradient(180deg, transparent 56%, rgba(5, 3, 2, 0.76));
  pointer-events: none;
}

.proof-caption {
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 2;
  max-width: 36rem;
}

.proof-caption span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-caption strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.84;
}

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  background: rgba(255, 248, 235, 0.1);
}

.receipt-card {
  min-height: 330px;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.055), rgba(255, 248, 235, 0.022)),
    var(--bg);
}

.receipt-card h3 {
  margin-top: 4.4rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.receipt-card a,
.product-card a:not(.btn) {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lane-tabs {
  display: inline-flex;
  gap: 4px;
  margin: 0 0 1.4rem;
  padding: 5px;
  border: 1px solid rgba(255, 248, 235, 0.13);
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.05);
}

.lane-tab {
  min-width: 92px;
  border: none;
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}

.lane-tab.active {
  color: #080402;
  background: var(--orange);
}

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

.product-card {
  position: relative;
  min-height: 372px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.07), rgba(255, 248, 235, 0.025)),
    rgba(7, 4, 3, 0.86);
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms var(--ease), border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 106, 24, 0.46);
}

.product-card.dimmed {
  opacity: 0.28;
}

.product-card.feature {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 1.2rem;
  align-items: end;
}

.product-card img,
.product-card video {
  width: 100%;
  height: 190px;
  margin-bottom: 1rem;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 235, 0.12);
}

.product-card.feature img,
.product-card.feature video {
  height: 100%;
  min-height: 330px;
  margin-bottom: 0;
}

.product-card h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
}

.product-card:not(.feature) h3 {
  font-size: 2.35rem;
}

.product-card p {
  margin-bottom: 1.1rem;
}

.price-line {
  margin-bottom: 1rem;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 800;
}

.cue-orb {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 1px solid rgba(255, 248, 235, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 106, 24, 0.3), transparent 10rem),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 17rem),
    #070403;
  overflow: hidden;
}

.cue-orb img {
  position: relative;
  z-index: 2;
  width: 46%;
  height: auto;
  margin: 0;
  border: 0;
  object-fit: contain;
}

.cue-orb video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  border: 0;
  border-radius: inherit;
  object-fit: cover;
  opacity: 0.78;
}

.cue-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 106, 24, 0.2), transparent 9rem),
    linear-gradient(180deg, rgba(5, 3, 2, 0.08), rgba(5, 3, 2, 0.52));
  pointer-events: none;
}

.number-tile {
  display: grid;
  place-items: center;
  height: 190px;
  margin-bottom: 1rem;
  border-radius: 20px;
  color: var(--orange-2);
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.8;
  background:
    radial-gradient(circle, rgba(240, 106, 24, 0.16), transparent 11rem),
    rgba(255, 248, 235, 0.04);
  border: 1px solid rgba(255, 248, 235, 0.12);
}

.chart-visual {
  height: 190px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(240, 106, 24, 0.7) 18% 19%, transparent 19% 38%, rgba(87, 242, 140, 0.52) 38% 39%, transparent 39% 100%),
    linear-gradient(rgba(255, 248, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 235, 0.04) 1px, transparent 1px),
    #050302;
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.snake-section {
  background:
    radial-gradient(circle at 76% 50%, rgba(240, 106, 24, 0.16), transparent 24rem),
    #030201;
  overflow: hidden;
}

.snake-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
}

.snake-image {
  width: 100%;
  border-radius: 34px;
  filter: contrast(1.08) saturate(0.9);
}

.final-panel {
  justify-content: space-between;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 10%, rgba(240, 106, 24, 0.18), transparent 20rem),
    rgba(255, 248, 235, 0.055);
}

.final-panel h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.55fr);
  gap: 2rem;
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 248, 235, 0.13);
}

.site-footer strong {
  display: block;
  letter-spacing: 0.16em;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer a {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-note {
  text-align: right;
}

.legal-main {
  padding: 9rem 1.25rem 5rem;
}

.legal-shell {
  width: min(100%, 860px);
  margin: 0 auto;
}

.legal-kicker {
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-shell h1 {
  max-width: 10ch;
  margin: 0.8rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 12vw, 8rem);
  font-weight: 400;
  line-height: 0.86;
}

.legal-intro {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.legal-body {
  margin-top: clamp(2rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
}

.legal-body section {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-body h2 {
  max-width: none;
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.legal-body p {
  margin: 0;
  color: var(--soft);
  line-height: 1.75;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-grid,
  .split,
  .mechanism-grid,
  .snake-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .hero-conversion {
    width: min(100%, 640px);
    margin-inline: auto;
  }

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

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

  .portrait-stage {
    width: min(100%, 460px);
    margin-inline: auto;
  }

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

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

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

  .product-card.feature {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .product-card.feature img,
  .product-card.feature video,
  .cue-orb {
    min-height: 250px;
    height: 250px;
  }

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

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 26px;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    padding-right: 64px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    flex: 0 0 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    position: fixed;
    top: 22px;
    left: clamp(258px, 84vw, 326px);
    right: auto;
    z-index: 30;
    background: rgba(10, 6, 4, 0.7);
    backdrop-filter: blur(14px);
  }

  .menu-toggle span {
    margin: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 248, 235, 0.14);
    border-radius: 24px;
    background: rgba(10, 6, 4, 0.94);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a {
    text-align: center;
  }

  .hero {
    padding-top: 7rem;
    padding-inline: 22px;
  }

  h1 {
    max-width: 7ch;
    font-size: clamp(3.35rem, 16vw, 4.75rem);
    line-height: 0.86;
  }

  .hero h1 {
    max-width: 8.2ch;
    font-size: clamp(2.9rem, 12.5vw, 3.75rem);
    line-height: 0.92;
  }

  h2 {
    max-width: 8ch;
    font-size: clamp(3rem, 14vw, 4.65rem);
    line-height: 0.9;
  }

  .hero-copy {
    width: min(100%, 21.65rem);
    max-width: 21.65rem;
    min-width: 0;
  }

  .hero-copy > *,
  .hero-lede,
  .section-copy,
  .section-heading {
    max-width: 100%;
  }

  .hero-copy p,
  .section-copy p {
    overflow-wrap: break-word;
  }

  .hero-lede {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 21.65rem);
    max-width: 21.65rem;
  }

  .hero-machine {
    width: min(100%, 21.65rem);
    max-width: 21.65rem;
    padding: 15px;
  }

  .hero-machine .live-chip {
    display: none;
  }

  .hero-machine .machine-row,
  .hero-machine .capture-grid,
  .hero-machine .result-panel {
    grid-template-columns: 1fr;
  }

  .hero-machine .result-panel strong {
    font-size: clamp(4.4rem, 21vw, 6rem);
  }

  .lane-quick-grid {
    width: min(100%, 21.65rem);
    max-width: 21.65rem;
    grid-template-columns: 1fr 1fr;
  }

  .quick-lane {
    min-height: 104px;
    padding: 12px;
  }

  .quick-lane strong {
    margin-top: 14px;
    font-size: 1.55rem;
  }

  .authority-strip {
    width: min(100%, 21.65rem);
    max-width: 21.65rem;
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .authority-strip img {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .hero-proof {
    display: none;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
    text-align: center;
    white-space: normal;
  }

  .hero-proof,
  .sports-ledger,
  .receipt-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .proof-cinema {
    min-height: 300px;
  }

  .proof-caption {
    max-width: 18.5rem;
  }

  .proof-caption strong {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .product-card.feature {
    grid-column: span 1;
  }

  .lane-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .lane-tab {
    min-width: 84px;
  }

  .portrait-stage {
    padding: 10px;
    border-radius: 34px;
  }

  .portrait-stage::before {
    display: none;
  }

  .portrait-shell {
    border-radius: 26px;
  }

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

  .portrait-signal {
    grid-column: auto;
    width: 100%;
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 248, 235, 0.1);
    border-left: 0;
  }
}

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

  .hero-video,
  .portrait-video,
  .proof-cinema video,
  .mechanism-visual video,
  .cue-orb video,
  .product-card video {
    display: none;
  }

  .portrait-fallback {
    display: block;
  }
}

/* Refero-inspired rebuild: ORYZO texture + Dimension depth + Linear compactness */
.ref-hero {
  min-height: 100svh;
  padding: 7.2rem 1.4rem 3rem;
}

.ref-hero::after {
  right: 8vw;
  top: 8rem;
  width: min(38vw, 520px);
  opacity: 0.28;
}

.ref-hero .hero-video {
  opacity: 0.34;
  filter: saturate(0.9) contrast(1.16);
}

.ref-hero .hero-scrim {
  background:
    radial-gradient(circle at 56% 46%, rgba(240, 106, 24, 0.09), transparent 28rem),
    linear-gradient(90deg, rgba(7, 4, 3, 0.98) 0%, rgba(7, 4, 3, 0.82) 52%, rgba(7, 4, 3, 0.92) 100%),
    linear-gradient(180deg, rgba(7, 4, 3, 0.24), var(--bg) 100%);
}

.refero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(390px, 0.94fr) minmax(250px, 0.58fr);
  gap: 14px;
  width: min(calc(100% - 34px), 1240px);
  min-height: calc(100svh - 10.8rem);
  margin: 0 auto;
  align-items: stretch;
}

.command-copy,
.hero-machine,
.authority-panel {
  border: 1px solid rgba(255, 248, 235, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 248, 235, 0.075), rgba(255, 248, 235, 0.022)),
    radial-gradient(circle at 18% 0%, rgba(87, 242, 140, 0.055), transparent 17rem),
    rgba(8, 5, 4, 0.78);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.command-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: clamp(1.1rem, 3vw, 2rem);
  border-radius: 30px 10px 10px 30px;
}

.command-copy .eyebrow {
  margin-bottom: 1rem;
}

.command-copy h1 {
  max-width: 8.8ch;
  margin: 0 0 1.2rem;
  font-size: clamp(4.1rem, 7.4vw, 7.5rem);
  line-height: 0.82;
}

.command-copy .hero-lede {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.conversion-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid rgba(255, 248, 235, 0.13);
  background: rgba(255, 248, 235, 0.08);
}

.conversion-row span {
  min-height: 84px;
  padding: 13px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  background: rgba(6, 4, 3, 0.82);
}

.conversion-row strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 0.82;
  text-transform: none;
}

.ref-hero .hero-machine {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  width: auto;
  max-width: none;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  border-radius: 10px;
  overflow: hidden;
}

.ref-hero .hero-machine::before {
  opacity: 0.48;
}

.ref-hero .hero-machine .machine-row,
.ref-hero .hero-machine .capture-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.ref-hero .hero-machine .result-panel {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  min-height: 190px;
  margin: 1rem 0;
  padding: 1.1rem;
  border-color: rgba(240, 106, 24, 0.34);
  background:
    radial-gradient(circle at 10% 22%, rgba(240, 106, 24, 0.2), transparent 10rem),
    rgba(0, 0, 0, 0.22);
}

.ref-hero .hero-machine .result-label {
  grid-column: 1 / -1;
}

.ref-hero .hero-machine .result-panel strong {
  margin: 0;
  font-size: clamp(5.4rem, 9vw, 8rem);
}

.ref-hero .hero-machine .result-panel p {
  margin: 0;
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.45;
}

.authority-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-height: 560px;
  padding: 12px;
  border-radius: 10px 30px 30px 10px;
}

.gary-chip {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: 20px;
  background: rgba(5, 3, 2, 0.72);
}

.gary-chip img {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  object-fit: cover;
  object-position: 58% 16%;
  filter: saturate(0.94) contrast(1.08);
}

.gary-chip span,
.lane-stack span {
  display: block;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gary-chip strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.2;
}

.lane-stack {
  display: grid;
  gap: 8px;
}

.lane-stack a {
  display: grid;
  align-content: space-between;
  min-height: 104px;
  padding: 14px;
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 106, 24, 0.12), transparent 8rem),
    rgba(5, 3, 2, 0.7);
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.lane-stack a:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 106, 24, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 106, 24, 0.22), transparent 8rem),
    rgba(12, 7, 5, 0.88);
}

.lane-stack strong {
  display: block;
  margin: 12px 0 7px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 0.9;
}

.lane-stack em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.homepage-offer {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 248, 235, 0.075), rgba(255, 248, 235, 0.022)),
    radial-gradient(circle at 50% 0%, rgba(240, 106, 24, 0.18), transparent 18rem),
    rgba(8, 5, 4, 0.78);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.offer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 1rem 0;
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: 22px;
  overflow: hidden;
  background: #050302;
}

.offer-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.offer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(240, 106, 24, 0.2), transparent 10rem), rgba(0, 0, 0, 0.22);
}

.offer-visual img {
  position: relative;
  z-index: 2;
  width: min(46%, 190px);
}

.offer-copy {
  margin-top: auto;
}

.offer-copy span {
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-copy h2 {
  max-width: 9ch;
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
}

.offer-copy p {
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calculator-hero {
  position: relative;
  min-height: 100svh;
  padding: 7.2rem 1.4rem 3rem;
  overflow: hidden;
  isolation: isolate;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(430px, 0.9fr) minmax(260px, 0.56fr);
  gap: 14px;
  width: min(calc(100% - 34px), 1240px);
  min-height: calc(100svh - 10.8rem);
  margin: 0 auto;
  align-items: stretch;
}

.calculator-machine,
.next-lane-panel {
  min-height: 560px;
  border-radius: 10px;
}

.calculator-machine {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calculator-machine .result-panel {
  min-height: 250px;
}

.next-lane-panel {
  padding: 12px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 248, 235, 0.075), rgba(255, 248, 235, 0.022)),
    rgba(8, 5, 4, 0.78);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.proof-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  background: rgba(255, 248, 235, 0.08);
}

.proof-ledger article {
  min-height: 260px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.055), rgba(255, 248, 235, 0.02)),
    rgba(6, 4, 3, 0.88);
}

.proof-ledger span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-ledger strong {
  display: block;
  margin: 4.7rem 0 0.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.9;
}

.proof-ledger p {
  margin: 0;
  color: rgba(255, 248, 235, 0.7);
  font-size: 0.92rem;
}

.ref-product-grid .product-card {
  border-radius: 20px;
}

.ref-product-grid .product-card.feature {
  grid-template-columns: minmax(0, 0.82fr) minmax(250px, 0.72fr);
}

@media (max-width: 1120px) {
  .refero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .command-copy {
    grid-column: 1 / -1;
    min-height: auto;
    border-radius: 28px;
  }

  .authority-panel {
    border-radius: 10px 28px 28px 10px;
  }
}

@media (max-width: 760px) {
  .ref-hero {
    padding: 6.2rem 12px 2.4rem;
  }

  .refero-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 346px;
    min-height: auto;
    margin-left: 0;
    margin-right: auto;
    gap: 10px;
  }

  .command-copy,
  .ref-hero .hero-machine,
  .homepage-offer,
  .authority-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    border-radius: 24px;
  }

  .command-copy {
    order: 1;
  }

  .authority-panel {
    order: 2;
  }

  .homepage-offer {
    order: 2;
    min-height: auto;
    border-radius: 24px;
  }

  .ref-hero .hero-machine {
    order: 3;
  }

  .homepage-offer .live-chip {
    display: none;
  }

  .offer-visual {
    min-height: 150px;
  }

  .offer-copy h2 {
    max-width: 10ch;
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

  .offer-actions .btn {
    width: 100%;
  }

  .command-copy {
    padding: 16px;
  }

  .command-copy .eyebrow {
    font-size: 0.62rem;
    line-height: 1.4;
  }

  .command-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.65rem, 12.4vw, 3.35rem);
    line-height: 0.9;
  }

  .command-copy .hero-lede {
    display: none;
  }

  .conversion-row {
    display: none;
  }

  .ref-hero .hero-machine .machine-topline {
    margin-bottom: 0.85rem;
  }

  .ref-hero .hero-machine .live-chip {
    display: none;
  }

  .ref-hero .hero-machine .machine-row,
  .ref-hero .hero-machine .capture-grid,
  .ref-hero .hero-machine .result-panel {
    grid-template-columns: 1fr;
  }

  .ref-hero .hero-machine input,
  .ref-hero .hero-machine .btn {
    width: 100%;
  }

  .ref-hero .hero-machine .result-panel {
    min-height: 170px;
  }

  .ref-hero .hero-machine .result-panel strong {
    font-size: clamp(4.8rem, 23vw, 6.2rem);
  }

  .gary-chip {
    display: none;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .gary-chip img {
    width: 58px;
    height: 58px;
  }

  .lane-stack {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .lane-stack a {
    min-height: 102px;
    padding: 12px;
  }

  .lane-stack strong {
    font-size: 1.45rem;
  }

  .proof-ledger {
    grid-template-columns: 1fr;
  }

  .proof-ledger article {
    min-height: 210px;
  }

  .proof-ledger strong {
    margin-top: 3rem;
  }

  .ref-product-grid .product-card.feature {
    grid-template-columns: 1fr;
  }

  .calculator-hero {
    padding: 6.2rem 12px 2.4rem;
  }

  .calculator-layout {
    grid-template-columns: 1fr;
    width: min(100%, 346px);
    max-width: calc(100vw - 24px);
    min-height: auto;
    margin-inline: 0 auto;
    gap: 10px;
  }

  .calculator-layout .command-copy,
  .calculator-machine,
  .next-lane-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    border-radius: 24px;
  }

  .calculator-layout .command-copy {
    order: 1;
  }

  .calculator-machine {
    order: 2;
  }

  .next-lane-panel {
    order: 3;
  }

  .calculator-machine .machine-row,
  .calculator-machine .capture-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .calculator-machine .btn,
  .calculator-machine input {
    width: 100%;
  }

  .next-lane-panel .eyebrow {
    margin-bottom: 1rem;
  }
}

/* Lazyweb-informed GG33 sales system */
.lazyweb-home {
  background:
    radial-gradient(circle at 18% 10%, rgba(240, 106, 24, 0.18), transparent 26rem),
    radial-gradient(circle at 82% 6%, rgba(87, 242, 140, 0.07), transparent 20rem),
    var(--bg);
}

.sales-hero {
  position: relative;
  min-height: 100svh;
  padding: 7.2rem 1.25rem 3rem;
  overflow: hidden;
  isolation: isolate;
}

.sales-hero .hero-video {
  opacity: 0.26;
  filter: saturate(0.86) contrast(1.18);
}

.sales-hero .hero-scrim {
  background:
    radial-gradient(circle at 56% 45%, rgba(240, 106, 24, 0.1), transparent 30rem),
    linear-gradient(90deg, rgba(7, 4, 3, 0.99), rgba(7, 4, 3, 0.78) 48%, rgba(7, 4, 3, 0.94)),
    linear-gradient(180deg, transparent 54%, var(--bg));
}

.sales-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(430px, 0.96fr) minmax(250px, 0.56fr);
  grid-template-rows: auto auto;
  gap: 14px;
  width: min(calc(100% - 30px), 1240px);
  min-height: calc(100svh - 10.2rem);
  margin: 0 auto;
}

.sales-copy,
.product-command,
.gary-market-card {
  border: 1px solid rgba(255, 248, 235, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 248, 235, 0.08), rgba(255, 248, 235, 0.022)),
    rgba(8, 5, 4, 0.78);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.sales-copy {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 670px;
  padding: clamp(1.15rem, 3vw, 2rem);
  border-radius: 32px 12px 12px 32px;
}

.sales-copy h1 {
  max-width: 8ch;
  margin: 0 0 1rem;
  font-size: clamp(4.2rem, 7.2vw, 7.7rem);
  line-height: 0.78;
}

.sales-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 1.4rem;
  color: rgba(255, 248, 235, 0.78);
  font-size: clamp(1rem, 1.16vw, 1.12rem);
}

.sales-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-ghost {
  color: var(--muted);
  border-color: rgba(255, 248, 235, 0.12);
  background: transparent;
}

.product-command {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 670px;
  padding: 14px;
  border-radius: 12px;
}

.command-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 12px;
  border: 1px solid rgba(255, 248, 235, 0.1);
  border-radius: 20px;
  background: rgba(4, 3, 2, 0.62);
}

.command-top span,
.featured-command span,
.product-rows span,
.premium-product span,
.receipt-tape span {
  display: block;
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.command-top strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

.command-top a {
  align-self: center;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-command {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(220px, 0.78fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(240, 106, 24, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 106, 24, 0.19), transparent 14rem),
    rgba(5, 3, 2, 0.7);
}

.cue-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #050302;
}

.cue-preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.cue-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(240, 106, 24, 0.2), rgba(0, 0, 0, 0.2));
}

.cue-preview img {
  position: relative;
  z-index: 2;
  width: min(56%, 170px);
}

.featured-command h2 {
  max-width: 8.5ch;
  margin: 0.7rem 0 0.8rem;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.featured-command p {
  color: rgba(255, 248, 235, 0.7);
  font-size: 0.95rem;
}

.product-rows {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: auto;
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: 22px;
  background: rgba(255, 248, 235, 0.09);
  overflow: hidden;
}

.product-rows a {
  min-height: 132px;
  padding: 13px;
  background: rgba(5, 3, 2, 0.82);
  transition: background 180ms ease, transform 180ms var(--ease);
}

.product-rows a:hover {
  transform: translateY(-2px);
  background: rgba(18, 10, 6, 0.94);
}

.product-rows strong {
  display: block;
  margin: 22px 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 400;
  line-height: 0.9;
}

.product-rows em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.gary-market-card {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 12px 32px 32px 12px;
}

.gary-photo img {
  width: 94px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
  object-position: 58% 14%;
  filter: saturate(0.94) contrast(1.08);
}

.gary-market-card span {
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gary-market-card h2 {
  max-width: 12ch;
  margin: 0.45rem 0 0.65rem;
  font-size: clamp(1.7rem, 2.45vw, 2.35rem);
}

.gary-market-card p {
  margin: 0;
  color: rgba(255, 248, 235, 0.7);
  font-size: 0.9rem;
}

.switchboard-section {
  background: linear-gradient(180deg, rgba(18, 10, 6, 0.35), transparent 70%);
}

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

.premium-product {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 16px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 106, 24, 0.09), transparent 12rem),
    rgba(8, 5, 4, 0.82);
}

.premium-product.feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(250px, 0.75fr);
  gap: 16px;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #050302;
}

.product-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.product-media img {
  position: relative;
  z-index: 2;
  width: min(52%, 190px);
}

.premium-product h3 {
  margin-top: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.9;
}

.premium-product p {
  color: rgba(255, 248, 235, 0.7);
  font-size: 0.94rem;
}

.premium-product strong {
  display: block;
  margin-top: auto;
  margin-bottom: 1rem;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.premium-product a:not(.btn) {
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.receipt-tape {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  background: rgba(255, 248, 235, 0.09);
}

.receipt-tape article {
  min-height: 250px;
  padding: 18px;
  background: rgba(5, 3, 2, 0.86);
}

.receipt-tape strong {
  display: block;
  margin: 4.4rem 0 0.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.9;
}

.receipt-tape p {
  margin: 0;
  color: rgba(255, 248, 235, 0.7);
  font-size: 0.92rem;
}

.scale-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(280px, 0.8fr) auto;
  gap: 1.4rem;
  align-items: end;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(255, 248, 235, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(240, 106, 24, 0.14), transparent 18rem),
    rgba(8, 5, 4, 0.82);
}

.scale-panel h2 {
  max-width: 9ch;
  margin-bottom: 0;
}

.scale-panel p {
  margin: 0;
  color: rgba(255, 248, 235, 0.72);
}

@media (max-width: 1120px) {
  .sales-shell {
    grid-template-columns: 1fr;
  }

  .sales-copy,
  .product-command,
  .gary-market-card {
    min-height: auto;
    border-radius: 28px;
  }

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

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

  .scale-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sales-hero {
    padding: 6.4rem 12px 2.4rem;
  }

  .sales-shell {
    width: min(100%, 354px);
    max-width: calc(100vw - 24px);
    min-height: auto;
    margin-left: 0;
    margin-right: auto;
    gap: 10px;
  }

  .sales-copy {
    padding: 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .sales-copy h1 {
    font-size: clamp(3.15rem, 15vw, 4.1rem);
    line-height: 0.82;
  }

  .sales-copy p:not(.eyebrow) {
    font-size: 0.94rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .sales-actions .btn {
    width: 100%;
  }

  .featured-command,
  .premium-product.feature {
    grid-template-columns: 1fr;
  }

  .cue-preview {
    min-height: 160px;
  }

  .featured-command h2 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .product-rows {
    grid-template-columns: 1fr 1fr;
  }

  .product-rows a {
    min-height: 110px;
  }

  .gary-market-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .gary-photo img {
    width: 68px;
    height: 86px;
    border-radius: 14px;
  }

  .gary-market-card h2 {
    font-size: 1.55rem;
  }

  .gary-market-card p {
    display: none;
  }

  .premium-product-grid,
  .receipt-tape {
    grid-template-columns: 1fr;
  }

  .premium-product {
    min-height: 280px;
  }
}
