:root {
  --paper: #f3efe6;
  --paper-2: #ebe5d8;
  --ink: #11110f;
  --ink-2: #24231f;
  --muted: #6d6960;
  --line: rgba(17, 17, 15, .18);
  --acid: #c6ff3f;
  --acid-2: #a9e61f;
  --blue: #2d5bff;
  --coral: #ff684d;
  --white: #fffefa;
  --radius-lg: 42px;
  --radius-md: 26px;
  --radius-sm: 16px;
  --shadow: 0 35px 90px rgba(17, 17, 15, .14);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans Arabic", "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  right: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right center;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 255, 63, .18), rgba(198, 255, 63, 0) 68%);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-1000px, -1000px, 0);
  transition: opacity .35s ease;
  mix-blend-mode: multiply;
}

body.pointer-active .cursor-glow {
  opacity: 1;
}

.section {
  position: relative;
  padding: 140px clamp(24px, 5vw, 84px);
}

.site-header {
  position: fixed;
  z-index: 900;
  top: 18px;
  left: 50%;
  width: min(1440px, calc(100% - 36px));
  height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(17, 17, 15, .18);
  background: rgba(243, 239, 230, .82);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, top .3s ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(255, 254, 250, .94);
  border-color: rgba(17, 17, 15, .1);
  box-shadow: 0 18px 50px rgba(17, 17, 15, .09);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 202px;
  gap: 10px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: invert(1);
}

.brand-name {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .18em;
  direction: ltr;
}

.brand-tag {
  padding-right: 10px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-width: 154px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease;
}

.header-cta:hover {
  background: #d6ff75;
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(3px, 3px);
}

.header-cta svg,
.button svg,
.form-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform .3s ease;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
  padding: 154px clamp(24px, 5vw, 84px) 98px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(45, 91, 255, .11), transparent 28%),
    radial-gradient(circle at 10% 84%, rgba(255, 104, 77, .12), transparent 31%),
    linear-gradient(180deg, #f8f5ee 0%, var(--paper) 72%);
}

.hero-grid-lines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .75;
  background-image:
    linear-gradient(rgba(17, 17, 15, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, .06) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-ghost-mark {
  position: absolute;
  z-index: -1;
  left: -7vw;
  top: 5vh;
  width: min(48vw, 720px);
  opacity: .035;
  filter: blur(.2px);
  animation: ghostDrift 22s ease-in-out infinite alternate;
}

@keyframes ghostDrift {
  from { transform: translate3d(0, 0, 0) rotate(-4deg) scale(.96); }
  to { transform: translate3d(3vw, 5vh, 0) rotate(5deg) scale(1.04); }
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 4vw, 70px);
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  direction: ltr;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: bottom left;
}

.hero-stamp i {
  width: 28px;
  height: 1px;
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-kicker,
.section-number,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.hero-kicker {
  margin-bottom: 28px;
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 254, 250, .68);
  box-shadow: 3px 3px 0 var(--ink);
}

.kicker-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.kicker-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--blue);
  border-radius: inherit;
  animation: ping 1.8s ease-out infinite;
}

@keyframes ping {
  0% { opacity: 1; transform: scale(.55); }
  100% { opacity: 0; transform: scale(1.5); }
}

.hero-title {
  margin: 0;
  font-size: clamp(64px, 7.25vw, 124px);
  font-weight: 950;
  line-height: .92;
  letter-spacing: -.055em;
}

.title-line {
  display: block;
  overflow: hidden;
  padding: .05em .02em .12em;
}

.title-line i {
  display: inline-block;
  font-style: normal;
}

.title-line em {
  position: relative;
  display: inline-block;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

.title-line em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.04em;
  bottom: .02em;
  width: 104%;
  height: .13em;
  background: var(--acid);
  transform: rotate(-1.5deg) scaleX(0);
  transform-origin: right;
  animation: underlineIn .8s 1.2s var(--ease) forwards;
}

@keyframes underlineIn {
  to { transform: rotate(-1.5deg) scaleX(1); }
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #4d4a43;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.9;
}

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

.button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s ease;
}

.button-ink {
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--acid);
}

.button-ink:hover {
  box-shadow: 2px 2px 0 var(--acid);
  transform: translate(4px, 4px);
}

.button-outline {
  border: 1px solid var(--ink);
  background: rgba(255, 254, 250, .48);
}

.button-outline:hover {
  background: var(--white);
  transform: translateY(-3px);
}

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

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.hero-facts b {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.hero-lab {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  justify-self: end;
  perspective: 1400px;
}

.lab-shadow {
  position: absolute;
  z-index: -1;
  inset: 11% -6% -8% 4%;
  border-radius: var(--radius-lg);
  background: var(--blue);
  transform: rotate(4deg);
  box-shadow: 0 40px 120px rgba(45, 91, 255, .28);
}

.lab-card {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(17, 17, 15, .22);
  transform-style: preserve-3d;
  transition: transform .25s ease;
}

.lab-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    radial-gradient(circle at 1px 1px, #fff 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(145deg, #000, transparent 45%);
}

.lab-card::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(198, 255, 63, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(198, 255, 63, .04), 0 0 0 96px rgba(198, 255, 63, .025);
}

.lab-top,
.lab-bottom,
.score-stage,
.quick-rating {
  position: relative;
  z-index: 2;
}

.lab-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  font-weight: 750;
}

.micro-label i,
.monitor-live i,
.queue-head b i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(198, 255, 63, .12);
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
  50% { opacity: .45; transform: scale(.75); }
}

.lab-top h2 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
}

.lab-status {
  padding: 9px 12px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.score-stage {
  min-height: 210px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 22px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
}

.score-number {
  direction: ltr;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.score-number strong {
  font-size: clamp(58px, 5vw, 82px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.08em;
}

.score-number span {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  font-weight: 700;
}

.score-copy {
  padding-top: 8px;
}

.score-copy b,
.score-copy small {
  display: block;
}

.score-copy b {
  color: var(--acid);
  font-size: 14px;
}

.score-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
}

.pulse-chart {
  grid-column: 1 / -1;
  width: calc(100% + 44px);
  height: 118px;
  margin: -36px -22px 0;
  overflow: visible;
}

.chart-area {
  fill: url(#chartFade);
  transition: d .6s var(--ease);
}

.chart-line {
  fill: none;
  stroke: var(--acid);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(198, 255, 63, .45));
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  animation: drawLine 1.6s .7s var(--ease) forwards;
  transition: d .6s var(--ease);
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.chart-point {
  fill: var(--acid);
  stroke: var(--ink);
  stroke-width: 4;
  transition: cx .6s var(--ease), cy .6s var(--ease);
}

.quick-rating {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.rating-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(95px, 1fr) auto 34px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.rating-row:hover {
  border-color: rgba(198, 255, 63, .42);
  background: rgba(198, 255, 63, .07);
  transform: translateX(-4px);
}

.rating-name span,
.rating-name small {
  display: block;
}

.rating-name span {
  font-size: 13px;
  font-weight: 850;
}

.rating-name small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
}

.stars,
.sim-stars {
  display: flex;
  direction: ltr;
  gap: 2px;
}

.stars button,
.sim-stars button {
  width: 30px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, .24);
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  transition: color .18s ease, transform .18s var(--ease), text-shadow .18s ease;
}

.stars button.active,
.stars button:hover,
.sim-stars button.active,
.sim-stars button:hover {
  color: var(--acid);
  transform: translateY(-2px) scale(1.08);
  text-shadow: 0 0 16px rgba(198, 255, 63, .3);
}

.row-score {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.lab-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 4px;
}

.lab-bottom > span {
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
}

.live-avatars {
  display: flex;
  direction: ltr;
  align-items: center;
}

.live-avatars i,
.live-avatars b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-right: -7px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.live-avatars i:nth-child(1) { background: var(--blue); }
.live-avatars i:nth-child(2) { color: var(--ink); background: var(--acid); }
.live-avatars i:nth-child(3) { background: var(--coral); }
.live-avatars b { width: 34px; color: var(--ink); background: #fff; }

.rating-toast {
  position: absolute;
  z-index: 8;
  left: 22px;
  top: 96px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--acid);
  opacity: 0;
  transform: translateY(15px) scale(.94);
  pointer-events: none;
  transition: opacity .3s ease, transform .4s var(--ease);
}

.rating-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.rating-toast i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.rating-toast b,
.rating-toast span {
  display: block;
}

.rating-toast b { font-size: 11px; }
.rating-toast span { margin-top: 2px; color: var(--muted); font-size: 9px; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  transform: translateX(50%);
}

.scroll-cue i {
  position: relative;
  width: 36px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: var(--blue);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  50% { right: 25px; }
}

.signal-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--acid);
  transform: rotate(-1deg) scale(1.02);
}

.strip-track {
  width: max-content;
  display: flex;
  direction: ltr;
  animation: marquee 24s linear infinite;
}

.strip-group {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 18px 15px;
  direction: rtl;
  white-space: nowrap;
}

.strip-group span {
  font-size: 13px;
  font-weight: 900;
}

.strip-group i {
  font-style: normal;
  font-size: 14px;
}

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

.statement {
  min-height: 780px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 310px;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  background: var(--paper);
}

.statement::after {
  content: "";
  position: absolute;
  left: 6%;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 60px rgba(17,17,15,.02), 0 0 0 120px rgba(17,17,15,.015);
}

.statement-index {
  align-self: start;
  padding-top: 15px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.statement-copy {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(44px, 5.7vw, 96px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.045em;
}

.statement-copy span {
  position: relative;
  color: var(--blue);
  white-space: nowrap;
}

.statement-copy span::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: .75em -.03em .12em;
  background: var(--acid);
  transform: rotate(-1.5deg);
}

.statement-copy em {
  color: var(--coral);
  font-style: normal;
}

.statement-note {
  position: relative;
  z-index: 2;
  align-self: end;
  margin-bottom: 70px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--blue);
}

.statement-note svg {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  animation: rotatePlus 12s linear infinite;
}

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

.statement-note p {
  margin: 0;
  color: #4e4b44;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.section-head {
  max-width: 1450px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  align-items: end;
  gap: 60px;
  margin: 0 auto 76px;
}

.section-number {
  margin-bottom: 22px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 88px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -.045em;
}

.section-head h2 em {
  color: var(--blue);
  font-style: normal;
}

.section-head > p {
  max-width: 460px;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.journey {
  padding-bottom: 220px;
  background: #f8f5ee;
}

.stack-cards {
  position: relative;
  max-width: 1450px;
  margin: 0 auto;
}

.stack-card {
  position: sticky;
  top: calc(104px + (var(--stack) * 18px));
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 48px;
  margin-bottom: 32px;
  padding: clamp(34px, 4.2vw, 68px);
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 48px;
  box-shadow: 0 24px 0 rgba(17, 17, 15, .10), var(--shadow);
  transform-origin: top center;
}

.card-acid { color: var(--ink); background: var(--acid); }
.card-paper { color: var(--ink); background: var(--white); }
.card-coral { color: var(--ink); background: var(--coral); }
.card-blue { color: #fff; background: var(--blue); }

.stack-card::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .1;
  box-shadow: 0 0 0 55px rgba(17,17,15,.04), 0 0 0 110px rgba(17,17,15,.025);
}

.stack-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
}

.stack-no {
  align-self: start;
  padding-top: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.stack-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.stack-copy h3 {
  margin: 0;
  font-size: clamp(34px, 3.25vw, 56px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.035em;
}

.stack-copy p {
  max-width: 530px;
  margin: 24px 0 0;
  color: currentColor;
  opacity: .75;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.stack-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.stack-copy li {
  position: relative;
  padding-right: 22px;
  font-size: 12px;
  font-weight: 800;
}

.stack-copy li::before {
  content: "↗";
  position: absolute;
  right: 0;
  top: 0;
}

.stack-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  perspective: 1400px;
}

.paper-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: #fff;
  box-shadow: 15px 18px 0 rgba(17, 17, 15, .16), 0 30px 70px rgba(17, 17, 15, .18);
  transform: rotate(-2deg);
  transition: transform .7s var(--ease);
}

.stack-card:hover .paper-window {
  transform: rotate(0deg) translateY(-7px);
}

.window-black {
  box-shadow: 15px 18px 0 var(--ink), 0 30px 70px rgba(17, 17, 15, .18);
  transform: rotate(2deg);
}

.window-white {
  box-shadow: 15px 18px 0 rgba(255, 255, 255, .8), 0 30px 70px rgba(12, 20, 68, .28);
}

.window-bar {
  height: 42px;
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(17,17,15,.12);
  background: #f3f1eb;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
}

.window-bar span:nth-child(2) { opacity: .55; }
.window-bar span:nth-child(3) { opacity: .25; }
.window-bar b {
  margin-left: auto;
  color: #79756e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
}

.paper-window img {
  width: 100%;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
  object-position: center top;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 4px 4px 0 #fff;
  animation: floatChip 3.8s ease-in-out infinite;
}

.chip-one { top: -20px; left: 8%; }
.chip-two { right: -10px; bottom: 4%; animation-delay: -1.4s; }
.chip-two i { color: var(--acid); font-style: normal; }

@keyframes floatChip {
  50% { transform: translateY(-9px) rotate(1deg); }
}

.queue-ticket {
  position: absolute;
  left: -28px;
  bottom: -32px;
  width: 150px;
  padding: 18px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 20px;
  box-shadow: 7px 7px 0 var(--acid);
  transform: rotate(-4deg);
}

.queue-ticket small,
.queue-ticket span {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: 9px;
}

.queue-ticket strong {
  display: block;
  margin: 5px 0;
  color: var(--acid);
  font-size: 44px;
  line-height: 1;
}

.queue-visual {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 26px;
  background: #fff7f0;
  box-shadow: 15px 18px 0 var(--ink);
}

.queue-head {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--ink);
  font-weight: 900;
}

.queue-head b {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
}

.queue-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(17,17,15,.14);
  transition: background .25s ease, transform .25s var(--ease);
}

.queue-row:hover,
.queue-row.active {
  background: var(--acid);
  transform: translateX(-6px);
}

.queue-row > strong {
  font-size: 26px;
}

.queue-row b,
.queue-row small {
  display: block;
}

.queue-row b { font-size: 12px; }
.queue-row small { margin-top: 4px; color: #605b54; font-size: 9px; }
.queue-row > span { font-family: ui-monospace, monospace; font-size: 10px; }
.queue-row em {
  padding: 7px 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.queue-actions {
  display: flex;
  gap: 10px;
  padding: 18px 20px;
}

.queue-actions button {
  min-height: 42px;
  flex: 1;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: transparent;
  font-size: 10px;
  font-weight: 900;
}

.queue-actions button:first-child {
  color: #fff;
  background: var(--ink);
}

.metric-sticker {
  position: absolute;
  left: -24px;
  top: -34px;
  min-width: 160px;
  padding: 17px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-4deg);
}

.metric-sticker span,
.metric-sticker small {
  display: block;
  font-size: 9px;
  font-weight: 800;
}

.metric-sticker strong {
  display: block;
  margin: 3px 0;
  font-size: 40px;
  line-height: 1;
}

.try-section {
  min-height: 1100px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.try-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 40% 45%, #000, transparent 72%);
}

.try-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.try-backdrop span {
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  font-size: clamp(160px, 22vw, 360px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.try-backdrop span:first-child { top: 6%; left: -4%; direction: ltr; }
.try-backdrop span:last-child { right: -6%; bottom: 5%; }

.light-head {
  position: relative;
  z-index: 2;
}

.light-head .section-number,
.control-head .section-number {
  color: var(--acid);
}

.light-head h2 em,
.control-head h2 em {
  color: var(--acid);
}

.light-head > p,
.control-head > p {
  color: rgba(255,255,255,.62);
}

.simulator {
  position: relative;
  z-index: 2;
  max-width: 1450px;
  display: grid;
  grid-template-columns: minmax(330px, .75fr) 120px minmax(520px, 1.25fr);
  align-items: center;
  gap: 34px;
  margin: 0 auto;
}

.guest-phone {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  padding: 11px;
  color: var(--ink);
  background: #050505;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 48px;
  box-shadow: 0 44px 100px rgba(0,0,0,.5), 0 0 0 8px rgba(255,255,255,.04);
  transform: rotate(2deg);
}

.guest-phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 88px;
  height: 23px;
  background: #000;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-top {
  height: 46px;
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #fff;
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.phone-top i {
  width: 16px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 2px;
}

.phone-top b {
  direction: rtl;
  font-family: inherit;
  font-size: 9px;
}

.phone-body {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 26px 22px 24px;
  background: var(--paper);
  border-radius: 36px;
}

.phone-body::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--acid);
  opacity: .3;
  filter: blur(0);
}

.mini-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-brand img {
  width: 42px;
  height: 42px;
  padding: 8px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--ink);
  filter: invert(1);
}

.mini-brand span {
  font-size: 17px;
  font-weight: 900;
}

.phone-body > p {
  position: relative;
  z-index: 2;
  margin: 18px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.sim-progress {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 22px;
}

.sim-progress span {
  height: 4px;
  border-radius: 999px;
  background: rgba(17,17,15,.12);
  transition: background .3s ease;
}

.sim-progress span.active {
  background: var(--blue);
}

.sim-step {
  position: relative;
  z-index: 2;
  display: none;
}

.sim-step.active {
  display: block;
  animation: stepIn .45s var(--ease) both;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.sim-category {
  margin-bottom: 11px;
  padding: 16px;
  border: 1px solid rgba(17,17,15,.17);
  border-radius: 17px;
  background: rgba(255,255,255,.72);
}

.sim-category > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.sim-category b { font-size: 12px; }
.sim-category small { color: var(--muted); font-size: 8px; }

.sim-stars {
  justify-content: center;
  gap: 5px;
}

.sim-stars button {
  width: 40px;
  height: 38px;
  color: rgba(17,17,15,.16);
  font-size: 27px;
}

.sim-stars button.active,
.sim-stars button:hover {
  color: var(--blue);
  text-shadow: none;
}

.sim-next,
.sim-submit,
.sim-reset {
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 15px;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--acid);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.sim-next:hover,
.sim-submit:hover,
.sim-reset:hover {
  transform: translate(3px,3px);
  box-shadow: 1px 1px 0 var(--acid);
}

.sim-field {
  display: block;
  margin-bottom: 15px;
}

.sim-field > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 850;
}

.sim-field > span small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
}

.sim-field textarea,
.sim-field input {
  width: 100%;
  outline: none;
}

.sim-field textarea {
  resize: none;
  padding: 13px;
  border: 1px solid rgba(17,17,15,.18);
  border-radius: 14px;
  background: #fff;
  font-size: 10px;
  line-height: 1.6;
}

.phone-field {
  display: grid;
  grid-template-columns: 70px 1fr;
  direction: ltr;
  border: 1px solid rgba(17,17,15,.18);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.phone-field b {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(17,17,15,.14);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.phone-field input {
  height: 48px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  direction: ltr;
  font-family: ui-monospace, monospace;
  font-size: 12px;
}

.otp-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: #2e5131;
  background: #e8f4db;
  border-radius: 11px;
  font-size: 8px;
  font-weight: 700;
}

.otp-note i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #3c7a42;
  border-radius: 50%;
  font-style: normal;
}

.sim-back {
  width: 100%;
  margin-top: 13px;
  padding: 8px;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.success-step {
  padding-top: 72px;
  text-align: center;
}

.success-icon {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 6px 6px 0 var(--blue);
  animation: successPop .6s var(--ease) both;
}

@keyframes successPop {
  from { transform: scale(.2) rotate(-30deg); }
  to { transform: scale(1) rotate(0); }
}

.success-step h3 { margin: 0; font-size: 28px; }
.success-step p { max-width: 250px; margin: 12px auto 22px; color: var(--muted); font-size: 11px; line-height: 1.8; }
.success-burst span {
  position: absolute;
  top: 112px;
  left: 50%;
  width: 6px;
  height: 40px;
  background: var(--coral);
  transform-origin: 50% 100px;
  animation: burst .8s var(--ease) both;
}
.success-burst span:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.success-burst span:nth-child(2) { transform: translateX(-50%) rotate(60deg); background: var(--blue); }
.success-burst span:nth-child(3) { transform: translateX(-50%) rotate(120deg); }
.success-burst span:nth-child(4) { transform: translateX(-50%) rotate(180deg); background: var(--acid); }
.success-burst span:nth-child(5) { transform: translateX(-50%) rotate(240deg); }
.success-burst span:nth-child(6) { transform: translateX(-50%) rotate(300deg); background: var(--blue); }

@keyframes burst {
  from { opacity: 0; height: 0; }
  50% { opacity: 1; }
  to { opacity: 0; height: 55px; }
}

.data-bridge {
  position: relative;
  height: 520px;
}

.data-bridge svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.data-bridge path {
  fill: none;
  stroke: rgba(255,255,255,.22);
  stroke-width: 2;
  stroke-dasharray: 7 9;
}

.data-dot {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(198,255,63,.65);
  offset-path: path("M160 20 C20 110 160 205 30 290 C-10 320 70 400 20 480");
  animation: dataTravel 3.2s linear infinite;
}

.dot-b { animation-delay: -1.05s; background: var(--coral); box-shadow: 0 0 18px rgba(255,104,77,.6); }
.dot-c { animation-delay: -2.1s; background: var(--blue); box-shadow: 0 0 18px rgba(45,91,255,.7); }

@keyframes dataTravel {
  to { offset-distance: 100%; }
}

.bridge-label {
  position: absolute;
  top: 48%;
  right: 50%;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  white-space: nowrap;
  transform: translate(50%,-50%) rotate(-9deg);
}

.admin-monitor {
  position: relative;
  min-height: 660px;
  padding: 30px;
  color: var(--ink);
  background: #f7f4ed;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 34px;
  box-shadow: 22px 24px 0 var(--blue), 0 50px 120px rgba(0,0,0,.4);
  transform: rotate(-1.25deg);
}

.monitor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17,17,15,.14);
}

.monitor-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.monitor-head h3 {
  margin: 8px 0 0;
  font-size: 23px;
}

.monitor-actions {
  display: flex;
  gap: 8px;
  direction: ltr;
}

.monitor-actions button {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17,17,15,.15);
  border-radius: 10px;
  background: #fff;
  font-family: ui-monospace, monospace;
  font-size: 8px;
}

.monitor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.monitor-score,
.monitor-count,
.monitor-chart,
.incoming-feed {
  border: 1px solid rgba(17,17,15,.14);
  border-radius: 20px;
  background: #fff;
}

.monitor-score,
.monitor-count {
  min-height: 140px;
  padding: 20px;
}

.monitor-score span,
.monitor-count span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.monitor-score strong,
.monitor-count strong {
  display: block;
  margin: 12px 0 5px;
  font-size: 45px;
  line-height: 1;
}

.monitor-score strong { color: var(--blue); }
.monitor-count strong { color: var(--coral); }
.monitor-score small,
.monitor-count small { color: #53804a; font-size: 8px; font-weight: 750; }

.monitor-chart,
.incoming-feed {
  grid-column: 1 / -1;
  padding: 20px;
}

.chart-title,
.feed-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.chart-title span,
.feed-title span { font-size: 11px; font-weight: 900; }
.chart-title b,
.feed-title b { color: var(--muted); font-size: 8px; }

.bar-chart {
  height: 120px;
  display: flex;
  direction: ltr;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-bottom: 1px solid rgba(17,17,15,.12);
}

.bar-chart i {
  position: relative;
  width: 100%;
  height: var(--h);
  border-radius: 8px 8px 0 0;
  background: rgba(45,91,255,.2);
  transition: height .6s var(--ease), background .3s ease;
}

.bar-chart i.today { background: var(--blue); }
.bar-chart i span {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  font-size: 7px;
  font-style: normal;
  transform: translateX(-50%);
}

.feed-list {
  display: grid;
  gap: 8px;
}

.feed-item {
  min-height: 57px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 13px;
  background: #f4f2ec;
  transition: background .25s ease, transform .25s var(--ease);
}

.feed-item.new {
  background: #e8ffd2;
  animation: newFeed .7s var(--ease) both;
}

@keyframes newFeed {
  from { opacity: 0; transform: translateY(-14px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.feed-score {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
}

.feed-score.good { color: #23562b; background: #dff2d9; }
.feed-score.mid { color: #805714; background: #fff0c8; }
.feed-item b,
.feed-item small { display: block; }
.feed-item b { font-size: 9px; }
.feed-item small { margin-top: 4px; color: var(--muted); font-size: 7px; }
.feed-item em { color: #e7b21c; font-size: 17px; font-style: normal; }

.incoming-flash {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--acid);
  opacity: 0;
  transform: translateY(15px) scale(.94);
  transition: opacity .3s ease, transform .4s var(--ease);
}

.incoming-flash.show { opacity: 1; transform: translateY(0) scale(1); }
.incoming-flash span {
  padding: 4px 6px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 5px;
  font-family: ui-monospace, monospace;
  font-size: 7px;
  font-weight: 900;
}
.incoming-flash b { font-size: 9px; }

.control {
  overflow: hidden;
  color: #fff;
  background: #0b0b0a;
}

.control-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.control-head {
  position: relative;
  z-index: 2;
}

.control-stage {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto 170px;
  padding: 65px 80px 55px;
}

.control-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 60px;
  background: radial-gradient(circle at 50% 50%, rgba(45,91,255,.18), transparent 58%);
}

.dashboard-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 50px 120px rgba(0,0,0,.55), 18px 20px 0 var(--blue);
  transform: perspective(1400px) rotateX(2deg) rotateY(-2deg);
  transition: transform .5s var(--ease);
}

.dashboard-frame:hover {
  transform: perspective(1400px) rotateX(0) rotateY(0) translateY(-8px);
}

.frame-top {
  height: 48px;
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid rgba(17,17,15,.13);
  background: #f4f2ec;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
}

.frame-top div {
  display: flex;
  gap: 7px;
}

.frame-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
}

.frame-top i:nth-child(2) { opacity: .5; }
.frame-top i:nth-child(3) { opacity: .2; }

.dashboard-image-wrap {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.dashboard-image-wrap > img {
  width: 100%;
  aspect-ratio: 1.96 / 1;
  object-fit: cover;
  object-position: center top;
}

.dashboard-lens {
  position: absolute;
  z-index: 3;
  width: 220px;
  height: 220px;
  top: 0;
  left: 0;
  border: 3px solid var(--acid);
  border-radius: 50%;
  background-image: url('assets/dashboard-web.jpg');
  background-repeat: no-repeat;
  box-shadow: 0 18px 50px rgba(0,0,0,.25), inset 0 0 0 4px #fff;
  opacity: 0;
  transform: translate(-50%,-50%) scale(.85);
  pointer-events: none;
  transition: opacity .2s ease, transform .25s var(--ease);
}

.dashboard-image-wrap:hover .dashboard-lens {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

.lens-hint {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 850;
  transition: opacity .2s ease;
}

.dashboard-image-wrap:hover .lens-hint { opacity: 0; }
.lens-hint i { color: var(--acid); font-size: 14px; font-style: normal; }

.control-callout {
  position: absolute;
  z-index: 4;
  width: 225px;
  display: flex;
  gap: 13px;
  padding: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 17px;
  box-shadow: 5px 5px 0 var(--acid);
}

.control-callout > span {
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 900;
}

.control-callout b,
.control-callout small {
  display: block;
}

.control-callout b { font-size: 10px; }
.control-callout small { margin-top: 4px; color: var(--muted); font-size: 8px; line-height: 1.5; }
.callout-a { right: 0; top: 4%; transform: rotate(3deg); }
.callout-b { left: 0; top: 41%; transform: rotate(-4deg); }
.callout-c { right: 6%; bottom: 0; transform: rotate(2deg); }

.branch-lab {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(520px, 1.25fr);
  gap: 75px;
  align-items: center;
  margin: 0 auto;
  padding: 70px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 46px;
  background: rgba(255,255,255,.045);
}

.mini-kicker {
  color: var(--acid);
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.branch-copy h3 {
  margin: 20px 0 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.2;
}

.branch-copy p {
  margin: 22px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.9;
}

.branch-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.branch-tabs button {
  min-width: 86px;
  height: 42px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: transparent;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.branch-tabs button.active,
.branch-tabs button:hover {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.branch-panel {
  color: var(--ink);
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 28px;
  box-shadow: 12px 14px 0 var(--blue);
}

.branch-summary {
  display: grid;
  grid-template-columns: .75fr .9fr 1.35fr;
  gap: 10px;
}

.branch-summary > div {
  min-height: 95px;
  padding: 15px;
  border: 1px solid rgba(17,17,15,.14);
  border-radius: 16px;
  background: #fff;
}

.branch-summary span,
.branch-summary b {
  display: block;
}

.branch-summary span { color: var(--muted); font-size: 8px; font-weight: 750; }
.branch-summary strong { display: block; margin-top: 9px; color: var(--blue); font-size: 36px; line-height: 1; }
.branch-summary b { margin-top: 13px; font-size: 11px; line-height: 1.5; }

.branch-bars {
  display: grid;
  gap: 15px;
  margin-top: 25px;
}

.branch-bar {
  display: grid;
  grid-template-columns: 75px 1fr 34px;
  align-items: center;
  gap: 12px;
}

.branch-bar span { font-size: 10px; font-weight: 800; }
.branch-bar > div { height: 9px; overflow: hidden; background: #dedad0; border-radius: 999px; }
.branch-bar i { display: block; width: var(--w); height: 100%; background: var(--blue); border-radius: inherit; transition: width .8s var(--ease); }
.branch-bar.warning i { background: var(--coral); }
.branch-bar b { font-family: ui-monospace, monospace; font-size: 10px; text-align: left; }

.features {
  background: #f8f5ee;
}

.compact-head {
  margin-bottom: 60px;
}

.bento-grid {
  max-width: 1450px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(330px, auto);
  gap: 18px;
  margin: 0 auto;
}

.bento {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--ink);
  border-radius: 31px;
  background: var(--white);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.bento:hover {
  z-index: 2;
  transform: translateY(-8px) rotate(.4deg);
  box-shadow: 10px 12px 0 var(--ink), 0 35px 80px rgba(17,17,15,.13);
}

.bento-wide { grid-column: span 7; }
.bento-otp { grid-column: span 5; background: var(--blue); color: #fff; }
.bento-report { grid-column: span 4; background: var(--coral); }
.bento-permissions { grid-column: span 5; background: var(--acid); }
.bento-table { grid-column: span 8; }

.bento-copy {
  position: relative;
  z-index: 2;
}

.bento-copy > span {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: ui-monospace, monospace;
  font-size: 8px;
  font-weight: 900;
}

.bento-copy h3 {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.bento-copy p {
  max-width: 470px;
  margin: 17px 0 0;
  color: currentColor;
  opacity: .68;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.8;
}

.bento-qr {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 34px;
}

.qr-art {
  justify-self: end;
  width: 240px;
  height: 278px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--ink);
  border-radius: 22px;
  background: var(--acid);
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(4deg);
  transition: transform .5s var(--ease);
}

.bento:hover .qr-art { transform: rotate(0) scale(1.03); }

.qr-grid {
  width: 182px;
  height: 182px;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 2px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--ink);
}

.qr-grid i { background: transparent; }
.qr-grid i.on { background: var(--ink); }
.qr-art > span { font-family: ui-monospace, monospace; font-size: 9px; font-weight: 900; letter-spacing: .13em; direction: ltr; }

.otp-visual {
  position: relative;
  z-index: 2;
  display: flex;
  direction: ltr;
  gap: 9px;
  margin-bottom: 28px;
}

.otp-visual span {
  width: 64px;
  height: 80px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 17px;
  font-family: ui-monospace, monospace;
  font-size: 31px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--acid);
  animation: otpBounce 3s var(--ease) infinite;
}

.otp-visual span:nth-child(2) { animation-delay: -.25s; }
.otp-visual span:nth-child(3) { animation-delay: -.5s; }
.otp-visual span:nth-child(4) { animation-delay: -.75s; }

@keyframes otpBounce {
  50% { transform: translateY(-7px); }
}

.otp-visual i {
  position: absolute;
  left: -7px;
  bottom: -6px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--acid);
  border: 1px solid var(--ink);
}

.report-stack {
  position: relative;
  height: 135px;
  margin-bottom: 20px;
}

.report-stack span {
  position: absolute;
  width: 124px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  font-family: ui-monospace, monospace;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .45s var(--ease);
}

.report-stack span:nth-child(1) { right: 0; top: 0; transform: rotate(8deg); }
.report-stack span:nth-child(2) { right: 86px; top: 19px; transform: rotate(-5deg); }
.report-stack span:nth-child(3) { right: 172px; top: 5px; transform: rotate(3deg); }
.bento:hover .report-stack span:nth-child(1) { transform: translateY(-8px) rotate(2deg); }
.bento:hover .report-stack span:nth-child(2) { transform: translateY(-2px) rotate(0); }
.bento:hover .report-stack span:nth-child(3) { transform: translateY(-10px) rotate(-2deg); }

.permission-orbit {
  position: relative;
  height: 170px;
  margin-bottom: 15px;
}

.permission-orbit::before,
.permission-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translate(50%,-50%);
}

.permission-orbit::before { width: 240px; height: 105px; }
.permission-orbit::after { width: 165px; height: 165px; }
.permission-orbit span {
  position: absolute;
  z-index: 2;
  min-width: 82px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 9px;
  font-weight: 900;
}
.permission-orbit span:nth-child(1) { top: 0; right: 42%; }
.permission-orbit span:nth-child(2) { right: 5%; bottom: 18px; }
.permission-orbit span:nth-child(3) { left: 5%; bottom: 18px; }
.permission-orbit i {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(50%,-50%);
  box-shadow: 0 0 0 8px rgba(45,91,255,.13);
  animation: orbitPulse 2s ease-in-out infinite;
}
@keyframes orbitPulse { 50% { transform: translate(50%,-50%) scale(.7); } }

.bento-table {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(430px, 1.35fr);
  align-items: center;
  gap: 28px;
}

.table-slice {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 9px 0 var(--blue);
  transform: rotate(-2deg) translateY(25px);
  transition: transform .5s var(--ease);
}

.bento:hover .table-slice { transform: rotate(0) translateY(0); }
.table-slice img { width: 100%; aspect-ratio: 1.75 / 1; object-fit: cover; object-position: center top; }

.questions {
  display: grid;
  grid-template-columns: minmax(300px, .65fr) minmax(520px, 1.35fr);
  gap: 100px;
  background: var(--paper);
}

.questions-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.questions-title > span {
  display: block;
  margin-bottom: 25px;
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 900;
}

.questions-title h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.questions-title em {
  position: relative;
  color: var(--coral);
  font-style: normal;
}

.questions-title em::after {
  content: "؟";
  position: absolute;
  left: -.55em;
  top: -.25em;
  color: var(--blue);
  font-size: .6em;
  transform: rotate(-13deg);
}

.question-list {
  border-top: 1px solid var(--ink);
}

.question-list article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 42px 1fr 44px;
  align-items: center;
  gap: 24px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--ink);
  transition: padding .35s var(--ease), background .35s ease;
}

.question-list article:hover {
  padding-right: 28px;
  padding-left: 28px;
  background: var(--acid);
}

.question-list span {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
}

.question-list h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.4;
}

.question-list i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-style: normal;
  transition: transform .35s var(--ease), background .35s ease;
}

.question-list article:hover i {
  color: #fff;
  background: var(--ink);
  transform: rotate(-45deg);
}

.contact {
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
  align-items: center;
  gap: 80px;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .19;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 70px 70px;
}

.contact-mark {
  position: absolute;
  left: -8vw;
  bottom: -22%;
  width: min(56vw, 850px);
  opacity: .09;
  transform: rotate(-8deg);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-copy .section-number { color: var(--acid); }
.contact-copy h2 {
  margin: 0;
  font-size: clamp(45px, 5.2vw, 82px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.contact-copy h2 em {
  color: var(--acid);
  font-style: normal;
}

.contact-copy > p {
  max-width: 650px;
  margin: 25px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.contact-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.27);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.contact-proof i {
  color: var(--acid);
  font-style: normal;
}

.contact-form {
  min-height: 620px;
  padding: 36px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 34px;
  box-shadow: 15px 16px 0 var(--ink), 0 35px 90px rgba(0,0,0,.22);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

.form-progress span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid rgba(17,17,15,.2);
  border-radius: 50%;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 900;
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}

.form-progress span.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.form-progress i {
  width: 54px;
  height: 1px;
  background: rgba(17,17,15,.2);
}

.form-step { display: none; }
.form-step.active { display: block; animation: stepIn .45s var(--ease) both; }
.form-label {
  display: block;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 900;
}

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

.interest-grid label { cursor: pointer; }
.interest-grid input { position: absolute; opacity: 0; pointer-events: none; }
.interest-grid label > span {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(17,17,15,.2);
  border-radius: 18px;
  background: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, border-color .25s ease;
}

.interest-grid label:hover > span {
  transform: translateY(-4px);
  box-shadow: 5px 6px 0 rgba(17,17,15,.15);
}

.interest-grid input:checked + span {
  background: var(--acid);
  border-color: var(--ink);
  box-shadow: 5px 6px 0 var(--ink);
  transform: translate(-2px,-2px);
}

.interest-grid i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  color: #fff;
  background: var(--ink);
  border-radius: 9px;
  font-style: normal;
}

.interest-grid b,
.interest-grid small { display: block; }
.interest-grid b { font-size: 13px; }
.interest-grid small { margin-top: 5px; color: var(--muted); font-size: 8px; line-height: 1.5; }

.form-next,
.form-submit {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--acid);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.form-next:hover,
.form-submit:hover {
  transform: translate(3px,3px);
  box-shadow: 1px 1px 0 var(--acid);
}

.form-error {
  min-height: 18px;
  margin: 13px 0 0;
  color: #bf3525;
  font-size: 9px;
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 12px;
}

.field-row label,
.full-field {
  display: block;
  margin-bottom: 14px;
}

.field-row label > span,
.full-field > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 850;
}

.full-field > span small { color: var(--muted); font-size: 8px; }
.field-row input,
.field-row select,
.full-field > input {
  width: 100%;
  height: 54px;
  padding: 0 14px;
  outline: none;
  border: 1px solid rgba(17,17,15,.2);
  border-radius: 14px;
  background: #fff;
  font-size: 11px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field-row input:focus,
.field-row select:focus,
.full-field > input:focus,
.contact-phone:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45,91,255,.11);
}

.contact-phone {
  display: grid;
  grid-template-columns: 76px 1fr;
  direction: ltr;
  overflow: hidden;
  border: 1px solid rgba(17,17,15,.2);
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-phone b {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(17,17,15,.15);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.contact-phone input {
  width: 100%;
  height: 54px;
  padding: 0 14px;
  outline: none;
  border: 0;
  background: transparent;
  direction: ltr;
  font-family: ui-monospace, monospace;
}

.form-back {
  width: 100%;
  padding: 11px;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-size: 9px;
  cursor: pointer;
}

.form-success {
  padding-top: 68px;
  text-align: center;
}

.form-success-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 7px 7px 0 var(--acid);
}

.form-success h3 { margin: 0; font-size: 30px; }
.form-success p { margin: 12px 0 22px; color: var(--muted); font-size: 12px; }
.form-success button {
  min-width: 190px;
  min-height: 50px;
  color: #fff;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.form-success > span { display: block; min-height: 20px; margin-top: 12px; color: #3f7741; font-size: 9px; font-weight: 800; }

.faq {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(520px, 1.45fr);
  gap: 95px;
  background: #f8f5ee;
}

.faq-head span {
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 900;
}

.faq-head h2 {
  margin: 20px 0 0;
  font-size: clamp(46px, 5vw, 80px);
  line-height: 1.05;
}

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

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  list-style: none;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
  transition: transform .3s ease, color .3s ease, background .3s ease;
}

.faq-list details[open] summary i {
  color: #fff;
  background: var(--ink);
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 760px;
  margin: -4px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.site-footer {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px clamp(24px, 5vw, 84px);
  color: #fff;
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

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

.footer-brand span {
  font-weight: 900;
  letter-spacing: .18em;
  direction: ltr;
}

.site-footer p {
  color: rgba(255,255,255,.45);
  font-size: 11px;
}

.site-footer > a {
  color: var(--acid);
  font-size: 10px;
  font-weight: 850;
}

/* reveal states */
.reveal-up,
.reveal-scale,
.reveal-clip i {
  opacity: 0;
}

body.ready .reveal-up {
  animation: revealUp .85s .15s var(--ease) forwards;
}

body.ready .reveal-up.delay-1 { animation-delay: .38s; }
body.ready .reveal-up.delay-2 { animation-delay: .55s; }
body.ready .reveal-up.delay-3 { animation-delay: .72s; }

body.ready .reveal-scale {
  animation: revealScale 1s .32s var(--ease) forwards;
}

body.ready .reveal-clip i {
  animation: revealClip .9s .15s var(--ease) forwards;
}

body.ready .reveal-clip:nth-child(2) i { animation-delay: .27s; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes revealScale {
  from { opacity: 0; transform: translateY(35px) scale(.94) rotate(1deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

@keyframes revealClip {
  from { opacity: 0; transform: translateY(110%); }
  to { opacity: 1; transform: translateY(0); }
}

.js-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

@media (max-width: 1240px) {
  .site-nav { gap: 18px; }
  .brand-tag { display: none; }
  .brand { min-width: 145px; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); }
  .hero-title { font-size: clamp(58px, 7.5vw, 96px); }
  .lab-card { min-height: 620px; padding: 28px; }
  .stack-card { grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); gap: 32px; }
  .simulator { grid-template-columns: minmax(310px, .78fr) 80px minmax(470px, 1.22fr); gap: 24px; }
  .admin-monitor { padding: 24px; }
  .control-stage { padding: 60px 55px; }
  .contact { gap: 52px; }
  .contact-form { padding: 30px; }
}

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto auto; justify-content: space-between; }
  .menu-button { display: block; order: 2; }
  .site-nav {
    position: fixed;
    z-index: -1;
    top: -12px;
    right: -12px;
    width: calc(100% + 24px);
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 120px 28px 50px;
    background: var(--acid);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s var(--ease);
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 20px 12px; border-bottom: 1px solid var(--ink); font-size: 26px; }
  .site-nav a::after { display: none; }
  .menu-button.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .header-cta { justify-self: end; min-width: 132px; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 140px;
    padding-bottom: 120px;
  }
  .hero-copy { max-width: 850px; }
  .hero-title { font-size: clamp(66px, 10vw, 112px); }
  .hero-lab { max-width: 740px; justify-self: center; margin-top: 20px; }
  .hero-ghost-mark { width: 70vw; top: 5%; }
  .hero-stamp { display: none; }
  .scroll-cue { bottom: 24px; }

  .statement { grid-template-columns: 70px 1fr; min-height: 720px; }
  .statement-note { grid-column: 2; max-width: 360px; justify-self: end; margin: 0; }

  .stack-card { position: relative; top: auto; grid-template-columns: 1fr; min-height: auto; }
  .stack-visual { margin-top: 18px; }
  .journey { padding-bottom: 130px; }

  .simulator { grid-template-columns: minmax(300px, .8fr) minmax(460px, 1.2fr); }
  .data-bridge { display: none; }
  .guest-phone { justify-self: center; }

  .control-callout { width: 205px; }
  .branch-lab { grid-template-columns: 1fr; gap: 45px; }

  .bento-wide,
  .bento-otp,
  .bento-report,
  .bento-permissions,
  .bento-table { grid-column: span 6; }
  .bento-qr,
  .bento-table { grid-template-columns: 1fr; }
  .qr-art { position: absolute; left: 28px; bottom: 28px; width: 190px; height: 220px; opacity: .93; }
  .qr-grid { width: 145px; height: 145px; }
  .table-slice { margin-top: 20px; }

  .questions { grid-template-columns: 1fr; gap: 60px; }
  .questions-title { position: relative; top: auto; }

  .contact { grid-template-columns: 1fr; }
  .contact-copy { max-width: 900px; }
  .contact-form { width: min(720px, 100%); }

  .faq { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 760px) {
  :root { --radius-lg: 30px; }
  .section { padding: 96px 20px; }
  .site-header { top: 10px; width: calc(100% - 20px); height: 66px; padding: 7px 8px 7px 12px; gap: 8px; }
  .brand { min-width: auto; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-mark img { width: 30px; height: 30px; }
  .brand-name { display: none; }
  .header-cta { min-width: 112px; height: 48px; padding: 0 14px; gap: 8px; box-shadow: 3px 3px 0 var(--ink); font-size: 11px; }
  .header-cta svg { width: 16px; height: 16px; }
  .menu-button { width: 42px; height: 42px; }
  .site-nav { top: -8px; right: -8px; width: calc(100% + 16px); }

  .hero { gap: 48px; padding: 112px 20px 102px; }
  .hero-grid-lines { background-size: 48px 48px; }
  .hero-kicker { margin-bottom: 20px; font-size: 9px; box-shadow: 2px 2px 0 var(--ink); }
  .hero-title { font-size: clamp(52px, 16vw, 78px); line-height: 1.02; }
  .title-line { padding-bottom: .14em; }
  .hero-lead { margin-top: 18px; font-size: 15px; line-height: 1.85; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .button { min-height: 56px; padding: 0 20px; }
  .hero-facts { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 25px; }
  .hero-ghost-mark { left: -30vw; width: 120vw; }
  .hero-lab { width: calc(100% + 2px); }
  .lab-shadow { inset: 7% -3% -4% 3%; }
  .lab-card { min-height: auto; padding: 22px 16px 19px; border-radius: 28px; }
  .lab-top h2 { font-size: 21px; }
  .score-stage { min-height: 185px; grid-template-columns: 1fr; gap: 4px; margin-top: 20px; padding: 18px 16px 0; }
  .score-number strong { font-size: 62px; }
  .score-copy { position: absolute; top: 26px; left: 17px; text-align: left; }
  .pulse-chart { width: calc(100% + 32px); margin: -10px -16px 0; }
  .rating-row { grid-template-columns: 78px 1fr 30px; min-height: 67px; gap: 6px; padding: 8px 9px; }
  .rating-name span { font-size: 11px; }
  .rating-name small { font-size: 7px; }
  .stars { gap: 0; }
  .stars button { width: 25px; font-size: 18px; }
  .row-score { width: 28px; height: 28px; font-size: 10px; }
  .rating-toast { left: 10px; top: 78px; }
  .scroll-cue { bottom: 18px; }

  .strip-group { gap: 18px; padding: 14px 10px; }
  .strip-group span { font-size: 11px; }

  .statement { min-height: auto; grid-template-columns: 1fr; gap: 44px; }
  .statement-index { writing-mode: horizontal-tb; padding: 0; }
  .statement-copy { font-size: clamp(39px, 12vw, 58px); line-height: 1.3; }
  .statement-note { grid-column: auto; justify-self: stretch; max-width: none; margin-bottom: 0; }

  .section-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 45px; }
  .section-head h2 { font-size: clamp(42px, 12vw, 62px); }
  .section-head > p { font-size: 14px; }
  .journey { padding-bottom: 110px; }
  .stack-card { gap: 20px; margin-bottom: 20px; padding: 27px 20px; border-radius: 30px; box-shadow: 0 14px 0 rgba(17,17,15,.1), 0 25px 55px rgba(17,17,15,.15); }
  .stack-copy { grid-template-columns: 34px 1fr; gap: 7px; }
  .stack-copy h3 { font-size: 31px; }
  .stack-copy p { margin-top: 17px; font-size: 12px; }
  .stack-copy ul { margin-top: 17px; }
  .stack-copy li { font-size: 10px; }
  .paper-window { border-radius: 16px; box-shadow: 8px 9px 0 rgba(17,17,15,.16); }
  .window-bar { height: 32px; }
  .window-bar b { font-size: 7px; }
  .floating-chip { padding: 8px 11px; font-size: 8px; }
  .chip-one { top: -12px; }
  .queue-ticket { left: -6px; bottom: -20px; width: 115px; padding: 12px; }
  .queue-ticket strong { font-size: 34px; }
  .queue-row { grid-template-columns: 38px 1fr auto; min-height: 72px; padding: 10px; gap: 8px; }
  .queue-row em { display: none; }
  .queue-row > strong { font-size: 20px; }
  .queue-head { height: 60px; padding: 0 15px; }
  .metric-sticker { left: 0; top: -20px; min-width: 130px; padding: 12px; }

  .try-section { min-height: auto; }
  .simulator { grid-template-columns: 1fr; gap: 55px; }
  .guest-phone { max-width: 400px; transform: rotate(0); }
  .phone-body { min-height: 625px; }
  .admin-monitor { min-height: auto; padding: 18px; border-radius: 24px; box-shadow: 10px 11px 0 var(--blue); transform: rotate(0); }
  .monitor-grid { gap: 9px; }
  .monitor-score, .monitor-count { min-height: 115px; padding: 14px; }
  .monitor-score strong, .monitor-count strong { font-size: 35px; }
  .monitor-chart, .incoming-feed { padding: 14px; }
  .bar-chart { height: 95px; }

  .control-stage { margin-bottom: 105px; padding: 36px 0 80px; }
  .control-stage::before { inset: 0 -12px; border-radius: 34px; }
  .dashboard-frame { border-radius: 17px; box-shadow: 8px 9px 0 var(--blue); transform: none; }
  .frame-top { height: 36px; font-size: 7px; }
  .dashboard-lens, .lens-hint { display: none; }
  .control-callout { width: 178px; padding: 11px; }
  .control-callout small { font-size: 7px; }
  .callout-a { top: 0; right: -2px; }
  .callout-b { top: auto; bottom: 3px; left: 0; }
  .callout-c { display: none; }
  .branch-lab { gap: 35px; padding: 28px 20px; border-radius: 30px; }
  .branch-copy h3 { font-size: 39px; }
  .branch-panel { padding: 17px; border-radius: 20px; box-shadow: 7px 8px 0 var(--blue); }
  .branch-summary { grid-template-columns: 1fr 1fr; }
  .branch-summary > div:last-child { grid-column: 1 / -1; }
  .branch-bar { grid-template-columns: 62px 1fr 30px; gap: 8px; }

  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-wide, .bento-otp, .bento-report, .bento-permissions, .bento-table { grid-column: auto; }
  .bento { min-height: 360px; padding: 27px 22px; }
  .bento-qr, .bento-table { display: flex; }
  .bento-copy h3 { font-size: 34px; }
  .qr-art { position: relative; left: auto; bottom: auto; align-self: flex-end; width: 176px; height: 200px; margin-top: 18px; }
  .qr-grid { width: 132px; height: 132px; }
  .otp-visual span { width: 52px; height: 68px; font-size: 25px; }
  .report-stack span { width: 102px; height: 78px; }
  .report-stack span:nth-child(3) { right: 140px; }
  .table-slice { margin-top: 22px; }

  .questions { gap: 40px; }
  .questions-title h2 { font-size: 55px; }
  .question-list article { min-height: 118px; grid-template-columns: 30px 1fr 36px; gap: 12px; }
  .question-list h3 { font-size: 21px; }
  .question-list i { width: 34px; height: 34px; }

  .contact { min-height: auto; gap: 48px; }
  .contact-copy h2 { font-size: 43px; }
  .contact-copy > p { font-size: 13px; }
  .contact-form { min-height: 590px; padding: 24px 17px; border-radius: 25px; box-shadow: 8px 9px 0 var(--ink); }
  .form-label { font-size: 18px; }
  .interest-grid { gap: 8px; }
  .interest-grid label > span { min-height: 125px; padding: 13px; }
  .interest-grid small { font-size: 7px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .faq { gap: 35px; }
  .faq-head h2 { font-size: 52px; }
  .faq-list summary { min-height: 82px; font-size: 17px; }
  .faq-list p { font-size: 12px; }

  .site-footer { min-height: 220px; grid-template-columns: 1fr; justify-items: center; gap: 6px; text-align: center; }
}

@media (max-width: 430px) {
  .hero-title { font-size: 51px; }
  .stars button { width: 22px; font-size: 17px; }
  .rating-row { grid-template-columns: 72px 1fr 27px; }
  .score-copy { display: none; }
  .sim-stars button { width: 35px; font-size: 25px; }
  .interest-grid { grid-template-columns: 1fr; }
  .interest-grid label > span { min-height: 100px; }
  .contact-form { min-height: 760px; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
  .dashboard-lens, .lens-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .data-dot { display: none; }
  .strip-track { animation: none; }
  .reveal-up, .reveal-scale, .reveal-clip i, .js-reveal { opacity: 1 !important; transform: none !important; }
}
