:root {
  --ink: #111827;
  --paper: #fff7df;
  --cream: #ffefb5;
  --white: #ffffff;
  --pink: #ff4f8b;
  --coral: #ff6b35;
  --yellow: #ffd447;
  --cyan: #25c7ff;
  --lime: #74e568;
  --violet: #7c5cff;
  --blue: #2563eb;
  --muted: #5f6677;
  --line: rgba(17, 24, 39, 0.14);
  --shadow: 0 28px 90px rgba(17, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topbar {
  position: fixed;
  inset: 14px clamp(12px, 4vw, 42px) auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 9px 10px 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 247, 223, 0.9);
  box-shadow: 7px 7px 0 var(--ink);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.button,
.price-ribbon,
.console-head,
.console-flow,
.marquee div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-links {
  gap: 24px;
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 3px;
  background: var(--pink);
  transition: right 180ms ease;
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  min-width: max-content;
  padding: 11px 15px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(0, 0);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    filter 150ms ease;
}

.nav-cta:hover {
  filter: saturate(1.18);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  padding: 126px clamp(20px, 5vw, 78px) 78px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 247, 223, 0.18) 28%, rgba(255, 212, 71, 0.16) 100%),
    var(--paper);
}

#growth-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.64) 52%, transparent 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
  min-height: calc(94vh - 204px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  width: max-content;
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5.7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  color: #222a3a;
  font-size: clamp(20px, 2.25vw, 30px);
  font-weight: 660;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  position: relative;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(0, 0);
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    filter 140ms ease;
}

.button:hover {
  filter: saturate(1.18);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.button:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.button.primary {
  color: var(--ink);
  background: var(--pink);
  animation: cta-jiggle 9s ease-in-out infinite;
  animation-delay: 2.5s;
}

.button.primary:hover,
.button.primary:focus-visible {
  animation: none;
  background: #ff2f78;
  box-shadow:
    8px 8px 0 var(--ink),
    0 0 0 5px rgba(255, 212, 71, 0.72);
}

.button.ink {
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--pink);
}

.button.ink:hover {
  box-shadow: 8px 8px 0 var(--pink);
}

.button.outline {
  color: var(--ink);
  background: var(--white);
}

.button.full {
  width: 100%;
}

@keyframes cta-jiggle {
  0%,
  70%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  72% {
    transform: translate(-1px, 0) rotate(-1deg);
  }

  74% {
    transform: translate(2px, 0) rotate(1deg);
  }

  76% {
    transform: translate(-1px, 0) rotate(-0.7deg);
  }

  78% {
    transform: translate(1px, 0) rotate(0.5deg);
  }
}

.price-ribbon {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.price-ribbon span {
  padding: 8px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.price-ribbon span:nth-child(2) {
  background: var(--cream);
}

.price-ribbon span:nth-child(3) {
  background: var(--lime);
}

.hero-console {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 78px);
  bottom: 52px;
  width: min(520px, 42vw);
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 8px 8px 0 var(--ink);
  backdrop-filter: blur(18px);
}

.console-head {
  gap: 7px;
  margin-bottom: 14px;
}

.console-head span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.console-head span:nth-child(1) {
  background: var(--pink);
}

.console-head span:nth-child(2) {
  background: var(--yellow);
}

.console-head span:nth-child(3) {
  background: var(--lime);
}

.console-head strong {
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
}

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

.pulse-card {
  min-height: 138px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  animation: floaty 4.8s ease-in-out infinite;
}

.pulse-card:nth-child(2) {
  animation-delay: -1.4s;
}

.pulse-card:nth-child(3) {
  animation-delay: -2.6s;
}

.pulse-card.hot {
  background: #ffe3ee;
}

.pulse-card.calm {
  background: #def5ff;
}

.pulse-card.sun {
  background: #fff1a6;
}

.pulse-card small,
.pulse-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pulse-card strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 38px;
  line-height: 1;
}

.console-flow {
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.console-flow span {
  padding: 7px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
}

.console-flow i {
  flex: 1;
  height: 3px;
  min-width: 16px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 13px);
}

.marquee {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.marquee div {
  width: max-content;
  gap: 0;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 14px 28px;
  border-right: 2px solid rgba(255, 255, 255, 0.22);
  font-weight: 950;
  white-space: nowrap;
}

.section {
  padding: clamp(64px, 8vw, 118px) clamp(20px, 5vw, 78px);
}

.section h2 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h3 {
  margin-bottom: 9px;
  font-size: 24px;
  line-height: 1.08;
}

.section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.removed {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  background: var(--cream);
}

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

.pain-grid article,
.feature-grid article {
  min-height: 260px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.pain-grid article:nth-child(1) {
  background: #dff4ff;
}

.pain-grid article:nth-child(2) {
  background: #ffe3ee;
}

.pain-grid article:nth-child(3) {
  background: #e3ffb8;
}

.pain-grid article:nth-child(4) {
  background: #efe8ff;
}

.pain-grid svg,
.feature-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 58px;
}

.pain-grid p,
.feature-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.features {
  background: var(--paper);
}

.feature-map {
  position: relative;
  isolation: isolate;
}

.feature-map::before {
  content: "";
  position: absolute;
  inset: 58px 58px;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent calc(50% - 2px), var(--ink) calc(50% - 2px), var(--ink) calc(50% + 2px), transparent calc(50% + 2px)),
    linear-gradient(0deg, transparent calc(50% - 2px), var(--ink) calc(50% - 2px), var(--ink) calc(50% + 2px), transparent calc(50% + 2px)),
    linear-gradient(32deg, transparent calc(50% - 2px), rgba(17, 24, 39, 0.65) calc(50% - 2px), rgba(17, 24, 39, 0.65) calc(50% + 2px), transparent calc(50% + 2px)),
    linear-gradient(-32deg, transparent calc(50% - 2px), rgba(17, 24, 39, 0.65) calc(50% - 2px), rgba(17, 24, 39, 0.65) calc(50% + 2px), transparent calc(50% + 2px));
  opacity: 0.88;
}

.connection-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(300px, 28vw);
  padding: 16px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--lime);
  box-shadow: 7px 7px 0 var(--ink);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-1deg);
}

.connection-hub svg {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  stroke-width: 2.6;
}

.connection-hub strong,
.connection-hub span {
  display: block;
}

.connection-hub strong {
  font-size: 22px;
  line-height: 1;
}

.connection-hub span {
  margin-top: 6px;
  color: #273042;
  font-size: 13px;
  font-weight: 800;
}

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

.feature-grid article {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.connector-dot {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 3px 3px 0 var(--ink);
}

.feature-grid article:nth-child(1) .connector-dot,
.feature-grid article:nth-child(4) .connector-dot {
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.feature-grid article:nth-child(2) .connector-dot {
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}

.feature-grid article:nth-child(3) .connector-dot,
.feature-grid article:nth-child(6) .connector-dot {
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.feature-grid article:nth-child(5) .connector-dot {
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
}

.feature-grid article:nth-child(1) {
  background: #fff;
}

.feature-grid article:nth-child(2),
.feature-grid article:nth-child(5) {
  background: #dff4ff;
}

.feature-grid article:nth-child(3) {
  background: #e3ffb8;
}

.feature-grid article:nth-child(4) {
  background: #ffe3ee;
}

.feature-grid article:nth-child(6) {
  background: #fff1a6;
}

.system {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  background: var(--paper);
}

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

.bento article {
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.bento-large {
  grid-column: span 4;
  min-height: 360px;
  padding: 16px;
  background: var(--ink);
  overflow: hidden;
}

.mini-window {
  position: relative;
  min-height: 328px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    linear-gradient(90deg, var(--cyan), var(--pink), var(--yellow), var(--lime));
}

.mini-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 46px;
}

.mini-bar span {
  width: 13px;
  height: 13px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}

.scan-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 88px;
  height: 4px;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 79, 139, 0.18);
  animation: scan 3.2s ease-in-out infinite;
}

.market-row {
  display: grid;
  grid-template-columns: 72px 1fr 90px;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  padding: 15px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.market-row strong {
  font-size: 25px;
}

.market-row span {
  font-weight: 900;
}

.market-row em {
  justify-self: end;
  padding: 6px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.bento-card {
  padding: 20px;
}

.bento-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 58px;
}

.bento-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.bento-card.coral {
  background: #ffe0d2;
}

.bento-card.blue {
  background: #dff4ff;
}

.bento-card.lime {
  grid-column: span 2;
  background: #e3ffb8;
}

.plans {
  background: var(--ink);
  color: var(--white);
}

.plans .section-kicker {
  background: var(--pink);
}

.plans p {
  color: rgba(255, 255, 255, 0.74);
}

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

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.25);
}

.price-card.featured {
  background: var(--yellow);
  transform: rotate(-1deg);
}

.price-card.starter {
  background: #dcf6ff;
}

.price-card.operator {
  background: #ffe3ee;
}

.price-card p {
  color: #3a4050;
  font-weight: 720;
}

.plan-tag {
  display: inline-block;
  width: max-content;
  margin-bottom: 28px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 24px;
  font-size: clamp(56px, 6vw, 86px);
  line-height: 1;
  font-weight: 950;
}

.price span {
  color: var(--muted);
  font-size: 18px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 25px;
  color: #3a4050;
  font-size: 15px;
  font-weight: 720;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

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

.growth-cta-wrap {
  position: relative;
  margin-top: auto;
}

.growth-cta-wrap .button {
  margin-top: 0;
}

.growth-cursor {
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  filter: drop-shadow(3px 4px 0 rgba(18, 21, 30, 0.2));
  transform: translate(-82px, -72px) rotate(-10deg);
  pointer-events: none;
  animation: cursorClick 4.8s ease-in-out infinite;
}

.growth-cursor svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
  stroke: var(--ink);
  stroke-width: 2.8;
}

.button.primary.growth-button {
  animation: growthButtonPress 4.8s ease-in-out infinite;
}

.growth-button::after {
  content: "";
  position: absolute;
  right: 82px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  opacity: 0;
  transform: translate(50%, -50%) scale(0.3);
  pointer-events: none;
  animation: growthClickRing 4.8s ease-in-out infinite;
}

@keyframes cursorClick {
  0%,
  42% {
    opacity: 0;
    transform: translate(-82px, -72px) rotate(-10deg);
  }

  50% {
    opacity: 1;
  }

  68%,
  76% {
    opacity: 1;
    transform: translate(0, 0) rotate(-10deg);
  }

  80% {
    transform: translate(2px, 2px) rotate(-10deg) scale(0.9);
  }

  84% {
    transform: translate(0, 0) rotate(-10deg);
  }

  100% {
    opacity: 0;
    transform: translate(10px, 8px) rotate(-10deg);
  }
}

@keyframes growthButtonPress {
  0%,
  76%,
  100% {
    transform: translate(0, 0);
    box-shadow: 7px 7px 0 var(--ink);
  }

  80% {
    transform: translate(3px, 3px);
    box-shadow: 4px 4px 0 var(--ink);
  }
}

@keyframes growthClickRing {
  0%,
  77%,
  100% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0.3);
  }

  80% {
    opacity: 0.95;
    transform: translate(50%, -50%) scale(0.7);
  }

  92% {
    opacity: 0;
    transform: translate(50%, -50%) scale(2.6);
  }
}

.markets {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  background: var(--cream);
}

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

.market-stack article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 18px;
  align-items: center;
  min-height: 94px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.market-stack article:nth-child(1) {
  background: #dff4ff;
}

.market-stack article:nth-child(2) {
  background: #e3ffb8;
}

.market-stack article:nth-child(3) {
  background: #ffe3ee;
}

.market-stack article:nth-child(4) {
  background: #fff;
}

.market-stack article:nth-child(5) {
  background: #efe8ff;
}

.market-stack strong {
  grid-row: span 2;
  font-size: 38px;
}

.market-stack span {
  font-size: 20px;
  font-weight: 950;
}

.market-stack small {
  color: var(--muted);
  font-weight: 720;
}

.rules {
  background: var(--paper);
}

.rule-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.rule-board article {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 7px 7px 0 var(--ink);
}

.rule-board article:first-child {
  background: #dff4ff;
}

.rule-board article:last-child {
  background: #ffe3ee;
}

.rule-board svg {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
}

.scope-card h3 {
  max-width: 680px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.94;
}

.scope-card p {
  max-width: 760px;
  font-size: 17px;
  font-weight: 680;
}

.scope-label {
  display: inline-block;
  width: max-content;
  margin-bottom: 28px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.scope-list li {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 9px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 3px 3px 0 var(--ink);
}

.scope-proof {
  margin-top: auto;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
}

.scope-proof strong,
.scope-proof span {
  display: block;
}

.scope-proof strong {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.1;
}

.scope-proof span {
  color: #273042;
  font-size: 14px;
  font-weight: 760;
}

.scope-card.boundaries .protected-list li {
  background: #fff7fb;
}

.scope-card.boundaries .safety-proof {
  background: #ff8fb5;
}

.scope-card.boundaries .safety-proof span {
  color: #2e1e2a;
}

.final-cta {
  padding: clamp(70px, 9vw, 126px) clamp(20px, 5vw, 78px);
  background:
    linear-gradient(135deg, rgba(255, 79, 139, 0.18), rgba(37, 199, 255, 0.2)),
    var(--lime);
  border-top: 2px solid var(--ink);
}

.final-cta h2 {
  max-width: 1080px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 118px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-cta p:not(.section-kicker) {
  max-width: 720px;
  color: #273042;
  font-size: 20px;
  font-weight: 700;
}

.app-body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(37, 199, 255, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 212, 71, 0.28), rgba(255, 247, 223, 0.94));
}

.app-sidebar {
  position: fixed;
  inset: 18px auto 18px 18px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  width: 252px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 7px 7px 0 var(--ink);
  backdrop-filter: blur(16px);
}

.app-brand {
  margin-bottom: 28px;
}

.app-nav {
  display: grid;
  gap: 8px;
}

.app-nav a,
.icon-button,
.small-button,
.status-pill,
.mini-status {
  display: inline-flex;
  align-items: center;
}

.app-nav a {
  gap: 10px;
  min-height: 46px;
  padding: 10px 11px;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #273042;
  font-size: 14px;
  font-weight: 900;
}

.app-nav a.active,
.app-nav a:hover {
  border-color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.app-nav svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.6;
}

.sidebar-note {
  margin-top: auto;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #e3ffb8;
}

.sidebar-note strong,
.sidebar-note span {
  display: block;
}

.sidebar-note strong {
  margin-bottom: 5px;
  font-size: 16px;
}

.sidebar-note span {
  color: #384152;
  font-size: 13px;
  font-weight: 760;
}

.app-shell {
  width: calc(100% - 292px);
  max-width: none;
  margin-left: 292px;
  padding: 24px clamp(20px, 3vw, 44px) 54px;
}

.app-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.app-header h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(46px, 5vw, 78px);
}

.app-header p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: #3b4253;
  font-size: 18px;
  font-weight: 700;
}

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

.icon-button {
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.6;
}

.profile-grid,
.work-grid,
.bottom-grid {
  display: grid;
  gap: 16px;
}

.profile-grid {
  grid-template-columns: minmax(360px, 1.2fr) minmax(240px, 0.62fr) minmax(260px, 0.76fr);
}

.work-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  margin-top: 16px;
}

.bottom-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  margin-top: 16px;
}

.profile-card,
.connection-panel,
.guardrail-panel {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 6px 6px 0 var(--ink);
}

.profile-card {
  padding: 20px;
}

.connection-panel,
.guardrail-panel {
  margin-top: 16px;
  padding: 22px;
}

.card-title,
.panel-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-heading {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.panel-heading.compact {
  align-items: flex-start;
}

.card-title {
  margin-bottom: 16px;
  color: #384152;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.card-title svg,
.panel-heading svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.6;
}

.profile-card h2,
.panel-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1;
  letter-spacing: 0;
}

.profile-card p {
  color: #4b5262;
  font-size: 15px;
  font-weight: 700;
}

.store-summary {
  background: #dff4ff;
}

.health-card {
  background: #fff1a6;
}

.next-run {
  background: #ffe3ee;
}

.store-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.store-facts div {
  min-height: 72px;
  padding: 11px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.store-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.store-facts dd {
  margin: 5px 0 0;
  font-size: 17px;
  font-weight: 950;
}

.score-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 150px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: conic-gradient(var(--lime) 0 82%, var(--white) 82% 100%);
  box-shadow: inset 0 0 0 12px var(--white);
}

.score-ring strong {
  font-size: clamp(48px, 4vw, 64px);
  line-height: 1;
}

.score-ring span {
  color: var(--muted);
  align-self: center;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 900;
}

.mini-status {
  gap: 7px;
  width: max-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.mini-status.safe svg {
  width: 16px;
  height: 16px;
}

.status-pill {
  gap: 7px;
  min-height: 36px;
  padding: 8px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.status-pill.live {
  background: var(--lime);
}

.status-pill.blocked {
  background: #ffb2ca;
}

.integration-grid,
.guardrail-grid {
  display: grid;
  gap: 12px;
}

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

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

.integration-grid article,
.guardrail-grid article {
  min-height: 178px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.guardrail-grid article {
  min-height: 154px;
  background: #fff7fb;
}

.integration-grid svg,
.guardrail-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  stroke-width: 2.6;
}

.integration-grid strong,
.integration-grid span,
.integration-grid em,
.guardrail-grid strong,
.guardrail-grid span {
  display: block;
}

.integration-grid strong,
.guardrail-grid strong {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.05;
}

.integration-grid span,
.guardrail-grid span {
  color: #4b5262;
  font-size: 13px;
  font-weight: 720;
}

.integration-grid em {
  width: max-content;
  margin-top: 14px;
  padding: 5px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.queue-card,
.learn-card,
.report-card,
.audit-card {
  background: var(--white);
}

.task-list,
.signal-list,
.activity-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.task-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 94px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #f8fbff;
}

.task-row.locked {
  background: #fff7fb;
}

.task-row strong,
.task-row p {
  margin: 0;
}

.task-row p {
  margin-top: 4px;
  font-size: 13px;
}

.risk {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.risk.low {
  background: var(--lime);
}

.risk.medium {
  background: var(--yellow);
}

.risk.blocked {
  background: #ff8fb5;
}

.small-button {
  justify-content: center;
  min-height: 36px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  font-weight: 950;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}

.small-button.muted {
  color: #4b5262;
  background: #eef1f7;
}

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

.signal-list div {
  min-height: 118px;
  padding: 15px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #e3ffb8;
}

.signal-list div:nth-child(2) {
  background: #dff4ff;
}

.signal-list div:nth-child(3) {
  background: #fff1a6;
}

.signal-list div:nth-child(4) {
  background: #ffe3ee;
}

.signal-list strong,
.signal-list span {
  display: block;
}

.signal-list strong {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 1;
}

.signal-list span {
  color: #3b4253;
  font-size: 13px;
  font-weight: 800;
}

.loop-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.loop-strip span {
  padding: 7px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  white-space: nowrap;
}

.loop-strip i {
  flex: 1;
  height: 3px;
  min-width: 12px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 13px);
}

.activity-list {
  list-style: none;
}

.activity-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 2px solid rgba(17, 24, 39, 0.12);
}

.activity-list li:last-child {
  border-bottom: 0;
}

.activity-list strong {
  font-size: 13px;
}

.activity-list span {
  color: #4b5262;
  font-size: 14px;
  font-weight: 760;
}

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

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(172px);
  }
}

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

@media (max-width: 1540px) {
  .removed {
    grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
    gap: clamp(30px, 4vw, 58px);
  }

  .removed h2 {
    max-width: 650px;
    font-size: clamp(56px, 4.8vw, 72px);
  }

  .rule-board {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .rule-board article {
    min-height: 360px;
    padding: 24px;
  }

  .scope-card h3 {
    font-size: clamp(28px, 2.6vw, 42px);
  }

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

@media (max-width: 1180px) {
  .app-sidebar {
    position: sticky;
    inset: 10px 10px auto;
    width: auto;
    margin: 10px;
  }

  .app-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .app-nav a {
    justify-content: center;
  }

  .app-nav a span {
    display: none;
  }

  .sidebar-note {
    display: none;
  }

  .app-shell {
    width: auto;
    margin-left: 0;
    padding-top: 12px;
  }

  .app-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .profile-grid,
  .work-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-console {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 720px);
    margin-top: -28px;
    margin-left: clamp(20px, 5vw, 78px);
  }

  .removed,
  .system,
  .markets {
    grid-template-columns: 1fr;
  }

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

  .feature-map::before {
    inset: 64px 42px;
    background:
      linear-gradient(90deg, transparent calc(50% - 2px), var(--ink) calc(50% - 2px), var(--ink) calc(50% + 2px), transparent calc(50% + 2px)),
      linear-gradient(0deg, transparent calc(50% - 2px), var(--ink) calc(50% - 2px), var(--ink) calc(50% + 2px), transparent calc(50% + 2px));
  }

  .connection-hub {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 520px);
    margin: 0 auto 18px;
    transform: rotate(-1deg);
  }

  .connector-dot {
    display: none;
  }

  .pricing-grid,
  .pain-grid,
  .rule-board {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }
}

@media (min-width: 1181px) and (max-width: 1480px) {
  .profile-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  }

  .store-summary {
    grid-column: 1 / -1;
  }

  .integration-grid,
  .guardrail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .app-sidebar {
    padding: 10px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .app-brand {
    margin-bottom: 10px;
  }

  .app-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }

  .app-nav a {
    min-height: 40px;
    padding: 8px;
  }

  .app-shell {
    padding: 10px 14px 36px;
  }

  .app-header h1 {
    font-size: 42px;
  }

  .header-actions,
  .header-actions .button {
    width: 100%;
  }

  .profile-card,
  .connection-panel,
  .guardrail-panel {
    padding: 16px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .store-facts,
  .integration-grid,
  .guardrail-grid,
  .signal-list {
    grid-template-columns: 1fr;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .task-row {
    grid-template-columns: 1fr;
  }

  .small-button {
    width: 100%;
  }

  .loop-strip {
    flex-wrap: wrap;
  }

  .loop-strip i {
    display: none;
  }

  .topbar {
    inset: 10px 10px auto;
    min-height: 58px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 92vh;
    padding: 102px 18px 48px;
  }

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

  h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .lede {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-console {
    width: auto;
    margin: 22px 18px 0;
  }

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

  .console-flow {
    flex-wrap: wrap;
  }

  .console-flow i {
    display: none;
  }

  .section {
    padding: 54px 18px;
  }

  .section h2 {
    font-size: clamp(38px, 14vw, 58px);
  }

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

  .feature-map::before {
    display: none;
  }

  .connection-hub {
    justify-items: start;
    text-align: left;
  }

  .pain-grid article,
  .feature-grid article {
    min-height: 220px;
  }

  .pain-grid svg,
  .feature-grid svg {
    margin-bottom: 38px;
  }

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

  .bento-large,
  .bento-card.lime {
    grid-column: span 1;
  }

  .mini-window {
    min-height: 300px;
  }

  .market-row {
    grid-template-columns: 1fr;
  }

  .market-row em {
    justify-self: start;
  }

  .price-card.featured {
    transform: none;
  }

  .market-stack article {
    grid-template-columns: 1fr;
  }

  .market-stack strong {
    grid-row: auto;
  }

  .rule-board article {
    min-height: 260px;
  }

  .rule-board svg {
    margin-bottom: 18px;
  }

  .scope-label {
    margin-bottom: 18px;
  }

  .scope-card h3 {
    font-size: 34px;
  }

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